diff options
author | yenatch <yenatch@gmail.com> | 2013-11-07 01:00:14 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-11-07 01:00:14 -0500 |
commit | a9aae368887caac706def81f0b991c7e778ad341 (patch) | |
tree | 8d1f9facb4409d83a1f4aafa7d1857e677a6669b /pokemontools/crystal.py | |
parent | 5612a982abb7b5de72868ca7ccaa89641c6e3d22 (diff) |
fix spacing for pokered music command classes
Diffstat (limited to 'pokemontools/crystal.py')
-rw-r--r-- | pokemontools/crystal.py | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/pokemontools/crystal.py b/pokemontools/crystal.py index e4238ba..cdab01f 100644 --- a/pokemontools/crystal.py +++ b/pokemontools/crystal.py @@ -2529,22 +2529,26 @@ class ChannelCommand(Command): 1: {"name": "address", "class": PointerLabelParam}, } + +# pokered + class callchannel(Command): - id = 0xFD - macro_name = "callchannel" - size = 3 - param_types = { - 0: {"name": "address", "class": PointerLabelParam}, - } + id = 0xFD + macro_name = "callchannel" + size = 3 + param_types = { + 0: {"name": "address", "class": PointerLabelParam}, + } class loopchannel(Command): - id = 0xFE - macro_name = "loopchannel" - size = 4 - param_types = { - 0: {"name": "count", "class": SingleByteParam}, - 1: {"name": "address", "class": PointerLabelParam}, - } + id = 0xFE + macro_name = "loopchannel" + size = 4 + param_types = { + 0: {"name": "count", "class": SingleByteParam}, + 1: {"name": "address", "class": PointerLabelParam}, + } + effect_commands = { 0x1: ['checkturn'], |