switched back to packwiz

This commit is contained in:
mina
2023-12-18 22:30:13 +00:00
parent 4cfad8f80f
commit 82187b695e
190 changed files with 1668 additions and 412 deletions

View File

@@ -0,0 +1,17 @@
ServerEvents.recipes((event) => {
const greg = event.recipes.gtceu;
let craftystorage = (componentSize, energyExponent) => {
event.remove({ output: `ae2:${componentSize}k_crafting_storage` });
greg
.canner(`gtceu:${componentSize}k_crafting_storage`)
.itemInputs("ae2:crafting_unit", `ae2:cell_component_${componentSize}k`)
.itemOutputs(`ae2:${componentSize}k_crafting_storage`)
.duration(100)
.EUt(4 ** (energyExponent - 1));
};
craftystorage("1", 1);
craftystorage("4", 2);
craftystorage("16", 3);
craftystorage("64", 4);
craftystorage("256", 5);
});