added drill stopper

This commit is contained in:
Jörg Henke
2021-01-09 12:26:56 +01:00
parent c70270758f
commit d5f33eaaa2
12 changed files with 81 additions and 2 deletions

View File

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

View File

@ -53,6 +53,7 @@
"block.quickiefabric.cottonplant": "Baumwollpflanze",
"block.quickiefabric.blocksulphor": "Schwefelblock",
"block.quickiefabric.drill": "Bohrer",
"block.quickiefabric.drillstop": "Bohrerstopper",
"container.quickiefabric.backpack": "Rucksack",
"msg.buildingplan.start": "beginne Konstruktionsaufnahme bei %s,%s,%s",
"msg.buildingplan.end": "beende Konstruktionsaufnahme bei %s,%s,%s",

View File

@ -53,6 +53,7 @@
"block.quickiefabric.cottonplant": "cotton plant",
"block.quickiefabric.blocksulphor": "block of sulfur",
"block.quickiefabric.drill": "drill",
"block.quickiefabric.drillstop": "drill stopper",
"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,6 @@
{
"parent": "block/cube_all",
"textures": {
"all": "quickiefabric:block/drillstop"
}
}

View File

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

View File

@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"sss",
"srs",
"sss"
],
"key": {
"s": {
"item": "quickiefabric:speedpowder"
},
"r": {
"item": "minecraft:obsidian"
}
},
"result": {
"item": "quickiefabric:drillstop",
"count": 1
}
}