pokecrystal-board/engine/battle/move_effects/snore.asm
2018-06-24 16:13:22 +02:00

13 lines
176 B
NASM

BattleCommand_Snore:
; snore
ld a, BATTLE_VARS_STATUS
call GetBattleVar
and SLP
ret nz
call ResetDamage
ld a, $1
ld [wAttackMissed], a
call FailMove
jp EndMoveEffect