diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2019-05-14 15:42:55 +0200 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2019-05-16 17:09:43 -0500 |
commit | 4ae1e014bc799795c770564fb97f36c76913e5c8 (patch) | |
tree | 3a29c633b4ae1971b4a9fcce08af7ed5179010d6 /include | |
parent | 33979f0fa69001b41668726828603e22326694c1 (diff) |
Change abilities in base stats to array
Diffstat (limited to 'include')
-rw-r--r-- | include/pokemon.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/pokemon.h b/include/pokemon.h index 2199d2a36..0fc28f683 100644 --- a/include/pokemon.h +++ b/include/pokemon.h @@ -329,8 +329,7 @@ struct BaseStats /* 0x13 */ u8 growthRate; /* 0x14 */ u8 eggGroup1; /* 0x15 */ u8 eggGroup2; - /* 0x16 */ u8 ability1; - /* 0x17 */ u8 ability2; + /* 0x16 */ u8 abilities[2]; /* 0x18 */ u8 safariZoneFleeRate; /* 0x19 */ u8 bodyColor : 7; u8 noFlip : 1; |