added kelpstack

This commit is contained in:
2020-10-22 22:14:38 +02:00
parent 0ad57c251b
commit 1a7e5ca02a
15 changed files with 115 additions and 1 deletions

View File

@ -0,0 +1,7 @@
{
"variants": {
"": {
"model": "quickiefabric:block/kelpstack"
}
}
}

View File

@ -38,6 +38,7 @@
"block.quickiefabric.lavahoarder": "Lavasauger",
"block.quickiefabric.itemhoarder": "Itemsauger",
"block.quickiefabric.monsterhoarder": "Monstersauger",
"block.quickiefabric.kelpstack": "Seegrassbündel",
"container.quickiefabric.backpack": "Rucksack",
"msg.buildingplan.start": "beginne Konstruktionsaufnahme bei %s,%s,%s",
"msg.buildingplan.end": "beende Konstruktionsaufnahme bei %s,%s,%s",

View File

@ -38,6 +38,7 @@
"block.quickiefabric.lavahoarder": "lava hoarder",
"block.quickiefabric.itemhoarder": "item hoarder",
"block.quickiefabric.monsterhoarder": "monster hoarder",
"block.quickiefabric.kelpstack": "kelp bundle",
"container.quickiefabric.backpack": "backpack",
"msg.buildingplan.start": "started recording of construction at %s,%s,%s",
"msg.buildingplan.end": "finished recording of construction at %s,%s,%s",

View File

@ -0,0 +1,25 @@
{
"parent": "block/block",
"textures": {
"particle": "quickiefabric:block/kelpstack_side",
"down": "quickiefabric:block/kelpstack_bottom",
"up": "quickiefabric:block/kelpstack_top",
"north": "quickiefabric:block/kelpstack_side",
"east": "quickiefabric:block/kelpstack_side",
"south": "quickiefabric:block/kelpstack_side",
"west": "quickiefabric:block/kelpstack_side"
},
"elements": [
{ "from": [ 0, 0, 0 ],
"to": [ 16, 16, 16 ],
"faces": {
"down": { "texture": "#down", "cullface": "down" },
"up": { "texture": "#up", "cullface": "up" },
"north": { "texture": "#north", "cullface": "north" },
"south": { "uv": [16, 0, 0, 16], "texture": "#south", "cullface": "south" },
"west": { "texture": "#west", "cullface": "west" },
"east": { "uv": [16, 0, 0, 16], "texture": "#east", "cullface": "east" }
}
}
]
}

View File

@ -0,0 +1,10 @@
{
"parent": "quickiefabric:block/kelpstack",
"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: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

View File

@ -0,0 +1,9 @@
{
"type": "minecraft:campfire_cooking",
"ingredient": {
"item": "quickiefabric:kelpstack"
},
"result": "minecraft:dried_kelp_block",
"experience": 0.9,
"cookingtime": 615
}

View File

@ -0,0 +1,9 @@
{
"type": "minecraft:smoking",
"ingredient": {
"item": "quickiefabric:kelpstack"
},
"result": "minecraft:dried_kelp_block",
"experience": 0,
"cookingtime": 100
}

View File

@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"kkk",
"kkk",
"kkk"
],
"key": {
"k": {
"item": "minecraft:kelp"
}
},
"result": {
"item": "quickiefabric:kelpstack",
"count": 1
}
}