diff options
Diffstat (limited to 'include')
-rwxr-xr-x | include/field_map_obj.h | 1 | ||||
-rwxr-xr-x | include/pokemon.h | 1 | ||||
-rw-r--r-- | include/pokemon_summary_screen.h | 1 | ||||
-rwxr-xr-x | include/vars.h | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/include/field_map_obj.h b/include/field_map_obj.h index 5eaa15149..2d62af202 100755 --- a/include/field_map_obj.h +++ b/include/field_map_obj.h @@ -199,5 +199,6 @@ u8 GetOppositeDirection(u8); void sub_80634D0(struct MapObject *, struct Sprite *); u8 SpawnSpecialFieldObjectParametrized(u8, u8, u8, s16, s16, u8); void CameraObjectSetFollowedObjectId(u8); +void sub_805ADDC(u8); #endif // GUARD_FIELD_MAP_OBJ_H diff --git a/include/pokemon.h b/include/pokemon.h index c09f3870e..101ae94ce 100755 --- a/include/pokemon.h +++ b/include/pokemon.h @@ -409,6 +409,7 @@ extern u8 gStatStageRatios[][2]; extern struct Pokemon gPlayerParty[PARTY_SIZE]; extern struct Pokemon gEnemyParty[PARTY_SIZE]; +extern struct PokemonStorage gPokemonStorage; void ZeroBoxMonData(struct BoxPokemon *boxMon); void ZeroMonData(struct Pokemon *mon); diff --git a/include/pokemon_summary_screen.h b/include/pokemon_summary_screen.h index 3f7ed8fad..1d53a131c 100644 --- a/include/pokemon_summary_screen.h +++ b/include/pokemon_summary_screen.h @@ -12,5 +12,6 @@ u8 GetMonStatusAndPokerus(); u8 *sub_80A1E9C(u8 *dest, const u8 *src, u8); u8 *PokemonSummaryScreen_CopyPokemonLevel(u8 *dest, u8 level); u8 PokemonSummaryScreen_CheckOT(struct Pokemon *pokemon); +bool8 CheckPartyPokerus(struct Pokemon *, u8); #endif // GUARD_POKEMON_SUMMARY_SCREEN_H diff --git a/include/vars.h b/include/vars.h index fcc3311a6..50ca97818 100755 --- a/include/vars.h +++ b/include/vars.h @@ -37,5 +37,6 @@ #define VAR_PORTHOLE 0x40B4 #define VAR_0x40BC 0x40BC +#define VAR_0x40C2 0x40C2 #endif // GUARD_VARS_H |