diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-06 18:09:33 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-06 18:09:33 -0400 |
commit | 2e90df15b76050c825f6c0b96c88453feec8f3dd (patch) | |
tree | 7370a11f6a1d961eeb180066ca34cc7c5c2bda58 /engine/battle_anims | |
parent | cf26f559857de7317900578c21c2e8727964d36c (diff) |
Update battle anim bg function comments, and identify more unnamed labels
Diffstat (limited to 'engine/battle_anims')
-rw-r--r-- | engine/battle_anims/bg_effects.asm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/engine/battle_anims/bg_effects.asm b/engine/battle_anims/bg_effects.asm index f4775ab3c..1d814a943 100644 --- a/engine/battle_anims/bg_effects.asm +++ b/engine/battle_anims/bg_effects.asm @@ -2121,7 +2121,7 @@ BattleBGEffect_RapidFlash: ; unused db $e4, $6c, $fe BattleBGEffect_FadeMonToLight: -; BG_EFFECT_STRUCT_BATTLE_TURN: 0 = target of animation, 1 = user +; BG_EFFECT_STRUCT_BATTLE_TURN = BG_EFFECT_TARGET or BG_EFFECT_USER ld de, .Pals call BGEffect_RapidCyclePals ret @@ -2130,7 +2130,7 @@ BattleBGEffect_FadeMonToLight: db $e4, $90, $40, $ff BattleBGEffect_FadeMonToBlack: -; BG_EFFECT_STRUCT_BATTLE_TURN: 0 = target of animation, 1 = user +; BG_EFFECT_STRUCT_BATTLE_TURN = BG_EFFECT_TARGET or BG_EFFECT_USER ld de, .Pals call BGEffect_RapidCyclePals ret @@ -2139,7 +2139,7 @@ BattleBGEffect_FadeMonToBlack: db $e4, $f8, $fc, $ff BattleBGEffect_FadeMonToLightRepeating: -; BG_EFFECT_STRUCT_BATTLE_TURN: 0 = target of animation, 1 = user +; BG_EFFECT_STRUCT_BATTLE_TURN = BG_EFFECT_TARGET or BG_EFFECT_USER ld de, .Pals call BGEffect_RapidCyclePals ret @@ -2148,7 +2148,7 @@ BattleBGEffect_FadeMonToLightRepeating: db $e4, $90, $40, $90, $fe BattleBGEffect_FadeMonToBlackRepeating: -; BG_EFFECT_STRUCT_BATTLE_TURN: 0 = target of animation, 1 = user +; BG_EFFECT_STRUCT_BATTLE_TURN = BG_EFFECT_TARGET or BG_EFFECT_USER ld de, .Pals call BGEffect_RapidCyclePals ret @@ -2157,7 +2157,7 @@ BattleBGEffect_FadeMonToBlackRepeating: db $e4, $f8, $fc, $f8, $fe BattleBGEffect_CycleMonLightDarkRepeating: -; BG_EFFECT_STRUCT_BATTLE_TURN: 0 = target of animation, 1 = user +; BG_EFFECT_STRUCT_BATTLE_TURN = BG_EFFECT_TARGET or BG_EFFECT_USER ld de, .Pals call BGEffect_RapidCyclePals ret @@ -2166,7 +2166,7 @@ BattleBGEffect_CycleMonLightDarkRepeating: db $e4, $f8, $fc, $f8, $e4, $90, $40, $90, $fe BattleBGEffect_FlashMonRepeating: ; unused -; BG_EFFECT_STRUCT_BATTLE_TURN: 0 = target of animation, 1 = user +; BG_EFFECT_STRUCT_BATTLE_TURN = BG_EFFECT_TARGET or BG_EFFECT_USER ld de, .Pals call BGEffect_RapidCyclePals ret @@ -2175,7 +2175,7 @@ BattleBGEffect_FlashMonRepeating: ; unused db $e4, $fc, $e4, $00, $fe BattleBGEffect_FadeMonToWhiteWaitFadeBack: -; BG_EFFECT_STRUCT_BATTLE_TURN: 0 = target of animation, 1 = user +; BG_EFFECT_STRUCT_BATTLE_TURN = BG_EFFECT_TARGET or BG_EFFECT_USER ld de, .Pals call BGEffect_RapidCyclePals ret @@ -2184,7 +2184,7 @@ BattleBGEffect_FadeMonToWhiteWaitFadeBack: db $e4, $90, $40, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $00, $40, $90, $e4, $ff BattleBGEffect_FadeMonFromWhite: ; unused -; BG_EFFECT_STRUCT_BATTLE_TURN: 0 = target of animation, 1 = user +; BG_EFFECT_STRUCT_BATTLE_TURN = BG_EFFECT_TARGET or BG_EFFECT_USER ld de, .Pals call BGEffect_RapidCyclePals ret @@ -2194,7 +2194,7 @@ BattleBGEffect_FadeMonFromWhite: ; unused BattleBGEffect_VibrateMon: ; Moves mon back and forth sideways for $20 frames -; BG_EFFECT_STRUCT_BATTLE_TURN: 0 = target of animation, 1 = user +; BG_EFFECT_STRUCT_BATTLE_TURN = BG_EFFECT_TARGET or BG_EFFECT_USER call BattleBGEffects_AnonJumptable .anon_dw dw .zero |