pokecrystal-board/engine/battle/move_effects/spikes.asm

27 lines
374 B
NASM
Raw Normal View History

2018-06-24 07:09:41 -07:00
BattleCommand_Spikes:
; spikes
2018-01-23 14:39:09 -08:00
ld hl, wEnemyScreens
ldh a, [hBattleTurn]
and a
2020-10-04 16:43:28 -07:00
jr z, .got_screens
2018-01-23 14:39:09 -08:00
ld hl, wPlayerScreens
2020-10-04 16:43:28 -07:00
.got_screens
; 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 05:15:10 -07:00
jp StdBattleTextbox
.failed
jp FailMove