summaryrefslogtreecommitdiff
path: root/extras/type_constants.py
diff options
context:
space:
mode:
authorBryan Bishop <kanzure@gmail.com>2013-01-27 17:46:48 -0600
committerBryan Bishop <kanzure@gmail.com>2013-01-27 17:46:48 -0600
commit9a29def2503b00a971c7384e2071877aacf64eea (patch)
treef786aee63c05ceeae9141c4b493a0df792673b64 /extras/type_constants.py
parent80fc1f42c4222e467ad9e1a0ef69a6832b345d71 (diff)
basic type_constants data
Diffstat (limited to 'extras/type_constants.py')
-rw-r--r--extras/type_constants.py21
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,
+}