diff options
author | xCrystal <rgr.crystal@gmail.com> | 2015-02-03 20:51:53 +0100 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2015-02-04 23:22:46 -0800 |
commit | 9de54645c896cc57a79679aecd6174afc59762c8 (patch) | |
tree | 8ae99f34ab3e24453c4b8da9b602842d995bb86b /engine/battle/9.asm | |
parent | 97637e7ce7110c9a20e5fa9222e445700857a9cb (diff) |
add constants for volatile statuses and more battle labels/commentary/constants
Diffstat (limited to 'engine/battle/9.asm')
-rwxr-xr-x | engine/battle/9.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/battle/9.asm b/engine/battle/9.asm index 26f65317..eb86cce0 100755 --- a/engine/battle/9.asm +++ b/engine/battle/9.asm @@ -163,9 +163,9 @@ FocusEnergyEffect_: ; 27f86 (9:7f86) jr z, .asm_27f91 ld hl, W_ENEMYBATTSTATUS2 ; W_ENEMYBATTSTATUS2 .asm_27f91 - bit 2, [hl] ; is mon already using focus energy? + bit GettingPumped, [hl] ; is mon already using focus energy? jr nz, .asm_27fa5 - set 2, [hl] ; mon is now using focus energy + set GettingPumped, [hl] ; mon is now using focus energy callab Func_3fba8 ld hl, GettingPumpedText ; $7fb2 jp PrintText |