diff options
author | Diegoisawesome <Diegoisawesome@users.noreply.github.com> | 2018-12-06 13:38:58 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-06 13:38:58 -0600 |
commit | 800c6a901bcebdd8063a005ce78c201c93308f83 (patch) | |
tree | cc25cf5972348ce20d45a709df884a6faa0e0a13 /include/constants/pokemon.h | |
parent | 1b33ad6c26fa83aa7b77055ddde59c61df03d0e4 (diff) | |
parent | 2347e36d60258f82b0a9ee2c16619e54f5a65118 (diff) |
Merge pull request #428 from melthelesbian/pokedex_documentation
document pokédex options
Diffstat (limited to 'include/constants/pokemon.h')
-rw-r--r-- | include/constants/pokemon.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/constants/pokemon.h b/include/constants/pokemon.h index 1a4741574..f63d755ad 100644 --- a/include/constants/pokemon.h +++ b/include/constants/pokemon.h @@ -2,6 +2,7 @@ #define GUARD_CONSTANTS_POKEMON_H // Pokemon types +#define TYPE_NONE 0xFF #define TYPE_NORMAL 0x00 #define TYPE_FIGHTING 0x01 #define TYPE_FLYING 0x02 @@ -22,6 +23,7 @@ #define TYPE_DARK 0x11 #define NUMBER_OF_MON_TYPES 0x12 + // Pokemon egg groups #define EGG_GROUP_NONE 0 #define EGG_GROUP_MONSTER 1 |