You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
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`.
This commit is contained in:
@@ -16,7 +16,7 @@ _BillsPC:
|
||||
|
||||
.Text_GottaHavePokemon:
|
||||
; You gotta have #MON to call!
|
||||
text_jump UnknownText_0x1c1006
|
||||
text_far UnknownText_0x1c1006
|
||||
db "@"
|
||||
|
||||
.LogIn:
|
||||
@@ -37,7 +37,7 @@ _BillsPC:
|
||||
|
||||
.Text_What:
|
||||
; What?
|
||||
text_jump UnknownText_0x1c1024
|
||||
text_far UnknownText_0x1c1024
|
||||
db "@"
|
||||
|
||||
.LogOut:
|
||||
@@ -130,7 +130,7 @@ BillsPC_MovePKMNMenu:
|
||||
|
||||
.Text_MonHoldingMail:
|
||||
; There is a #MON holding MAIL. Please remove the MAIL.
|
||||
text_jump UnknownText_0x1c102b
|
||||
text_far UnknownText_0x1c102b
|
||||
db "@"
|
||||
|
||||
BillsPC_DepositMenu:
|
||||
@@ -165,12 +165,12 @@ Unreferenced_Functione512:
|
||||
|
||||
.Text_NoMon:
|
||||
; You don't have a single #MON!
|
||||
text_jump UnknownText_0x1c1062
|
||||
text_far UnknownText_0x1c1062
|
||||
db "@"
|
||||
|
||||
.Text_ItsYourLastMon:
|
||||
; You can't deposit your last #MON!
|
||||
text_jump UnknownText_0x1c1080
|
||||
text_far UnknownText_0x1c1080
|
||||
db "@"
|
||||
|
||||
CheckCurPartyMonFainted:
|
||||
@@ -226,7 +226,7 @@ Unreferenced_Functione56d:
|
||||
|
||||
UnknownText_0xe57e:
|
||||
; You can't take any more #MON.
|
||||
text_jump UnknownText_0x1c10a2
|
||||
text_far UnknownText_0x1c10a2
|
||||
db "@"
|
||||
|
||||
BillsPC_ChangeBoxMenu:
|
||||
|
@@ -356,7 +356,7 @@ HatchEggs:
|
||||
|
||||
.Text_HatchEgg:
|
||||
; Huh? @ @
|
||||
text_jump UnknownText_0x1c0db0
|
||||
text_far UnknownText_0x1c0db0
|
||||
start_asm
|
||||
ld hl, wVramState
|
||||
res 0, [hl]
|
||||
@@ -378,17 +378,17 @@ HatchEggs:
|
||||
|
||||
.ClearTextbox:
|
||||
;
|
||||
text_jump UnknownText_0x1c0db8
|
||||
text_far UnknownText_0x1c0db8
|
||||
db "@"
|
||||
|
||||
.CameOutOfItsEgg:
|
||||
; came out of its EGG!@ @
|
||||
text_jump UnknownText_0x1c0dba
|
||||
text_far UnknownText_0x1c0dba
|
||||
db "@"
|
||||
|
||||
.Text_NicknameHatchling:
|
||||
; Give a nickname to @ ?
|
||||
text_jump UnknownText_0x1c0dd8
|
||||
text_far UnknownText_0x1c0dd8
|
||||
db "@"
|
||||
|
||||
InitEggMoves:
|
||||
@@ -895,12 +895,12 @@ DayCareMonCursor:
|
||||
|
||||
DayCareMon2Text:
|
||||
; It's @ that was left with the DAY-CARE LADY.
|
||||
text_jump UnknownText_0x1c0df3
|
||||
text_far UnknownText_0x1c0df3
|
||||
db "@"
|
||||
|
||||
DayCareMon1Text:
|
||||
; It's @ that was left with the DAY-CARE MAN.
|
||||
text_jump UnknownText_0x1c0e24
|
||||
text_far UnknownText_0x1c0e24
|
||||
db "@"
|
||||
|
||||
DayCareMonCompatibilityText:
|
||||
@@ -930,27 +930,27 @@ DayCareMonCompatibilityText:
|
||||
|
||||
.AllAlone:
|
||||
; It's brimming with energy.
|
||||
text_jump UnknownText_0x1c0e54
|
||||
text_far UnknownText_0x1c0e54
|
||||
db "@"
|
||||
|
||||
.Incompatible:
|
||||
; It has no interest in @ .
|
||||
text_jump UnknownText_0x1c0e6f
|
||||
text_far UnknownText_0x1c0e6f
|
||||
db "@"
|
||||
|
||||
.HighCompatibility:
|
||||
; It appears to care for @ .
|
||||
text_jump UnknownText_0x1c0e8d
|
||||
text_far UnknownText_0x1c0e8d
|
||||
db "@"
|
||||
|
||||
.ModerateCompatibility:
|
||||
; It's friendly with @ .
|
||||
text_jump UnknownText_0x1c0eac
|
||||
text_far UnknownText_0x1c0eac
|
||||
db "@"
|
||||
|
||||
.SlightCompatibility:
|
||||
; It shows interest in @ .
|
||||
text_jump UnknownText_0x1c0ec6
|
||||
text_far UnknownText_0x1c0ec6
|
||||
db "@"
|
||||
|
||||
Unreferenced_DayCareMonPrintEmptyString:
|
||||
|
@@ -158,7 +158,7 @@ GiveANickname_YesNo:
|
||||
|
||||
TextJump_GiveANickname:
|
||||
; Give a nickname to the @ you received?
|
||||
text_jump UnknownText_0x1c12fc
|
||||
text_far UnknownText_0x1c12fc
|
||||
db "@"
|
||||
|
||||
SetCaughtData:
|
||||
|
@@ -396,22 +396,22 @@ IsMonHoldingEverstone:
|
||||
|
||||
Text_CongratulationsYourPokemon:
|
||||
; Congratulations! Your @ @
|
||||
text_jump UnknownText_0x1c4b92
|
||||
text_far UnknownText_0x1c4b92
|
||||
db "@"
|
||||
|
||||
Text_EvolvedIntoPKMN:
|
||||
; evolved into @ !
|
||||
text_jump UnknownText_0x1c4baf
|
||||
text_far UnknownText_0x1c4baf
|
||||
db "@"
|
||||
|
||||
Text_StoppedEvolving:
|
||||
; Huh? @ stopped evolving!
|
||||
text_jump UnknownText_0x1c4bc5
|
||||
text_far UnknownText_0x1c4bc5
|
||||
db "@"
|
||||
|
||||
Text_WhatEvolving:
|
||||
; What? @ is evolving!
|
||||
text_jump UnknownText_0x1c4be3
|
||||
text_far UnknownText_0x1c4be3
|
||||
db "@"
|
||||
|
||||
LearnLevelMoves:
|
||||
|
@@ -21,5 +21,5 @@ KnowsMove:
|
||||
|
||||
.Text_knows:
|
||||
; knows @ .
|
||||
text_jump UnknownText_0x1c5ea8
|
||||
text_far UnknownText_0x1c5ea8
|
||||
db "@"
|
||||
|
@@ -202,32 +202,32 @@ ForgetMove:
|
||||
|
||||
Text_LearnedMove:
|
||||
; <MON> learned <MOVE>!
|
||||
text_jump UnknownText_0x1c5660
|
||||
text_far UnknownText_0x1c5660
|
||||
db "@"
|
||||
|
||||
Text_ForgetWhich:
|
||||
; Which move should be forgotten?
|
||||
text_jump UnknownText_0x1c5678
|
||||
text_far UnknownText_0x1c5678
|
||||
db "@"
|
||||
|
||||
Text_StopLearning:
|
||||
; Stop learning <MOVE>?
|
||||
text_jump UnknownText_0x1c5699
|
||||
text_far UnknownText_0x1c5699
|
||||
db "@"
|
||||
|
||||
Text_DidNotLearn:
|
||||
; <MON> did not learn <MOVE>.
|
||||
text_jump UnknownText_0x1c56af
|
||||
text_far UnknownText_0x1c56af
|
||||
db "@"
|
||||
|
||||
Text_TryingToLearn:
|
||||
; <MON> is trying to learn <MOVE>. But <MON> can't learn more than
|
||||
; four moves. Delete an older move to make room for <MOVE>?
|
||||
text_jump UnknownText_0x1c56c9
|
||||
text_far UnknownText_0x1c56c9
|
||||
db "@"
|
||||
|
||||
Text_1_2_and_Poof:
|
||||
text_jump UnknownText_0x1c5740 ; 1, 2 and…
|
||||
text_far UnknownText_0x1c5740 ; 1, 2 and…
|
||||
start_asm
|
||||
push de
|
||||
ld de, SFX_SWITCH_POKEMON
|
||||
@@ -238,10 +238,10 @@ Text_1_2_and_Poof:
|
||||
|
||||
.PoofForgot:
|
||||
; Poof! <MON> forgot <MOVE>. And…
|
||||
text_jump UnknownText_0x1c574e
|
||||
text_far UnknownText_0x1c574e
|
||||
db "@"
|
||||
|
||||
Text_CantForgetHM:
|
||||
; HM moves can't be forgotten now.
|
||||
text_jump UnknownText_0x1c5772
|
||||
text_far UnknownText_0x1c5772
|
||||
db "@"
|
||||
|
@@ -310,7 +310,7 @@ _PlayerMailBoxMenu:
|
||||
jp MenuTextBoxBackup
|
||||
|
||||
.EmptyMailboxText:
|
||||
text_jump _EmptyMailboxText
|
||||
text_far _EmptyMailboxText
|
||||
db "@"
|
||||
|
||||
InitMail:
|
||||
@@ -453,15 +453,15 @@ MailboxPC:
|
||||
jp MenuTextBoxBackup
|
||||
|
||||
.PutAwayText:
|
||||
text_jump ClearedMailPutAwayText
|
||||
text_far ClearedMailPutAwayText
|
||||
db "@"
|
||||
|
||||
.PackFullText:
|
||||
text_jump MailPackFullText
|
||||
text_far MailPackFullText
|
||||
db "@"
|
||||
|
||||
.MessageLostText:
|
||||
text_jump MailMessageLostText
|
||||
text_far MailMessageLostText
|
||||
db "@"
|
||||
|
||||
.GetMailType:
|
||||
@@ -521,15 +521,15 @@ MailboxPC:
|
||||
jp CloseSubmenu
|
||||
|
||||
.HoldingMailText:
|
||||
text_jump MailAlreadyHoldingItemText
|
||||
text_far MailAlreadyHoldingItemText
|
||||
db "@"
|
||||
|
||||
.EggText:
|
||||
text_jump MailEggText
|
||||
text_far MailEggText
|
||||
db "@"
|
||||
|
||||
.MailMovedText:
|
||||
text_jump MailMovedFromBoxText
|
||||
text_far MailMovedFromBoxText
|
||||
db "@"
|
||||
|
||||
.Cancel:
|
||||
|
@@ -63,17 +63,17 @@ TossItemFromPC:
|
||||
|
||||
.TossHowMany:
|
||||
; Toss out how many @ (S)?
|
||||
text_jump UnknownText_0x1c1a90
|
||||
text_far UnknownText_0x1c1a90
|
||||
db "@"
|
||||
|
||||
.ConfirmToss:
|
||||
; Throw away @ @ (S)?
|
||||
text_jump UnknownText_0x1c1aad
|
||||
text_far UnknownText_0x1c1aad
|
||||
db "@"
|
||||
|
||||
.TossedThisMany:
|
||||
; Discarded @ (S).
|
||||
text_jump UnknownText_0x1c1aca
|
||||
text_far UnknownText_0x1c1aca
|
||||
db "@"
|
||||
|
||||
.CantToss:
|
||||
@@ -83,7 +83,7 @@ TossItemFromPC:
|
||||
|
||||
.TooImportantToToss:
|
||||
; That's too impor- tant to toss out!
|
||||
text_jump UnknownText_0x1c1adf
|
||||
text_far UnknownText_0x1c1adf
|
||||
db "@"
|
||||
|
||||
CantUseItem:
|
||||
@@ -92,7 +92,7 @@ CantUseItem:
|
||||
ret
|
||||
|
||||
CantUseItemText:
|
||||
text_jump UnknownText_0x1c1b03
|
||||
text_far UnknownText_0x1c1b03
|
||||
db "@"
|
||||
|
||||
PartyMonItemName:
|
||||
@@ -391,35 +391,35 @@ GiveTakeItemMenuData:
|
||||
db "TAKE@"
|
||||
|
||||
TookAndMadeHoldText:
|
||||
text_jump UnknownText_0x1c1b2c
|
||||
text_far UnknownText_0x1c1b2c
|
||||
db "@"
|
||||
|
||||
MadeHoldText:
|
||||
text_jump UnknownText_0x1c1b57
|
||||
text_far UnknownText_0x1c1b57
|
||||
db "@"
|
||||
|
||||
PleaseRemoveMailText:
|
||||
text_jump UnknownText_0x1c1b6f
|
||||
text_far UnknownText_0x1c1b6f
|
||||
db "@"
|
||||
|
||||
IsntHoldingAnythingText:
|
||||
text_jump UnknownText_0x1c1b8e
|
||||
text_far UnknownText_0x1c1b8e
|
||||
db "@"
|
||||
|
||||
ItemStorageIsFullText:
|
||||
text_jump UnknownText_0x1c1baa
|
||||
text_far UnknownText_0x1c1baa
|
||||
db "@"
|
||||
|
||||
TookFromText:
|
||||
text_jump UnknownText_0x1c1bc4
|
||||
text_far UnknownText_0x1c1bc4
|
||||
db "@"
|
||||
|
||||
SwitchAlreadyHoldingText:
|
||||
text_jump UnknownText_0x1c1bdc
|
||||
text_far UnknownText_0x1c1bdc
|
||||
db "@"
|
||||
|
||||
CantBeHeldText:
|
||||
text_jump UnknownText_0x1c1c09
|
||||
text_far UnknownText_0x1c1c09
|
||||
db "@"
|
||||
|
||||
GetPartyItemLocation:
|
||||
@@ -562,32 +562,32 @@ MonMailAction:
|
||||
|
||||
.mailwilllosemessagetext
|
||||
; The MAIL will lose its message. OK?
|
||||
text_jump UnknownText_0x1c1c22
|
||||
text_far UnknownText_0x1c1c22
|
||||
db "@"
|
||||
|
||||
.tookmailfrommontext
|
||||
; MAIL detached from <POKEMON>.
|
||||
text_jump UnknownText_0x1c1c47
|
||||
text_far UnknownText_0x1c1c47
|
||||
db "@"
|
||||
|
||||
.bagfulltext
|
||||
; There's no space for removing MAIL.
|
||||
text_jump UnknownText_0x1c1c62
|
||||
text_far UnknownText_0x1c1c62
|
||||
db "@"
|
||||
|
||||
.sendmailtopctext
|
||||
; Send the removed MAIL to your PC?
|
||||
text_jump UnknownText_0x1c1c86
|
||||
text_far UnknownText_0x1c1c86
|
||||
db "@"
|
||||
|
||||
.mailboxfulltext
|
||||
; Your PC's MAILBOX is full.
|
||||
text_jump UnknownText_0x1c1ca9
|
||||
text_far UnknownText_0x1c1ca9
|
||||
db "@"
|
||||
|
||||
.sentmailtopctext
|
||||
; The MAIL was sent to your PC.
|
||||
text_jump UnknownText_0x1c1cc4
|
||||
text_far UnknownText_0x1c1cc4
|
||||
db "@"
|
||||
|
||||
OpenPartyStats:
|
||||
@@ -749,7 +749,7 @@ MonMenu_Softboiled_MilkDrink:
|
||||
|
||||
.Text_NotEnoughHP:
|
||||
; Not enough HP!
|
||||
text_jump UnknownText_0x1c1ce3
|
||||
text_far UnknownText_0x1c1ce3
|
||||
db "@"
|
||||
|
||||
.CheckMonHasEnoughHP:
|
||||
|
@@ -1800,7 +1800,7 @@ GivePoke::
|
||||
|
||||
TextJump_WasSentToBillsPC:
|
||||
; was sent to BILL's PC.
|
||||
text_jump Text_WasSentToBillsPC
|
||||
text_far Text_WasSentToBillsPC
|
||||
db "@"
|
||||
|
||||
InitNickname:
|
||||
|
@@ -805,52 +805,52 @@ PrintPartyMenuActionText:
|
||||
|
||||
.Text_RecoveredSomeHP:
|
||||
; recovered @ HP!
|
||||
text_jump UnknownText_0x1bc0a2
|
||||
text_far UnknownText_0x1bc0a2
|
||||
db "@"
|
||||
|
||||
.Text_CuredOfPoison:
|
||||
; 's cured of poison.
|
||||
text_jump UnknownText_0x1bc0bb
|
||||
text_far UnknownText_0x1bc0bb
|
||||
db "@"
|
||||
|
||||
.Text_RidOfParalysis:
|
||||
; 's rid of paralysis.
|
||||
text_jump UnknownText_0x1bc0d2
|
||||
text_far UnknownText_0x1bc0d2
|
||||
db "@"
|
||||
|
||||
.Text_BurnWasHealed:
|
||||
; 's burn was healed.
|
||||
text_jump UnknownText_0x1bc0ea
|
||||
text_far UnknownText_0x1bc0ea
|
||||
db "@"
|
||||
|
||||
.Text_Defrosted:
|
||||
; was defrosted.
|
||||
text_jump UnknownText_0x1bc101
|
||||
text_far UnknownText_0x1bc101
|
||||
db "@"
|
||||
|
||||
.Text_WokeUp:
|
||||
; woke up.
|
||||
text_jump UnknownText_0x1bc115
|
||||
text_far UnknownText_0x1bc115
|
||||
db "@"
|
||||
|
||||
.Text_HealthReturned:
|
||||
; 's health returned.
|
||||
text_jump UnknownText_0x1bc123
|
||||
text_far UnknownText_0x1bc123
|
||||
db "@"
|
||||
|
||||
.Text_Revitalized:
|
||||
; is revitalized.
|
||||
text_jump UnknownText_0x1bc13a
|
||||
text_far UnknownText_0x1bc13a
|
||||
db "@"
|
||||
|
||||
.Text_GrewToLevel:
|
||||
; grew to level @ !@ @
|
||||
text_jump UnknownText_0x1bc14f
|
||||
text_far UnknownText_0x1bc14f
|
||||
db "@"
|
||||
|
||||
.Text_CameToItsSenses:
|
||||
; came to its senses.
|
||||
text_jump UnknownText_0x1bc16e
|
||||
text_far UnknownText_0x1bc16e
|
||||
db "@"
|
||||
|
||||
.PrintText:
|
||||
|
Reference in New Issue
Block a user