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
19 lines
1,003 B
C
19 lines
1,003 B
C
#ifndef GUARD_TRAINER_POKEMON_SPRITES_H
|
|
#define GUARD_TRAINER_POKEMON_SPRITES_H
|
|
|
|
// For the flags argument of CreateMonPicSprite_Affine
|
|
#define MON_PIC_AFFINE_BACK 0
|
|
#define MON_PIC_AFFINE_FRONT 1
|
|
#define MON_PIC_AFFINE_NONE 3
|
|
#define F_MON_PIC_NO_AFFINE (1 << 7)
|
|
|
|
bool16 ResetAllPicSprites(void);
|
|
u16 CreateMonPicSprite_Affine(u16 species, bool8 isShiny, u32 personality, u8 flags, s16 x, s16 y, u8 paletteSlot, u16 paletteTag);
|
|
u16 CreateMonPicSprite(u16 species, bool8 isShiny, u32 personality, bool8 isFrontPic, s16 x, s16 y, u8 paletteSlot, u16 paletteTag);
|
|
u16 FreeAndDestroyMonPicSprite(u16 spriteId);
|
|
u16 CreateTrainerPicSprite(u16 species, bool8 isFrontPic, s16 x, s16 y, u8 paletteSlot, u16 paletteTag);
|
|
u16 FreeAndDestroyTrainerPicSprite(u16 spriteId);
|
|
u16 CreateTrainerCardTrainerPicSprite(u16 species, bool8 isFrontPic, u16 destX, u16 destY, u8 paletteSlot, u8 windowId);
|
|
u16 PlayerGenderToFrontTrainerPicId_Debug(u8 gender, bool8 getClass);
|
|
|
|
#endif // GUARD_TRAINER_POKEMON_SPRITES_H
|