pokeemerald/include/pokemon_summary_screen.h

29 lines
1.0 KiB
C
Raw Normal View History

2018-02-09 03:00:28 +01:00
#ifndef GUARD_POKEMON_SUMMARY_SCREEN_H
#define GUARD_POKEMON_SUMMARY_SCREEN_H
#include "main.h"
extern u8 gLastViewedMonIndex;
2019-04-04 23:53:06 +02:00
extern const u8 *const gMoveDescriptionPointers[];
extern const u8 gNotDoneYetDescription[];
2019-04-04 23:53:06 +02:00
extern const u8 *const gNatureNamePointers[];
2018-12-16 21:10:01 +01:00
2018-09-02 19:41:33 +02:00
void ShowPokemonSummaryScreen(u8 mode, void *mons, u8 monIndex, u8 maxMonIndex, void (*callback)(void));
void ShowSelectMovePokemonSummaryScreen(struct Pokemon *mons, u8 monIndex, u8 maxMonIndex, void (*callback)(void), u16 newMove);
2022-09-26 02:33:20 +02:00
void ShowPokemonSummaryScreenHandleDeoxys(u8 mode, struct BoxPokemon *mons, u8 monIndex, u8 maxMonIndex, void (*callback)(void));
2019-10-18 01:22:03 +02:00
u8 GetMoveSlotToReplace(void);
2021-04-09 18:41:02 +02:00
void SummaryScreen_SetAnimDelayTaskId(u8 taskId);
2018-02-09 03:00:28 +01:00
// The Pokemon Summary Screen can operate in different modes. Certain features,
// such as move re-ordering, are available in the different modes.
enum PokemonSummaryScreenMode
{
SUMMARY_MODE_NORMAL,
SUMMARY_MODE_LOCK_MOVES,
SUMMARY_MODE_BOX,
SUMMARY_MODE_SELECT_MOVE,
};
2018-02-12 19:59:42 +01:00
#endif // GUARD_POKEMON_SUMMARY_SCREEN_H