pokecrystal/battle/effects/mirror_move.asm

53 lines
697 B
NASM
Raw Normal View History

BattleCommand_MirrorMove: ; 373c9
2013-12-01 19:19:57 +00:00
; mirrormove
call Function372d8
2013-12-01 19:19:57 +00:00
ld a, BATTLE_VARS_MOVE
call GetBattleVarAddr
2013-12-01 19:19:57 +00:00
ld a, BATTLE_VARS_LAST_COUNTER_MOVE_OPP
call GetBattleVar
and a
jr z, .failed
call CheckUserMove
jr nz, .use
.failed
call AnimateFailedMove
2013-12-01 19:19:57 +00:00
ld hl, MirrorMoveFailedText
call StdBattleTextBox
jp EndMoveEffect
.use
ld a, b
ld [hl], a
ld [wd265], a
2013-12-01 19:19:57 +00:00
push af
ld a, BATTLE_VARS_MOVE_ANIM
call GetBattleVarAddr
2013-12-01 19:19:57 +00:00
ld d, h
ld e, l
pop af
dec a
call GetMoveData
call GetMoveName
call CopyName1
call Function34548
2013-12-01 19:19:57 +00:00
jr nz, .done
ld a, [wc689]
2013-12-01 19:19:57 +00:00
push af
2015-11-06 21:42:38 +00:00
call BattleCommand_LowerSub
2013-12-01 19:19:57 +00:00
pop af
ld [wc689], a
2013-12-01 19:19:57 +00:00
.done
call BattleCommand_MoveDelay
2013-12-01 19:19:57 +00:00
jp ResetTurn
; 37418