summaryrefslogtreecommitdiff
path: root/engine/battle/a.asm
diff options
context:
space:
mode:
authorxCrystal <rgr.crystal@gmail.com>2015-04-01 11:41:20 +0200
committerxCrystal <rgr.crystal@gmail.com>2015-04-01 17:05:43 +0200
commit46c2a38c7c55ff01e8787dfd624cb1c771248b6c (patch)
tree6b8590d765cbb93f40fdb59d39f3a3e5d8ddb28e /engine/battle/a.asm
parente74dce24b4bbb0d0d23a1724932b289050b66d4a (diff)
Rename battle files and split move effects Part 2
5.asm, 9.asm, and a.asm
Diffstat (limited to 'engine/battle/a.asm')
-rwxr-xr-xengine/battle/a.asm39
1 files changed, 0 insertions, 39 deletions
diff --git a/engine/battle/a.asm b/engine/battle/a.asm
deleted file mode 100755
index a257d143..00000000
--- a/engine/battle/a.asm
+++ /dev/null
@@ -1,39 +0,0 @@
-LeechSeedEffect_: ; 2bea9 (a:7ea9)
- callab MoveHitTest
- ld a, [W_MOVEMISSED] ; W_MOVEMISSED
- and a
- jr nz, .asm_2bee7
- ld hl, W_ENEMYBATTSTATUS2 ; W_ENEMYBATTSTATUS2
- ld de, wEnemyMonType1 ; wcfea (aliases: wEnemyMonType)
- ld a, [H_WHOSETURN] ; $fff3
- and a
- jr z, .asm_2bec8
- ld hl, W_PLAYERBATTSTATUS2 ; W_PLAYERBATTSTATUS2
- ld de, wBattleMonType1 ; wd019 (aliases: wBattleMonType)
-.asm_2bec8
- ld a, [de]
- cp GRASS
- jr z, .asm_2bee7
- inc de
- ld a, [de]
- cp GRASS
- jr z, .asm_2bee7
- bit Seeded, [hl]
- jr nz, .asm_2bee7
- set Seeded, [hl]
- callab PlayCurrentMoveAnimation
- ld hl, WasSeededText ; $7ef2
- jp PrintText
-.asm_2bee7
- ld c, $32
- call DelayFrames
- ld hl, EvadedAttackText ; $7ef7
- jp PrintText
-
-WasSeededText: ; 2bef2 (a:7ef2)
- TX_FAR _WasSeededText
- db "@"
-
-EvadedAttackText: ; 2bef7 (a:7ef7)
- TX_FAR _EvadedAttackText
- db "@"