bottle labels can use any wax

This commit is contained in:
Pyritie 2025-07-05 13:19:55 +01:00
parent 0848393225
commit 91f6e7f9dd

View file

@ -143,17 +143,19 @@ const registerFirmaLifeRecipes = (event) => {
event.recipes.gtceu.assembler('firmalife:cork') event.recipes.gtceu.assembler('firmalife:cork')
.itemInputs('firmalife:treated_lumber') .itemInputs('firmalife:treated_lumber')
.inputFluids(Fluid.of('tfc:limewater',1000)) .inputFluids(Fluid.of('tfc:limewater', 1000))
.itemOutputs('8x firmalife:cork') .itemOutputs('8x firmalife:cork')
.duration(300) .duration(300)
.EUt(GTValues.VA[GTValues.ULV]) .EUt(GTValues.VA[GTValues.ULV])
event.recipes.gtceu.assembler('firmalife:bottle_label') event.recipes.gtceu.assembler('firmalife:bottle_label')
.itemInputs('#forge:wax','minecraft:paper') .itemInputs('#forge:wax', 'minecraft:paper')
.itemOutputs('16x firmalife:bottle_label') .itemOutputs('16x firmalife:bottle_label')
.duration(30) .duration(30)
.EUt(GTValues.VA[GTValues.ULV]) .EUt(GTValues.VA[GTValues.ULV])
event.replaceInput({ id: 'firmalife:crafting/bottle_label' }, 'firmalife:beeswax', '#forge:wax')
//#endregion //#endregion
// TODO: Не работает потому что грегтех // TODO: Не работает потому что грегтех
@ -174,7 +176,7 @@ const registerFirmaLifeRecipes = (event) => {
'firmalife:treated_wood_greenhouse_wall', 'firmalife:treated_wood_greenhouse_wall',
'#forge:tiny_fluid_pipes/copper' '#forge:tiny_fluid_pipes/copper'
]) ])
.id('firmalife:crafting/greenhouse/treated_wood_greenhouse_port') .id('firmalife:crafting/greenhouse/treated_wood_greenhouse_port')
//#endregion Treated Wood //#endregion Treated Wood
@ -259,7 +261,7 @@ const registerFirmaLifeRecipes = (event) => {
'firmalife:copper_greenhouse_wall', 'firmalife:copper_greenhouse_wall',
'#forge:tiny_fluid_pipes/copper' '#forge:tiny_fluid_pipes/copper'
]) ])
.id('firmalife:crafting/greenhouse/copper_greenhouse_port') .id('firmalife:crafting/greenhouse/copper_greenhouse_port')
//#endregion //#endregion
@ -337,7 +339,7 @@ const registerFirmaLifeRecipes = (event) => {
'firmalife:iron_greenhouse_wall', 'firmalife:iron_greenhouse_wall',
'#forge:tiny_fluid_pipes/copper' '#forge:tiny_fluid_pipes/copper'
]) ])
.id('firmalife:crafting/greenhouse/iron_greenhouse_port') .id('firmalife:crafting/greenhouse/iron_greenhouse_port')
//#endregion //#endregion
@ -411,7 +413,7 @@ const registerFirmaLifeRecipes = (event) => {
'firmalife:stainless_steel_greenhouse_wall', 'firmalife:stainless_steel_greenhouse_wall',
'#forge:tiny_fluid_pipes/copper' '#forge:tiny_fluid_pipes/copper'
]) ])
.id('firmalife:crafting/greenhouse/stainless_steel_greenhouse_port') .id('firmalife:crafting/greenhouse/stainless_steel_greenhouse_port')
//#endregion //#endregion
@ -490,21 +492,21 @@ const registerFirmaLifeRecipes = (event) => {
event.recipes.gtceu.mixer('sugar_water') event.recipes.gtceu.mixer('sugar_water')
.itemInputs('#tfc:sweetener') .itemInputs('#tfc:sweetener')
.inputFluids(JsonIO.of({ amount: 1000, value: { tag: "tfg:clean_water" }})) .inputFluids(JsonIO.of({ amount: 1000, value: { tag: "tfg:clean_water" } }))
.outputFluids(Fluid.of('firmalife:sugar_water', 500)) .outputFluids(Fluid.of('firmalife:sugar_water', 500))
.circuit(5) .circuit(5)
.EUt(GTValues.VA[GTValues.ULV]) .EUt(GTValues.VA[GTValues.ULV])
.duration(200) .duration(200)
event.recipes.firmalife.mixing_bowl() event.recipes.firmalife.mixing_bowl()
.itemIngredients(['#tfg:wood_dusts', 'tfc:glue']) .itemIngredients(['#tfg:wood_dusts', 'tfc:glue'])
.outputItem('tfg:chipboard_composite') .outputItem('tfg:chipboard_composite')
event.recipes.firmalife.mixing_bowl() event.recipes.firmalife.mixing_bowl()
.itemIngredients(['#tfg:wood_dusts', 'gtceu:sticky_resin']) .itemIngredients(['#tfg:wood_dusts', 'gtceu:sticky_resin'])
.outputItem('tfg:chipboard_composite') .outputItem('tfg:chipboard_composite')
event.recipes.firmalife.mixing_bowl() event.recipes.firmalife.mixing_bowl()
.itemIngredients(['#tfg:wood_dusts', '#forge:wax']) .itemIngredients(['#tfg:wood_dusts', '#forge:wax'])
.outputItem('tfg:chipboard_composite') .outputItem('tfg:chipboard_composite')
} }