gravel.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "type": "minecraft:block",
  3. "pools": [
  4. {
  5. "rolls": 1,
  6. "entries": [
  7. {
  8. "type": "minecraft:alternatives",
  9. "children": [
  10. {
  11. "type": "minecraft:item",
  12. "conditions": [
  13. {
  14. "condition": "minecraft:match_tool",
  15. "predicate": {
  16. "enchantments": [
  17. {
  18. "enchantment": "minecraft:silk_touch",
  19. "levels": {
  20. "min": 1
  21. }
  22. }
  23. ]
  24. }
  25. }
  26. ],
  27. "name": "minecraft:gravel"
  28. },
  29. {
  30. "type": "minecraft:alternatives",
  31. "conditions": [
  32. {
  33. "condition": "minecraft:survives_explosion"
  34. }
  35. ],
  36. "children": [
  37. {
  38. "type": "minecraft:item",
  39. "conditions": [
  40. {
  41. "condition": "minecraft:table_bonus",
  42. "enchantment": "minecraft:fortune",
  43. "chances": [
  44. 0.1,
  45. 0.14285715,
  46. 0.25,
  47. 1.0
  48. ]
  49. }
  50. ],
  51. "name": "minecraft:flint"
  52. },
  53. {
  54. "type": "minecraft:item",
  55. "name": "minecraft:gravel"
  56. }
  57. ]
  58. }
  59. ]
  60. }
  61. ]
  62. }
  63. ]
  64. }