The stats of a pokemon determines the power and endurance during battles. These involve
- HP
- Attack
- Defense
- Special Attack
- Special Defense
- Speed
Displayed Stats
Edit
Stats are displayed by clicking a pokemon. These can be estimated using the following formula:
$ HP=Round[{(2B+100)*L \over 100}+10] $
$ Other Stats=Round[{2B*L \over 100}+0.4] $
where
B refers to the Base stats for each pokemon species
L refers to the current pokemon level
Effective HP
Edit
Other than the HP stat displayed, the HP involved during battles are different from the displayed value. The EHP is always larger than displayed HP.
$ EHP = Floor[{BL \over 10}+{(L+10) \over 2}] $
where
B refers to the Base stats for each pokemon species
L refers to the current pokemon level
The effective HP differs from displayed HP by:
$ EHP=DHP+0.08*BL-{(L+10) \over 2} $
Poison Damage
Edit
The damage taken by pokemon which is regularly poisoned or "badly" poisoned is based on Effective HP. It is about 13% (plus 1 or 2).