Contribute to Me Now - Share via - - Google+ - E-mail

Final Fantasy Tactics Advance - Notes

Final Fantasy Tactics Advance PagesFinal Fantasy Tactics Advance - Notes

Tags: final-fantasy-tactics-advance

Damage

Power = X((Atk+(Atk-Def)+1)*Z/20)

where:

  1. X(Y) = max(int(Y),0)
  2. Z = 1 if normal weapon

Damage done is a random integer from (power*9/10) to (power*11/10).

EXP Gained

EXP gained = min(max(10+(A-B)*2,1),100)

  1. A = Opponent’s level
  2. B = Attacker’s level