diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-01-27 17:17:45 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-01-27 17:17:45 -0600 |
commit | 15ad3b8d1ebdcb598890a8500c0cf6e2d98894bf (patch) | |
tree | 9daa20c87079c0fdb3f6e27891e5613aab4504fb /pksv.py | |
parent | 06174e7c2a22fe31812bf0e43e00105e01e49718 (diff) |
add character encoding header in pksv.py
original-commit-id: edee13391dd8f3c8f5a5d0164a60edb4ad99b483
Diffstat (limited to 'pksv.py')
-rw-r--r-- | pksv.py | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- pksv_gs = { 0x00: "2call", @@ -141,8 +142,8 @@ pksv_gs = { 0xA3: "displaylocation", } -#see http://www.pokecommunity.com/showpost.php?p=4347261 -#NOTE: this has some updates that need to be back-ported to gold +# see http://www.pokecommunity.com/showpost.php?p=4347261 +# NOTE: this has some updates that need to be back-ported to gold pksv_crystal = { 0x00: "2call", 0x01: "3call", @@ -299,7 +300,7 @@ pksv_crystal_more_enders = [0x03, 0x04, 0x05, 0x0C, 0x51, 0x52, 0xCC, #maybe? ] -#these have no pksv names as of pksv 2.1.1 +# these have no pksv names as of pksv 2.1.1 pksv_crystal_unknowns = [ 0x9F, 0xA6, 0xA7, 0xA8, 0xA9, 0xAA, 0xAB, 0xAC, 0xAD, 0xAE, 0xAF, |