mirror of
https://github.com/pret/pokefirered.git
synced 2026-04-24 14:57:07 -05:00
36 lines
1.1 KiB
C
36 lines
1.1 KiB
C
#ifndef GUARD_DAYCARE_H
|
|
#define GUARD_DAYCARE_H
|
|
|
|
#include "global.h"
|
|
|
|
#define EGG_HATCH_LEVEL 5
|
|
|
|
u8 *GetMonNick(struct Pokemon *mon, u8 *dest);
|
|
u8 *GetBoxMonNick(struct BoxPokemon *mon, u8 *dest);
|
|
u8 CountPokemonInDaycare(struct DayCare *daycare);
|
|
void InitDaycareMailRecordMixing(struct DayCare *daycare, struct RecordMixingDayCareMail *daycareMail);
|
|
void StoreSelectedPokemonInDaycare(void);
|
|
u16 TakePokemonFromDaycare(void);
|
|
void GetDaycareCost(void);
|
|
u8 GetNumLevelsGainedFromDaycare(void);
|
|
void TriggerPendingDaycareEgg(void);
|
|
void RejectEggFromDayCare(void);
|
|
void CreateEgg(struct Pokemon *mon, u16 species, bool8 setHotSpringsLocation);
|
|
void GiveEggFromDaycare(void);
|
|
bool8 DoEggActions_CheckHatch(void);
|
|
u16 GetSelectedMonNickAndSpecies(void);
|
|
void GetDaycareMonNicknames(void);
|
|
u8 GetDaycareState(void);
|
|
void SetDaycareCompatibilityString(void);
|
|
bool8 NameHasGenderSymbol(const u8 *name, u8 genderRatio);
|
|
void ShowDaycareLevelMenu(void);
|
|
void ChooseSendDaycareMon(void);
|
|
|
|
void ScriptHatchMon(void);
|
|
bool8 sub_8071614(void);
|
|
void EggHatch(void);
|
|
u8 GetEggStepsToSubtract(void);
|
|
u16 sub_80722E0(void);
|
|
|
|
#endif // GUARD_DAYCARE_H
|