update once more

This commit is contained in:
sillyangel
2024-12-30 18:57:02 -06:00
parent 3f3a1e69d4
commit 0480586663
71 changed files with 2122 additions and 1721 deletions

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_sword"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_nugget"
]
],
"rewards": {
"recipes": [
"nuggetmod:nugget_sword"
]
}
}

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_axe"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_nugget"
]
],
"rewards": {
"recipes": [
"nuggetmod:nugget_axe"
]
}
}

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_hoe"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_nugget"
]
],
"rewards": {
"recipes": [
"nuggetmod:nugget_hoe"
]
}
}

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_pickaxe"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_nugget"
]
],
"rewards": {
"recipes": [
"nuggetmod:nugget_pickaxe"
]
}
}

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_shovel"
},
"trigger": "minecraft:recipe_unlocked"
}
},
"requirements": [
[
"has_the_recipe",
"has_nugget"
]
],
"rewards": {
"recipes": [
"nuggetmod:nugget_shovel"
]
}
}

View File

@@ -0,0 +1,21 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"key": {
"A": {
"item": "nuggetmod:nugget"
},
"B": {
"item": "minecraft:stick"
}
},
"pattern": [
" AA",
" BA",
" B "
],
"result": {
"count": 1,
"id": "nuggetmod:nugget_axe"
}
}

View File

@@ -0,0 +1,21 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"key": {
"A": {
"item": "nuggetmod:nugget"
},
"B": {
"item": "minecraft:stick"
}
},
"pattern": [
" AA",
" B ",
" B "
],
"result": {
"count": 1,
"id": "nuggetmod:nugget_hoe"
}
}

View File

@@ -0,0 +1,21 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"key": {
"A": {
"item": "nuggetmod:nugget"
},
"B": {
"item": "minecraft:stick"
}
},
"pattern": [
"AAA",
" B ",
" B "
],
"result": {
"count": 1,
"id": "nuggetmod:nugget_pickaxe"
}
}

View File

@@ -0,0 +1,21 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"key": {
"A": {
"item": "nuggetmod:nugget"
},
"B": {
"item": "minecraft:stick"
}
},
"pattern": [
" A ",
" B ",
" B "
],
"result": {
"count": 1,
"id": "nuggetmod:nugget_shovel"
}
}

View File

@@ -0,0 +1,21 @@
{
"type": "minecraft:crafting_shaped",
"category": "equipment",
"key": {
"A": {
"item": "nuggetmod:nugget"
},
"B": {
"item": "minecraft:stick"
}
},
"pattern": [
" A ",
" A ",
" B "
],
"result": {
"count": 1,
"id": "nuggetmod:nugget_sword"
}
}

View File

@@ -0,0 +1,8 @@
{
"remove": [
"#nuggetmod:needs_nugget_tool"
],
"values": [
"#minecraft:incorrect_for_diamond_tool"
]
}

View File

@@ -0,0 +1,6 @@
{
"values": [
"nuggetmod:raw_nugget_block",
"#minecraft:needs_diamond_tool"
]
}