shithub: pokered

ref: 70dde9d96b0e3025c72ae29783e94c56fa5cbe1c
dir: /engine/battle/moveEffects/focus_energy_effect.asm/

View raw version
FocusEnergyEffect_:
	ld hl, wPlayerBattleStatus2
	ld a, [H_WHOSETURN]
	and a
	jr z, .notEnemy
	ld hl, wEnemyBattleStatus2
.notEnemy
	bit GettingPumped, [hl] ; is mon already using focus energy?
	jr nz, .alreadyUsing
	set GettingPumped, [hl] ; mon is now using focus energy
	callab PlayCurrentMoveAnimation
	ld hl, GettingPumpedText
	jp PrintText
.alreadyUsing
	ld c, 50
	call DelayFrames
	jpab PrintButItFailedText_

GettingPumpedText:
	TX_DELAY
	TX_FAR _GettingPumpedText
	db "@"