trying to add a block break callback

This commit is contained in:
2020-07-26 23:42:40 +02:00
parent e769b0f3d2
commit b2ce05e9bf
16 changed files with 679 additions and 23 deletions

View File

@ -0,0 +1,6 @@
{
"parent": "item/wooden_axe",
"textures": {
"layer0": "quickiefabric:item/speedpowderaxe"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 334 B

View File

@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"ss ",
"s| ",
" | "
],
"key": {
"s": {
"item": "quickiefabric:speedpowder"
},
"|": {
"item": "minecraft:stick"
}
},
"result": {
"item": "quickiefabric:speedpowderaxe",
"count": 1
}
}

View File

@ -0,0 +1,14 @@
{
"required": true,
"minVersion": "0.8",
"package": "de.jottyfan.minecraft.quickiefabric.event",
"compatibilityLevel": "JAVA_8",
"mixins": [
"BlockBreakMixin"
],
"client": [
],
"injectors": {
"defaultRequire": 1
}
}