diff options
author | scnorton <scnorton@biociphers.org> | 2017-06-16 14:55:28 -0400 |
---|---|---|
committer | scnorton <scnorton@biociphers.org> | 2017-06-16 14:55:28 -0400 |
commit | 7325a0e0bfba773900a051bf802a16c16b4f3fd8 (patch) | |
tree | 95d41feda9701f5b49cd92a0fae3dc94bd455fd6 /include/pokemon.h | |
parent | dc9db3f9716cad46f946d502e374c40c57441a25 (diff) |
Convert base stats to c objects
Diffstat (limited to 'include/pokemon.h')
-rw-r--r-- | include/pokemon.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/include/pokemon.h b/include/pokemon.h index 28f9cbc1c..e3956df7a 100644 --- a/include/pokemon.h +++ b/include/pokemon.h @@ -407,6 +407,28 @@ struct SpindaSpot u16 image[16]; }; +enum { + GROWTH_MEDIUM_FAST, + GROWTH_ERRATIC, + GROWTH_FLUCTUATING, + GROWTH_MEDIUM_SLOW, + GROWTH_FAST, + GROWTH_SLOW +}; + +enum { + BODY_COLOR_RED, + BODY_COLOR_BLUE, + BODY_COLOR_YELLOW, + BODY_COLOR_GREEN, + BODY_COLOR_BLACK, + BODY_COLOR_BROWN, + BODY_COLOR_PURPLE, + BODY_COLOR_GRAY, + BODY_COLOR_WHITE, + BODY_COLOR_PINK +}; + #define EVO_FRIENDSHIP 0x0001 // Pokémon levels up with friendship ≥ 220 #define EVO_FRIENDSHIP_DAY 0x0002 // Pokémon levels up during the day with friendship ≥ 220 #define EVO_FRIENDSHIP_NIGHT 0x0003 // Pokémon levels up at night with friendship ≥ 220 |