export into cf form

github is now legible for other people (hooray)
This commit is contained in:
mina
2023-12-18 00:36:29 +00:00
parent eb9917b91e
commit ae57cbe9b9
123 changed files with 1067 additions and 130 deletions

View File

@@ -1,44 +0,0 @@
ServerEvents.recipes((event) => {
const greg = event.recipes.gtceu;
const dyes = [
"white",
"orange",
"magenta",
"light_blue",
"yellow",
"lime",
"pink",
"gray",
"light_gray",
"cyan",
"purple",
"blue",
"brown",
"green",
"red",
"black",
];
event.remove({ mod: "elevatorid" });
dyes.forEach((dyes) => {
greg
.chemical_bath(`${dyes}_elevator`)
.itemInputs("#elevatorid:elevators")
.inputFluids(`gtceu:${dyes}_dye 18"`)
.itemOutputs(`elevatorid:elevator_${dyes}`)
.duration(20)
.EUt(7);
});
greg
.chemical_bath("elevator_washing")
.itemInputs("#elevatorid:elevators")
.inputFluids("gtceu:chlorine 50")
.itemOutputs("elevatorid:elevator_gray")
.duration(400)
.EUt(2);
event.shaped("elevatorid:elevator_gray", ["PPP", "GFG", "PPP"], {
P: "#forge:plates/steel",
G: "#forge:gears/small/steel",
F: "#forge:frames/steel",
});
});