3ad66028e9
* Check progress in non-battle PARAMETRIZEd tests * Overworld Script Tests * Backward-compatible BoxPokemon Refactor Reuses space that contains zeros to provide space for: - HP/status in the box - 12-character nicknames - Up to 63 PokéBalls - Shininess separate from PID - Hidden Nature - Hyper Training - Dynamax Level - Gigantamax Factor - Terastallization Types - Shadow Implements: - OW_PC_HEAL to switch between Gen7- and Gen8+ behavior - Nature Mints - Dynamax Candy - Hyper Training commands (canhypertrain/hypertrain) - Gigantamax Factor commands (hasgigantamaxfactor/togglegigantamaxfactor) - Terastallization Type on the summary screen - Prevents Gigantamax Factor Pokémon from evolving into a species without a Gigantamax form * fixup! Backward-compatible BoxPokemon Refactor * displaydexinfo fix from Jasper
32 lines
684 B
C
32 lines
684 B
C
#ifndef GUARD_POKEDEX_H
|
|
#define GUARD_POKEDEX_H
|
|
|
|
extern u8 gUnusedPokedexU8;
|
|
extern void (*gPokedexVBlankCB)(void);
|
|
|
|
enum
|
|
{
|
|
DEX_MODE_HOENN,
|
|
DEX_MODE_NATIONAL
|
|
};
|
|
|
|
enum
|
|
{
|
|
FLAG_GET_SEEN,
|
|
FLAG_GET_CAUGHT,
|
|
FLAG_SET_SEEN,
|
|
FLAG_SET_CAUGHT
|
|
};
|
|
|
|
void ResetPokedex(void);
|
|
u16 GetNationalPokedexCount(u8);
|
|
u16 GetHoennPokedexCount(u8);
|
|
u8 DisplayCaughtMonDexPage(u16 species, bool32 isShiny, u32 personality);
|
|
s8 GetSetPokedexFlag(u16 nationalNum, u8 caseId);
|
|
u16 CreateMonSpriteFromNationalDexNumber(u16, s16, s16, u16);
|
|
bool16 HasAllHoennMons(void);
|
|
void ResetPokedexScrollPositions(void);
|
|
bool16 HasAllMons(void);
|
|
void CB2_OpenPokedex(void);
|
|
|
|
#endif // GUARD_POKEDEX_H
|