38 lines
663 B
NASM
Raw Normal View History

2018-06-24 16:09:41 +02:00
BattleCommand_Nightmare:
2013-12-01 14:19:57 -05:00
; nightmare
; Can't hit an absent opponent.
call CheckHiddenOpponent
jr nz, .failed
; Can't hit a substitute.
call CheckSubstituteOpp
jr nz, .failed
; Only works on a sleeping opponent.
ld a, BATTLE_VARS_STATUS_OPP
call GetBattleVarAddr
2013-12-01 14:19:57 -05:00
and SLP
jr z, .failed
; Bail if the opponent is already having a nightmare.
ld a, BATTLE_VARS_SUBSTATUS1_OPP
call GetBattleVarAddr
2013-12-01 14:19:57 -05:00
bit SUBSTATUS_NIGHTMARE, [hl]
jr nz, .failed
; Otherwise give the opponent a nightmare.
set SUBSTATUS_NIGHTMARE, [hl]
call AnimateCurrentMove
2013-12-01 14:19:57 -05:00
ld hl, StartedNightmareText
2019-04-08 14:15:10 +02:00
jp StdBattleTextbox
2013-12-01 14:19:57 -05:00
.failed
call AnimateFailedMove
2013-12-01 14:19:57 -05:00
jp PrintButItFailed