diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2017-09-12 15:05:40 +0200 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2017-09-12 15:05:40 +0200 |
commit | 0fe703023011421d9686ab0666904ae594906e7b (patch) | |
tree | 1c5ea13bc41960e141fd04710b8273ba23adcb6b /include/pokedex.h | |
parent | 6539188fa65826e2c2b101d6502f3b7794dd5197 (diff) |
pokemon 3 is almost decompiled
Diffstat (limited to 'include/pokedex.h')
-rw-r--r-- | include/pokedex.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/pokedex.h b/include/pokedex.h new file mode 100644 index 000000000..15f819a2a --- /dev/null +++ b/include/pokedex.h @@ -0,0 +1,20 @@ +#ifndef GUARD_POKEDEX_H +#define GUARD_POKEDEX_H + +void ResetPokedex(void); +const u8 *GetPokemonCategory(u16); +u16 GetPokedexHeightWeight(u16 dexNum, u8 data); +u16 GetNationalPokedexCount(u8); +u16 GetHoennPokedexCount(u8); + +enum +{ + FLAG_GET_SEEN, + FLAG_GET_CAUGHT, + FLAG_SET_SEEN, + FLAG_SET_CAUGHT +}; + +u8 GetSetPokedexFlag(u16 nationalNum, u8 caseId); + +#endif // GUARD_POKEDEX_H |