Skip to content

Commit

Permalink
Added two new recipes for nether survival
Browse files Browse the repository at this point in the history
First, allow making melting using any controller of a melting block, since its hard to get a melter in the nether you can now go foundry controller
Second, allow making obsidian using mushroom soup. Its perfectly normal to make soup obidian
  • Loading branch information
KnightMiner committed Oct 9, 2022
1 parent 288eb4d commit 44027b6
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"type": "tconstruct:alloy",
"inputs": [
{
"tag": "forge:mushroom_stew",
"amount": 250
},
{
"name": "minecraft:lava",
"amount": 250
}
],
"result": {
"fluid": "tconstruct:molten_obsidian",
"amount": 250
},
"temperature": 1000
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,17 @@
"item": "minecraft:blaze_rod"
},
{
"item": "tconstruct:seared_melter"
"ingredient": [
{
"item": "tconstruct:seared_melter"
},
{
"item": "tconstruct:smeltery_controller"
},
{
"item": "tconstruct:foundry_controller"
}
]
},
{
"item": "minecraft:blaze_rod"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,17 @@
"item": "minecraft:blaze_rod"
},
{
"item": "tconstruct:seared_melter"
"ingredient": [
{
"item": "tconstruct:seared_melter"
},
{
"item": "tconstruct:smeltery_controller"
},
{
"item": "tconstruct:foundry_controller"
}
]
},
{
"item": "minecraft:blaze_rod"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1566,6 +1566,11 @@ private void addAlloyRecipes(Consumer<FinishedRecipe> consumer) {
.addInput(Fluids.WATER, FluidAttributes.BUCKET_VOLUME / 20)
.addInput(Fluids.LAVA, FluidAttributes.BUCKET_VOLUME / 10)
.save(consumer, prefix(TinkerFluids.moltenObsidian, folder));
// nether obsidian recipe: when water is rare, use the soup
AlloyRecipeBuilder.alloy(TinkerFluids.moltenObsidian.get(), FluidValues.GLASS_BLOCK / 4)
.addInput(TinkerFluids.mushroomStew.getForgeTag(), FluidValues.BOWL)
.addInput(Fluids.LAVA, FluidAttributes.BUCKET_VOLUME / 4)
.save(consumer, wrap(TinkerFluids.moltenObsidian, folder, "_from_soup"));

// tier 4

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -985,7 +985,7 @@ private void addModifierRecipes(Consumer<FinishedRecipe> consumer) {
// fluid stuff
ModifierRecipeBuilder.modifier(TinkerModifiers.melting)
.addInput(Items.BLAZE_ROD)
.addInput(TinkerSmeltery.searedMelter)
.addInput(Ingredient.of(TinkerSmeltery.searedMelter, TinkerSmeltery.smelteryController, TinkerSmeltery.foundryController))
.addInput(Items.BLAZE_ROD)
.addInput(Items.LAVA_BUCKET)
.addInput(Items.LAVA_BUCKET)
Expand Down

0 comments on commit 44027b6

Please sign in to comment.