tall_grass.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. "item": "minecraft:shears"
  17. }
  18. }
  19. ],
  20. "name": "minecraft:grass"
  21. },
  22. {
  23. "type": "minecraft:item",
  24. "conditions": [
  25. {
  26. "condition": "minecraft:survives_explosion"
  27. },
  28. {
  29. "condition": "minecraft:block_state_property",
  30. "block": "minecraft:tall_grass",
  31. "properties": {
  32. "half": "lower"
  33. }
  34. },
  35. {
  36. "condition": "minecraft:random_chance",
  37. "chance": 0.125
  38. }
  39. ],
  40. "name": "minecraft:wheat_seeds"
  41. }
  42. ]
  43. }
  44. ]
  45. }
  46. ]
  47. }