diff options
author | YamaArashi <shadow962@live.com> | 2015-07-19 11:56:13 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2015-07-19 11:56:13 -0700 |
commit | 02bd91b7076165653a900a8e39c12a92a9bd2976 (patch) | |
tree | 90590dc9f3b05eb19697ba81ec3467ac533c8f1b /engine/battle/moveEffects/paralyze_effect.asm | |
parent | 64b4cf624fe2175e2c7539b91bc41b6dae28a00e (diff) |
jpab/jpba macros
Diffstat (limited to 'engine/battle/moveEffects/paralyze_effect.asm')
-rw-r--r-- | engine/battle/moveEffects/paralyze_effect.asm | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/engine/battle/moveEffects/paralyze_effect.asm b/engine/battle/moveEffects/paralyze_effect.asm index b88e6479..658b0c50 100644 --- a/engine/battle/moveEffects/paralyze_effect.asm +++ b/engine/battle/moveEffects/paralyze_effect.asm @@ -36,18 +36,12 @@ ParalyzeEffect_: ; 52601 (14:6601) ld c, 30 call DelayFrames callab PlayCurrentMoveAnimation - ld hl, PrintMayNotAttackText - ld b, BANK(PrintMayNotAttackText) - jp Bankswitch + jpab PrintMayNotAttackText .didntAffect ld c, 50 call DelayFrames - ld hl, PrintDidntAffectText - ld b, BANK(PrintDidntAffectText) - jp Bankswitch + jpab PrintDidntAffectText .doesntAffect ld c, 50 call DelayFrames - ld hl, PrintDoesntAffectText - ld b, BANK(PrintDoesntAffectText) - jp Bankswitch + jpab PrintDoesntAffectText |