Skip to content

Commit

Permalink
adjusted air exposure rates for ores
Browse files Browse the repository at this point in the history
  • Loading branch information
NewJumper committed Jul 30, 2023
1 parent 92d9fff commit 326b323
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// 1.20.1 2023-07-30T15:08:46.0416741 Registries
// 1.20.1 2023-07-30T15:20:20.5188561 Registries
5f555f341df90e0b1a5ed07e10d4857f2b00c8e9 data/deeperdarker/dimension_type/otherside.json
1fc137ed3f3eb9a257f16b56f65da4542384ac90 data/deeperdarker/worldgen/biome/deeplands.json
06607f421f44429555a605ad8065e5087cc8055c data/deeperdarker/worldgen/biome/echoing_forest.json
Expand All @@ -11,10 +11,10 @@ a7efce9cf36bea20e3226c6fcb962b41b78df3f6 data/deeperdarker/worldgen/configured_f
e21d4d48d366ec5aa99fce98c51d5ae4c947c350 data/deeperdarker/worldgen/configured_feature/ore_gloomslate_copper.json
224b207ad15bcff204231389a66c98bd48516005 data/deeperdarker/worldgen/configured_feature/ore_gloomslate_diamond.json
a8ce24be468cc5e2bb65248312f09a67ea28ac19 data/deeperdarker/worldgen/configured_feature/ore_gloomslate_emerald.json
33b353a7bbc023b3e267927998b8f27465126df5 data/deeperdarker/worldgen/configured_feature/ore_gloomslate_gold.json
1a945e6e29365d350962ba7848c6852c53fec14b data/deeperdarker/worldgen/configured_feature/ore_gloomslate_gold.json
d0506d9dd379ea8f1f688ff523f610e9b193660b data/deeperdarker/worldgen/configured_feature/ore_gloomslate_iron.json
9c3d7d5ce21b6618d80a9f380ca1a0235c1619c6 data/deeperdarker/worldgen/configured_feature/ore_gloomslate_lapis.json
bdfd533edc1bc014c276d811510af3bc2859f300 data/deeperdarker/worldgen/configured_feature/ore_gloomslate_redstone.json
6f085efdc6d6e2f4d3b2b9939a52366801bb854a data/deeperdarker/worldgen/configured_feature/ore_gloomslate_redstone.json
7d0febd476ef3b3f3eb1bb2ee44f09e0402d09a6 data/deeperdarker/worldgen/configured_feature/ore_infested_sculk.json
29d243a33ec0f92075a785d035084c71c9f43482 data/deeperdarker/worldgen/configured_feature/ore_sculk.json
d11e2ec8ce73e181826c00c0ae071b25090715d7 data/deeperdarker/worldgen/configured_feature/ore_sculk_coal.json
Expand All @@ -24,7 +24,7 @@ d11e2ec8ce73e181826c00c0ae071b25090715d7 data/deeperdarker/worldgen/configured_f
033a0154a8eede359a2a41e6125fe148777be12a data/deeperdarker/worldgen/configured_feature/ore_sculk_gold.json
ee35c3e4bbf9a22a87858693f6d4e1538e5764cd data/deeperdarker/worldgen/configured_feature/ore_sculk_iron.json
d714f6f1bb21e81f1cfcf57da473584f1a5d34c9 data/deeperdarker/worldgen/configured_feature/ore_sculk_jaw.json
a70d12377b215a9f577f174766b506dc969e7e0f data/deeperdarker/worldgen/configured_feature/ore_sculk_lapis.json
9c3d7d5ce21b6618d80a9f380ca1a0235c1619c6 data/deeperdarker/worldgen/configured_feature/ore_sculk_lapis.json
50c3a68cd9e9cc5aa84889157f091a7f200e330e data/deeperdarker/worldgen/configured_feature/ore_sculk_redstone.json
96f3ef8cd15afedd3241978ed2b2db5e16a3201b data/deeperdarker/worldgen/configured_feature/sculk_gleam_extra.json
4a9c3c5f442a6521267b9667441f8388507a893b data/deeperdarker/worldgen/configured_feature/sculk_stone_column.json
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "minecraft:ore",
"config": {
"discard_chance_on_air_exposure": 0.6,
"discard_chance_on_air_exposure": 0.5,
"size": 13,
"targets": [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "minecraft:ore",
"config": {
"discard_chance_on_air_exposure": 0.7,
"discard_chance_on_air_exposure": 0.6,
"size": 8,
"targets": [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "minecraft:ore",
"config": {
"discard_chance_on_air_exposure": 0.5,
"discard_chance_on_air_exposure": 0.7,
"size": 10,
"targets": [
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,14 @@ public static void bootstrap(BootstapContext<ConfiguredFeature<?, ?>> context) {
FeatureUtils.register(context, ORE_SCULK_GOLD, Feature.ORE, new OreConfiguration(GOLD_TARGET_LIST, 13, 0.4f));
FeatureUtils.register(context, ORE_SCULK_REDSTONE, Feature.ORE, new OreConfiguration(REDSTONE_TARGET_LIST, 8, 0.5f));
FeatureUtils.register(context, ORE_SCULK_EMERALD, Feature.ORE, new OreConfiguration(EMERALD_TARGET_LIST, 3, 0.4f));
FeatureUtils.register(context, ORE_SCULK_LAPIS, Feature.ORE, new OreConfiguration(LAPIS_TARGET_LIST, 10, 0.5f));
FeatureUtils.register(context, ORE_SCULK_LAPIS, Feature.ORE, new OreConfiguration(LAPIS_TARGET_LIST, 10, 0.7f));
FeatureUtils.register(context, ORE_SCULK_DIAMOND, Feature.ORE, new OreConfiguration(DIAMOND_TARGET_LIST, 7, 0.4f));

FeatureUtils.register(context, ORE_GLOOMSLATE_COAL, Feature.ORE, new OreConfiguration(COAL_TARGET_LIST, 14, 0.3f));
FeatureUtils.register(context, ORE_GLOOMSLATE_IRON, Feature.ORE, new OreConfiguration(IRON_TARGET_LIST, 13, 0.4f));
FeatureUtils.register(context, ORE_GLOOMSLATE_COPPER, Feature.ORE, new OreConfiguration(COPPER_TARGET_LIST, 15, 0.4f));
FeatureUtils.register(context, ORE_GLOOMSLATE_GOLD, Feature.ORE, new OreConfiguration(GOLD_TARGET_LIST, 13, 0.6f));
FeatureUtils.register(context, ORE_GLOOMSLATE_REDSTONE, Feature.ORE, new OreConfiguration(REDSTONE_TARGET_LIST, 8, 0.7f));
FeatureUtils.register(context, ORE_GLOOMSLATE_GOLD, Feature.ORE, new OreConfiguration(GOLD_TARGET_LIST, 13, 0.5f));
FeatureUtils.register(context, ORE_GLOOMSLATE_REDSTONE, Feature.ORE, new OreConfiguration(REDSTONE_TARGET_LIST, 8, 0.6f));
FeatureUtils.register(context, ORE_GLOOMSLATE_EMERALD, Feature.ORE, new OreConfiguration(EMERALD_TARGET_LIST, 3, 0.6f));
FeatureUtils.register(context, ORE_GLOOMSLATE_LAPIS, Feature.ORE, new OreConfiguration(LAPIS_TARGET_LIST, 10, 0.7f));
FeatureUtils.register(context, ORE_GLOOMSLATE_DIAMOND, Feature.ORE, new OreConfiguration(DIAMOND_TARGET_LIST, 7, 0.6f));
Expand Down

0 comments on commit 326b323

Please sign in to comment.