diff options
author | Sanky <gsanky@gmail.com> | 2013-02-02 23:13:32 +0100 |
---|---|---|
committer | Sanky <gsanky@gmail.com> | 2013-02-02 23:20:50 +0100 |
commit | 7df002c3e20f1b728b1d29a877c3731d4867f502 (patch) | |
tree | 14cf8cb4dc2a95f4137de1967679dd45df3c0db8 /extras/type_constants.py | |
parent | 6b8d77ffb23443cac8ca8bc570c758f7b77fa109 (diff) | |
parent | 1bf1d6e3ea7b75445803ed8d01c49014adf2e114 (diff) |
Merge https://github.com/kanzure/pokecrystal
Conflicts:
constants.asm
extras/crystal.py
main.asm
Diffstat (limited to 'extras/type_constants.py')
-rw-r--r-- | extras/type_constants.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/extras/type_constants.py b/extras/type_constants.py new file mode 100644 index 000000000..da89b0bc3 --- /dev/null +++ b/extras/type_constants.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +type_constants = { + "NORMAL": 0x00, + "FIGHTING": 0x01, + "FLYING": 0x02, + "POISON": 0x03, + "GROUND": 0x04, + "ROCK": 0x05, + "BUG": 0x07, + "GHOST": 0x08, + "STEEL": 0x09, + "CURSE_T": 0x13, + "FIRE": 0x14, + "WATER": 0x15, + "GRASS": 0x16, + "ELECTRIC": 0x17, + "PSYCHIC": 0x18, + "ICE": 0x19, + "DRAGON": 0x1A, + "DARK": 0x1B, +} |