pokecrystal-board/engine/battle/move_effects/focus_energy.asm

16 lines
321 B
NASM
Raw Normal View History

2018-06-24 07:09:41 -07:00
BattleCommand_FocusEnergy:
; 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
2019-04-08 05:15:10 -07:00
jp StdBattleTextbox
.already_pumped
call AnimateFailedMove
jp PrintButItFailed