summaryrefslogtreecommitdiff
path: root/include/constants/pokemon.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/constants/pokemon.h')
-rw-r--r--include/constants/pokemon.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/constants/pokemon.h b/include/constants/pokemon.h
index 9fa023cd5..0a74e751e 100644
--- a/include/constants/pokemon.h
+++ b/include/constants/pokemon.h
@@ -78,11 +78,13 @@
#define STAT_SPEED 3
#define STAT_SPATK 4
#define STAT_SPDEF 5
+#define NUM_STATS 6
+
#define STAT_ACC 6 // Only in battles.
#define STAT_EVASION 7 // Only in battles.
-#define NUM_NATURE_STATS NUM_STATS - 1 // excludes HP
-#define NUM_BATTLE_STATS NUM_STATS + 2 // includes Accuracy and Evasion
+#define NUM_NATURE_STATS (NUM_STATS - 1) // excludes HP
+#define NUM_BATTLE_STATS (NUM_STATS + 2) // includes Accuracy and Evasion
#define MIN_STAT_STAGE 0
#define DEFAULT_STAT_STAGE 6