diff options
author | yenatch <yenatch@gmail.com> | 2014-01-05 08:11:31 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-01-05 08:13:43 -0500 |
commit | ea01721284572181dd34e09bc04f5a363e800b9c (patch) | |
tree | 8ce1a91657e932556fb8530eead2dbb9db740dc8 /constants/type_constants.asm | |
parent | 0a11c9f50002e141d0f6c157fbdd46ad26f8926f (diff) |
move type constants into constants/type_constants.asm
Diffstat (limited to 'constants/type_constants.asm')
-rw-r--r-- | constants/type_constants.asm | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/constants/type_constants.asm b/constants/type_constants.asm new file mode 100644 index 000000000..4ad3f3ed0 --- /dev/null +++ b/constants/type_constants.asm @@ -0,0 +1,38 @@ + +PHYSICAL EQU 0 + +NORMAL EQU 0 +FIGHTING EQU 1 +FLYING EQU 2 +POISON EQU 3 +GROUND EQU 4 +ROCK EQU 5 +BIRD EQU 6 +BUG EQU 7 +GHOST EQU 8 +STEEL EQU 9 + + +TYPE_10 EQU 10 +TYPE_11 EQU 11 +TYPE_12 EQU 12 +TYPE_13 EQU 13 +TYPE_14 EQU 14 +TYPE_15 EQU 15 +TYPE_16 EQU 16 +TYPE_17 EQU 17 +TYPE_18 EQU 18 +CURSE_T EQU 19 + + +SPECIAL EQU 20 + +FIRE EQU 20 +WATER EQU 21 +GRASS EQU 22 +ELECTRIC EQU 23 +PSYCHIC EQU 24 +ICE EQU 25 +DRAGON EQU 26 +DARK EQU 27 + |