mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-01-23 09:16:20 -08: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
|