added bag (chest functionality only)

This commit is contained in:
2022-01-14 19:59:51 +01:00
parent 130d258ada
commit 033823d036
15 changed files with 169 additions and 40 deletions

View File

@ -29,6 +29,7 @@
"item.quickiefabric.backpack_orange": "orangener Rucksack",
"item.quickiefabric.backpack_purple": "lilaner Rucksack",
"item.quickiefabric.backpack_lightblue": "hellblauer Rucksack",
"item.quickiefabric.bag": "Beutel",
"item.quickiefabric.rotten_flesh_stripes": "geschnittenes Gammelfleisch",
"item.quickiefabric.carrotstack": "Karottenbündel",
"item.quickiefabric.cotton": "Baumwolle",

View File

@ -29,6 +29,7 @@
"item.quickiefabric.backpack_orange": "orange backpack",
"item.quickiefabric.backpack_purple": "purple backpack",
"item.quickiefabric.backpack_lightblue": "light blue backpack",
"item.quickiefabric.bag": "bag",
"item.quickiefabric.rotten_flesh_stripes": "rotten flesh stripes",
"item.quickiefabric.carrotstack": "a bundle of carrots",
"item.quickiefabric.cotton": "cotton",

View File

@ -0,0 +1,7 @@
{
"parent": "item/generated",
"textures": {
"layer0": "quickiefabric:item/bag_empty",
"layer1": "quickiefabric:item/bag_full"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 744 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 781 B

View File

@ -0,0 +1,16 @@
{
"type": "crafting_shaped",
"pattern": [
" ",
"c c",
" c "
],
"key": {
"c": {
"item": "minecraft:wheat"
}
},
"result": {
"item": "quickiefabric:bag"
}
}