You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -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
|