added item hoarder

This commit is contained in:
Jottyfan
2024-06-10 20:08:51 +02:00
parent 80e979d059
commit 99668e129d
10 changed files with 313 additions and 0 deletions

View File

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "quickiemod:block/itemhoarder"
}
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "block/cube_all",
"textures": {
"all": "quickiemod:block/itemhoarder"
}
}

View File

@ -0,0 +1,10 @@
{
"parent": "quickiemod:block/itemhoarder",
"display": {
"thirdperson": {
"rotation": [ 10, -45, 170 ],
"translation": [ 0, 1.5, -2.75 ],
"scale": [ 0.375, 0.375, 0.375 ]
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"ooo",
"oso",
"ooo"
],
"key": {
"o": {
"item": "quickiemod:speedpowder"
},
"s": {
"item": "minecraft:barrel"
}
},
"result": {
"id": "quickiemod:itemhoarder",
"count": 1
}
}

View File

@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"ooo",
"oso",
"ooo"
],
"key": {
"o": {
"item": "quickiemod:speedpowder"
},
"s": {
"item": "minecraft:chest"
}
},
"result": {
"id": "quickiemod:itemhoarder",
"count": 1
}
}