pokecrystal-board/engine/battle/move_effects/snore.asm
2018-06-25 12:07:35 -04:00

12 lines
175 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