Advertisement
GIToez

Untitled

Nov 17th, 2019
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1.  
  2. # Display options
  3. name: Mining
  4.  
  5. # Experience given to the main level
  6. # when leveling up this profession
  7. experience:
  8. base: 20
  9. per-level: 3
  10.  
  11. on-mine:
  12. emerald:
  13. material: EMERALD_ORE
  14. drop-table:
  15. items:
  16. - 'vanilla{type=EMERALD} 1 1-2'
  17. vanilla-drops: false
  18. regen:
  19. time: 200
  20. temp-block: AIR
  21. triggers:
  22. - 'exp{profession=mining;amount=32}'
  23. iron:
  24. material: IRON_ORE
  25. drop-table:
  26. items:
  27. - 'vanilla{type=IRON_NUGGET} 1 1-2'
  28. vanilla-drops: false
  29. regen:
  30. time: 200
  31. temp-block: AIR
  32. triggers:
  33. - 'exp{profession=woodcutting;amount=2}'
  34. oak:
  35. material: STONE
  36. drop-table:
  37. items:
  38. - 'vanilla{type=BIRCH_LOG} 1 1-2'
  39. vanilla-drops: false
  40. regen:
  41. time: 200
  42. temp-block: AIR
  43. triggers:
  44. - 'exp{profession=woodcutting;amount=2}'
  45. diamond:
  46. #the material you need to mine
  47. material: DIAMOND_ORE
  48.  
  49. # Refer to drop-tables.yml
  50. # The drop table used by the block.
  51. drop-table:
  52. items:
  53. - 'vanilla{type=DIAMOND} 1 1-2'
  54. # - 'mmoitem{type=material;id=RARE_DIAMOND} .1 1-3'
  55. # - 'droptable{id=other-drop-table} .1'
  56.  
  57. # Triggers when destroying the block, can
  58. # be used to give exp to a player!
  59. triggers:
  60. - 'exp{profession=mining;amount=20}'
  61.  
  62. # Set to false if you want to disable vanila drops.
  63. vanilla-drops: false
  64.  
  65. regen:
  66.  
  67. # Ticks the block takes to appear again
  68. time: 20
  69.  
  70. # The temporary block which shows
  71. # during the block regen time.
  72. #
  73. # !! Warning !!
  74. # When using the temp-block option, make sure you choose
  75. # one temp block and don't use it anywhere else in the
  76. # configuration so that block regens do not affect each other
  77. temp-block: AIR
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement