summaryrefslogtreecommitdiff
path: root/battle/effects/mirror_move.asm
diff options
context:
space:
mode:
authorRemy Oukaour <remy.oukaour@gmail.com>2017-12-26 17:47:05 -0500
committerRemy Oukaour <remy.oukaour@gmail.com>2017-12-26 17:47:05 -0500
commitb5417fafec7dd37cb4be391f3bd3d4541a2a381e (patch)
treea4e7d08afb2e862186a138e82c8ef4785d82786d /battle/effects/mirror_move.asm
parent2f98c2032fd47ada3484bfc37d590992f286d3d4 (diff)
Split battle/ into data/ and engine/ components
Diffstat (limited to 'battle/effects/mirror_move.asm')
-rw-r--r--battle/effects/mirror_move.asm52
1 files changed, 0 insertions, 52 deletions
diff --git a/battle/effects/mirror_move.asm b/battle/effects/mirror_move.asm
deleted file mode 100644
index c4f208d77..000000000
--- a/battle/effects/mirror_move.asm
+++ /dev/null
@@ -1,52 +0,0 @@
-BattleCommand_MirrorMove: ; 373c9
-; mirrormove
-
- call ClearLastMove
-
- ld a, BATTLE_VARS_MOVE
- call GetBattleVarAddr
-
- ld a, BATTLE_VARS_LAST_COUNTER_MOVE_OPP
- call GetBattleVar
- and a
- jr z, .failed
-
- call CheckUserMove
- jr nz, .use
-
-.failed
- call AnimateFailedMove
-
- ld hl, MirrorMoveFailedText
- call StdBattleTextBox
- jp EndMoveEffect
-
-.use
- ld a, b
- ld [hl], a
- ld [wd265], a
-
- push af
- ld a, BATTLE_VARS_MOVE_ANIM
- call GetBattleVarAddr
- ld d, h
- ld e, l
- pop af
-
- dec a
- call GetMoveData
- call GetMoveName
- call CopyName1
- call CheckUserIsCharging
- jr nz, .done
-
- ld a, [wKickCounter]
- push af
- call BattleCommand_LowerSub
- pop af
- ld [wKickCounter], a
-
-.done
- call BattleCommand_MoveDelay
- jp ResetTurn
-; 37418