PDA

View Full Version : Calculating Stats


lonely_cubone
December 31st, 2007, 03:23 PM
Does anyone have an equation for calculating total stats from IVs, EVs, Base Stats, etc. in 4th gen? Please help! I am making a Pokemon fan game and need this. If possible, I would like the equation for HP as well as the one for the other stats. Thank you to anyone that helps.

Shiny Umbreon
December 31st, 2007, 04:53 PM
I'm not sure if this goes here anyway, but you can check sites such as Serebii for that kind of things.

Lady Nicole
December 31st, 2007, 08:08 PM
Yeah. This is the one for any stat except HP cos HP has a different equation:

IV = ((Math.Ceiling(Stat / Personality Value) - 5) * 100 / Level Value) - 2 * Base Stat – Math.Floor(Effort Points / 4)

This is the one to use for HP:

HP IV = ((Stat – Level Value - 10) * 100 / Level Value ) - 2 * Base Stat – Math.Floor(EV / 4)

HP has a different equation because there are no natures that can change it.