Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Strength
- +1 Attack Power per Point.
- Agility
- +0.5 Attack Power per Point (Every 2 Agility is +1 Attack Power)
- Mitigates physical damage (Strength / Agility)
- Stamina
- 24 Health per Point.
- Intellect
- +1 Spell Power per Point.
- Wisdom
- +0.5 Spell Power per Point.
- Mitigates Magical Damage (Intellect / Wisdom)
- Spirit
- +0.5 to Strength, Agility, Intellect, Wisdom. (Every 2 Spirit is +1 to first 5 attributes)
- Luck
- +1% Accuracy per 5 Points.
- +1% Evasion per 5 Points.
- +1% Critical Strike per 5 points.
- public int GetAttackpower()
- {
- return (_strength + ((_agility + (_spirit * 2)) / 2));
- }
- public int GetSpellpower()
- {
- return (_intellect + ((_wisdom + (_spirit * 2)) / 2));
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement