-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: world gen features now respect config file settings
- Loading branch information
Showing
15 changed files
with
501 additions
and
406 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 8 additions & 3 deletions
11
exploration/src/main/generated/.cache/8334375f2c689bc1064105fb5f28a68385b7f9ae
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
// 1.19.2 2024-03-04T11:32:53.74826 forge/biome_modifier generator for projectred_exploration | ||
d945627f6efcd004553c4907dafa754afd32182e data/projectred_exploration/forge/biome_modifier/add_overworld_carvers.json | ||
867d7ebae686f787cde12b48c638e594733e28ae data/projectred_exploration/forge/biome_modifier/add_overworld_ores.json | ||
// 1.19.2 2024-04-12T12:50:48.118367 forge/biome_modifier generator for projectred_exploration | ||
a9ee4e4ea7ce9d6a5e98587da776a55196704fa2 data/projectred_exploration/forge/biome_modifier/add_electrotine_ore_to_overworld.json | ||
b040a155acc4c4c41dadb18f3a2a8d514cf7cd22 data/projectred_exploration/forge/biome_modifier/add_marble_cave_to_overworld.json | ||
d44596fde99ef0bd30d0ead290049c629e8b74b1 data/projectred_exploration/forge/biome_modifier/add_peridot_ore_to_overworld.json | ||
bdc09c896ef2863532a7ef17a2e3567274819eef data/projectred_exploration/forge/biome_modifier/add_ruby_ore_to_overworld.json | ||
691f03827983499ee1547931cc06a5cfbecb3349 data/projectred_exploration/forge/biome_modifier/add_sapphire_ore_to_overworld.json | ||
05ade71ce944b91d3b8309ba9b396cef7377b64a data/projectred_exploration/forge/biome_modifier/add_silver_ore_to_overworld.json | ||
c4f8a9b2d88c1b62f59e68aca1d58249ffe5c0cf data/projectred_exploration/forge/biome_modifier/add_tin_ore_to_overworld.json |
62 changes: 62 additions & 0 deletions
62
...ed/data/projectred_exploration/forge/biome_modifier/add_electrotine_ore_to_overworld.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
{ | ||
"type": "projectred_exploration:add_features", | ||
"biomes": "#minecraft:is_overworld", | ||
"configKey": "electrotine_ore", | ||
"features": { | ||
"feature": { | ||
"type": "minecraft:ore", | ||
"config": { | ||
"discard_chance_on_air_exposure": 0.0, | ||
"size": 8, | ||
"targets": [ | ||
{ | ||
"state": { | ||
"Name": "projectred_exploration:electrotine_ore", | ||
"Properties": { | ||
"lit": "false" | ||
} | ||
}, | ||
"target": { | ||
"predicate_type": "minecraft:tag_match", | ||
"tag": "minecraft:stone_ore_replaceables" | ||
} | ||
}, | ||
{ | ||
"state": { | ||
"Name": "projectred_exploration:deepslate_electrotine_ore", | ||
"Properties": { | ||
"lit": "false" | ||
} | ||
}, | ||
"target": { | ||
"predicate_type": "minecraft:tag_match", | ||
"tag": "minecraft:deepslate_ore_replaceables" | ||
} | ||
} | ||
] | ||
} | ||
}, | ||
"placement": [ | ||
{ | ||
"type": "minecraft:count", | ||
"count": 4 | ||
}, | ||
{ | ||
"type": "minecraft:in_square" | ||
}, | ||
{ | ||
"type": "minecraft:height_range", | ||
"height": { | ||
"type": "minecraft:trapezoid", | ||
"max_inclusive": { | ||
"absolute": 32 | ||
}, | ||
"min_inclusive": { | ||
"absolute": -32 | ||
} | ||
} | ||
} | ||
] | ||
}, | ||
"step": "underground_ores" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,5 +72,6 @@ | |
} | ||
} | ||
}, | ||
"configKey": "marble_cave", | ||
"step": "air" | ||
} |
Oops, something went wrong.