diff options
Diffstat (limited to 'engine/battle/effect_commands/foresight.asm')
-rw-r--r-- | engine/battle/effect_commands/foresight.asm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/engine/battle/effect_commands/foresight.asm b/engine/battle/effect_commands/foresight.asm new file mode 100644 index 000000000..6f4f97cd2 --- /dev/null +++ b/engine/battle/effect_commands/foresight.asm @@ -0,0 +1,23 @@ +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 |