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,57 @@
ServerEvents.recipes((event) => {
// Building Tool
event.remove({ output: "buildinggadgets2:gadget_building" });
event.shaped("buildinggadgets2:gadget_building", ["PLP", "DCD", "PKP"], {
P: "#forge:plates/steel",
L: "#forge:plates/lapis",
D: "#forge:plates/diamond",
C: "#forge:circuits/lv",
K: "gtceu:tin_single_cable",
});
// Exchanging Tool
event.remove({ output: "buildinggadgets2:gadget_exchanging" });
event.shaped("buildinggadgets2:gadget_exchanging", ["PLP", "DCD", "PKP"], {
P: "#forge:plates/steel",
L: "#forge:plates/gold",
D: "#forge:plates/diamond",
C: "#forge:circuits/lv",
K: "gtceu:tin_single_cable",
});
// Copy-paste Tool
event.remove({ output: "buildinggadgets2:gadget_copy_paste" });
event.shaped("buildinggadgets2:gadget_copy_paste", ["PLP", "DCD", "PKP"], {
P: "#forge:plates/steel",
L: "#forge:plates/redstone",
D: "#forge:plates/emerald",
C: "#forge:circuits/lv",
K: "gtceu:tin_single_cable",
});
// Template Manager
event.remove({ output: "buildinggadgets2:template_manager" });
event.shaped("buildinggadgets2:template_manager", ["KCK", "CHC", "KCK"], {
K: "gtceu:tin_single_cable",
C: "#forge:circuits/lv",
H: "gtceu:lv_machine_hull",
});
// Destruction Gadget
event.remove({ output: "buildinggadgets2:gadget_destruction" });
event.shaped("buildinggadgets2:gadget_destruction", ["PLP", "DCD", "PKP"], {
P: "#forge:plates/aluminium",
L: "#forge:plates/nether_quartz",
D: "#forge:plates/ender_pearl",
C: "#forge:circuits/mv",
K: "gtceu:copper_single_cable",
});
// Cut 'n' Paste Gadget
event.remove({ output: "buildinggadgets2:gadget_cut_paste" });
event.shaped("buildinggadgets2:gadget_cut_paste", ["PLP", "DCD", "PKP"], {
P: "#forge:plates/aluminium",
L: "#forge:plates/lapis",
D: "gtceu:iron_buzz_saw_blade",
C: "#forge:circuits/mv",
K: "gtceu:copper_single_cable",
});
});