Advertisement
Mishaps

Mage config

Feb 20th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.08 KB | None | 0 0
  1. display:
  2. name: 'Mage'
  3. lore:
  4. - 'The Mage has mastered the power of the'
  5. - 'Arcanes, taking down any enemy on his path'
  6. - 'using powerful magic & ranged abilities.'
  7. attribute-lore:
  8. - '&a+ &7Mana Regeneration'
  9. - '&a+ &7Health Regeneration'
  10. - '&a+ &7Max Mana'
  11. - '&c- &7Max Health'
  12. - ''
  13. - '&8&lStrength'
  14. - '&7 Attack Damage: &c1 &7(+&c0&7)'
  15. - '&7 Attack Speed: &c4 &7(+&c0&7)'
  16. - '&7 Max Health: &c18 &7(+&c0&7)'
  17. - ''
  18. - '&8&lDexterity'
  19. - '&7 Knockback Resistance: &a0% &7(+&a0%&7)'
  20. - '&7 Movement Speed: &a20 &7(+&a0&7)'
  21. - '&7 Speed Malus Reduction: &a0% &7(+&a0%&7)'
  22. - ''
  23. - '&8&lIntellect'
  24. - '&7 Max Mana: &927 &7(+&91.2&7)'
  25. - '&7 Health Regen: &90.13 &7(+&90&7)'
  26. - '&7 Mana Regen: &90.2 &7(+&90.04&7)'
  27. item: BLAZE_POWDER
  28.  
  29. # Players cannot go further than Lvl 100
  30. max-level: 100
  31.  
  32. triggers:
  33. level-up:
  34. - 'command{format="mmocore admin skill-points give %player% 1"}'
  35.  
  36. mana:
  37. char: ■
  38. color: BLUE
  39. name: 'Mana'
  40.  
  41. cast-particle:
  42. particle: SPELL_INSTANT
  43.  
  44. options:
  45. off-combat-health-regen: true
  46.  
  47. # Special resource regeneration: (when out of combat),
  48. # players can regen a set % of their maximum mana/missing mana.
  49. # This % can scale with the player level.
  50. # It also works with other player resources: health, stellium and stamina!
  51. resource:
  52. mana:
  53.  
  54. # Scales with max mana.
  55. type: MAX
  56.  
  57. # Regen from 3 to 10% of max mana every second
  58. value:
  59. base: 3
  60. per-level: .1
  61. max: 10
  62.  
  63. # Only regen when out of combat.
  64. off-combat: true
  65.  
  66. attributes:
  67. max-health:
  68. base: 18
  69. per-level: 0
  70. max-mana:
  71. base: 27
  72. per-level: 1.2
  73. mana-regeneration:
  74. base: .2
  75. per-level: .04
  76. health-regeneration:
  77. base: 0.13
  78. per-level: 0
  79.  
  80. subclasses:
  81. ARCANE_MAGE: 10
  82.  
  83. skills:
  84. FIRE_STORM:
  85. level: 1
  86. max-level: 30
  87.  
  88. # Specific skill modifiers based on class.
  89. # Arcane mage's fire storm may deal more damage
  90. # than an apprentice mage's fire storm.
  91. damage:
  92. base: 5.0
  93. per-level: 3.0
  94. ignite:
  95. base: 2.0
  96. per-level: 0.1
  97. mana:
  98. base: 15.0
  99. per-level: 2.0
  100. cooldown:
  101. base: 5.0
  102. per-level: -0.1
  103. max: 5.0
  104. min: 1.0
  105. POWER_MARK:
  106. level: 3
  107. max-level: 30
  108. FIREBALL:
  109. level: 5
  110. max-level: 30
  111. MINOR_HEALINGS:
  112. level: 6
  113. max-level: 30
  114. ICE_SPIKES:
  115. level: 8
  116. AMBERS:
  117. level: 9
  118. max-level: 30
  119. WEAKEN:
  120. level: 10
  121. max-level: 30
  122. WARP:
  123. level: 13
  124. max-level: 30
  125. GREATER_HEALINGS:
  126. level: 15
  127. max-level: 30
  128.  
  129. # Experience sources for main class experience.
  130. main-exp-sources:
  131. - 'killmob{type=ZOMBIE;amount=1-3}'
  132. - 'killmob{type=ENDERMAN;amount=6-9}'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement