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