Adding the Large Solar Panel (#1275)
* Adding the Large Solar Panel * Update config for Ad Astral Solar increase possible output * fix conflict
This commit is contained in:
parent
b9741812e9
commit
044494ee8e
6 changed files with 121 additions and 3 deletions
|
|
@ -1264,4 +1264,26 @@ const registerGTCEURecipes = (event) => {
|
|||
});
|
||||
|
||||
//#endregion
|
||||
|
||||
//#region Chemical Reaction for Solar Panel
|
||||
|
||||
event.recipes.gtceu.chemical_reactor('tfg:chlorine_pentafluoride')
|
||||
.inputFluids(Fluid.of('gtceu:fluorine', 5000), Fluid.of('gtceu:chlorine', 1000))
|
||||
.outputFluids(Fluid.of('tfg:chlorine_pentafluoride', 1000))
|
||||
.duration(20*10)
|
||||
.EUt(GTValues.VA[GTValues.HV])
|
||||
|
||||
event.recipes.gtceu.chemical_reactor('tfg:chloryl_fluoride')
|
||||
.inputFluids(Fluid.of('tfg:chlorine_pentafluoride', 1000), Fluid.of('minecraft:water', 2000))
|
||||
.outputFluids(Fluid.of('tfg:chloryl_fluoride', 1000), Fluid.of('gtceu:hydrofluoric_acid', 4000))
|
||||
.duration(20*10)
|
||||
.EUt(GTValues.VA[GTValues.HV])
|
||||
|
||||
event.recipes.gtceu.large_chemical_reactor('tfg:solar_coolant')
|
||||
.inputFluids(Fluid.of('tfg:chloryl_fluoride', 3000), Fluid.of('gtceu:helium_3', 8000), Fluid.of('minecraft:water', 8000))
|
||||
.outputFluids(Fluid.of('tfg:solar_coolant', 1000), Fluid.of('gtceu:hydrofluoric_acid', 3000), Fluid.of('gtceu:hypochlorous_acid', 3000))
|
||||
.duration(20*10)
|
||||
.EUt(GTValues.VA[GTValues.EV])
|
||||
|
||||
//#endregion
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue