Conflicts: include/battle_anim.h include/battle_controllers.h include/battle_gfx_sfx_util.h include/battle_interface.h include/battle_main.h include/battle_script_commands.h include/battle_util.h include/easy_chat.h include/event_object_movement.h include/field_effect.h include/field_effect_helpers.h include/field_player_avatar.h include/intro.h include/item_use.h include/metatile_behavior.h include/move_relearner.h include/pokedex.h include/pokemon.h include/pokemon_icon.h include/roamer.h include/script_pokemon_util.h include/sprite.h include/text.h include/wild_encounter.h src/battle_controllers.c
41 lines
1.4 KiB
C
41 lines
1.4 KiB
C
#ifndef GUARD_FIELD_SPECIALS_H
|
|
#define GUARD_FIELD_SPECIALS_H
|
|
|
|
extern bool8 gBikeCyclingChallenge;
|
|
extern u8 gBikeCollisions;
|
|
extern u16 gScrollableMultichoice_ScrollOffset;
|
|
|
|
u8 GetLeadMonIndex(void);
|
|
bool8 IsDestinationBoxFull(void);
|
|
u16 GetPCBoxToSendMon(void);
|
|
bool8 InMultiPartnerRoom(void);
|
|
void UpdateTrainerFansAfterLinkBattle(void);
|
|
void IncrementBirthIslandRockStepCount(void);
|
|
bool8 AbnormalWeatherHasExpired(void);
|
|
bool8 ShouldDoBrailleRegicePuzzle(void);
|
|
bool32 ShouldDoWallyCall(void);
|
|
bool32 ShouldDoScottFortreeCall(void);
|
|
bool32 ShouldDoScottBattleFrontierCall(void);
|
|
bool32 ShouldDoRoxanneCall(void);
|
|
bool32 ShouldDoRivalRayquazaCall(void);
|
|
bool32 CountSSTidalStep(u16 delta);
|
|
u8 GetSSTidalLocation(s8 *mapGroup, s8 *mapNum, s16 *x, s16 *y);
|
|
void ShowScrollableMultichoice(void);
|
|
void FrontierGamblerSetWonOrLost(bool8 won);
|
|
u8 TryGainNewFanFromCounter(u8 incrementId);
|
|
bool8 InPokemonCenter(void);
|
|
void SetShoalItemFlag(u16 unused);
|
|
void UpdateFrontierManiac(u16 daysSince);
|
|
void UpdateFrontierGambler(u16 daysSince);
|
|
void ResetCyclingRoadChallengeData(void);
|
|
bool8 UsedPokemonCenterWarp(void);
|
|
void ResetFanClub(void);
|
|
bool8 ShouldShowBoxWasFullMessage(void);
|
|
void SetPCBoxToSendMon(u8 boxId);
|
|
void PreparePartyForSkyBattle(void);
|
|
void GetObjectPosition(u16*, u16*, u32, u32);
|
|
bool32 CheckObjectAtXY(u32, u32);
|
|
bool32 CheckPartyHasSpecies(u32);
|
|
|
|
#endif // GUARD_FIELD_SPECIALS_H
|