pokecrystal-board/engine/battle/move_effects/foresight.asm
2018-06-24 16:13:22 +02:00

23 lines
357 B
NASM

BattleCommand_Foresight:
; foresight
ld a, [wAttackMissed]
and a
jr nz, .failed
call CheckHiddenOpponent
jr nz, .failed
ld a, BATTLE_VARS_SUBSTATUS1_OPP
call GetBattleVarAddr
bit SUBSTATUS_IDENTIFIED, [hl]
jr nz, .failed
set SUBSTATUS_IDENTIFIED, [hl]
call AnimateCurrentMove
ld hl, IdentifiedText
jp StdBattleTextBox
.failed
jp FailMove