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

21 lines
344 B
NASM
Raw Normal View History

2018-06-24 07:09:41 -07:00
BattleCommand_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
2019-04-08 05:15:10 -07:00
jp StdBattleTextbox
2013-12-01 11:19:57 -08:00
.failed
jp FailMove