summaryrefslogtreecommitdiff
path: root/include/pokemon.h
diff options
context:
space:
mode:
authorProjectRevoTPP <projectrevotpp@hotmail.com>2018-10-08 21:58:30 -0400
committerProjectRevoTPP <projectrevotpp@hotmail.com>2018-10-08 21:58:30 -0400
commit6c614d71a522975c269678667331418a2d561b06 (patch)
treee83ea910c8f06ede61a5885b8d27e1fb6ac10130 /include/pokemon.h
parent967b4e6612eb7f81dfe44989c2e2c79000c7d6f3 (diff)
decompile up to SpeciesToCryId
Diffstat (limited to 'include/pokemon.h')
-rw-r--r--include/pokemon.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/include/pokemon.h b/include/pokemon.h
index 2a8dc9c7d..e15172dd5 100644
--- a/include/pokemon.h
+++ b/include/pokemon.h
@@ -511,18 +511,13 @@ struct Evolution
#define EVOS_PER_MON 5
-struct EvolutionData
-{
- struct Evolution evolutions[EVOS_PER_MON];
-};
-
extern u8 gPlayerPartyCount;
extern struct Pokemon gPlayerParty[PARTY_SIZE];
extern u8 gEnemyPartyCount;
extern struct Pokemon gEnemyParty[PARTY_SIZE];
extern const struct BaseStats gBaseStats[];
extern const u8 *const gItemEffectTable[];
-extern const struct EvolutionData gEvolutionTable[];
+extern const struct Evolution gEvolutionTable[][EVOS_PER_MON];
extern const u8 gStatStageRatios[][2];
extern struct SpriteTemplate gMultiuseSpriteTemplate;
extern struct PokemonStorage* gPokemonStoragePtr;