shithub: pokecrystal

ref: 09d9f2c1ef48b0e33ba1616d7a3459f5d4431ce3
dir: /battle/effects/foresight.asm/

View raw version
BattleCommand_Foresight: ; 376a0
; foresight

	ld a, [AttackMissed]
	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 FailForesight
; 376c2