script polishes

- removed crafting cover in recipes as it's uncraftable (ironic)
- fixed incorrect item names in storage drawer recipes
This commit is contained in:
mina
2023-12-22 22:56:44 +00:00
parent 9178b1de5c
commit 70744cfd93
46 changed files with 2099 additions and 2059 deletions

View File

@@ -1,15 +1,15 @@
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",
});
});
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",
});
});