Advertisement
Guest User

Untitled

a guest
Apr 9th, 2017
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. Strength
  2. +1 Attack Power per Point.
  3. Agility
  4. +0.5 Attack Power per Point (Every 2 Agility is +1 Attack Power)
  5. Mitigates physical damage (Strength / Agility)
  6. Stamina
  7. 24 Health per Point.
  8. Intellect
  9. +1 Spell Power per Point.
  10. Wisdom
  11. +0.5 Spell Power per Point.
  12. Mitigates Magical Damage (Intellect / Wisdom)
  13. Spirit
  14. +0.5 to Strength, Agility, Intellect, Wisdom. (Every 2 Spirit is +1 to first 5 attributes)
  15. Luck
  16. +1% Accuracy per 5 Points.
  17. +1% Evasion per 5 Points.
  18. +1% Critical Strike per 5 points.
  19.  
  20. public int GetAttackpower()
  21. {
  22. return (_strength + ((_agility + (_spirit * 2)) / 2));
  23. }
  24.  
  25. public int GetSpellpower()
  26. {
  27. return (_intellect + ((_wisdom + (_spirit * 2)) / 2));
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement