2015-11-06 19:45:10 +00:00
|
|
|
BattleCommand_Spikes: ; 37683
|
2013-09-10 02:02:26 +00:00
|
|
|
; spikes
|
|
|
|
|
2018-01-23 22:39:09 +00:00
|
|
|
ld hl, wEnemyScreens
|
2013-09-10 02:02:26 +00:00
|
|
|
ld a, [hBattleTurn]
|
|
|
|
and a
|
|
|
|
jr z, .asm_3768e
|
2018-01-23 22:39:09 +00:00
|
|
|
ld hl, wPlayerScreens
|
2013-09-10 02:02:26 +00:00
|
|
|
.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]
|
|
|
|
|
2014-01-01 13:09:15 +00:00
|
|
|
call AnimateCurrentMove
|
2013-09-10 02:02:26 +00:00
|
|
|
|
|
|
|
ld hl, SpikesText
|
|
|
|
jp StdBattleTextBox
|
|
|
|
|
|
|
|
.failed
|
2018-01-26 16:36:00 +00:00
|
|
|
jp FailMove
|
2013-09-10 02:02:26 +00:00
|
|
|
; 376a0
|