Update recipes.js

This commit is contained in:
Dmitry 2023-12-09 21:24:44 +07:00
parent 523f6a0ac7
commit 6fc1e3bbae

View file

@ -44,6 +44,21 @@ const registerTFCRecipes = (event) => {
.resultFluid(Fluid.of(metalSpecs.fluid, 144))
.id(`tfc:heating/metal/${metal}_ingot`)
}
// Стержни
if (metalSpecs.props.includes('rod'))
{
// Декрафт стержня в жидкость
event.recipes.tfc.heating(`gtceu:${metal}_rod`, metalSpecs.melt_temp)
.resultFluid(Fluid.of(metalSpecs.fluid, 72))
.id(`tfc:heating/metal/${metal}_rod`)
// Слиток -> 2 Стержня
event.recipes.tfc.anvil(`2x gtceu:${metal}_rod`, `#forge:ingots/${metal}`, ['bend_last', 'draw_second_last', 'draw_third_last'])
.tier(metalSpecs.tier)
.id(`tfc:anvil/${metal}_rod`)
}
}
// Двойные слитки
@ -140,6 +155,11 @@ const registerTFCRecipes = (event) => {
}
}
if (metalSpecs.props.includes('double_sheet'))
{
}
})
// Bloom -> Wrought Iron Ingot