FF7/Battle/Damage Calculation

From Final Fantasy Inside
< FF7‎ | Battle
Jump to navigation Jump to search

In Attacks, Items, and Weapons there exists a single byte that tells the Battle Engine how to calculate damage based on an attack's set Power and the characters stats. Physical and Magical will rely on the caster's "Attack" and "Magic Attack" stat respectively to calculate base damage. This byte is divided into two nybbles (four bits). Upper Nybble determines what considerations are made in calculating damage such as physical/magical, allowing criticals, how to calculate accuracy, etc. There are also three sets of known formulae that are paired with the Upper nybble values. These are selected in the Lower Nybble and determine how to calculate pre-defense damage. Actual calculation includes a random variance ([3841..4096] / 4096), a reduction based on a target's "Defense" or "Magic Defense" stats, and other status-related modifications depending on the type of damage. These will also trigger Physical and Magical Counter Attacks respectively. For more details, these can be considered Base Damage Modifiers as described in Terence Fergusson's Battle Mechanics FAQ. This more accurate damage formula page contains more detailed information.

Upper Value Considerations Lower Value Formula [Damage = ] Sadness Check Split Damage Barrier Check Variance
0X Physical, 100% hit rate X0 No Damage calculation





1X Physical, Use PAccuracy, Allow Critical X1 (Power / 16) * (Stat + [(Level + Stat) / 32] * [(Level * Stat) / 32]) Yes Yes Yes Yes
2X Magical, Use MAccuracy X2 (Power / 16) * ((Lvl + Stat) * 6) Yes Yes Yes Yes
3X Physical, 100% hit rate X3 HP * (Power / 32)





4X Magical, 100% hit rate X4 MHP * (Power / 32)





5X Magical, 100% hit rate X5 (Power * 22) + ((Level + Stat) * 6)


Yes Yes Yes
8X Magical, Hit chance MOD target level = hit X6 Power * 20





9X Magical, "Manipulate" accuracy X7 Power / 32




Yes
BX Physical, use PAccuracy X8 Recovery





X9 Throw





XA Coin





6X Physical, Use PAccuracy, Allow Critical, Special Formulae X0 100% User's HP
7X Magical, Use MAccuracy, Special Formulae X1 User's MHP - HP
X8 Dice Roll[NOTE] x 100
X9 Number of Escapes * 256
XA Target's HP - 1
XB Number of hours on game clock * 100 + number of minutes in game clock
XC 10 x Target's Kills
XD 1111 x Target's Materia
AX Same as 11h, but allow alterations to the final damage or power of attack X0 Damage * (1 + [User's Status Effects See NOTE])
X1 Damage * (2 if Near-Death, 4 if in D.Sentence [can stack to 8], 1 if neither)
X2 Damage * (1 + Dead Allies)
X3 Power becomes average of all Targets' Levels
X4 Power becomes 1 + ( ( Power * 3 * HP ) / MHP )
X5 Power becomes 1 + ( ( Power * 3 * MP ) / MMP )
X6 Power becomes 1 + ( Power * [AP on Weapon See NOTE / 10000] / 16 )
X7 Power becomes 10 + ( [Character's Kills / 128] * Power) / 16 )
X8 Power becomes 1 + ( [Limit Level * Limit Units / 16] * Power ) / 16

NOTES: For the X8 special formula, the game will "grant" between two and six dice based on level (one additional for every ten levels above 20, max 6). The values of each of these dice will be added and then multiplied by the greatest number of repeating values (not the number of occurrences of the highest value). Ex: The values 2, 3, 5, 5, 2, 2 come up. The values are added (19) then, since there are three twos, it is multiplied by three. For A0 damage multiplier, the multiplier is increased by one for the following effects on the user:

  • Near-death
  • Poison
  • Sadness
  • Silence
  • Slow
  • Darkness

and increased by two for the following:

  • D.Sentence
  • Slow-numb

For A6 multiplier, Mastered Materia will use the highest level of AP they can hold. ex. When Knights of Round is mastered, its AP is set to 16,777,215 in the materia menu. Since KoR's level 5 AP requirement is 500,000 only 500,000 will be considered in the total.

Any damage formula on an attack can still set status, but standard damage formula 0X will not apply any visual changes due to effects.

Ex. Midgar Zolom's "Change" attack is damage type 00h, but gets set to poison him when he uses it. He will not glow green until he is targeted by another command that is not damage type 00h.