gold_nugget_from_smelting.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. {
  2. "parent": "minecraft:recipes/root",
  3. "rewards": {
  4. "recipes": [
  5. "minecraft:gold_nugget_from_smelting"
  6. ]
  7. },
  8. "criteria": {
  9. "has_golden_pickaxe": {
  10. "trigger": "minecraft:inventory_changed",
  11. "conditions": {
  12. "items": [
  13. {
  14. "item": "minecraft:golden_pickaxe"
  15. }
  16. ]
  17. }
  18. },
  19. "has_golden_shovel": {
  20. "trigger": "minecraft:inventory_changed",
  21. "conditions": {
  22. "items": [
  23. {
  24. "item": "minecraft:golden_shovel"
  25. }
  26. ]
  27. }
  28. },
  29. "has_golden_axe": {
  30. "trigger": "minecraft:inventory_changed",
  31. "conditions": {
  32. "items": [
  33. {
  34. "item": "minecraft:golden_axe"
  35. }
  36. ]
  37. }
  38. },
  39. "has_golden_hoe": {
  40. "trigger": "minecraft:inventory_changed",
  41. "conditions": {
  42. "items": [
  43. {
  44. "item": "minecraft:golden_hoe"
  45. }
  46. ]
  47. }
  48. },
  49. "has_golden_sword": {
  50. "trigger": "minecraft:inventory_changed",
  51. "conditions": {
  52. "items": [
  53. {
  54. "item": "minecraft:golden_sword"
  55. }
  56. ]
  57. }
  58. },
  59. "has_golden_helmet": {
  60. "trigger": "minecraft:inventory_changed",
  61. "conditions": {
  62. "items": [
  63. {
  64. "item": "minecraft:golden_helmet"
  65. }
  66. ]
  67. }
  68. },
  69. "has_golden_chestplate": {
  70. "trigger": "minecraft:inventory_changed",
  71. "conditions": {
  72. "items": [
  73. {
  74. "item": "minecraft:golden_chestplate"
  75. }
  76. ]
  77. }
  78. },
  79. "has_golden_leggings": {
  80. "trigger": "minecraft:inventory_changed",
  81. "conditions": {
  82. "items": [
  83. {
  84. "item": "minecraft:golden_leggings"
  85. }
  86. ]
  87. }
  88. },
  89. "has_golden_boots": {
  90. "trigger": "minecraft:inventory_changed",
  91. "conditions": {
  92. "items": [
  93. {
  94. "item": "minecraft:golden_boots"
  95. }
  96. ]
  97. }
  98. },
  99. "has_golden_horse_armor": {
  100. "trigger": "minecraft:inventory_changed",
  101. "conditions": {
  102. "items": [
  103. {
  104. "item": "minecraft:golden_horse_armor"
  105. }
  106. ]
  107. }
  108. },
  109. "has_the_recipe": {
  110. "trigger": "minecraft:recipe_unlocked",
  111. "conditions": {
  112. "recipe": "minecraft:gold_nugget_from_smelting"
  113. }
  114. }
  115. },
  116. "requirements": [
  117. [
  118. "has_golden_pickaxe",
  119. "has_golden_shovel",
  120. "has_golden_axe",
  121. "has_golden_hoe",
  122. "has_golden_sword",
  123. "has_golden_helmet",
  124. "has_golden_chestplate",
  125. "has_golden_leggings",
  126. "has_golden_boots",
  127. "has_golden_horse_armor",
  128. "has_the_recipe"
  129. ]
  130. ]
  131. }