From dd7989cef8e393980f482b69ab2472170ee44da8 Mon Sep 17 00:00:00 2001 From: yenatch Date: Thu, 19 Dec 2013 04:49:20 -0500 Subject: [PATCH] preprocessor: battle animation macros --- preprocessor.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/preprocessor.py b/preprocessor.py index c9f90553b..93508c027 100644 --- a/preprocessor.py +++ b/preprocessor.py @@ -25,6 +25,11 @@ from extras.pokemontools.audio import ( Note, ) +from extras.pokemontools.battle_animations import ( + Wait, + battle_animation_classes, +) + def load_pokecrystal_macros(): """ Construct a list of macros that are needed for pokecrystal preprocessing. @@ -40,6 +45,7 @@ def load_pokecrystal_macros(): ChannelCommand, OctaveCommand, Note, + Wait, ] ourmacros += command_classes @@ -48,6 +54,7 @@ def load_pokecrystal_macros(): ourmacros += movement_command_classes ourmacros += music_classes ourmacros += effect_classes + ourmacros += battle_animation_classes return ourmacros