diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-06-18 15:03:34 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-06-18 15:03:34 -0400 |
commit | 2f6c94828b62df2c6715e998731558bfba6218b7 (patch) | |
tree | f08aa469d0db5041df0a416c09ccdbe60ae67117 /include/constants | |
parent | 28b7cf28c73879c406324f14df424fd7f46e9c14 (diff) |
evo tables to JSON
Diffstat (limited to 'include/constants')
-rw-r--r-- | include/constants/pokemon.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/include/constants/pokemon.h b/include/constants/pokemon.h index 9accbad1..5c8c32d4 100644 --- a/include/constants/pokemon.h +++ b/include/constants/pokemon.h @@ -404,4 +404,35 @@ typedef enum { UNOWN_QUESTION_MARK = 27 } AlternateForms; +typedef enum EvoMethod +{ + EVO_NONE = 0, + EVO_FRIENDSHIP, + EVO_FRIENDSHIP_DAY, + EVO_FRIENDSHIP_NIGHT, + EVO_LEVEL, + EVO_TRADE, + EVO_TRADE_ITEM, + EVO_STONE, + EVO_LEVEL_ATK_GT_DEF, + EVO_LEVEL_ATK_EQ_DEF, + EVO_LEVEL_ATK_LT_DEF, + EVO_LEVEL_PID_LO, + EVO_LEVEL_PID_HI, + EVO_LEVEL_NINJASK, + EVO_LEVEL_SHEDINJA, + EVO_BEAUTY, + EVO_STONE_MALE, + EVO_STONE_FEMALE, + EVO_ITEM_DAY, + EVO_ITEM_NIGHT, + EVO_HAS_MOVE, + EVO_OTHER_PARTY_MON, + EVO_LEVEL_MALE, + EVO_LEVEL_FEMALE, + EVO_CORONET, + EVO_ETERNA, + EVO_ROUTE217, +} EvoMethod; + #endif //POKEDIAMOND_CONSTANTS_POKEMON_H |