pokered/engine/battle/moveEffects/reflect_light_screen_effect.asm

46 lines
1 KiB
NASM
Raw Normal View History

2016-06-12 00:24:04 +00:00
ReflectLightScreenEffect_:
2015-08-31 02:38:41 +00:00
ld hl, wPlayerBattleStatus3
ld de, wPlayerMoveEffect
ld a, [H_WHOSETURN]
and a
jr z, .reflectLightScreenEffect
2015-08-31 02:38:41 +00:00
ld hl, wEnemyBattleStatus3
ld de, wEnemyMoveEffect
.reflectLightScreenEffect
ld a, [de]
cp LIGHT_SCREEN_EFFECT
jr nz, .reflect
bit HasLightScreenUp, [hl] ; is mon already protected by light screen?
jr nz, .moveFailed
set HasLightScreenUp, [hl] ; mon is now protected by light screen
ld hl, LightScreenProtectedText
jr .playAnim
.reflect
bit HasReflectUp, [hl] ; is mon already protected by reflect?
jr nz, .moveFailed
set HasReflectUp, [hl] ; mon is now protected by reflect
ld hl, ReflectGainedArmorText
.playAnim
push hl
ld hl, PlayCurrentMoveAnimation
call BankswitchEtoF
pop hl
jp PrintText
.moveFailed
ld c, 50
call DelayFrames
ld hl, PrintButItFailedText_
jp BankswitchEtoF
2016-06-12 00:24:04 +00:00
LightScreenProtectedText:
TX_FAR _LightScreenProtectedText
db "@"
2016-06-12 00:24:04 +00:00
ReflectGainedArmorText:
TX_FAR _ReflectGainedArmorText
db "@"
2016-06-12 00:24:04 +00:00
BankswitchEtoF:
ld b, BANK(BattleCore)
jp Bankswitch