diff options
author | Diegoisawesome <Diegoisawesome@users.noreply.github.com> | 2018-11-18 13:36:34 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-18 13:36:34 -0600 |
commit | 963989d760a09eab46607efe1cbc1029f00e1842 (patch) | |
tree | 736036a1a493ad2d10b9418996350a247c0ff637 /include/constants | |
parent | 0bbe03f17030c8009508714fc2b41703f1a1310a (diff) | |
parent | f58cc47e173900537200c796501386f4e3a1f0d6 (diff) |
Merge pull request #389 from DizzyEggg/num_stats
Use PARTY_SIZE and rename BATTLE_STATS_NO to NUM_BATTLE_STATS
Diffstat (limited to 'include/constants')
-rw-r--r-- | include/constants/pokemon.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/constants/pokemon.h b/include/constants/pokemon.h index 78c1583b4..1a4741574 100644 --- a/include/constants/pokemon.h +++ b/include/constants/pokemon.h @@ -74,7 +74,10 @@ #define STAT_SPEED 3 #define STAT_SPATK 4 #define STAT_SPDEF 5 -#define STAT_ACC 6 // only in battles -#define STAT_EVASION 7 // only in battles +#define STAT_ACC 6 // Only in battles. +#define STAT_EVASION 7 // Only in battles. + +#define NUM_STATS 6 +#define NUM_BATTLE_STATS 8 #endif // GUARD_CONSTANTS_POKEMON_H |