diff options
Diffstat (limited to 'gba/source/basestats.h')
-rw-r--r-- | gba/source/basestats.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gba/source/basestats.h b/gba/source/basestats.h index 8adb031..97d5fb7 100644 --- a/gba/source/basestats.h +++ b/gba/source/basestats.h | |||
@@ -10,6 +10,10 @@ | |||
10 | 10 | ||
11 | #include <gba.h> | 11 | #include <gba.h> |
12 | 12 | ||
13 | #define UNOWN_SPECIES_INDEX 201 | ||
14 | #define SHEDINJA_SPECIES_INDEX 303 | ||
15 | #define DEOXYS_SPECIES_INDEX 410 | ||
16 | |||
13 | struct SmallBaseStats { | 17 | struct SmallBaseStats { |
14 | u8 baseHP; | 18 | u8 baseHP; |
15 | u8 baseAttack; | 19 | u8 baseAttack; |
@@ -21,6 +25,6 @@ struct SmallBaseStats { | |||
21 | u8 growthRate; | 25 | u8 growthRate; |
22 | }; | 26 | }; |
23 | 27 | ||
24 | extern const struct SmallBaseStats gSmallBaseStats[]; | 28 | const struct SmallBaseStats* BaseStatsForSpecies(int species); |
25 | 29 | ||
26 | #endif | 30 | #endif |