ref: 4e6adcddff69fd53ce342ead502a0699cd5f75ba
dir: /engine/battle/move_effects/focus_energy.asm/
FocusEnergyEffect_: ld hl, wPlayerBattleStatus2 ld a, [hWhoseTurn] and a jr z, .notEnemy ld hl, wEnemyBattleStatus2 .notEnemy bit GETTING_PUMPED, [hl] ; is mon already using focus energy? jr nz, .alreadyUsing set GETTING_PUMPED, [hl] ; mon is now using focus energy callab PlayCurrentMoveAnimation ld hl, GettingPumpedText jp PrintText .alreadyUsing ld c, 50 call DelayFrames jpab PrintButItFailedText_ GettingPumpedText: text_pause text_far _GettingPumpedText text_end