Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.11 KB | None | 0 0
  1. {
  2. "pools": [
  3. {
  4. "rolls": {
  5. "min": 2,
  6. "max": 4
  7. },
  8. "entries": [
  9. {
  10. "type": "item",
  11. "weight": 5,
  12. "name": "minecraft:stone_pickaxe",
  13. "functions": [
  14. {
  15. "function": "set_damage",
  16. "damage": {
  17. "min": 0.4,
  18. "max": 0.6
  19. }
  20. },
  21. {
  22. "function": "set_nbt",
  23. "tag": "{CanDestroy:[\"minecraft:coal_ore\",\"minecraft:iron_ore\"]}"
  24. }
  25. ]
  26. },
  27. {
  28. "type": "item",
  29. "weight": 5,
  30. "name": "minecraft:stone_pickaxe",
  31. "functions": [
  32. {
  33. "function": "set_damage",
  34. "damage": {
  35. "min": 0.3,
  36. "max": 0.5
  37. }
  38. },
  39. {
  40. "function": "set_nbt",
  41. "tag": "{CanDestroy:[\"minecraft:coal_ore\",\"minecraft:iron_ore\"]}"
  42. }
  43. ]
  44. },
  45. {
  46. "type": "item",
  47. "weight": 2,
  48. "name": "minecraft:iron_pickaxe",
  49. "functions": [
  50. {
  51. "function": "set_damage",
  52. "damage": {
  53. "min": 0.1,
  54. "max": 0.2
  55. }
  56. },
  57. {
  58. "function": "set_nbt",
  59. "tag": "{CanDestroy:[\"minecraft:coal_ore\"]}"
  60. }
  61. ]
  62. },
  63. {
  64. "type": "item",
  65. "weight": 2,
  66. "name": "minecraft:apple",
  67. "functions": [
  68. {
  69. "function": "set_count",
  70. "count": {
  71. "min": 1,
  72. "max": 3
  73. }
  74. }
  75. ]
  76. },
  77. {
  78. "type": "item",
  79. "weight": 2,
  80. "name": "minecraft:cooked_beef"
  81. },
  82. {
  83. "type": "item",
  84. "weight": 2,
  85. "name": "minecraft:bread"
  86. },
  87. {
  88. "type": "item",
  89. "weight": 2,
  90. "name": "minecraft:stone_sword",
  91. "functions": [
  92. {
  93. "function": "set_damage",
  94. "damage": {
  95. "min": 0.1,
  96. "max": 0.3
  97. }
  98. }
  99. ]
  100. },
  101. {
  102. "type": "item",
  103. "weight": 2,
  104. "name": "minecraft:stone_sword",
  105. "functions": [
  106. {
  107. "function": "set_damage",
  108. "damage": {
  109. "min": 0.1,
  110. "max": 0.4
  111. }
  112. },
  113. {
  114. "function": "set_count",
  115. "count": 1
  116. }
  117. ]
  118. },
  119. {
  120. "type": "item",
  121. "weight": 2,
  122. "name": "minecraft:iron_sword",
  123. "functions": [
  124. {
  125. "function": "set_damage",
  126. "damage": {
  127. "min": 0.1,
  128. "max": 0.3
  129. }
  130. },
  131. {
  132. "function": "set_count",
  133. "count": {
  134. "min": 1,
  135. "max": 2
  136. }
  137. },
  138. {
  139. "function": "set_nbt",
  140. "tag": "CanDestroy:[\"minecraft:iron_ore\",\"minecraft:coal_ore\",\"minecraft:lapis_ore\",\"minecraft:diamond_ore\",\"minecraft:redstone_ore\"]}"
  141. }
  142. ]
  143. }
  144. ]
  145. }
  146. ]
  147. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement