Advertisement
Guest User

Blazes Drop Quartz

a guest
Apr 24th, 2017
407
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. {
  2. "pools": [
  3. {
  4. "rolls": 1,
  5. "conditions": [
  6. {
  7. "condition": "killed_by_player"
  8. }
  9. ],
  10. "entries": [
  11. {
  12. "type": "item",
  13. "weight": 1,
  14. "name": "minecraft:blaze_rod",
  15. "functions": [
  16. {
  17. "function": "set_count",
  18. "count": {
  19. "min": 0,
  20. "max": 1
  21. }
  22. },
  23. {
  24. "function": "looting_enchant",
  25. "count": {
  26. "min": 0,
  27. "max": 1
  28. }
  29. }
  30. ]
  31. }
  32. ]
  33. },
  34. {
  35. "rolls": 1,
  36. "entries": [
  37. {
  38. "type": "item",
  39. "weight": 1,
  40. "name": "minecraft:quartz",
  41. "conditions": [
  42. {
  43. "condition": "random_chance",
  44. "chance": 0.4
  45. },
  46. {
  47. "condition": "killed_by_player"
  48. }
  49. ],
  50. "functions": [
  51. {
  52. "function": "set_count",
  53. "count": {
  54. "min": 0,
  55. "max": 2
  56. }
  57. },
  58. {
  59. "function": "looting_enchant",
  60. "count": {
  61. "min": 0,
  62. "max": 1
  63. }
  64. }
  65. ]
  66. }
  67. ]
  68. },
  69. {
  70. "rolls": 1,
  71. "entries": [
  72. {
  73. "type": "item",
  74. "weight": 1,
  75. "name": "minecraft:quartz_ore",
  76. "conditions": [
  77. {
  78. "condition": "random_chance_with_looting",
  79. "chance": 0.025,
  80. "looting_multiplier": 0.01
  81. },
  82. {
  83. "condition": "killed_by_player"
  84. }
  85. ]
  86. }
  87. ]
  88. }
  89. ]
  90. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement