From 7325a0e0bfba773900a051bf802a16c16b4f3fd8 Mon Sep 17 00:00:00 2001 From: scnorton Date: Fri, 16 Jun 2017 14:55:28 -0400 Subject: Convert base stats to c objects --- include/pokemon.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'include/pokemon.h') 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 -- cgit v1.2.3