From 0882d1020d75bbddc8e8fbe30aed435e8814988a Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Tue, 29 Aug 2017 19:12:06 -0400 Subject: Added base stats for all of Deoxys's Formes --- gba/source/basestats.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'gba/source/basestats.h') 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 @@ #include +#define UNOWN_SPECIES_INDEX 201 +#define SHEDINJA_SPECIES_INDEX 303 +#define DEOXYS_SPECIES_INDEX 410 + struct SmallBaseStats { u8 baseHP; u8 baseAttack; @@ -21,6 +25,6 @@ struct SmallBaseStats { u8 growthRate; }; -extern const struct SmallBaseStats gSmallBaseStats[]; +const struct SmallBaseStats* BaseStatsForSpecies(int species); #endif -- cgit 1.4.1