2018-06-24 07:09:41 -07:00
|
|
|
BattleCommand_Spikes:
|
2013-09-09 19:02:26 -07:00
|
|
|
; spikes
|
|
|
|
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wEnemyScreens
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh a, [hBattleTurn]
|
2013-09-09 19:02:26 -07:00
|
|
|
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
|
2013-09-09 19:02:26 -07: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 05:09:15 -08:00
|
|
|
call AnimateCurrentMove
|
2013-09-09 19:02:26 -07:00
|
|
|
|
|
|
|
ld hl, SpikesText
|
2019-04-08 05:15:10 -07:00
|
|
|
jp StdBattleTextbox
|
2013-09-09 19:02:26 -07:00
|
|
|
|
|
|
|
.failed
|
2018-01-26 08:36:00 -08:00
|
|
|
jp FailMove
|