diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2018-04-13 17:40:18 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2018-04-13 17:40:18 -0400 |
commit | bdd3cf36f59e9f3a308073f998a15a92aea62283 (patch) | |
tree | f5e9072d78eb444ab649fd738ece7229c965b67d /include | |
parent | 53e2b61fae450b47876420d8646a98ef8a2c450a (diff) |
nonmatching debug_80C3A50
Diffstat (limited to 'include')
-rw-r--r-- | include/pokedex.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/include/pokedex.h b/include/pokedex.h index 9158a97f0..3dbbe6b8a 100644 --- a/include/pokedex.h +++ b/include/pokedex.h @@ -27,4 +27,23 @@ bool16 CompletedNationalPokedex(void); extern bool8 gUnknown_03005CE8; +struct PokedexEntry +{ + /*0x00*/ u8 categoryName[12]; + /*0x0C*/ u16 height; //in decimeters + /*0x0E*/ u16 weight; //in hectograms + /*0x10*/ const u8 *descriptionPage1; + /*0x14*/ const u8 *descriptionPage2; + /*0x18*/ u16 unused; + /*0x1A*/ u16 pokemonScale; + /*0x1C*/ u16 pokemonOffset; + /*0x1E*/ u16 trainerScale; + /*0x20*/ u16 trainerOffset; +}; /*size = 0x24*/ + +extern const struct PokedexEntry gPokedexEntries[]; + +u16 sub_8091A4C(u16 gender, s16 x, s16 y, u16 paletteNum); +u16 sub_80918EC(u16 num, s16 x, s16 y, u16 paletteNum); + #endif // GUARD_POKEDEX_H |