Skip to content

Commit 2adac28

Browse files
authored
Add an alternate method to produce Glycerol (#2528)
1 parent 89fbb8b commit 2adac28

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

kubejs/server_scripts/processing_lines/sculk_bioalloy.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22
* Sculk Bioalloy processing line
33
*/
44
ServerEvents.recipes(event => {
5+
// Auxillary production method for Glycerol
6+
// IRL saponification also works, but in Moni we have no representative item for "fat" nor any use for "soap"
7+
event.recipes.gtceu.large_chemical_reactor("glycerol_from_sugar_hydrogenolysis")
8+
.notConsumable("gtceu:ultimet_rod")
9+
.itemInputs("4x minecraft:sugar")
10+
.chancedInput("gtceu:soda_ash_dust", 1000, 0)
11+
.inputFluids("gtceu:hydrogen 8000", "minecraft:water 1000")
12+
.outputFluids("gtceu:glycerol 4000")
13+
.duration(1600)
14+
.EUt(GTValues.VA[GTValues.HV])
15+
516
event.recipes.gtceu.mixer("experience_attuned_dust")
617
.itemInputs("7x gtceu:amethyst_dust", "2x gtceu:dark_soularium_dust", "4x gtceu:lapis_dust")
718
.itemOutputs("13x gtceu:experience_attuned_dust")

0 commit comments

Comments
 (0)