diff options
author | Cameron Hall <camthesaxman@users.noreply.github.com> | 2017-07-22 19:10:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-22 19:10:50 -0500 |
commit | 566392f441a66da41fc827b6d2e8cbeaf1cf4825 (patch) | |
tree | 6ba3e09d866676ac7c131c2f3e30c6485638bcb5 /include/pokemon.h | |
parent | 5891cedc1bf4c9c95d60e5118c2809895d6191a5 (diff) | |
parent | 32977818e7ea7e14fd3dee331483ef6b06b3a00a (diff) |
Merge pull request #384 from camthesaxman/battle_4
battle_4 fixes
Diffstat (limited to 'include/pokemon.h')
-rw-r--r-- | include/pokemon.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/pokemon.h b/include/pokemon.h index 9dd7ba06c..2c1a2018b 100644 --- a/include/pokemon.h +++ b/include/pokemon.h @@ -349,6 +349,18 @@ struct BattlePokemon /*0x54*/ u32 otId; }; +enum +{ + STAT_STAGE_HP, // 0 + STAT_STAGE_ATK, // 1 + STAT_STAGE_DEF, // 2 + STAT_STAGE_SPEED, // 3 + STAT_STAGE_SPATK, // 4 + STAT_STAGE_SPDEF, // 5 + STAT_STAGE_ACC, // 6 + STAT_STAGE_EVASION, // 7 +}; + struct BaseStats { /*0x00*/ u8 baseHP; |