diff options
Diffstat (limited to 'constants.asm')
-rw-r--r-- | constants.asm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/constants.asm b/constants.asm index 03df937c1..b835db3cf 100644 --- a/constants.asm +++ b/constants.asm @@ -3442,6 +3442,22 @@ BATTLE_VARS_LAST_MOVE EQU 19 BATTLE_VARS_LAST_MOVE_OPP EQU 20 +; battle animations +; animations below fc are 1:1 with move constants +ANIM_CONFUSED EQU $103 +ANIM_SLEEP EQU $104 + +ANIM_INLOVE EQU $10a + + +WEATHER_RAIN EQU 1 +WEATHER_SUN EQU 2 +WEATHER_SANDSTORM EQU 3 +WEATHER_RAIN_END EQU 4 +WEATHER_SUN_END EQU 5 +WEATHER_SANDSTORM_END EQU 6 + + ; joypad BUTTONS EQU %00010000 D_PAD EQU %00100000 |