Advertisement
Mishaps

Warrior Config

Feb 20th, 2020
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.70 KB | None | 0 0
  1. display:
  2. name: 'Warrior'
  3. lore:
  4. - 'The warrior has extraordinary fighting and'
  5. - 'evolving capabilities, which grant him much'
  6. - 'higher per-level stats than other classes.'
  7. - ''
  8. - 'The warrior collects rage when casting skills,'
  9. - 'temporarily increasing his base damage.'
  10. attribute-lore:
  11. - '&a+ &7Attack Damage'
  12. - '&a+ &7Attack Speed'
  13. - '&a+ &7Max Health'
  14. - '&a+ &7Speed Malus Reduction'
  15. - '&c- &7Movement Speed'
  16. - ''
  17. - '&8&lStrength'
  18. - '&7 Attack Damage: &c2 &7(+&c0.1&7)'
  19. - '&7 Attack Speed: &c4.2 &7(+&c0.05&7)'
  20. - '&7 Max Health: &c24 &7(+&c0.5&7)'
  21. - ''
  22. - '&8&lDexterity'
  23. - '&7 Knockback Resistance: &a0% &7(+&a0%&7)'
  24. - '&7 Movement Speed: &a19 &7(+&a0&7)'
  25. - '&7 Speed Malus Reduction: &a40% &7(+&a2%&7)'
  26. - ''
  27. - '&8&lWill'
  28. - '&7 Max Rage: &c20 &7(+&c1&7)'
  29. - '&7 Health Regen: &90.1 &7(+&90&7)'
  30. - '&7 Rage Degeneration: &9-0.5&7/s'
  31. item: IRON_SWORD:0 # Supports custom model data/texture by durability
  32.  
  33. # Players cannot go further than Lvl 100
  34. max-level: 100
  35.  
  36. # Warrior has rage which he gains while casting spells
  37. # Rage increase its skill damage. Use <mmocore.rage>
  38. # to get the player's rage (MythicMobs formulas)
  39. mana:
  40. char: ♦
  41. color: RED
  42. name: 'Rage'
  43.  
  44. # Rage charges when dealing weapon and physical damage.
  45. triggers:
  46. weapon-damage:
  47. - 'mana{operation=GIVE;amount=2-3}'
  48. physical-damage:
  49. - 'mana{operation=GIVE;amount=2-3}'
  50.  
  51. level-up:
  52. - 'command{format="mmocore admin skill-points give %player% 1"}'
  53.  
  54. cast-particle:
  55. particle: REDSTONE
  56. color:
  57. red: 255
  58. green: 0
  59. blue: 0
  60.  
  61. # Rage only decays when out of combat
  62. options:
  63. off-combat-mana-regen: true
  64.  
  65. skills:
  66. DEEP_WOUND:
  67. level: 1
  68. max-level: 30
  69. WEAKEN:
  70. level: 3
  71. max-level: 30
  72. EMPOWERED_ATTACK:
  73. level: 5
  74. max-level: 30
  75. COMBO_ATTACK:
  76. level: 7
  77. max-level: 30
  78. MINOR_HEALINGS:
  79. level: 10
  80. max-level: 30
  81. FIRE_BERSERKER:
  82. level: 15
  83.  
  84. attributes:
  85. mana-regeneration:
  86. base: -0.5
  87. per-level: 0
  88. speed-malus-reduction:
  89. base: 50
  90. per-level: 2
  91. max-mana:
  92. base: 20
  93. per-level: 1
  94. max-health:
  95. base: 24
  96. per-level: 0.5
  97. movement-speed:
  98. base: .19
  99. per-level: 0
  100. attack-damage:
  101. base: 2
  102. per-level: 0.1
  103. attack-speed:
  104. base: 4.2
  105. per-level: 0.05
  106.  
  107. # Experience sources for main class experience.
  108. main-exp-sources:
  109. - 'killmob{type=ZOMBIE;amount=1-3}'
  110. - 'killmob{type=ENDERMAN;amount=6-9}'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement