Skip to content

Commit

Permalink
Make pig iron from honey instead of clay
Browse files Browse the repository at this point in the history
  • Loading branch information
KnightMiner committed Apr 24, 2022
1 parent 39d607a commit 2d1b2c2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
},
{
"tag": "tconstruct:blood",
"amount": 250
"amount": 500
},
{
"tag": "tconstruct:molten_clay",
"tag": "forge:honey",
"amount": 250
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1545,11 +1545,11 @@ private void addAlloyRecipes(Consumer<FinishedRecipe> consumer) {
.addInput(TinkerFluids.moltenCopper.getForgeTag(), FluidValues.INGOT * 3)
.addInput(TinkerFluids.moltenGold.getForgeTag(), FluidValues.INGOT)
.save(consumer, prefix(TinkerFluids.moltenRoseGold, folder));
// pig iron: 1 iron + 1 blood + 1 clay = 2
// pig iron: 1 iron + 2 blood + 1 honey = 2
AlloyRecipeBuilder.alloy(TinkerFluids.moltenPigIron.get(), FluidValues.INGOT * 2)
.addInput(TinkerFluids.moltenIron.getForgeTag(), FluidValues.INGOT)
.addInput(TinkerFluids.blood.getLocalTag(), FluidValues.SLIMEBALL)
.addInput(TinkerFluids.moltenClay.getLocalTag(), FluidValues.BRICK)
.addInput(TinkerFluids.blood.getLocalTag(), FluidValues.SLIMEBALL * 2)
.addInput(TinkerFluids.honey.getForgeTag(), FluidValues.SLIMEBALL)
.save(consumer, prefix(TinkerFluids.moltenPigIron, folder));
// obsidian: 1 water + 1 lava = 2
// note this is not a progression break, as the same tier lets you combine glass and copper for same mining level
Expand Down

0 comments on commit 2d1b2c2

Please sign in to comment.