Update recipes.js
This commit is contained in:
parent
523f6a0ac7
commit
6fc1e3bbae
1 changed files with 20 additions and 0 deletions
|
|
@ -44,6 +44,21 @@ const registerTFCRecipes = (event) => {
|
||||||
.resultFluid(Fluid.of(metalSpecs.fluid, 144))
|
.resultFluid(Fluid.of(metalSpecs.fluid, 144))
|
||||||
.id(`tfc:heating/metal/${metal}_ingot`)
|
.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
|
// Bloom -> Wrought Iron Ingot
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue