summaryrefslogtreecommitdiff
path: root/engine/battle/move_effects/focus_energy.asm
blob: 2a3726c53b061595a43fe5be51d4e2ff2dd6dd4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
BattleCommand_FocusEnergy: ; 36c98
; focusenergy

	ld a, BATTLE_VARS_SUBSTATUS4
	call GetBattleVarAddr
	bit SUBSTATUS_FOCUS_ENERGY, [hl]
	jr nz, .already_pumped
	set SUBSTATUS_FOCUS_ENERGY, [hl]
	call AnimateCurrentMove
	ld hl, GettingPumpedText
	jp StdBattleTextBox

.already_pumped
	call AnimateFailedMove
	jp PrintButItFailed

; 36cb2