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