cleanup scripts for launch

fixed syntax + unified unnecessary files
This commit is contained in:
mina
2023-12-17 22:42:58 +00:00
parent 1012487e69
commit efdda8cedd
35 changed files with 922 additions and 828 deletions

View File

@@ -13,14 +13,18 @@ ServerEvents.recipes((event) => {
const plants = [
["minecraft:pumpkin_seeds", "minecraft:pumpkin", 6],
["minecraft:beetroot_seeds", "minecraft:beetroot", 16],
["minecraft:sweet_berries", "minecraft:sweet_berries", 16],
["minecraft:glow_berries", "minecraft:glow_berries", 8],
["minecraft:wheat_seeds", "minecraft:wheat", 16],
["minecraft:melon_seeds", "minecraft:melon", 6],
["minecraft:carrot", "minecraft:carrot", 12],
["minecraft:sugar_cane", "minecraft:sugar_cane", 12],
["minecraft:kelp", "minecraft:kelp", 12],
["minecraft:cactus", "minecraft:cactus", 12],
["minecraft:brown_mushroom", "minecraft:brown_mushroom", 12],
["minecraft:red_mushroom", "minecraft:red_mushroom", 12],
["minecraft:nether_wart", "minecraft:nether_wart", 12],
["minecraft:bamboo", "minecraft:bamboo", 16],
];
event.shaped("gtceu:greenhouse", ["GGG", "CHC", "PUP"], {
@@ -35,20 +39,20 @@ ServerEvents.recipes((event) => {
.greenhouse(woodType[0])
.notConsumable(woodType[0])
.inputFluids("water 1000")
.itemOutputs("64x " + woodType[1], "6x " + woodType[0])
.itemOutputs(`64x ${woodType[1]}`, `6x ${woodType[0]}`)
.duration(1200)
.EUt(40)
.circuit(1);
greg
.greenhouse(woodType[0] + "_fertiliser")
.greenhouse(`${woodType[0]}_fertiliser`)
.notConsumable(woodType[0])
.itemInputs("4x gtceu:fertilizer")
.inputFluids("water 1000")
.itemOutputs(
"64x " + woodType[1],
"64x " + woodType[1],
"12x " + woodType[0]
`64x ${woodType[1]}`,
`64x ${woodType[1]}`,
`12x ${woodType[0]}`
)
.duration(900)
.EUt(60)
@@ -60,7 +64,7 @@ ServerEvents.recipes((event) => {
.greenhouse(seedType[0])
.notConsumable(seedType[0])
.inputFluids("water 1000")
.itemOutputs(seedType[2] + "x " + seedType[1])
.itemOutputs(`${seedType[2]}x ${seedType[1]}`)
.duration(1200)
.EUt(40)
.circuit(1);
@@ -69,7 +73,7 @@ ServerEvents.recipes((event) => {
.notConsumable(seedType[0])
.itemInputs("4x gtceu:fertilizer")
.inputFluids("water 1000")
.itemOutputs(2 * seedType[2] + "x " + seedType[1])
.itemOutputs(`${2 * seedType[2]}x ${seedType[1]}`)
.duration(900)
.EUt(60)
.circuit(2);