mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
12 lines
175 B
NASM
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
|