44 lines
666 B
NASM
Raw Normal View History

2018-06-24 16:09:41 +02:00
BattleCommand_Metronome:
2013-12-01 14:19:57 -05:00
; metronome
2015-11-09 16:41:09 -05:00
call ClearLastMove
call CheckUserIsCharging
2013-12-01 14:19:57 -05:00
jr nz, .asm_3742b
2015-11-06 20:55:16 -05:00
ld a, [wKickCounter]
2013-12-01 14:19:57 -05:00
push af
2015-11-06 16:42:38 -05:00
call BattleCommand_LowerSub
2013-12-01 14:19:57 -05:00
pop af
2015-11-06 20:55:16 -05:00
ld [wKickCounter], a
2013-12-01 14:19:57 -05:00
.asm_3742b
2015-11-09 16:41:09 -05:00
call LoadMoveAnim
2013-12-01 14:19:57 -05:00
.GetMove:
2013-12-01 14:19:57 -05:00
call BattleRandom
; No invalid moves.
cp NUM_ATTACKS + 1
jr nc, .GetMove
; None of the moves in MetronomeExcepts.
push af
ld de, 1
ld hl, MetronomeExcepts
call IsInArray
pop bc
jr c, .GetMove
; No moves the user already has.
ld a, b
call CheckUserMove
jr z, .GetMove
ld a, BATTLE_VARS_MOVE
call GetBattleVarAddr
2013-12-01 14:19:57 -05:00
ld [hl], b
call UpdateMoveData
jp ResetTurn
2018-01-25 21:34:42 -05:00
INCLUDE "data/battle/metronome_exception_moves.asm"