diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-08-27 10:53:17 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-08-27 10:53:17 -0500 |
commit | 5e66419093bee938c4b58b87da2ddfb00361fe7a (patch) | |
tree | 88438f9731bc440f7cff2b680c2b647de9561bbc /pokemontools/pksv.py | |
parent | 967de1cf3c16eb7806a745acc65ceb222ad5d6dc (diff) | |
parent | f0ef450967fa00377fb8d39211741e7d7a596396 (diff) |
Merge branch 'from-yenatch' into master
These commits (roughly) represent the changes made against extras/ by
yenatch. These are not cherrypicked and this isn't repeatable, sorry.
Diffstat (limited to 'pokemontools/pksv.py')
-rw-r--r-- | pokemontools/pksv.py | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/pokemontools/pksv.py b/pokemontools/pksv.py index 2f02ec0..ef3f425 100644 --- a/pokemontools/pksv.py +++ b/pokemontools/pksv.py @@ -293,13 +293,23 @@ pksv_crystal = { } #these cause the script to end; used in create_command_classes -pksv_crystal_more_enders = [0x03, 0x04, 0x05, 0x0C, 0x51, 0x52, - 0x53, 0x8D, 0x8F, 0x90, 0x91, 0x92, - 0x9B, - 0xB2, #maybe? - 0xCC, #maybe? - 0x9A, # describedecoration - ] +pksv_crystal_more_enders = [ + 0x03, # 2jump + 0x04, + 0x05, + 0x0C, + 0x51, + 0x52, + 0x53, + 0x65, + 0x8D, # priorityjump + 0x8F, # ptpriorityjump + 0x90, # return + 0x91, # end + 0x92, # reloadandreturn + 0x9A, # describedecoration + 0x9B, # fruittree +] # these have no pksv names as of pksv 2.1.1 pksv_crystal_unknowns = [ |