2018-06-24 14:09:41 +00:00
|
|
|
BattleCommand_Spikes:
|
2018-01-23 22:39:09 +00:00
|
|
|
ld hl, wEnemyScreens
|
2018-08-25 18:28:22 +00:00
|
|
|
ldh a, [hBattleTurn]
|
2013-09-10 02:02:26 +00:00
|
|
|
and a
|
2020-10-04 23:43:28 +00:00
|
|
|
jr z, .got_screens
|
2018-01-23 22:39:09 +00:00
|
|
|
ld hl, wPlayerScreens
|
2020-10-04 23:43:28 +00:00
|
|
|
.got_screens
|
2013-09-10 02:02:26 +00:00
|
|
|
|
|
|
|
; Fails if spikes are already down!
|
|
|
|
|
|
|
|
bit SCREENS_SPIKES, [hl]
|
|
|
|
jr nz, .failed
|
|
|
|
|
|
|
|
; Nothing else stops it from working.
|
|
|
|
|
|
|
|
set SCREENS_SPIKES, [hl]
|
|
|
|
|
2014-01-01 13:09:15 +00:00
|
|
|
call AnimateCurrentMove
|
2013-09-10 02:02:26 +00:00
|
|
|
|
|
|
|
ld hl, SpikesText
|
2019-04-08 12:15:10 +00:00
|
|
|
jp StdBattleTextbox
|
2013-09-10 02:02:26 +00:00
|
|
|
|
|
|
|
.failed
|
2018-01-26 16:36:00 +00:00
|
|
|
jp FailMove
|