27 lines
370 B
NASM
Raw Normal View History

2018-06-24 16:09:41 +02:00
BattleCommand_Spikes:
; spikes
2018-01-23 17:39:09 -05:00
ld hl, wEnemyScreens
ldh a, [hBattleTurn]
and a
jr z, .asm_3768e
2018-01-23 17:39:09 -05:00
ld hl, wPlayerScreens
.asm_3768e
; Fails if spikes are already down!
bit SCREENS_SPIKES, [hl]
jr nz, .failed
; Nothing else stops it from working.
set SCREENS_SPIKES, [hl]
call AnimateCurrentMove
ld hl, SpikesText
2019-04-08 14:15:10 +02:00
jp StdBattleTextbox
.failed
jp FailMove