iron_nugget_from_blasting.json 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. {
  2. "parent": "minecraft:recipes/root",
  3. "rewards": {
  4. "recipes": [
  5. "minecraft:iron_nugget_from_blasting"
  6. ]
  7. },
  8. "criteria": {
  9. "has_iron_pickaxe": {
  10. "trigger": "minecraft:inventory_changed",
  11. "conditions": {
  12. "items": [
  13. {
  14. "item": "minecraft:iron_pickaxe"
  15. }
  16. ]
  17. }
  18. },
  19. "has_iron_shovel": {
  20. "trigger": "minecraft:inventory_changed",
  21. "conditions": {
  22. "items": [
  23. {
  24. "item": "minecraft:iron_shovel"
  25. }
  26. ]
  27. }
  28. },
  29. "has_iron_axe": {
  30. "trigger": "minecraft:inventory_changed",
  31. "conditions": {
  32. "items": [
  33. {
  34. "item": "minecraft:iron_axe"
  35. }
  36. ]
  37. }
  38. },
  39. "has_iron_hoe": {
  40. "trigger": "minecraft:inventory_changed",
  41. "conditions": {
  42. "items": [
  43. {
  44. "item": "minecraft:iron_hoe"
  45. }
  46. ]
  47. }
  48. },
  49. "has_iron_sword": {
  50. "trigger": "minecraft:inventory_changed",
  51. "conditions": {
  52. "items": [
  53. {
  54. "item": "minecraft:iron_sword"
  55. }
  56. ]
  57. }
  58. },
  59. "has_iron_helmet": {
  60. "trigger": "minecraft:inventory_changed",
  61. "conditions": {
  62. "items": [
  63. {
  64. "item": "minecraft:iron_helmet"
  65. }
  66. ]
  67. }
  68. },
  69. "has_iron_chestplate": {
  70. "trigger": "minecraft:inventory_changed",
  71. "conditions": {
  72. "items": [
  73. {
  74. "item": "minecraft:iron_chestplate"
  75. }
  76. ]
  77. }
  78. },
  79. "has_iron_leggings": {
  80. "trigger": "minecraft:inventory_changed",
  81. "conditions": {
  82. "items": [
  83. {
  84. "item": "minecraft:iron_leggings"
  85. }
  86. ]
  87. }
  88. },
  89. "has_iron_boots": {
  90. "trigger": "minecraft:inventory_changed",
  91. "conditions": {
  92. "items": [
  93. {
  94. "item": "minecraft:iron_boots"
  95. }
  96. ]
  97. }
  98. },
  99. "has_iron_horse_armor": {
  100. "trigger": "minecraft:inventory_changed",
  101. "conditions": {
  102. "items": [
  103. {
  104. "item": "minecraft:iron_horse_armor"
  105. }
  106. ]
  107. }
  108. },
  109. "has_chainmail_helmet": {
  110. "trigger": "minecraft:inventory_changed",
  111. "conditions": {
  112. "items": [
  113. {
  114. "item": "minecraft:chainmail_helmet"
  115. }
  116. ]
  117. }
  118. },
  119. "has_chainmail_chestplate": {
  120. "trigger": "minecraft:inventory_changed",
  121. "conditions": {
  122. "items": [
  123. {
  124. "item": "minecraft:chainmail_chestplate"
  125. }
  126. ]
  127. }
  128. },
  129. "has_chainmail_leggings": {
  130. "trigger": "minecraft:inventory_changed",
  131. "conditions": {
  132. "items": [
  133. {
  134. "item": "minecraft:chainmail_leggings"
  135. }
  136. ]
  137. }
  138. },
  139. "has_chainmail_boots": {
  140. "trigger": "minecraft:inventory_changed",
  141. "conditions": {
  142. "items": [
  143. {
  144. "item": "minecraft:chainmail_boots"
  145. }
  146. ]
  147. }
  148. },
  149. "has_the_recipe": {
  150. "trigger": "minecraft:recipe_unlocked",
  151. "conditions": {
  152. "recipe": "minecraft:iron_nugget_from_blasting"
  153. }
  154. }
  155. },
  156. "requirements": [
  157. [
  158. "has_iron_pickaxe",
  159. "has_iron_shovel",
  160. "has_iron_axe",
  161. "has_iron_hoe",
  162. "has_iron_sword",
  163. "has_iron_helmet",
  164. "has_iron_chestplate",
  165. "has_iron_leggings",
  166. "has_iron_boots",
  167. "has_iron_horse_armor",
  168. "has_chainmail_helmet",
  169. "has_chainmail_chestplate",
  170. "has_chainmail_leggings",
  171. "has_chainmail_boots",
  172. "has_the_recipe"
  173. ]
  174. ]
  175. }