diff options
author | mid-kid <esteve.varela@gmail.com> | 2018-10-28 17:16:55 +0100 |
---|---|---|
committer | mid-kid <esteve.varela@gmail.com> | 2018-11-05 22:26:18 +0100 |
commit | 940256569b84e71c5a448709d67964735ff4a5c9 (patch) | |
tree | 33e78661f5317aa93b54e501272bb5c5040a0574 /engine/battle/effect_commands.asm | |
parent | 0af682d38ae9e60095dc2a0e11830fc8fec15d02 (diff) |
text_jump → text_far
The previous name for this was rather misleading. It isn't an actual
jump like you'd expect the `jp` instruction to behave as. Instead, it
behaves more like a `farcall`.
This also makes it consistent with its current command ID name of
`TX_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: |