Pushing recent 0.9 alpha feedback (#877)
Signed-off-by: Redeix <59435925+Redeix@users.noreply.github.com> Co-authored-by: Redeix <59435925+Redeix@users.noreply.github.com>
This commit is contained in:
parent
fe127e7fd3
commit
b9f3c51407
57 changed files with 2270 additions and 1406 deletions
|
|
@ -47,6 +47,7 @@ const registerFirmaLifeRecipes = (event) => {
|
|||
event.remove({ id: 'firmalife:heating/metal/chromium_block_stairs' })
|
||||
|
||||
// - Stainless Steel
|
||||
event.remove({ id: 'firmalife:alloy/stainless_steel' })
|
||||
|
||||
// Ingot
|
||||
event.remove({ id: 'firmalife:casting/stainless_steel_ingot' })
|
||||
|
|
@ -67,10 +68,10 @@ const registerFirmaLifeRecipes = (event) => {
|
|||
|
||||
// Rod
|
||||
event.remove({ id: 'firmalife:anvil/stainless_steel_rod' })
|
||||
event.remove({ id: 'firmalife:heating/metal/stainless_steel_rod' })
|
||||
event.remove({ id: 'firmalife:heating/stainless_steel_rod' })
|
||||
|
||||
// Jar lid
|
||||
event.remove({ id: 'firmalife:heating/metal/stainless_steel_jar_lid' })
|
||||
event.remove({ id: 'firmalife:heating/stainless_steel_jar_lid' })
|
||||
|
||||
// Plated Blocks
|
||||
event.remove({ id: 'firmalife:crafting/crafting/metal/block/stainless_steel' })
|
||||
|
|
@ -111,13 +112,32 @@ const registerFirmaLifeRecipes = (event) => {
|
|||
}).id('firmalife:crafting/vat')
|
||||
|
||||
// Jar Lid
|
||||
event.recipes.gtceu.assembler(`tfg:firmalife/jar_lid`)
|
||||
.itemInputs('#forge:ingots/tin')
|
||||
.circuit(7)
|
||||
.itemOutputs('16x tfc:jar_lid')
|
||||
event.recipes.gtceu.fluid_solidifier(`tfg:firmalife/jar_lid`)
|
||||
.inputFluids(Fluid.of('gtceu:tin', 9))
|
||||
.notConsumable('gtceu:cylinder_casting_mold')
|
||||
.itemOutputs('tfc:jar_lid')
|
||||
.duration(50)
|
||||
.EUt(7)
|
||||
|
||||
event.recipes.gtceu.extractor('tfc:jar_lid_extraction')
|
||||
.itemInputs('tfc:jar_lid')
|
||||
.outputFluids(Fluid.of('gtceu:tin', 9))
|
||||
.duration(50)
|
||||
.EUt(2)
|
||||
|
||||
event.recipes.gtceu.fluid_solidifier(`firmalife:firmalife/stainless_steel_jar_lid`)
|
||||
.inputFluids(Fluid.of('gtceu:stainless_steel', 9))
|
||||
.notConsumable('gtceu:cylinder_casting_mold')
|
||||
.itemOutputs('firmalife:stainless_steel_jar_lid')
|
||||
.duration(50)
|
||||
.EUt(7)
|
||||
|
||||
event.recipes.gtceu.extractor('firmalife:stainless_steel_jar_extraction')
|
||||
.itemInputs('firmalife:stainless_steel_jar_lid')
|
||||
.outputFluids(Fluid.of('gtceu:stainless_steel', 9))
|
||||
.duration(50)
|
||||
.EUt(2)
|
||||
|
||||
// Pineapple Fiber
|
||||
event.recipes.gtceu.assembler(`tfg:firmalife/pineapple_fiber`)
|
||||
.itemInputs('firmalife:food/pineapple')
|
||||
|
|
@ -774,6 +794,8 @@ const registerFirmaLifeRecipes = (event) => {
|
|||
|
||||
// #endregion
|
||||
|
||||
// #region Smashed food
|
||||
|
||||
event.recipes.gtceu.forge_hammer('firmalife:soybean_paste')
|
||||
.itemInputs('firmalife:food/dehydrated_soybeans')
|
||||
.itemOutputs('firmalife:food/soybean_paste')
|
||||
|
|
@ -791,4 +813,13 @@ const registerFirmaLifeRecipes = (event) => {
|
|||
.itemOutputs('firmalife:food/smashed_white_grapes')
|
||||
.duration(20)
|
||||
.EUt(7)
|
||||
|
||||
// #endregion
|
||||
|
||||
// #region Drying mat alternatives
|
||||
|
||||
event.shaped('firmalife:drying_mat', ['AAA'], { A: 'tfc:plant/leafy_kelp' }).id('tfg:shaped/drying_mat_leafy_kelp')
|
||||
event.shaped('firmalife:drying_mat', ['AAA'], { A: 'tfc:plant/winged_kelp' }).id('tfg:shaped/drying_mat_winged_kelp')
|
||||
|
||||
// #endregion
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue