diff options
| author | Cleverking2003 <30466983+Cleverking2003@users.noreply.github.com> | 2020-06-19 00:02:47 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-19 00:02:47 +0300 |
| commit | 41317a2b7625919ebba39c06b5aaf9e3b0800b1d (patch) | |
| tree | 1780ce6f8ee57a163b95beaa99e45e6aed776346 /include/constants/pokemon.h | |
| parent | e3077928198b2f51854812bcd04e1ebe1e6112f5 (diff) | |
| parent | a455bac566535ec559aac9164e05781093653057 (diff) | |
Merge branch 'master' into master
Diffstat (limited to 'include/constants/pokemon.h')
| -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 |
