diff options
author | scnorton <scnorton@biociphers.org> | 2017-06-16 15:45:07 -0400 |
---|---|---|
committer | scnorton <scnorton@biociphers.org> | 2017-06-16 15:45:07 -0400 |
commit | 803af50dafe276876d6e6d8d850ed3f69674d505 (patch) | |
tree | 1a3bc33341839d921cd3386e49253aa2415159c5 /include/pokemon.h | |
parent | 7325a0e0bfba773900a051bf802a16c16b4f3fd8 (diff) |
Convert level up learnsets to c objects
Diffstat (limited to 'include/pokemon.h')
-rw-r--r-- | include/pokemon.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/pokemon.h b/include/pokemon.h index e3956df7a..15fa37c13 100644 --- a/include/pokemon.h +++ b/include/pokemon.h @@ -407,6 +407,11 @@ struct SpindaSpot u16 image[16]; }; +struct __attribute__((packed)) LevelUpMove { + u16 move:9; + u16 level:7; +}; + enum { GROWTH_MEDIUM_FAST, GROWTH_ERRATIC, |