shithub: pokecrystal

ref: cf1c50555505f525ede5e2cd426f002312038de0
dir: /engine/battle/move_effects/pursuit.asm/

View raw version
BattleCommand_Pursuit:
; Double damage if the opponent is switching.

	ld hl, wEnemyIsSwitching
	ldh a, [hBattleTurn]
	and a
	jr z, .ok
	ld hl, wPlayerIsSwitching
.ok
	ld a, [hl]
	and a
	ret z

	ld hl, wCurDamage + 1
	sla [hl]
	dec hl
	rl [hl]
	ret nc

	ld a, $ff
	ld [hli], a
	ld [hl], a
	ret