diff options
author | luckytyphlosion <alan.rj.huang@gmail.com> | 2015-07-06 13:35:48 -0400 |
---|---|---|
committer | luckytyphlosion <alan.rj.huang@gmail.com> | 2015-07-06 13:35:48 -0400 |
commit | 9c9fb882c70650b82f4e684d12a5f5cf03d18ae6 (patch) | |
tree | 38e83aa984862e0e6010e490f2092b9eaf5d5807 /engine/battle/moveEffects/reflect_light_screen_effect.asm | |
parent | 9facc162f3b750a35ed10ad0fa00e5a17e260adf (diff) |
Complete documentation of bank3d
todo: label functions past engine/items/tm_prices.asm
check if hlCoords are correct.
Diffstat (limited to 'engine/battle/moveEffects/reflect_light_screen_effect.asm')
-rw-r--r-- | engine/battle/moveEffects/reflect_light_screen_effect.asm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engine/battle/moveEffects/reflect_light_screen_effect.asm b/engine/battle/moveEffects/reflect_light_screen_effect.asm index 7da98699..c12c6018 100644 --- a/engine/battle/moveEffects/reflect_light_screen_effect.asm +++ b/engine/battle/moveEffects/reflect_light_screen_effect.asm @@ -1,4 +1,4 @@ -ReflectLightScreenEffect_: ; 3bb97 (e:7b97) +ReflectLightScreenEffect_: ; f645d (3d:645d) ld hl, W_PLAYERBATTSTATUS3 ld de, W_PLAYERMOVEEFFECT ld a, [H_WHOSETURN] @@ -23,23 +23,23 @@ ReflectLightScreenEffect_: ; 3bb97 (e:7b97) .playAnim push hl ld hl, PlayCurrentMoveAnimation - call BankswitchEtoF + call Bankswitch3DtoF pop hl jp PrintText .moveFailed ld c, $32 call DelayFrames ld hl, PrintButItFailedText_ - jp BankswitchEtoF + jp Bankswitch3DtoF -LightScreenProtectedText: ; 3bbd7 (e:7bd7) +LightScreenProtectedText: ; f649d (3d:649d) TX_FAR _LightScreenProtectedText db "@" -ReflectGainedArmorText: ; 3bbdc (e:7bdc) +ReflectGainedArmorText: ; f64a2 (3d:64a2) TX_FAR _ReflectGainedArmorText db "@" -BankswitchEtoF: ; 3bbe1 (e:7be1) +Bankswitch3DtoF: ; f64a7 (3d:64a7) ld b, BANK(BattleCore) jp Bankswitch |