Advertisement
Eutherin

Untitled

Apr 7th, 2020
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.87 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.     can-mine:
  11.    - COAL_ORE
  12.     - STONE
  13. STONE_PICKAXE:
  14.     can-mine:
  15.    - IRON_ORE
  16.     # The block break permissions the tool inherits.
  17.     # e.g a stone pickaxe can mine iron ores PLUS
  18.     # any block that the wooden pickaxe can mine.
  19.     # Used to make the config much clearer.
  20.     parent: WOODEN_PICKAXE
  21. IRON_PICKAXE:
  22.     parent: STONE_PICKAXE
  23.     can-mine:
  24.    - GOLD_ORE
  25.     - DIAMOND_ORE
  26. GOLDEN_PICKAXE:
  27.     parent: IRON_PICKAXE
  28.     can-mine:
  29.    - LAPIS_ORE
  30.     - REDSTONE_ORE
  31.  
  32. DIAMOND_PICKAXE:
  33.     parent: GOLDEN_PICKAXE
  34.     can-mine:
  35.    - EMERALD_ORE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement