diff options
| author | yenatch <yenatch@gmail.com> | 2015-04-01 12:56:42 -0400 |
|---|---|---|
| committer | yenatch <yenatch@gmail.com> | 2015-04-01 12:56:42 -0400 |
| commit | c2efe700ac1c5cca88bac710b98388a99665741e (patch) | |
| tree | b30d2f676d5ad0d78b959c8ffcf0f8dcfca13943 /engine/battle/moveEffects/focus_energy_effect.asm | |
| parent | Merge pull request #88 from YamaArashi/master (diff) | |
| parent | Further split bank e stuff (diff) | |
| download | pokeyellow-c2efe700ac1c5cca88bac710b98388a99665741e.tar.gz pokeyellow-c2efe700ac1c5cca88bac710b98388a99665741e.tar.xz pokeyellow-c2efe700ac1c5cca88bac710b98388a99665741e.zip | |
Merge pull request #90 from xCrystal/master
Rename/split battle and move effect files. Battle functions, AI, and attack animations
Diffstat (limited to 'engine/battle/moveEffects/focus_energy_effect.asm')
| -rw-r--r-- | engine/battle/moveEffects/focus_energy_effect.asm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/engine/battle/moveEffects/focus_energy_effect.asm b/engine/battle/moveEffects/focus_energy_effect.asm new file mode 100644 index 00000000..f01e61cc --- /dev/null +++ b/engine/battle/moveEffects/focus_energy_effect.asm @@ -0,0 +1,24 @@ +FocusEnergyEffect_: ; 27f86 (9:7f86) + 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, $32 + call DelayFrames + ld hl, PrintButItFailedText_ + ld b, BANK(PrintButItFailedText_) + jp Bankswitch + +GettingPumpedText: ; 27fb3 (9:7fb3) + db $0a + TX_FAR _GettingPumpedText + db "@" |
