mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
21 lines
344 B
NASM
21 lines
344 B
NASM
BattleCommand_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
|