mirror of https://github.com/pret/pokecrystal.git
preprocessor: battle animation macros
This commit is contained in:
parent
4bb8c82d8a
commit
dd7989cef8
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue