pokeemerald/include/party_menu.h

39 lines
771 B
C
Raw Normal View History

2017-10-12 07:06:19 +00:00
#ifndef GUARD_PARTY_MENU_H
#define GUARD_PARTY_MENU_H
2017-12-09 20:23:40 +00:00
enum
{
AILMENT_NONE,
AILMENT_PSN,
AILMENT_PRZ,
AILMENT_SLP,
AILMENT_FRZ,
AILMENT_BRN
};
2018-02-15 09:59:26 +00:00
struct Struct203CEC8
{
u8 filler[0x9];
u8 unk9;
u8 unkA;
u8 unkB;
u8 filler2[0x2];
};
extern struct Struct203CEC8 gUnknown_0203CEC8;
2017-10-12 07:06:19 +00:00
bool8 pokemon_has_move(struct Pokemon *, u16);
void sub_81B58A8(void);
2017-10-24 19:45:41 +00:00
void DoWallyTutorialBagMenu(void);
2017-11-23 01:10:35 +00:00
u8 pokemon_ailments_get_primary(u32 status);
2017-12-09 20:23:40 +00:00
u8 *GetMonNickname(struct Pokemon *mon, u8 *dst);
2018-01-02 01:21:30 +00:00
u8 GetCursorSelectionMonId(void);
bool8 FieldCallback_Teleport(void);
2018-02-09 02:00:28 +00:00
void sub_81B7F60(void);
2017-10-12 07:06:19 +00:00
2018-02-15 09:59:26 +00:00
void sub_81B0FCC(u8 partyMonId, u8 a);
void sub_81B1370(u8 taskId);
void display_pokemon_menu_message(u8 windowBorderId);
2017-10-12 07:06:19 +00:00
#endif // GUARD_PARTY_MENU_H