file upload

meat of the pack
This commit is contained in:
mina
2023-09-04 14:34:19 +01:00
parent 02473111e4
commit f49f5e9c50
163 changed files with 19679 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
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"
})
})