diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-01-27 17:46:48 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-01-27 17:46:48 -0600 |
commit | a9347aa296c25a3dc582f89c8c1f4849d3da30ad (patch) | |
tree | ec2363d8fe78100bfe9062a742b5211d31fc8cb2 | |
parent | a5f54394f583e4b3ed86a670ea25633faa13776b (diff) |
basic type_constants data
original-commit-id: 9a29def2503b00a971c7384e2071877aacf64eea
-rw-r--r-- | type_constants.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/type_constants.py b/type_constants.py new file mode 100644 index 0000000..da89b0b --- /dev/null +++ b/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, +} |