mirror of
https://github.com/pret/pokefirered.git
synced 2026-05-09 21:25:42 -05:00
40 lines
1.1 KiB
C
40 lines
1.1 KiB
C
#ifndef GUARD_FIELD_SPECIALS_H
|
|
#define GUARD_FIELD_SPECIALS_H
|
|
|
|
#include "global.h"
|
|
|
|
enum HiddenItemAttr
|
|
{
|
|
HIDDEN_ITEM_ID = 0,
|
|
HIDDEN_ITEM_FLAG,
|
|
HIDDEN_ITEM_QUANTITY,
|
|
HIDDEN_ITEM_UNDERFOOT
|
|
};
|
|
|
|
u8 GetLeadMonIndex(void);
|
|
s32 CountDigits(s32 number);
|
|
void TV_PrintIntToStringVar(u8 varidx, s32 number);
|
|
u16 GetStarterSpecies(void);
|
|
void StopPokemonLeagueLightingEffectTask(void);
|
|
void FieldCB_ShowPortholeView(void);
|
|
u8 ContextNpcGetTextColor(void);
|
|
void SetPCBoxToSendMon(u8);
|
|
u16 GetPCBoxToSendMon(void);
|
|
bool8 IsDestinationBoxFull(void);
|
|
bool8 ShouldShowBoxWasFullMessage(void);
|
|
u16 GetHiddenItemAttr(u32 hiddenItem, u8 attr);
|
|
u8 GetUnlockedSeviiAreas(void);
|
|
u32 GetPlayerTrainerId(void);
|
|
bool8 CutMoveRuinValleyCheck(void);
|
|
void CutMoveOpenDottedHoleDoor(void);
|
|
void RunMassageCooldownStepCounter(void);
|
|
void IncrementResortGorgeousStepCounter(void);
|
|
void IncrementBirthIslandRockStepCount(void);
|
|
void ResetCyclingRoadChallengeData(void);
|
|
void ResetFieldTasksArgs(void);
|
|
bool8 UsedPokemonCenterWarp(void);
|
|
void QuestLog_CheckDepartingIndoorsMap(void);
|
|
void QuestLog_TryRecordDepartedLocation(void);
|
|
|
|
#endif // GUARD_FIELD_SPECIALS_H
|