2018-10-28 20:11:53 +00:00
|
|
|
#ifndef GUARD_FRONTIER_UTIL_H
|
|
|
|
#define GUARD_FRONTIER_UTIL_H
|
2017-10-12 07:06:19 +00:00
|
|
|
|
2018-11-01 20:31:10 +00:00
|
|
|
void CallFrontierUtilFunc(void);
|
2019-11-21 02:46:29 +00:00
|
|
|
u8 GetFrontierBrainStatus(void);
|
2018-09-20 19:42:38 +00:00
|
|
|
void CopyFrontierTrainerText(u8 whichText, u16 trainerId);
|
2019-11-24 21:58:40 +00:00
|
|
|
void ResetWinStreaks(void);
|
2018-10-27 19:01:35 +00:00
|
|
|
u32 GetCurrentFacilityWinStreak(void);
|
2019-11-24 21:58:40 +00:00
|
|
|
void ResetFrontierTrainerIds(void);
|
2018-11-01 20:31:10 +00:00
|
|
|
u8 GetPlayerSymbolCountForFacility(u8 facility);
|
|
|
|
void ShowRankingHallRecordsWindow(void);
|
|
|
|
void ScrollRankingHallRecordsWindow(void);
|
2018-11-05 21:13:59 +00:00
|
|
|
void ClearRankingHallRecords(void);
|
2019-11-24 21:58:40 +00:00
|
|
|
void SaveGameFrontier(void);
|
2018-11-01 20:31:10 +00:00
|
|
|
u8 GetFrontierBrainTrainerPicIndex(void);
|
|
|
|
u8 GetFrontierBrainTrainerClass(void);
|
|
|
|
void CopyFrontierBrainTrainerName(u8 *dst);
|
|
|
|
bool8 IsFrontierBrainFemale(void);
|
2019-11-21 05:14:40 +00:00
|
|
|
void SetFrontierBrainObjEventGfx_2(void);
|
2018-11-01 20:31:10 +00:00
|
|
|
void CreateFrontierBrainPokemon(void);
|
|
|
|
u16 GetFrontierBrainMonSpecies(u8 monId);
|
2019-11-21 05:14:40 +00:00
|
|
|
void SetFrontierBrainObjEventGfx(u8 facility);
|
2018-11-01 20:31:10 +00:00
|
|
|
u16 GetFrontierBrainMonMove(u8 monId, u8 moveSlotId);
|
|
|
|
u8 GetFrontierBrainMonNature(u8 monId);
|
|
|
|
u8 GetFrontierBrainMonEvs(u8 monId, u8 evStatId);
|
2018-11-01 14:06:50 +00:00
|
|
|
s32 GetFronterBrainSymbol(void);
|
2017-10-12 07:06:19 +00:00
|
|
|
|
2018-11-27 21:45:50 +00:00
|
|
|
extern const u16 gFrontierBannedSpecies[];
|
|
|
|
|
2018-10-28 20:11:53 +00:00
|
|
|
#endif // GUARD_FRONTIER_UTIL_H
|