diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2020-10-01 13:32:53 -0500 |
---|---|---|
committer | Seth Barberee <seth.barberee@gmail.com> | 2020-10-01 13:32:53 -0500 |
commit | 96fdd3aae0ba1d923b358128012979a9a1a0eb38 (patch) | |
tree | ea50555b95a9848794c7464174a9d3ed53990e45 /include | |
parent | 70c644dfdd82dd31038faf1e2ca37b833ee8c328 (diff) |
successful decomp of one pokemon data func and struct.. making headway
Diffstat (limited to 'include')
-rw-r--r-- | include/pokemon.h | 37 |
1 files changed, 36 insertions, 1 deletions
diff --git a/include/pokemon.h b/include/pokemon.h index fba7199..68164ef 100644 --- a/include/pokemon.h +++ b/include/pokemon.h @@ -3,7 +3,42 @@ struct gPokemon { - /* 0x0 */ u8* unk0; + /* 0x0 */ u8* species; // verified + /* 0x4 */ u8* category; + /* 0x8 */ u8 overworld_sprite; // verified + /* 0x9 */ u8 size; + /* 0x9 */ u8 unkA; + /* 0xB */ u8 unkB; + /* 0xC */ s32 move_speed; + /* 0x10 */ u16 dialogue_sprites; // verified + /* 0x12 */ u8 unk12; //verified + /* 0x13 */ u8 type_1; + /* 0x14 */ u8 type_2; + /* 0x15 */ u8 walkable_tiles; + /* 0x16 */ u8 friend_area; // verified + /* 0x16 */ u8 ability_1; + /* 0x18 */ u8 ability_2; + /* 0x19 */ u8 shadow_size; + /* 0x1A */ u8 unk1A; + /* 0x1B */ u16 unk1B; + /* 0x1D */ u8 unk1D; + /* 0x1E */ u16 base_hp; + /* 0x20 */ u16 base_exp; // verified + /* 0x22 */ u16 unk22; // verified + /* 0x24 */ u16 base_att; + /* 0x26 */ u16 base_spatt; + /* 0x28 */ u16 base_def; + /* 0x2A */ u16 base_spdef; + /* 0x2C */ u16 lowkick_dmg; + /* 0x2E */ u16 sizeorb_dmg; + /* 0x30 */ u16 unk30; + /* 0x32 */ u16 unk32; + /* 0x34 */ u16 unk34; //verified + /* 0x36 */ u16 evolve_type; + /* 0x38 */ u32 evolve_need1; // verified + /* 0x3C */ u16 unk3C; + /* 0x3E */ s16 unk3E; // verified + /* 0x40 */ s16 base_recruit; // verified }; #endif // POKEMON_H |