mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 19:47:35 +01:00
21 lines
389 B
C
21 lines
389 B
C
#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
|