candles
This commit is contained in:
parent
4fc937bb52
commit
2ce4192080
6 changed files with 130 additions and 5 deletions
|
|
@ -2,7 +2,6 @@
|
|||
|
||||
const registerFirmaCivRecipes = (event) => {
|
||||
|
||||
|
||||
event.remove({ id: '/firmaciv:quern/' })
|
||||
event.remove({ id: 'firmaciv:anvil/copper_bolt' })
|
||||
|
||||
|
|
@ -14,21 +13,91 @@ const registerFirmaCivRecipes = (event) => {
|
|||
.id(`firmaciv:heating/oarlock`)
|
||||
|
||||
// Anchor
|
||||
event.recipes.tfc.heating('firmaciv:anchor', 1535)
|
||||
.resultFluid(Fluid.of('gtceu:steel', 288))
|
||||
.id(`firmaciv:heating/anchor`)
|
||||
|
||||
// Cannon Barrel
|
||||
event.recipes.tfc.heating('firmaciv:cannon_barrel', 1535)
|
||||
.resultFluid(Fluid.of('gtceu:iron', 288))
|
||||
.id(`firmaciv:heating/cannon_barrel`)
|
||||
|
||||
// Cannonball
|
||||
event.recipes.tfc.heating('firmaciv:cannonball', 1535)
|
||||
.resultFluid(Fluid.of('gtceu:iron', 288))
|
||||
.id(`firmaciv:heating/cannonball`)
|
||||
|
||||
// Cleat
|
||||
event.recipes.tfc.heating('firmaciv:cleat', 1535)
|
||||
.resultFluid(Fluid.of('gtceu:steel', 288))
|
||||
.id(`firmaciv:heating/cleat`)
|
||||
|
||||
//#endregion
|
||||
|
||||
// Sextant
|
||||
event.recipes.gtceu.assembler('tfg:firmaciv/sextant')
|
||||
.itemInputs('2x #forge:plates/brass', '2x #forge:rods/brass')
|
||||
.circuit(10)
|
||||
.itemOutputs('firmaciv:sextant')
|
||||
.duration(75)
|
||||
.EUt(4)
|
||||
|
||||
// Navigator Timepiece
|
||||
event.recipes.gtceu.assembler('tfg:firmaciv/navigator')
|
||||
.itemInputs('2x #forge:plates/brass', '2x #forge:rods/brass')
|
||||
.circuit(11)
|
||||
.itemOutputs('firmaciv:nav_clock')
|
||||
.duration(75)
|
||||
.EUt(4)
|
||||
|
||||
// Barometer
|
||||
// Compass
|
||||
// Acnhor
|
||||
event.recipes.gtceu.assembler('tfg:firmaciv/barometer')
|
||||
.itemInputs('2x #forge:plates/brass', '2x #forge:rods/brass', '#forge:glass')
|
||||
.inputFluids(Fluid.of('minecraft:water', 1000))
|
||||
.circuit(12)
|
||||
.itemOutputs('firmaciv:barometer')
|
||||
.duration(75)
|
||||
.EUt(4)
|
||||
|
||||
// Anchor
|
||||
event.recipes.gtceu.assembler('tfg:firmaciv/anchor')
|
||||
.itemInputs('#forge:double_plates/steel')
|
||||
.circuit(10)
|
||||
.itemOutputs('firmaciv:anchor')
|
||||
.duration(75)
|
||||
.EUt(4)
|
||||
|
||||
// Cannon Barrel
|
||||
event.recipes.gtceu.assembler('tfg:firmaciv/cannon_barrel')
|
||||
.itemInputs('#forge:double_plates/wrought_iron')
|
||||
.circuit(11)
|
||||
.itemOutputs('firmaciv:cannon_barrel')
|
||||
.duration(75)
|
||||
.EUt(4)
|
||||
|
||||
// Cannonball
|
||||
event.recipes.gtceu.assembler('tfg:firmaciv/cannonball')
|
||||
.itemInputs('#forge:double_plates/wrought_iron')
|
||||
.circuit(12)
|
||||
.itemOutputs('firmaciv:cannonball')
|
||||
.duration(75)
|
||||
.EUt(4)
|
||||
|
||||
// Oarlock
|
||||
event.recipes.gtceu.assembler('tfg:firmaciv/oarlock')
|
||||
.itemInputs('#forge:double_plates/wrought_iron')
|
||||
.circuit(13)
|
||||
.itemOutputs('firmaciv:oarlock')
|
||||
.duration(75)
|
||||
.EUt(4)
|
||||
|
||||
// Cleat
|
||||
event.recipes.gtceu.assembler('tfg:firmaciv/cleat')
|
||||
.itemInputs('#forge:double_plates/steel')
|
||||
.circuit(14)
|
||||
.itemOutputs('firmaciv:cleat')
|
||||
.duration(75)
|
||||
.EUt(4)
|
||||
|
||||
// Compass
|
||||
event.recipes.gtceu.canner('tfg:firmaciv/compass')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue