diff options
author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2018-11-11 17:07:17 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-11 17:07:17 -0500 |
commit | ffd2b709023d4466c29a228b631db06284e04891 (patch) | |
tree | d2db5b0200e7a5fe783143e6f2cdbd2fd6a1fca2 /engine/battle/effect_commands.asm | |
parent | ab2f46baefda1eac7d2e71929f17525f2a4a5afd (diff) | |
parent | a469a92c2633665c011e5c540e1cc593544abe11 (diff) |
Merge pull request #573 from mid-kid/master
text_jump → text_far
Diffstat (limited to 'engine/battle/effect_commands.asm')
-rw-r--r-- | engine/battle/effect_commands.asm | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/engine/battle/effect_commands.asm b/engine/battle/effect_commands.asm index 95a0475bf..2dafc04ba 100644 --- a/engine/battle/effect_commands.asm +++ b/engine/battle/effect_commands.asm @@ -4542,7 +4542,7 @@ BattleCommand_StatUpMessage: jp BattleTextBox .stat - text_jump UnknownText_0x1c0cc6 + text_far UnknownText_0x1c0cc6 start_asm ld hl, .up ld a, [wLoweredStat] @@ -4552,11 +4552,11 @@ BattleCommand_StatUpMessage: ret .wayup - text_jump UnknownText_0x1c0cd0 + text_far UnknownText_0x1c0cd0 db "@" .up - text_jump UnknownText_0x1c0ce0 + text_far UnknownText_0x1c0ce0 db "@" BattleCommand_StatDownMessage: @@ -4572,7 +4572,7 @@ BattleCommand_StatDownMessage: jp BattleTextBox .stat - text_jump UnknownText_0x1c0ceb + text_far UnknownText_0x1c0ceb start_asm ld hl, .fell ld a, [wLoweredStat] @@ -4582,10 +4582,10 @@ BattleCommand_StatDownMessage: ret .sharplyfell - text_jump UnknownText_0x1c0cf5 + text_far UnknownText_0x1c0cf5 db "@" .fell - text_jump UnknownText_0x1c0d06 + text_far UnknownText_0x1c0d06 db "@" TryLowerStat: @@ -5636,7 +5636,7 @@ BattleCommand_Charge: jp EndMoveEffect .UsedText: - text_jump UnknownText_0x1c0d0e ; "<USER>" + text_far UnknownText_0x1c0d0e ; "<USER>" start_asm ld a, BATTLE_VARS_MOVE_ANIM call GetBattleVar @@ -5668,32 +5668,32 @@ BattleCommand_Charge: .RazorWind: ; 'made a whirlwind!' - text_jump UnknownText_0x1c0d12 + text_far UnknownText_0x1c0d12 db "@" .Solarbeam: ; 'took in sunlight!' - text_jump UnknownText_0x1c0d26 + text_far UnknownText_0x1c0d26 db "@" .SkullBash: ; 'lowered its head!' - text_jump UnknownText_0x1c0d3a + text_far UnknownText_0x1c0d3a db "@" .SkyAttack: ; 'is glowing!' - text_jump UnknownText_0x1c0d4e + text_far UnknownText_0x1c0d4e db "@" .Fly: ; 'flew up high!' - text_jump UnknownText_0x1c0d5c + text_far UnknownText_0x1c0d5c db "@" .Dig: ; 'dug a hole!' - text_jump UnknownText_0x1c0d6c + text_far UnknownText_0x1c0d6c db "@" BattleCommand3c: |