22994c79d4
* Replicate initial commit
* Integrate the rest of Duke's vanilla commits
* Alter Roamer struct to add frostbite support
* Fix some indentation issues
* Add option to hide substitute followers
* Revert "Add option to hide substitute followers"
This reverts commit 3fadaafae5
.
* Incorporate feedback
21 lines
706 B
C
21 lines
706 B
C
#ifndef GUARD_ROAMER_H
|
|
#define GUARD_ROAMER_H
|
|
|
|
void DeactivateAllRoamers(void);
|
|
void InitRoamer(void);
|
|
void UpdateLocationHistoryForRoamer(void);
|
|
void RoamerMoveToOtherLocationSet(u32 roamerIndex);
|
|
void RoamerMove(u32 roamerIndex);
|
|
bool8 IsRoamerAt(u32 roamerIndex, u8 mapGroup, u8 mapNum);
|
|
void CreateRoamerMonInstance(u32 roamerIndex);
|
|
u8 TryStartRoamerEncounter(void);
|
|
void UpdateRoamerHPStatus(struct Pokemon *mon);
|
|
void SetRoamerInactive(u32 roamerIndex);
|
|
void GetRoamerLocation(u32 roamerIndex, u8 *mapGroup, u8 *mapNum);
|
|
bool8 TryAddRoamer(u16 species, u8 level);
|
|
void MoveAllRoamersToOtherLocationSets(void);
|
|
void MoveAllRoamers(void);
|
|
|
|
extern u8 gEncounteredRoamerIndex;
|
|
|
|
#endif // GUARD_ROAMER_H
|