diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2017-11-15 22:12:18 +0100 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2017-11-15 22:12:18 +0100 |
commit | ba00a1c688f84edcab44bd183d6dea4e2e7ba0be (patch) | |
tree | d5dab85b30006f8064855afc0bb16d672b7eb91c /include/daycare.h | |
parent | 616edd6c3f591ed62f11aedbeb0dbc744fac4c07 (diff) |
daycare file fully done
Diffstat (limited to 'include/daycare.h')
-rw-r--r-- | include/daycare.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/daycare.h b/include/daycare.h index 460b7c183..7db44e024 100644 --- a/include/daycare.h +++ b/include/daycare.h @@ -3,4 +3,25 @@ #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); + #endif // GUARD_DAYCARE_H |