Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. {
  2. "block_pools" :
  3. [
  4. {
  5. "name": "Chisel Stone",
  6. "type":
  7. {
  8. "type": "block",
  9. "name": "minecraft:stone"
  10. },
  11. "clicktype": "rightclick",
  12. "properties":
  13. [
  14. {
  15. "type": "require_item",
  16. "name": "minecraft:iron_pickaxe"
  17. },
  18. {
  19. "type": "play_sound",
  20. "name": "minecraft:block.gravel.fall",
  21. "volume": 0.2
  22. },
  23. {
  24. "type": "spawn_particles",
  25. "name": "crit",
  26. "amount": 1
  27. },
  28. {
  29. "type": "swing_hand"
  30. },
  31. {
  32. "type": "damage_item",
  33. "amount": 1.0,
  34. "chance": 100.0
  35. },
  36. {
  37. "type": "clicks_per_time",
  38. "amount": 1,
  39. "time": 5
  40. },
  41. {
  42. "type": "per_block_limit",
  43. "id": "click_counter",
  44. "max": 10,
  45. "replacement":
  46. {
  47. "name": "minecraft:air",
  48. "chance": 100
  49. }
  50. },
  51. {
  52. "type": "drop_items"
  53. }
  54. ],
  55. "messages":
  56. [
  57. {
  58. "id": "success",
  59. "message": "Success!"
  60. }
  61. ],
  62.  
  63. "drops":
  64. [
  65. {
  66. "name": "minecraft:stone",
  67. "meta": 0
  68. }
  69. ]
  70. }
  71. ]
  72. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement