pokecrystal-board/engine/battle/move_effects/foresight.asm

24 lines
373 B
NASM
Raw Normal View History

BattleCommand_Foresight: ; 376a0
2013-12-01 11:19:57 -08:00
; foresight
2018-01-23 14:39:09 -08:00
ld a, [wAttackMissed]
2013-12-01 11:19:57 -08:00
and a
jr nz, .failed
call CheckHiddenOpponent
jr nz, .failed
ld a, BATTLE_VARS_SUBSTATUS1_OPP
call GetBattleVarAddr
2013-12-01 11:19:57 -08:00
bit SUBSTATUS_IDENTIFIED, [hl]
jr nz, .failed
set SUBSTATUS_IDENTIFIED, [hl]
call AnimateCurrentMove
2013-12-01 11:19:57 -08:00
ld hl, IdentifiedText
jp StdBattleTextBox
.failed
jp FailMove
2013-12-01 11:19:57 -08:00
; 376c2