summaryrefslogtreecommitdiff
path: root/engine/battle/move_effects/snore.asm
blob: 49fb1b21029b423ad7ac8835fdb2f9dbdfe25235 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
BattleCommand_Snore: ; 359d0
; snore
	ld a, BATTLE_VARS_STATUS
	call GetBattleVar
	and SLP
	ret nz
	call ResetDamage
	ld a, $1
	ld [wAttackMissed], a
	call FailMove
	jp EndMoveEffect

; 359e6