diff options
author | mid-kid <esteve.varela@gmail.com> | 2019-04-08 14:15:10 +0200 |
---|---|---|
committer | mid-kid <esteve.varela@gmail.com> | 2019-04-09 16:09:18 +0200 |
commit | 3e78e5b2b604568b13a37e4603dbd798373b9805 (patch) | |
tree | 3485a00674f17a929aa21e8e9bc0bb5b1d36554f /engine/battle/move_effects | |
parent | 2184b60a0cb5e3d1c2b64f7787f3fc0da5efbcab (diff) |
TextBox -> Textbox
Homogenizing names.
Diffstat (limited to 'engine/battle/move_effects')
40 files changed, 49 insertions, 49 deletions
diff --git a/engine/battle/move_effects/attract.asm b/engine/battle/move_effects/attract.asm index bb7b4fce4..5eb82d65e 100644 --- a/engine/battle/move_effects/attract.asm +++ b/engine/battle/move_effects/attract.asm @@ -17,7 +17,7 @@ BattleCommand_Attract: ; 'fell in love!' ld hl, FellInLoveText - jp StdBattleTextBox + jp StdBattleTextbox .failed jp FailMove diff --git a/engine/battle/move_effects/beat_up.asm b/engine/battle/move_effects/beat_up.asm index bd0307f40..73bbb2e42 100644 --- a/engine/battle/move_effects/beat_up.asm +++ b/engine/battle/move_effects/beat_up.asm @@ -52,7 +52,7 @@ BattleCommand_BeatUp: ld a, $1 ld [wBeatUpHitAtLeastOnce], a ld hl, BeatUpAttackText - call StdBattleTextBox + call StdBattleTextbox ld a, [wEnemyMonSpecies] ld [wCurSpecies], a @@ -159,12 +159,12 @@ BattleCommand_BeatUp: ld [wNamedObjectIndexBuffer], a call GetPokemonName ld hl, BeatUpAttackText - call StdBattleTextBox + call StdBattleTextbox jp EnemyAttackDamage .finish_beatup ld hl, BeatUpAttackText - call StdBattleTextBox + call StdBattleTextbox ld a, [wBattleMonSpecies] ld [wCurSpecies], a diff --git a/engine/battle/move_effects/belly_drum.asm b/engine/battle/move_effects/belly_drum.asm index 27ef1a542..ac415f576 100644 --- a/engine/battle/move_effects/belly_drum.asm +++ b/engine/battle/move_effects/belly_drum.asm @@ -27,7 +27,7 @@ BattleCommand_BellyDrum: jr nz, .max_attack_loop ld hl, BellyDrumText - jp StdBattleTextBox + jp StdBattleTextbox .failed call AnimateFailedMove diff --git a/engine/battle/move_effects/bide.asm b/engine/battle/move_effects/bide.asm index cfb3f3ab2..74f7c9cfa 100644 --- a/engine/battle/move_effects/bide.asm +++ b/engine/battle/move_effects/bide.asm @@ -20,7 +20,7 @@ BattleCommand_StoreEnergy: res SUBSTATUS_BIDE, [hl] ld hl, UnleashedEnergyText - call StdBattleTextBox + call StdBattleTextbox ld a, BATTLE_VARS_MOVE_POWER call GetBattleVarAddr @@ -66,7 +66,7 @@ BattleCommand_StoreEnergy: .still_storing ld hl, StoringEnergyText - call StdBattleTextBox + call StdBattleTextbox jp EndMoveEffect BattleCommand_UnleashEnergy: diff --git a/engine/battle/move_effects/conversion.asm b/engine/battle/move_effects/conversion.asm index 4b13f29dd..eaa3d6c9c 100644 --- a/engine/battle/move_effects/conversion.asm +++ b/engine/battle/move_effects/conversion.asm @@ -93,4 +93,4 @@ BattleCommand_Conversion: farcall GetTypeName call AnimateCurrentMove ld hl, TransformedTypeText - jp StdBattleTextBox + jp StdBattleTextbox diff --git a/engine/battle/move_effects/conversion2.asm b/engine/battle/move_effects/conversion2.asm index d67725f9c..802b57b53 100644 --- a/engine/battle/move_effects/conversion2.asm +++ b/engine/battle/move_effects/conversion2.asm @@ -58,7 +58,7 @@ BattleCommand_Conversion2: ld [wNamedObjectIndexBuffer], a predef GetTypeName ld hl, TransformedTypeText - jp StdBattleTextBox + jp StdBattleTextbox .failed jp FailMove diff --git a/engine/battle/move_effects/curse.asm b/engine/battle/move_effects/curse.asm index fb59d9b67..3507c6687 100644 --- a/engine/battle/move_effects/curse.asm +++ b/engine/battle/move_effects/curse.asm @@ -76,7 +76,7 @@ BattleCommand_Curse: call CallBattleCore call UpdateUserInParty ld hl, PutACurseText - jp StdBattleTextBox + jp StdBattleTextbox .failed call AnimateFailedMove @@ -90,4 +90,4 @@ BattleCommand_Curse: call GetStatName call AnimateFailedMove ld hl, WontRiseAnymoreText - jp StdBattleTextBox + jp StdBattleTextbox diff --git a/engine/battle/move_effects/destiny_bond.asm b/engine/battle/move_effects/destiny_bond.asm index 55809d98a..6a03b9a76 100644 --- a/engine/battle/move_effects/destiny_bond.asm +++ b/engine/battle/move_effects/destiny_bond.asm @@ -6,4 +6,4 @@ BattleCommand_DestinyBond: set SUBSTATUS_DESTINY_BOND, [hl] call AnimateCurrentMove ld hl, DestinyBondEffectText - jp StdBattleTextBox + jp StdBattleTextbox diff --git a/engine/battle/move_effects/disable.asm b/engine/battle/move_effects/disable.asm index 7f5cfaea0..de6dbc60f 100644 --- a/engine/battle/move_effects/disable.asm +++ b/engine/battle/move_effects/disable.asm @@ -66,7 +66,7 @@ BattleCommand_Disable: ld [wNamedObjectIndexBuffer], a call GetMoveName ld hl, WasDisabledText - jp StdBattleTextBox + jp StdBattleTextbox .failed jp FailMove diff --git a/engine/battle/move_effects/encore.asm b/engine/battle/move_effects/encore.asm index 3ac107e2b..8ca3595f3 100644 --- a/engine/battle/move_effects/encore.asm +++ b/engine/battle/move_effects/encore.asm @@ -114,7 +114,7 @@ BattleCommand_Encore: .finish_move call AnimateCurrentMove ld hl, GotAnEncoreText - jp StdBattleTextBox + jp StdBattleTextbox .failed jp PrintDidntAffect2 diff --git a/engine/battle/move_effects/endure.asm b/engine/battle/move_effects/endure.asm index f0555a737..00ccb130c 100644 --- a/engine/battle/move_effects/endure.asm +++ b/engine/battle/move_effects/endure.asm @@ -13,4 +13,4 @@ BattleCommand_Endure: call AnimateCurrentMove ld hl, BracedItselfText - jp StdBattleTextBox + jp StdBattleTextbox diff --git a/engine/battle/move_effects/focus_energy.asm b/engine/battle/move_effects/focus_energy.asm index ffdc7b136..c4eb1f334 100644 --- a/engine/battle/move_effects/focus_energy.asm +++ b/engine/battle/move_effects/focus_energy.asm @@ -8,7 +8,7 @@ BattleCommand_FocusEnergy: set SUBSTATUS_FOCUS_ENERGY, [hl] call AnimateCurrentMove ld hl, GettingPumpedText - jp StdBattleTextBox + jp StdBattleTextbox .already_pumped call AnimateFailedMove diff --git a/engine/battle/move_effects/foresight.asm b/engine/battle/move_effects/foresight.asm index 4235e0878..ff25b04eb 100644 --- a/engine/battle/move_effects/foresight.asm +++ b/engine/battle/move_effects/foresight.asm @@ -16,7 +16,7 @@ BattleCommand_Foresight: set SUBSTATUS_IDENTIFIED, [hl] call AnimateCurrentMove ld hl, IdentifiedText - jp StdBattleTextBox + jp StdBattleTextbox .failed jp FailMove diff --git a/engine/battle/move_effects/future_sight.asm b/engine/battle/move_effects/future_sight.asm index 0cb0b43ba..129a9e08f 100644 --- a/engine/battle/move_effects/future_sight.asm +++ b/engine/battle/move_effects/future_sight.asm @@ -54,7 +54,7 @@ BattleCommand_FutureSight: call BattleCommand_LowerSub call BattleCommand_MoveDelay ld hl, ForesawAttackText - call StdBattleTextBox + call StdBattleTextbox call BattleCommand_RaiseSub ld de, wPlayerFutureSightDamage ldh a, [hBattleTurn] diff --git a/engine/battle/move_effects/heal_bell.asm b/engine/battle/move_effects/heal_bell.asm index a9923429e..62309f1db 100644 --- a/engine/battle/move_effects/heal_bell.asm +++ b/engine/battle/move_effects/heal_bell.asm @@ -26,7 +26,7 @@ BattleCommand_HealBell: call AnimateCurrentMove ld hl, BellChimedText - call StdBattleTextBox + call StdBattleTextbox ldh a, [hBattleTurn] and a diff --git a/engine/battle/move_effects/leech_seed.asm b/engine/battle/move_effects/leech_seed.asm index 7cb14c27c..bb17ee00c 100644 --- a/engine/battle/move_effects/leech_seed.asm +++ b/engine/battle/move_effects/leech_seed.asm @@ -28,7 +28,7 @@ BattleCommand_LeechSeed: set SUBSTATUS_LEECH_SEED, [hl] call AnimateCurrentMove ld hl, WasSeededText - jp StdBattleTextBox + jp StdBattleTextbox .grass call AnimateFailedMove @@ -37,4 +37,4 @@ BattleCommand_LeechSeed: .evaded call AnimateFailedMove ld hl, EvadedText - jp StdBattleTextBox + jp StdBattleTextbox diff --git a/engine/battle/move_effects/lock_on.asm b/engine/battle/move_effects/lock_on.asm index 7dc4a013d..1de3e14ba 100644 --- a/engine/battle/move_effects/lock_on.asm +++ b/engine/battle/move_effects/lock_on.asm @@ -14,7 +14,7 @@ BattleCommand_LockOn: call AnimateCurrentMove ld hl, TookAimText - jp StdBattleTextBox + jp StdBattleTextbox .fail call AnimateFailedMove diff --git a/engine/battle/move_effects/magnitude.asm b/engine/battle/move_effects/magnitude.asm index eaa0c2a3a..f8961b668 100644 --- a/engine/battle/move_effects/magnitude.asm +++ b/engine/battle/move_effects/magnitude.asm @@ -21,7 +21,7 @@ BattleCommand_GetMagnitude: ld [wDeciramBuffer], a call BattleCommand_MoveDelay ld hl, MagnitudeText - call StdBattleTextBox + call StdBattleTextbox pop de pop bc ret diff --git a/engine/battle/move_effects/mimic.asm b/engine/battle/move_effects/mimic.asm index 30b531572..e4b99377f 100644 --- a/engine/battle/move_effects/mimic.asm +++ b/engine/battle/move_effects/mimic.asm @@ -44,7 +44,7 @@ BattleCommand_Mimic: call GetMoveName call AnimateCurrentMove ld hl, LearnedMoveText - jp StdBattleTextBox + jp StdBattleTextbox .fail jp FailMimic diff --git a/engine/battle/move_effects/mirror_move.asm b/engine/battle/move_effects/mirror_move.asm index 89879c825..98e8aacc9 100644 --- a/engine/battle/move_effects/mirror_move.asm +++ b/engine/battle/move_effects/mirror_move.asm @@ -18,7 +18,7 @@ BattleCommand_MirrorMove: call AnimateFailedMove ld hl, MirrorMoveFailedText - call StdBattleTextBox + call StdBattleTextbox jp EndMoveEffect .use diff --git a/engine/battle/move_effects/mist.asm b/engine/battle/move_effects/mist.asm index 199a30045..26fafdd2d 100644 --- a/engine/battle/move_effects/mist.asm +++ b/engine/battle/move_effects/mist.asm @@ -8,7 +8,7 @@ BattleCommand_Mist: set SUBSTATUS_MIST, [hl] call AnimateCurrentMove ld hl, MistText - jp StdBattleTextBox + jp StdBattleTextbox .already_mist call AnimateFailedMove diff --git a/engine/battle/move_effects/nightmare.asm b/engine/battle/move_effects/nightmare.asm index dd85c722d..9354b15bb 100644 --- a/engine/battle/move_effects/nightmare.asm +++ b/engine/battle/move_effects/nightmare.asm @@ -30,7 +30,7 @@ BattleCommand_Nightmare: set SUBSTATUS_NIGHTMARE, [hl] call AnimateCurrentMove ld hl, StartedNightmareText - jp StdBattleTextBox + jp StdBattleTextbox .failed call AnimateFailedMove diff --git a/engine/battle/move_effects/pain_split.asm b/engine/battle/move_effects/pain_split.asm index 4e4380b23..3c521975d 100644 --- a/engine/battle/move_effects/pain_split.asm +++ b/engine/battle/move_effects/pain_split.asm @@ -32,7 +32,7 @@ BattleCommand_PainSplit: farcall _UpdateBattleHUDs ld hl, SharedPainText - jp StdBattleTextBox + jp StdBattleTextbox .PlayerShareHP: ld a, [hld] diff --git a/engine/battle/move_effects/pay_day.asm b/engine/battle/move_effects/pay_day.asm index 9f59dbb08..5f857aea5 100644 --- a/engine/battle/move_effects/pay_day.asm +++ b/engine/battle/move_effects/pay_day.asm @@ -23,4 +23,4 @@ BattleCommand_PayDay: inc [hl] .done ld hl, CoinsScatteredText - jp StdBattleTextBox + jp StdBattleTextbox diff --git a/engine/battle/move_effects/perish_song.asm b/engine/battle/move_effects/perish_song.asm index 4df52cc1c..1758b65a0 100644 --- a/engine/battle/move_effects/perish_song.asm +++ b/engine/battle/move_effects/perish_song.asm @@ -31,7 +31,7 @@ BattleCommand_PerishSong: .done call AnimateCurrentMove ld hl, StartPerishText - jp StdBattleTextBox + jp StdBattleTextbox .failed call AnimateFailedMove diff --git a/engine/battle/move_effects/present.asm b/engine/battle/move_effects/present.asm index bfc334cc7..188c4e889 100644 --- a/engine/battle/move_effects/present.asm +++ b/engine/battle/move_effects/present.asm @@ -70,7 +70,7 @@ BattleCommand_Present: call CallBattleCore call BattleCommand_SwitchTurn ld hl, RegainedHealthText - call StdBattleTextBox + call StdBattleTextbox call BattleCommand_SwitchTurn call UpdateOpponentInParty jr .do_animation @@ -81,7 +81,7 @@ BattleCommand_Present: jr nc, .do_animation call AnimateFailedMove ld hl, RefusedGiftText - call StdBattleTextBox + call StdBattleTextbox .do_animation jp EndMoveEffect diff --git a/engine/battle/move_effects/protect.asm b/engine/battle/move_effects/protect.asm index 1e540923d..e66bce443 100644 --- a/engine/battle/move_effects/protect.asm +++ b/engine/battle/move_effects/protect.asm @@ -10,7 +10,7 @@ BattleCommand_Protect: call AnimateCurrentMove ld hl, ProtectedItselfText - jp StdBattleTextBox + jp StdBattleTextbox ProtectChance: ld de, wPlayerProtectCount diff --git a/engine/battle/move_effects/psych_up.asm b/engine/battle/move_effects/psych_up.asm index c32316ccd..1bf9f3e6f 100644 --- a/engine/battle/move_effects/psych_up.asm +++ b/engine/battle/move_effects/psych_up.asm @@ -46,4 +46,4 @@ BattleCommand_PsychUp: .merge call AnimateCurrentMove ld hl, CopiedStatsText - jp StdBattleTextBox + jp StdBattleTextbox diff --git a/engine/battle/move_effects/rain_dance.asm b/engine/battle/move_effects/rain_dance.asm index e9ef5d123..c22fb9fdb 100644 --- a/engine/battle/move_effects/rain_dance.asm +++ b/engine/battle/move_effects/rain_dance.asm @@ -6,4 +6,4 @@ BattleCommand_StartRain: ld [wWeatherCount], a call AnimateCurrentMove ld hl, DownpourText - jp StdBattleTextBox + jp StdBattleTextbox diff --git a/engine/battle/move_effects/rapid_spin.asm b/engine/battle/move_effects/rapid_spin.asm index 6e40726db..eb396a35d 100644 --- a/engine/battle/move_effects/rapid_spin.asm +++ b/engine/battle/move_effects/rapid_spin.asm @@ -7,7 +7,7 @@ BattleCommand_ClearHazards: jr z, .not_leeched res SUBSTATUS_LEECH_SEED, [hl] ld hl, ShedLeechSeedText - call StdBattleTextBox + call StdBattleTextbox .not_leeched ld hl, wPlayerScreens @@ -23,7 +23,7 @@ BattleCommand_ClearHazards: res SCREENS_SPIKES, [hl] ld hl, BlewSpikesText push de - call StdBattleTextBox + call StdBattleTextbox pop de .no_spikes @@ -33,4 +33,4 @@ BattleCommand_ClearHazards: xor a ld [de], a ld hl, ReleasedByText - jp StdBattleTextBox + jp StdBattleTextbox diff --git a/engine/battle/move_effects/safeguard.asm b/engine/battle/move_effects/safeguard.asm index cb5a4857e..e64e80921 100644 --- a/engine/battle/move_effects/safeguard.asm +++ b/engine/battle/move_effects/safeguard.asm @@ -16,7 +16,7 @@ BattleCommand_Safeguard: ld [de], a call AnimateCurrentMove ld hl, CoveredByVeilText - jp StdBattleTextBox + jp StdBattleTextbox .failed call AnimateFailedMove diff --git a/engine/battle/move_effects/sandstorm.asm b/engine/battle/move_effects/sandstorm.asm index 77d6e24b5..c88529fb1 100644 --- a/engine/battle/move_effects/sandstorm.asm +++ b/engine/battle/move_effects/sandstorm.asm @@ -11,7 +11,7 @@ BattleCommand_StartSandstorm: ld [wWeatherCount], a call AnimateCurrentMove ld hl, SandstormBrewedText - jp StdBattleTextBox + jp StdBattleTextbox .failed call AnimateFailedMove diff --git a/engine/battle/move_effects/sketch.asm b/engine/battle/move_effects/sketch.asm index 2d9705106..654fb3f54 100644 --- a/engine/battle/move_effects/sketch.asm +++ b/engine/battle/move_effects/sketch.asm @@ -110,7 +110,7 @@ BattleCommand_Sketch: call AnimateCurrentMove ld hl, SketchedText - jp StdBattleTextBox + jp StdBattleTextbox .fail call AnimateFailedMove diff --git a/engine/battle/move_effects/spikes.asm b/engine/battle/move_effects/spikes.asm index c22787d6d..96163a680 100644 --- a/engine/battle/move_effects/spikes.asm +++ b/engine/battle/move_effects/spikes.asm @@ -20,7 +20,7 @@ BattleCommand_Spikes: call AnimateCurrentMove ld hl, SpikesText - jp StdBattleTextBox + jp StdBattleTextbox .failed jp FailMove diff --git a/engine/battle/move_effects/spite.asm b/engine/battle/move_effects/spite.asm index 031cdb71f..06627268b 100644 --- a/engine/battle/move_effects/spite.asm +++ b/engine/battle/move_effects/spite.asm @@ -80,7 +80,7 @@ BattleCommand_Spite: ld a, d ld [wDeciramBuffer], a ld hl, SpiteEffectText - jp StdBattleTextBox + jp StdBattleTextbox .failed jp PrintDidntAffect2 diff --git a/engine/battle/move_effects/substitute.asm b/engine/battle/move_effects/substitute.asm index bafd4c460..d2342c0d6 100644 --- a/engine/battle/move_effects/substitute.asm +++ b/engine/battle/move_effects/substitute.asm @@ -71,7 +71,7 @@ BattleCommand_Substitute: call BattleCommand_RaiseSubNoAnim .finish ld hl, MadeSubstituteText - call StdBattleTextBox + call StdBattleTextbox jp RefreshBattleHuds .already_has_sub @@ -85,4 +85,4 @@ BattleCommand_Substitute: call nz, BattleCommand_RaiseSub ld hl, TooWeakSubText .jp_stdbattletextbox - jp StdBattleTextBox + jp StdBattleTextbox diff --git a/engine/battle/move_effects/sunny_day.asm b/engine/battle/move_effects/sunny_day.asm index f5825930f..0edc38e45 100644 --- a/engine/battle/move_effects/sunny_day.asm +++ b/engine/battle/move_effects/sunny_day.asm @@ -6,4 +6,4 @@ BattleCommand_StartSun: ld [wWeatherCount], a call AnimateCurrentMove ld hl, SunGotBrightText - jp StdBattleTextBox + jp StdBattleTextbox diff --git a/engine/battle/move_effects/teleport.asm b/engine/battle/move_effects/teleport.asm index 55eb6675f..1a6aeed41 100644 --- a/engine/battle/move_effects/teleport.asm +++ b/engine/battle/move_effects/teleport.asm @@ -86,4 +86,4 @@ BattleCommand_Teleport: call SetBattleDraw ld hl, FledFromBattleText - jp StdBattleTextBox + jp StdBattleTextbox diff --git a/engine/battle/move_effects/thief.asm b/engine/battle/move_effects/thief.asm index 47270d6c2..e588c5ff7 100644 --- a/engine/battle/move_effects/thief.asm +++ b/engine/battle/move_effects/thief.asm @@ -93,7 +93,7 @@ BattleCommand_Thief: .stole call GetItemName ld hl, StoleText - jp StdBattleTextBox + jp StdBattleTextbox .playeritem ld a, 1 diff --git a/engine/battle/move_effects/transform.asm b/engine/battle/move_effects/transform.asm index 509a8d03f..fe94c4f2c 100644 --- a/engine/battle/move_effects/transform.asm +++ b/engine/battle/move_effects/transform.asm @@ -135,7 +135,7 @@ BattleCommand_Transform: ld a, SUBSTITUTE call nz, LoadAnim ld hl, TransformedText - jp StdBattleTextBox + jp StdBattleTextbox BattleSideCopy: ; Copy bc bytes from hl to de if it's the player's turn. |