summaryrefslogtreecommitdiff
path: root/include/pokemon.h
diff options
context:
space:
mode:
authorcamthesaxman <cameronghall@cox.net>2018-01-31 17:37:03 -0600
committercamthesaxman <cameronghall@cox.net>2018-01-31 17:37:03 -0600
commit46023e742c7704c449ae7ec9c2a592cd923f40e6 (patch)
tree9f6c6591e60f83003f6abccb5a28cfb3004ad2ab /include/pokemon.h
parentcb674ce14dc43f99dd76f456e69ab8a90cc3d506 (diff)
parent2bd2dd1db7252a928a84cd65ea0510ed1533fa9b (diff)
Merge branch 'master' into german_debug
Conflicts: asm/pokemon_storage_system.s data/pokemon_storage_system.s src/pokemon/pokemon_1.c src/pokemon/pokemon_storage_system.c sym_common.txt sym_ewram.txt
Diffstat (limited to 'include/pokemon.h')
-rw-r--r--include/pokemon.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/include/pokemon.h b/include/pokemon.h
index 6e3e15404..169045c0c 100644
--- a/include/pokemon.h
+++ b/include/pokemon.h
@@ -428,10 +428,10 @@ struct BattleMove
struct PokemonStorage
{
- /*0x00*/ u8 currentBox;
- /*0x01*/ struct BoxPokemon boxes[14][30];
- u8 boxNames[14][9];
- u8 unkArray[14];
+ /*0x0000*/ u8 currentBox;
+ /*0x0004*/ struct BoxPokemon boxes[14][30];
+ /*0x8344*/ u8 boxNames[14][9];
+ /*0x83c2*/ u8 wallpaper[14];
};
struct SpindaSpot
@@ -522,7 +522,7 @@ void sub_803ADE8(struct Pokemon *mon, struct UnknownPokemonStruct *src);
void sub_803AF78(struct Pokemon *mon, struct UnknownPokemonStruct *dest);
u16 CalculateBoxMonChecksum(struct BoxPokemon *boxMon);
void CalculateMonStats(struct Pokemon *mon);
-void sub_803B4B4(const struct BoxPokemon *src, struct Pokemon *dest);
+void ExpandBoxMon(const struct BoxPokemon *src, struct Pokemon *dest);
u8 GetLevelFromMonExp(struct Pokemon *mon);
u8 GetLevelFromBoxMonExp(struct BoxPokemon *boxMon);
u16 GiveMoveToMon(struct Pokemon *mon, u16 move);
@@ -627,9 +627,8 @@ void RandomlyGivePartyPokerus(struct Pokemon *party);
void PartySpreadPokerus(struct Pokemon *party);
struct Sprite *sub_80F7920(u16, u16, const u16 *);
+void BoxMonRestorePP(struct BoxPokemon *);
bool8 HealStatusConditions(struct Pokemon *mon, u32 unused, u32 healMask, u8 battleId);
-
-
#endif // GUARD_POKEMON_H