summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--move_constants.py2
-rw-r--r--pointers.py1
-rw-r--r--pokemon_constants.py2
3 files changed, 5 insertions, 0 deletions
diff --git a/move_constants.py b/move_constants.py
index 929f1fa..a20af85 100644
--- a/move_constants.py
+++ b/move_constants.py
@@ -1,3 +1,5 @@
+# -*- coding: utf-8 -*-
+
moves = {
0x01: "POUND",
0x02: "KARATE_CHOP",
diff --git a/pointers.py b/pointers.py
index f392241..6a1d242 100644
--- a/pointers.py
+++ b/pointers.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8 -*-
""" Various functions related to pointer and address math. Mostly to avoid
depedency loops.
"""
diff --git a/pokemon_constants.py b/pokemon_constants.py
index 33b6a0e..221a31c 100644
--- a/pokemon_constants.py
+++ b/pokemon_constants.py
@@ -1,3 +1,5 @@
+# -*- coding: utf-8 -*-
+
pokemon_constants = {
1: "BULBASAUR",
2: "IVYSAUR",