Advertisement
cookieXL

Untitled

Feb 10th, 2021
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.08 KB | None | 0 0
  1.  
  2. # Display options
  3. name: Mining
  4.  
  5. options:
  6. exp-holograms: false
  7.  
  8.  
  9. # Experience given to the main level
  10. # when leveling up this profession
  11. experience:
  12. base: 20
  13. per-level: 3
  14.  
  15. # Must match an existing exp curve filename from the 'expcurves' folder
  16. exp-curve: mining
  17.  
  18. # This part of the config is ONLY for custom mining.
  19. # Custom Mining must be setup in config.yml and it
  20. # will render any block not referenced in here as unminable.
  21. # If you do not wish to use custom mining it is recommended
  22. # to follow the format in woodcutting.yml for experience and
  23. # configure drop tables with MMOItems.
  24. # Block Regen is currently only possible using custom mining.
  25. exp-sources:
  26. - 'mineblock{type=IRON_ORE;amount=1-3}'
  27. - 'mineblock{type=GOLD_ORE;amount=2-4}'
  28. - 'mineblock{type=COAL_ORE;amount=1}'
  29. - 'mineblock{type=LAPIS_ORE;amount=1-4}'
  30. - 'mineblock{type=DIAMOND_ORE;amount=3-6}'
  31. - 'mineblock{type=REDSTONE_ORE;amount=1-2}'
  32. - 'mineblock{type=IRON_ORE;amount=3;silk-touch=false}'
  33. - 'mineblock{type=GOLD_ORE;amount=2-4;silk-touch=false}'
  34. - 'mineblock{type=COAL_ORE;amount=1;silk-touch=false}'
  35. - 'mineblock{type=LAPIS_ORE;amount=1-4;silk-touch=false}'
  36. - 'mineblock{type=DIAMOND_ORE;amount=3-6;silk-touch=false}'
  37. - 'mineblock{type=REDSTONE_ORE;amount=1-2;silk-touch=false}'
  38. - 'mineblock{type=OBSIDIAN;amount=5-10}'
  39.  
  40. on-mine:
  41. iron:
  42. material: vanilla{type=IRON_ORE}
  43. triggers:
  44. - 'exp{profession=mining;amount=3}'
  45. options:
  46. vanilla-drops: true
  47. regen:
  48. time: 600
  49. temp-block: vanilla{type=STONE}
  50. coal:
  51. material: vanilla{type=COAL_ORE}
  52. triggers:
  53. - 'exp{profession=mining;amount=2}'
  54. options:
  55. vanilla-drops: true
  56. regen:
  57. time: 600
  58. temp-block: vanilla{type=STONE}
  59. diamond:
  60. material: vanilla{type=DIAMOND_ORE}
  61. triggers:
  62. - 'exp{profession=mining;amount=3}'
  63. options:
  64. vanilla-drops: true
  65. regen:
  66. time: 3600
  67. temp-block: vanilla{type=STONE}
  68. emerald:
  69. material: vanilla{type=EMERALD_ORE}
  70. triggers:
  71. - 'exp{profession=mining;amount=6}'
  72. options:
  73. vanilla-drops: true
  74. regen:
  75. time: 3600
  76. temp-block: vanilla{type=STONE}
  77. gold:
  78. material: vanilla{type=GOLD_ORE}
  79. triggers:
  80. - 'exp{profession=mining;amount=4}'
  81. options:
  82. vanilla-drops: true
  83. regen:
  84. time: 2400
  85. temp-block: vanilla{type=STONE}
  86. lapis:
  87. material: vanilla{type=LAPIS_ORE}
  88. triggers:
  89. - 'exp{profession=mining;amount=4}'
  90. options:
  91. vanilla-drops: true
  92. regen:
  93. time: 2400
  94. temp-block: vanilla{type=STONE}
  95. redstone:
  96. material: vanilla{type=REDSTONE_ORE}
  97. triggers:
  98. - 'exp{profession=mining;amount=4}'
  99. options:
  100. vanilla-drops: true
  101. regen:
  102. time: 2400
  103. temp-block: vanilla{type=STONE}
  104.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement