diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/daycare.h | 2 | ||||
-rw-r--r-- | include/items.h | 3 | ||||
-rw-r--r-- | include/pokemon.h | 1 |
3 files changed, 5 insertions, 1 deletions
diff --git a/include/daycare.h b/include/daycare.h index b50daca09..101746736 100644 --- a/include/daycare.h +++ b/include/daycare.h @@ -1,6 +1,6 @@ #ifndef GUARD_DAYCARE #define GUARD_DAYCARE - +#define EGG_HATCH_LEVEL 5 #endif // GUARD_DAYCARE diff --git a/include/items.h b/include/items.h index 69515f18e..1f6c288c5 100644 --- a/include/items.h +++ b/include/items.h @@ -386,4 +386,7 @@ enum ITEM_OLD_SEA_MAP, // 0x178 }; +#define NUM_TECHNICAL_MACHINES 50 +#define NUM_HIDDEN_MACHINES 8 + #endif // GUARD_ITEMS_H diff --git a/include/pokemon.h b/include/pokemon.h index c0b2841ca..1eb052f4e 100644 --- a/include/pokemon.h +++ b/include/pokemon.h @@ -652,6 +652,7 @@ void sub_806A12C(u16 trainerSpriteId, u8 bankIdentity); u8 GetSecretBaseTrainerPicIndex(void); bool8 TryIncrementMonLevel(struct Pokemon *mon); void BoxMonToMon(struct BoxPokemon *srcMon, struct Pokemon *dstMon); +u8 GetLevelUpMovesBySpecies(u16 species, u16 *moves); #include "sprite.h" |