Added alloy smelter recipes for jar lids (#2705)
* added alloy smelter recipes for jar lids Signed-off-by: thederpysockdude123 <thederpysockdude123@gmail.com> * remove TFC jar lid anvil recipe Signed-off-by: thederpysockdude123 <thederpysockdude123@gmail.com> * Update recipes.js Signed-off-by: thederpysockdude123 <thederpysockdude123@gmail.com> * new jar lid recipe Signed-off-by: thederpysockdude123 <thederpysockdude123@gmail.com> * recipes changed for consistency Signed-off-by: thederpysockdude123 <thederpysockdude123@gmail.com> * Update recipes.metals.js Signed-off-by: thederpysockdude123 <thederpysockdude123@gmail.com> * Update recipes.metals.js Signed-off-by: thederpysockdude123 <thederpysockdude123@gmail.com> * Update recipes.metals.js Signed-off-by: thederpysockdude123 <thederpysockdude123@gmail.com> * Update recipes.removes.js Signed-off-by: thederpysockdude123 <thederpysockdude123@gmail.com> --------- Signed-off-by: thederpysockdude123 <thederpysockdude123@gmail.com> Co-authored-by: Redeix <redeix.m@gmail.com>
This commit is contained in:
parent
7636a38223
commit
17be437196
1 changed files with 21 additions and 3 deletions
|
|
@ -56,7 +56,7 @@ const registerFirmaLifeRecipes = (event) => {
|
||||||
|
|
||||||
// Декрафт Jag Lid
|
// Декрафт Jag Lid
|
||||||
event.recipes.tfc.heating('tfc:jar_lid', 230)
|
event.recipes.tfc.heating('tfc:jar_lid', 230)
|
||||||
.resultFluid(Fluid.of('gtceu:tin', 9))
|
.resultFluid(Fluid.of('gtceu:tin', 6))
|
||||||
.id(`tfc:heating/jar_lid`)
|
.id(`tfc:heating/jar_lid`)
|
||||||
|
|
||||||
// Pie Pan
|
// Pie Pan
|
||||||
|
|
@ -84,15 +84,24 @@ const registerFirmaLifeRecipes = (event) => {
|
||||||
|
|
||||||
// Jar Lid
|
// Jar Lid
|
||||||
event.recipes.gtceu.fluid_solidifier(`tfg:firmalife/jar_lid`)
|
event.recipes.gtceu.fluid_solidifier(`tfg:firmalife/jar_lid`)
|
||||||
.inputFluids(Fluid.of('gtceu:tin', 9))
|
.inputFluids(Fluid.of('gtceu:tin', 6))
|
||||||
.notConsumable('gtceu:cylinder_casting_mold')
|
.notConsumable('gtceu:cylinder_casting_mold')
|
||||||
.itemOutputs('tfc:jar_lid')
|
.itemOutputs('tfc:jar_lid')
|
||||||
.duration(50)
|
.duration(50)
|
||||||
.EUt(7)
|
.EUt(7)
|
||||||
|
|
||||||
|
event.recipes.gtceu.alloy_smelter('tfg:firmalife/jar_lid')
|
||||||
|
.itemInputs('1x #forge:ingots/tin')
|
||||||
|
.notConsumable('gtceu:cylinder_casting_mold')
|
||||||
|
.itemOutputs('24x tfc:jar_lid')
|
||||||
|
.duration(75)
|
||||||
|
.category(GTRecipeCategories.INGOT_MOLDING)
|
||||||
|
.EUt(4)
|
||||||
|
.addMaterialInfo(true)
|
||||||
|
|
||||||
event.recipes.gtceu.extractor('tfc:jar_lid_extraction')
|
event.recipes.gtceu.extractor('tfc:jar_lid_extraction')
|
||||||
.itemInputs('tfc:jar_lid')
|
.itemInputs('tfc:jar_lid')
|
||||||
.outputFluids(Fluid.of('gtceu:tin', 9))
|
.outputFluids(Fluid.of('gtceu:tin', 6))
|
||||||
.duration(50)
|
.duration(50)
|
||||||
.category(GTRecipeCategories.EXTRACTOR_RECYCLING)
|
.category(GTRecipeCategories.EXTRACTOR_RECYCLING)
|
||||||
.EUt(2)
|
.EUt(2)
|
||||||
|
|
@ -103,6 +112,15 @@ const registerFirmaLifeRecipes = (event) => {
|
||||||
.itemOutputs('firmalife:stainless_steel_jar_lid')
|
.itemOutputs('firmalife:stainless_steel_jar_lid')
|
||||||
.duration(50)
|
.duration(50)
|
||||||
.EUt(7)
|
.EUt(7)
|
||||||
|
|
||||||
|
event.recipes.gtceu.alloy_smelter('tfg:firmalife/stainless_steel_jar_lid')
|
||||||
|
.itemInputs('1x #forge:ingots/stainless_steel')
|
||||||
|
.notConsumable('gtceu:cylinder_casting_mold')
|
||||||
|
.itemOutputs('48x firmalife:stainless_steel_jar_lid')
|
||||||
|
.duration(75)
|
||||||
|
.category(GTRecipeCategories.INGOT_MOLDING)
|
||||||
|
.EUt(4)
|
||||||
|
.addMaterialInfo(true)
|
||||||
|
|
||||||
event.recipes.gtceu.extractor('firmalife:stainless_steel_jar_extraction')
|
event.recipes.gtceu.extractor('firmalife:stainless_steel_jar_extraction')
|
||||||
.itemInputs('firmalife:stainless_steel_jar_lid')
|
.itemInputs('firmalife:stainless_steel_jar_lid')
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue