Files
GregTech-Modern-Community-Pack/kubejs/server_scripts/tool_belt/recipes.js
mina 70744cfd93 script polishes
- removed crafting cover in recipes as it's uncraftable (ironic)
- fixed incorrect item names in storage drawer recipes
2023-12-22 22:56:44 +00:00

16 lines
449 B
JavaScript

ServerEvents.recipes((event) => {
event.remove({ id: "toolbelt:belt" });
event.shaped("toolbelt:belt", ["SLS", "C C", "LIL"], {
S: "minecraft:string",
L: "minecraft:leather",
I: "#forge:plates/steel",
C: "#forge:screws/steel",
});
event.remove({ id: "toolbelt:pouch" });
event.shaped("toolbelt:pouch", [" G ", "LSL", " "], {
G: "#forge:rings/gold",
L: "minecraft:leather",
S: "#forge:plates/steel",
});
});