Skip to content

Commit

Permalink
Update en_us.lang & Ancient Seabed vein
Browse files Browse the repository at this point in the history
 - Ancient Seabed no longer involves coral & is now a White Cliffs of Dover vein
 - Ancient Seabed now has Calcite, Dripstone, & Bone Blocks
 - Lang file now has all vein names
  • Loading branch information
voidsong-dragonfly committed Dec 1, 2023
1 parent b130212 commit be98cec
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 44 deletions.
20 changes: 8 additions & 12 deletions src/datagen/java/blusunrize/immersiveengineering/data/Recipes.java
Original file line number Diff line number Diff line change
Expand Up @@ -1192,6 +1192,14 @@ private void mineralMixes(@Nonnull Consumer<FinishedRecipe> out)
.setWeight(15)
.setFailchance(.05f)
.build(out, toRL("mineral/hardened_clay_pan"));
MineralMixBuilder.builder(overworld)
.addSeabedSpoils()
.addOre(Blocks.CALCITE, .65f)
.addOre(Blocks.DRIPSTONE_BLOCK, .3f)
.addOre(Blocks.BONE_BLOCK, .05f)
.setWeight(15)
.setFailchance(.05f)
.build(out, toRL("mineral/ancient_seabed"));
MineralMixBuilder.builder(overworld)
.addOverworldSpoils()
.addOre(Blocks.AMETHYST_BLOCK, .4f)
Expand All @@ -1200,18 +1208,6 @@ private void mineralMixes(@Nonnull Consumer<FinishedRecipe> out)
.setWeight(10)
.setFailchance(.1f)
.build(out, toRL("mineral/amethyst_crevasse"));
MineralMixBuilder.builder(overworld)
.addSeabedSpoils()
.addOre(Blocks.CALCITE, .35f)
.addOre(Blocks.DRIPSTONE_BLOCK, .15f)
.addOre(Blocks.DEAD_BRAIN_CORAL_BLOCK, .1f)
.addOre(Blocks.DEAD_TUBE_CORAL_BLOCK, .1f)
.addOre(Blocks.DEAD_HORN_CORAL_BLOCK, .1f)
.addOre(Blocks.DEAD_FIRE_CORAL_BLOCK, .1f)
.addOre(Blocks.DEAD_BUBBLE_CORAL_BLOCK, .1f)
.setWeight(10)
.setFailchance(.15f)
.build(out, toRL("mineral/ancient_seabed"));
// Common things
MineralMixBuilder.builder(overworld)
.addOverworldSpoils()
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,9 @@
"desc.immersiveengineering.info.mineral.bituminous_coal": "Bituminous Coal",
"desc.immersiveengineering.info.mineral.silt": "Silt",
"desc.immersiveengineering.info.mineral.igneous_rock": "Igneous Rock",
"desc.immersiveengineering.info.mineral.hardened_clay_pan": "Hardened Claypan",
"desc.immersiveengineering.info.mineral.ancient_seabed": "Ancient Seabed",
"desc.immersiveengineering.info.mineral.amethyst_crevasse": "Amethyst Crevasse",
"desc.immersiveengineering.info.mineral.pentlandite": "Pentlandite",
"desc.immersiveengineering.info.mineral.chalcopyrite": "Chalcopyrite",
"desc.immersiveengineering.info.mineral.laterite": "Laterite",
Expand Down

0 comments on commit be98cec

Please sign in to comment.