Advertisement
Guest User

Untitled

a guest
Dec 9th, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.17 KB | None | 0 0
  1. # Display options
  2. name: Mining
  3.  
  4. # Experience given to the main level
  5. # when leveling up this profession
  6. experience:
  7. base: 20
  8. per-level: 3
  9.  
  10. on-mine:
  11. EMERALD_ORE:
  12. drop-table:
  13. items:
  14. - 'mmoitem{type=material;id=MAGIC_ESSENCE} 1 1-2'
  15. - 'mmoitem{type=material;id=EMERALD} 1 1-2'
  16. - 'mmoitem{type=gem_stone;id=RAGE} .1 1'
  17. - 'mmoitem{type=gem_stone;id=SPEED} .1 1'
  18. - 'mmoitem{type=gem_stone;id=LIFE} .1 1'
  19. - 'mmoitem{type=material;id=TOKENM} 1 1'
  20. vanilla-drops: false
  21. regen:
  22. time: 2000
  23. temp-block: STONE
  24. triggers:
  25. - 'exp{profession=mining;amount=32}'
  26.  
  27. IRON_ORE:
  28.  
  29. # Refer to drop-tables.yml
  30. # The drop table used by the block.
  31. drop-table:
  32. items:
  33. - 'mmoitem{type=material;id=MAGIC_ESSENCE} .04 1-2'
  34. - 'mmoitem{type=material;id=IRON_ORE} 1 1'
  35. - 'mmoitem{type=material;id=STEEL_INGOT} .1 1'
  36.  
  37. triggers:
  38. - 'exp{profession=mining;amount=10}'
  39.  
  40. # Set to false if you want to disable vanila drops.
  41. vanilla-drops: false
  42. regen:
  43. time: 2000
  44. temp-block: STONE
  45.  
  46. COAL_ORE:
  47.  
  48. # Refer to drop-tables.yml
  49. # The drop table used by the block.
  50. drop-table:
  51. items:
  52. - 'mmoitem{type=material;id=MAGIC_ESSENCE} .02 1-2'
  53. - 'mmoitem{type=material;id=COAL} 1 1-3'
  54.  
  55.  
  56. triggers:
  57. - 'exp{profession=mining;amount=10}'
  58.  
  59. # Set to false if you want to disable vanila drops.
  60. vanilla-drops: false
  61. regen:
  62. time: 2000
  63. temp-block: STONE
  64.  
  65. GOLD_ORE:
  66.  
  67. # Refer to drop-tables.yml
  68. # The drop table used by the block.
  69. drop-table:
  70. items:
  71. - 'mmoitem{type=material;id=MAGIC_ESSENCE} .1 1-2'
  72. - 'mmoitem{type=material;id=GOLD_ORE} 1 1'
  73.  
  74. triggers:
  75. - 'exp{profession=mining;amount=20}'
  76.  
  77. # Set to false if you want to disable vanila drops.
  78. vanilla-drops: false
  79. regen:
  80. time: 2000
  81. temp-block: STONE
  82.  
  83. STONE:
  84.  
  85. # Refer to drop-tables.yml
  86. # The drop table used by the block.
  87. drop-table:
  88. items:
  89. - 'mmoitem{type=material;id=COBBLESTONE} 1 1'
  90.  
  91. triggers:
  92. - 'exp{profession=mining;amount=5}'
  93.  
  94. # Set to false if you want to disable vanila drops.
  95. vanilla-drops: false
  96.  
  97. COBBLESTONE:
  98.  
  99. # Refer to drop-tables.yml
  100. # The drop table used by the block.
  101. drop-table:
  102. items:
  103. - 'mmoitem{type=material;id=COBBLESTONE} 1 1'
  104.  
  105. # Set to false if you want to disable vanila drops.
  106. vanilla-drops: false
  107.  
  108. DIAMOND_ORE:
  109.  
  110. # Refer to drop-tables.yml
  111. # The drop table used by the block.
  112. drop-table:
  113. items:
  114. - 'mmoitem{type=material;id=MAGIC_ESSENCE} 0.2 1-2'
  115. - 'mmoitem{type=material;id=DIAMOND} 1 1-2'
  116. - 'mmoitem{type=gem_stone;id=RAGE} .01 1'
  117. - 'mmoitem{type=gem_stone;id=SPEED} .01 1'
  118. - 'mmoitem{type=gem_stone;id=LIFE} .01 1'
  119. - 'mmoitem{type=material;id=TOKENM} .1 1'
  120. # - 'droptable{id=other-drop-table} .1'
  121.  
  122. # Triggers when destroying the block, can
  123. # be used to give exp to a player!
  124. triggers:
  125. - 'exp{profession=mining;amount=20}'
  126.  
  127. # Set to false if you want to disable vanila drops.
  128. vanilla-drops: false
  129.  
  130. regen:
  131.  
  132. # Ticks the block takes to appear again
  133. time: 2000
  134.  
  135. # The temporary block which shows
  136. # during the block regen time.
  137. #
  138. # !! Warning !!
  139. # When using the temp-block option, make sure you choose
  140. # one temp block and don't use it anywhere else in the
  141. # configuration so that block regens do not affect each other
  142. temp-block: STONE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement