Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. # Mining a block in creative will NOT drop any
  2. # custom drops/will not apply block regen, etc.
  3. #
  4. # Any block specified in this config, wherever it
  5. # is located, MUST be mined using the correct tool
  6. # otherwise nothing will drop!
  7.  
  8. # The corresponding tool. It's CASE_SENSITIVE!
  9. WOODEN_PICKAXE:
  10.  
  11. # What the tool can mine.
  12. can-mine:
  13. - COAL_ORE
  14.  
  15. STONE_PICKAXE:
  16. can-mine:
  17. - IRON_ORE
  18.  
  19. # The block break permissions the tool inherits.
  20. # e.g a stone pickaxe can mine iron ores PLUS
  21. # any block that the wooden pickaxe can mine.
  22. # Used to make the config much clearer.
  23. parent: WOODEN_PICKAXE
  24.  
  25. IRON_PICKAXE:
  26. parent: STONE_PICKAXE
  27. can-mine:
  28. - GOLD_ORE
  29.  
  30. GOLDEN_PICKAXE:
  31. parent: IRON_PICKAXE
  32. can-mine:
  33. - LAPIS_ORE
  34.  
  35. DIAMOND_PICKAXE:
  36. parent: GOLDEN_PICKAXE
  37. can-mine:
  38. - DIAMOND_ORE
  39. - EMERALD_ORE
  40. - REDSTONE_ORE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement