Files
GregTech-Modern-Community-Pack/kubejs/server_scripts/tool_belt/recipes.js
mina f49f5e9c50 file upload
meat of the pack
2023-09-04 14:34:19 +01:00

22 lines
439 B
JavaScript

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