summaryrefslogtreecommitdiff
path: root/engine/battle/moveEffects/focus_energy_effect.asm
blob: e88d065a04b68dc4abeb0584ef02c7a27bc92ce4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FocusEnergyEffect_: ; f628b (3d:628b)
	ld hl, W_PLAYERBATTSTATUS2
	ld a, [H_WHOSETURN]
	and a
	jr z, .notEnemy
	ld hl, W_ENEMYBATTSTATUS2
.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: ; f62b5 (3d:62b5)
	db $0a
	TX_FAR _GettingPumpedText
	db "@"