diff options
author | GriffinR <griffin.richards@comcast.net> | 2020-01-05 10:50:32 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-01-07 22:30:37 -0500 |
commit | fb5bea98ce28044917451d83695991693fb0b64a (patch) | |
tree | 95d2f85fc852fa0b00ba23022f8bd7732ff30c59 /include/constants/pokemon.h | |
parent | bb692a03eb6ac886524e917ed3548d769ac2f6d8 (diff) |
More battle_dome.c doc
Diffstat (limited to 'include/constants/pokemon.h')
-rw-r--r-- | include/constants/pokemon.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/constants/pokemon.h b/include/constants/pokemon.h index 181a84023..97e3f0686 100644 --- a/include/constants/pokemon.h +++ b/include/constants/pokemon.h @@ -80,7 +80,8 @@ #define STAT_ACC 6 // Only in battles. #define STAT_EVASION 7 // Only in battles. -#define NUM_BATTLE_STATS 8 +#define NUM_EV_STATS NUM_STATS - 1 // excludes HP +#define NUM_BATTLE_STATS NUM_STATS + 2 // includes Accuracy and Evasion // Shiny odds #define SHINY_ODDS 8 // Actual probability is SHINY_ODDS/65536 |