| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131 |
- {
- "parent": "minecraft:recipes/root",
- "rewards": {
- "recipes": [
- "minecraft:gold_nugget_from_smelting"
- ]
- },
- "criteria": {
- "has_golden_pickaxe": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "item": "minecraft:golden_pickaxe"
- }
- ]
- }
- },
- "has_golden_shovel": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "item": "minecraft:golden_shovel"
- }
- ]
- }
- },
- "has_golden_axe": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "item": "minecraft:golden_axe"
- }
- ]
- }
- },
- "has_golden_hoe": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "item": "minecraft:golden_hoe"
- }
- ]
- }
- },
- "has_golden_sword": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "item": "minecraft:golden_sword"
- }
- ]
- }
- },
- "has_golden_helmet": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "item": "minecraft:golden_helmet"
- }
- ]
- }
- },
- "has_golden_chestplate": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "item": "minecraft:golden_chestplate"
- }
- ]
- }
- },
- "has_golden_leggings": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "item": "minecraft:golden_leggings"
- }
- ]
- }
- },
- "has_golden_boots": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "item": "minecraft:golden_boots"
- }
- ]
- }
- },
- "has_golden_horse_armor": {
- "trigger": "minecraft:inventory_changed",
- "conditions": {
- "items": [
- {
- "item": "minecraft:golden_horse_armor"
- }
- ]
- }
- },
- "has_the_recipe": {
- "trigger": "minecraft:recipe_unlocked",
- "conditions": {
- "recipe": "minecraft:gold_nugget_from_smelting"
- }
- }
- },
- "requirements": [
- [
- "has_golden_pickaxe",
- "has_golden_shovel",
- "has_golden_axe",
- "has_golden_hoe",
- "has_golden_sword",
- "has_golden_helmet",
- "has_golden_chestplate",
- "has_golden_leggings",
- "has_golden_boots",
- "has_golden_horse_armor",
- "has_the_recipe"
- ]
- ]
- }
|