minecraft-assets/data/minecraft/advancements/recipes/misc/gold_nugget.json

46 lines
886 B
JSON

{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"minecraft:gold_nugget"
]
},
"criteria": {
"has_at_least_9_gold_nugget": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"item": "minecraft:gold_nugget",
"count": {
"min": 9
}
}
]
}
},
"has_gold_ingot": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"item": "minecraft:gold_ingot"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "minecraft:gold_nugget"
}
}
},
"requirements": [
[
"has_at_least_9_gold_nugget",
"has_gold_ingot",
"has_the_recipe"
]
]
}