Skip to content

Commit

Permalink
Update pokemon.h
Browse files Browse the repository at this point in the history
  • Loading branch information
ecopsychologer committed Nov 15, 2023
1 parent e6fcd72 commit d3a8296
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions include/pokemon.h
Original file line number Diff line number Diff line change
Expand Up @@ -180,16 +180,16 @@ typedef struct BoxPokemon {
* Rather than recalculating stats after each battle, they're stored here.
*/
typedef struct PartyPokemon {
u32 status; // status
u8 level; // level
u8 mail; // mail 04
u16 hp; // hp 06
u16 maxHP; // max hp 08
u16 attack; // attack 0a
u16 defense; // defense 0c
u16 speed; // speed 0e
u16 spAtk; // sp. attack 10
u16 spDef; // sp. defense
u32 status;
u8 level;
u8 mail;
u16 hp;
u16 maxHP;
u16 attack;
u16 defense;
u16 speed;
u16 spAtk;
u16 spDef;
UnkStruct_0202818C unk_14;
UnkStruct_0202CA28 unk_4C;
} PartyPokemon;
Expand Down

0 comments on commit d3a8296

Please sign in to comment.