diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-07-18 20:22:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-18 20:22:44 -0400 |
commit | 1a27af88553394c3190cf74b47128f2a82750f4c (patch) | |
tree | 9f036690606e5693181559add76db1c214e8dbdc /include/constants/pokemon.h | |
parent | 1cf2470aac038fce48a5777e36b00554af90d910 (diff) | |
parent | fb402725c6c668ee2ac50d6c345f3f8207a32cea (diff) |
Merge pull request #1100 from GriffinRichards/clean-battlescrdata
Misc battle and battle palace documentation
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 b5c60f64d..0d8fc6a57 100644 --- a/include/constants/pokemon.h +++ b/include/constants/pokemon.h @@ -69,6 +69,7 @@ #define NATURE_SASSY 22 #define NATURE_CAREFUL 23 #define NATURE_QUIRKY 24 +#define NUM_NATURES 25 // Pokemon Stats #define STAT_HP 0 @@ -80,7 +81,7 @@ #define STAT_ACC 6 // Only in battles. #define STAT_EVASION 7 // Only in battles. -#define NUM_EV_STATS NUM_STATS - 1 // excludes HP +#define NUM_NATURE_STATS NUM_STATS - 1 // excludes HP #define NUM_BATTLE_STATS NUM_STATS + 2 // includes Accuracy and Evasion // Shiny odds |