Skip to content

Commit

Permalink
Rebalance rose gold recipe
Browse files Browse the repository at this point in the history
Makes it more consistent with thermal which now provides rose gold. Plus makes it a bit more valuable as copper is cheap in 1.18
  • Loading branch information
KnightMiner committed Jun 7, 2022
1 parent fd2e480 commit de3a135
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 @@ -3,7 +3,7 @@
"inputs": [
{
"tag": "forge:molten_copper",
"amount": 270
"amount": 90
},
{
"tag": "forge:molten_gold",
Expand All @@ -12,7 +12,7 @@
],
"result": {
"fluid": "tconstruct:molten_rose_gold",
"amount": 360
"amount": 180
},
"temperature": 550
}
Original file line number Diff line number Diff line change
Expand Up @@ -1549,9 +1549,9 @@ private void addAlloyRecipes(Consumer<FinishedRecipe> consumer) {
.addInput(TinkerFluids.moltenAmethyst.getLocalTag(), FluidValues.GEM)
.save(consumer, prefix(TinkerFluids.moltenAmethystBronze, folder));

// rose gold: 3 copper + 1 gold = 4
AlloyRecipeBuilder.alloy(TinkerFluids.moltenRoseGold.get(), FluidValues.INGOT * 4)
.addInput(TinkerFluids.moltenCopper.getForgeTag(), FluidValues.INGOT * 3)
// rose gold: 1 copper + 1 gold = 2
AlloyRecipeBuilder.alloy(TinkerFluids.moltenRoseGold.get(), FluidValues.INGOT * 2)
.addInput(TinkerFluids.moltenCopper.getForgeTag(), FluidValues.INGOT)
.addInput(TinkerFluids.moltenGold.getForgeTag(), FluidValues.INGOT)
.save(consumer, prefix(TinkerFluids.moltenRoseGold, folder));
// pig iron: 1 iron + 2 blood + 1 honey = 2
Expand Down

0 comments on commit de3a135

Please sign in to comment.