fabric stable 1.3.0+1.21.11

This commit is contained in:
2026-01-06 18:52:16 -06:00
parent 40c3543602
commit 3d03b68907
5 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
{
"model": {
"type": "minecraft:model",
"model": "nuggetmod:item/nugget_spear"
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/spear_in_hand",
"textures": {
"layer0": "nuggetmod:item/nugget_spear"
}
}

View File

@@ -0,0 +1,5 @@
{
"values": [
"nuggetmod:nugget_spear"
]
}

View File

@@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"criteria": {
"has_nugget": {
"conditions": {
"items": [
{
"items": "nuggetmod:nugget"
}
]
},
"trigger": "minecraft:inventory_changed"
},
"has_the_recipe": {
"conditions": {
"recipe": "nuggetmod:nugget_spear"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_nugget"
]
],
"rewards": {
"recipes": [
"nuggetmod:nugget_spear"
]
}
}

View File

@@ -0,0 +1,17 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"key": {
"N": "nuggetmod:nugget",
"S": "minecraft:stick"
},
"pattern": [
" N",
" S ",
"S "
],
"result": {
"count": 1,
"id": "nuggetmod:nugget_spear"
}
}