Move-unique effect commands consistently go in engine/battle/move_effects/

This commit is contained in:
Rangi
2018-01-26 11:36:00 -05:00
parent a0cc4a3392
commit 0cf4eb6895
60 changed files with 2581 additions and 2574 deletions

View File

@@ -0,0 +1,39 @@
BattleCommand_TripleKick: ; 346b2
; triplekick
ld a, [wKickCounter]
ld b, a
inc b
ld hl, CurDamage + 1
ld a, [hld]
ld e, a
ld a, [hli]
ld d, a
.next_kick
dec b
ret z
ld a, [hl]
add e
ld [hld], a
ld a, [hl]
adc d
ld [hli], a
; No overflow.
jr nc, .next_kick
ld a, $ff
ld [hld], a
ld [hl], a
ret
; 346cd
BattleCommand_KickCounter: ; 346cd
; kickcounter
ld hl, wKickCounter
inc [hl]
ret
; 346d2