added plant ball recipes for misc plants #1886

added plant ball recipes and biomass recipes for moon/mars plants
This commit is contained in:
Pyritie 2025-10-04 14:59:35 +01:00
parent d2b26afb29
commit f6b0cd4d67

View file

@ -185,12 +185,30 @@ const registerGTCEURecipes = (event) => {
.duration(300)
.EUt(2)
event.recipes.gtceu.compressor('plant_ball_from_moon_plants')
.itemInputs('4x #tfg:moon_plants')
.itemOutputs('gtceu:plant_ball')
.duration(300)
.EUt(2)
event.recipes.gtceu.compressor('plant_ball_from_mars_plants')
.itemInputs('4x #tfg:mars_plants')
.itemOutputs('gtceu:plant_ball')
.duration(300)
.EUt(2)
event.recipes.gtceu.compressor('plant_ball_from_tfc_corals')
.itemInputs('4x #tfc:corals')
.itemOutputs('gtceu:plant_ball')
.duration(300)
.EUt(2)
event.recipes.gtceu.compressor('plant_ball_from_misc_plants')
.itemInputs('4x #createaddition:plants')
.itemOutputs('gtceu:plant_ball')
.duration(300)
.EUt(2)
//#endregion
//#region Выход: Биомасса
@ -218,6 +236,20 @@ const registerGTCEURecipes = (event) => {
.duration(100)
.EUt(3)
event.recipes.gtceu.brewery('biomass_from_moon_plants')
.itemInputs('#tfg:moon_plants')
.inputFluids("#tfc:any_water 20")
.outputFluids(Fluid.of('gtceu:biomass', 100))
.duration(100)
.EUt(3)
event.recipes.gtceu.brewery('biomass_from_mars_plants')
.itemInputs('#tfg:mars_plants')
.inputFluids("#tfc:any_water 20")
.outputFluids(Fluid.of('gtceu:biomass', 100))
.duration(100)
.EUt(3)
event.recipes.gtceu.brewery('biomass_from_tfc_corals')
.itemInputs('#tfc:corals')
.inputFluids("#tfc:any_water 20")