mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-01-23 09:16:20 -08: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:
parent
0af682d38a
commit
940256569b
@ -708,7 +708,7 @@ AI_Switch:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
TextJump_EnemyWithdrew:
|
TextJump_EnemyWithdrew:
|
||||||
text_jump Text_EnemyWithdrew
|
text_far Text_EnemyWithdrew
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Function384d5: ; This appears to be unused
|
Function384d5: ; This appears to be unused
|
||||||
@ -828,5 +828,5 @@ PrintText_UsedItemOn:
|
|||||||
jp PrintText
|
jp PrintText
|
||||||
|
|
||||||
TextJump_EnemyUsedOn:
|
TextJump_EnemyUsedOn:
|
||||||
text_jump Text_EnemyUsedOn
|
text_far Text_EnemyUsedOn
|
||||||
db "@"
|
db "@"
|
||||||
|
@ -7398,7 +7398,7 @@ BoostExp:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
Text_MonGainedExpPoint:
|
Text_MonGainedExpPoint:
|
||||||
text_jump Text_Gained
|
text_far Text_Gained
|
||||||
start_asm
|
start_asm
|
||||||
ld hl, TextJump_StringBuffer2ExpPoints
|
ld hl, TextJump_StringBuffer2ExpPoints
|
||||||
ld a, [wStringBuffer2 + 2] ; IsTradedMon
|
ld a, [wStringBuffer2 + 2] ; IsTradedMon
|
||||||
@ -7409,11 +7409,11 @@ Text_MonGainedExpPoint:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
TextJump_ABoostedStringBuffer2ExpPoints:
|
TextJump_ABoostedStringBuffer2ExpPoints:
|
||||||
text_jump Text_ABoostedStringBuffer2ExpPoints
|
text_far Text_ABoostedStringBuffer2ExpPoints
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TextJump_StringBuffer2ExpPoints:
|
TextJump_StringBuffer2ExpPoints:
|
||||||
text_jump Text_StringBuffer2ExpPoints
|
text_far Text_StringBuffer2ExpPoints
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
AnimateExpBar:
|
AnimateExpBar:
|
||||||
@ -7664,29 +7664,29 @@ SendOutMonText:
|
|||||||
jp BattleTextBox
|
jp BattleTextBox
|
||||||
|
|
||||||
JumpText_GoMon:
|
JumpText_GoMon:
|
||||||
text_jump Text_GoMon
|
text_far Text_GoMon
|
||||||
start_asm
|
start_asm
|
||||||
jr Function_TextJump_BattleMonNick01
|
jr Function_TextJump_BattleMonNick01
|
||||||
|
|
||||||
JumpText_DoItMon:
|
JumpText_DoItMon:
|
||||||
text_jump Text_DoItMon
|
text_far Text_DoItMon
|
||||||
start_asm
|
start_asm
|
||||||
jr Function_TextJump_BattleMonNick01
|
jr Function_TextJump_BattleMonNick01
|
||||||
|
|
||||||
JumpText_GoForItMon:
|
JumpText_GoForItMon:
|
||||||
text_jump Text_GoForItMon
|
text_far Text_GoForItMon
|
||||||
start_asm
|
start_asm
|
||||||
jr Function_TextJump_BattleMonNick01
|
jr Function_TextJump_BattleMonNick01
|
||||||
|
|
||||||
JumpText_YourFoesWeakGetmMon:
|
JumpText_YourFoesWeakGetmMon:
|
||||||
text_jump Text_YourFoesWeakGetmMon
|
text_far Text_YourFoesWeakGetmMon
|
||||||
start_asm
|
start_asm
|
||||||
Function_TextJump_BattleMonNick01:
|
Function_TextJump_BattleMonNick01:
|
||||||
ld hl, TextJump_BattleMonNick01
|
ld hl, TextJump_BattleMonNick01
|
||||||
ret
|
ret
|
||||||
|
|
||||||
TextJump_BattleMonNick01:
|
TextJump_BattleMonNick01:
|
||||||
text_jump Text_BattleMonNick01
|
text_far Text_BattleMonNick01
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
WithdrawMonText:
|
WithdrawMonText:
|
||||||
@ -7694,7 +7694,7 @@ WithdrawMonText:
|
|||||||
jp BattleTextBox
|
jp BattleTextBox
|
||||||
|
|
||||||
.WithdrawMonText:
|
.WithdrawMonText:
|
||||||
text_jump Text_BattleMonNickComma
|
text_far Text_BattleMonNickComma
|
||||||
start_asm
|
start_asm
|
||||||
; Print text to withdraw mon
|
; Print text to withdraw mon
|
||||||
; depending on HP the message is different
|
; depending on HP the message is different
|
||||||
@ -7745,15 +7745,15 @@ WithdrawMonText:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
TextJump_ThatsEnoughComeBack:
|
TextJump_ThatsEnoughComeBack:
|
||||||
text_jump Text_ThatsEnoughComeBack
|
text_far Text_ThatsEnoughComeBack
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TextJump_OKComeBack:
|
TextJump_OKComeBack:
|
||||||
text_jump Text_OKComeBack
|
text_far Text_OKComeBack
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TextJump_GoodComeBack:
|
TextJump_GoodComeBack:
|
||||||
text_jump Text_GoodComeBack
|
text_far Text_GoodComeBack
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Unreferenced_TextJump_ComeBack:
|
Unreferenced_TextJump_ComeBack:
|
||||||
@ -7762,7 +7762,7 @@ Unreferenced_TextJump_ComeBack:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
TextJump_ComeBack:
|
TextJump_ComeBack:
|
||||||
text_jump Text_ComeBack
|
text_far Text_ComeBack
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Unreferenced_HandleSafariAngerEatingStatus:
|
Unreferenced_HandleSafariAngerEatingStatus:
|
||||||
|
@ -4542,7 +4542,7 @@ BattleCommand_StatUpMessage:
|
|||||||
jp BattleTextBox
|
jp BattleTextBox
|
||||||
|
|
||||||
.stat
|
.stat
|
||||||
text_jump UnknownText_0x1c0cc6
|
text_far UnknownText_0x1c0cc6
|
||||||
start_asm
|
start_asm
|
||||||
ld hl, .up
|
ld hl, .up
|
||||||
ld a, [wLoweredStat]
|
ld a, [wLoweredStat]
|
||||||
@ -4552,11 +4552,11 @@ BattleCommand_StatUpMessage:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
.wayup
|
.wayup
|
||||||
text_jump UnknownText_0x1c0cd0
|
text_far UnknownText_0x1c0cd0
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.up
|
.up
|
||||||
text_jump UnknownText_0x1c0ce0
|
text_far UnknownText_0x1c0ce0
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BattleCommand_StatDownMessage:
|
BattleCommand_StatDownMessage:
|
||||||
@ -4572,7 +4572,7 @@ BattleCommand_StatDownMessage:
|
|||||||
jp BattleTextBox
|
jp BattleTextBox
|
||||||
|
|
||||||
.stat
|
.stat
|
||||||
text_jump UnknownText_0x1c0ceb
|
text_far UnknownText_0x1c0ceb
|
||||||
start_asm
|
start_asm
|
||||||
ld hl, .fell
|
ld hl, .fell
|
||||||
ld a, [wLoweredStat]
|
ld a, [wLoweredStat]
|
||||||
@ -4582,10 +4582,10 @@ BattleCommand_StatDownMessage:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
.sharplyfell
|
.sharplyfell
|
||||||
text_jump UnknownText_0x1c0cf5
|
text_far UnknownText_0x1c0cf5
|
||||||
db "@"
|
db "@"
|
||||||
.fell
|
.fell
|
||||||
text_jump UnknownText_0x1c0d06
|
text_far UnknownText_0x1c0d06
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TryLowerStat:
|
TryLowerStat:
|
||||||
@ -5636,7 +5636,7 @@ BattleCommand_Charge:
|
|||||||
jp EndMoveEffect
|
jp EndMoveEffect
|
||||||
|
|
||||||
.UsedText:
|
.UsedText:
|
||||||
text_jump UnknownText_0x1c0d0e ; "<USER>"
|
text_far UnknownText_0x1c0d0e ; "<USER>"
|
||||||
start_asm
|
start_asm
|
||||||
ld a, BATTLE_VARS_MOVE_ANIM
|
ld a, BATTLE_VARS_MOVE_ANIM
|
||||||
call GetBattleVar
|
call GetBattleVar
|
||||||
@ -5668,32 +5668,32 @@ BattleCommand_Charge:
|
|||||||
|
|
||||||
.RazorWind:
|
.RazorWind:
|
||||||
; 'made a whirlwind!'
|
; 'made a whirlwind!'
|
||||||
text_jump UnknownText_0x1c0d12
|
text_far UnknownText_0x1c0d12
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Solarbeam:
|
.Solarbeam:
|
||||||
; 'took in sunlight!'
|
; 'took in sunlight!'
|
||||||
text_jump UnknownText_0x1c0d26
|
text_far UnknownText_0x1c0d26
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.SkullBash:
|
.SkullBash:
|
||||||
; 'lowered its head!'
|
; 'lowered its head!'
|
||||||
text_jump UnknownText_0x1c0d3a
|
text_far UnknownText_0x1c0d3a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.SkyAttack:
|
.SkyAttack:
|
||||||
; 'is glowing!'
|
; 'is glowing!'
|
||||||
text_jump UnknownText_0x1c0d4e
|
text_far UnknownText_0x1c0d4e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Fly:
|
.Fly:
|
||||||
; 'flew up high!'
|
; 'flew up high!'
|
||||||
text_jump UnknownText_0x1c0d5c
|
text_far UnknownText_0x1c0d5c
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Dig:
|
.Dig:
|
||||||
; 'dug a hole!'
|
; 'dug a hole!'
|
||||||
text_jump UnknownText_0x1c0d6c
|
text_far UnknownText_0x1c0d6c
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BattleCommand3c:
|
BattleCommand3c:
|
||||||
|
@ -6,7 +6,7 @@ DisplayUsedMoveText:
|
|||||||
|
|
||||||
UsedMoveText:
|
UsedMoveText:
|
||||||
; this is a stream of text and asm from 105db9 to 105ef6
|
; this is a stream of text and asm from 105db9 to 105ef6
|
||||||
text_jump _ActorNameText
|
text_far _ActorNameText
|
||||||
start_asm
|
start_asm
|
||||||
ldh a, [hBattleTurn]
|
ldh a, [hBattleTurn]
|
||||||
and a
|
and a
|
||||||
@ -58,12 +58,12 @@ UsedMoveText:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
UsedMove1Text:
|
UsedMove1Text:
|
||||||
text_jump _UsedMove1Text
|
text_far _UsedMove1Text
|
||||||
start_asm
|
start_asm
|
||||||
jr UsedMoveText_CheckObedience
|
jr UsedMoveText_CheckObedience
|
||||||
|
|
||||||
UsedMove2Text:
|
UsedMove2Text:
|
||||||
text_jump _UsedMove2Text
|
text_far _UsedMove2Text
|
||||||
start_asm
|
start_asm
|
||||||
UsedMoveText_CheckObedience:
|
UsedMoveText_CheckObedience:
|
||||||
; check obedience
|
; check obedience
|
||||||
@ -75,14 +75,14 @@ UsedMoveText_CheckObedience:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
.UsedInsteadText:
|
.UsedInsteadText:
|
||||||
text_jump _UsedInsteadText
|
text_far _UsedInsteadText
|
||||||
start_asm
|
start_asm
|
||||||
.GetMoveNameText:
|
.GetMoveNameText:
|
||||||
ld hl, MoveNameText
|
ld hl, MoveNameText
|
||||||
ret
|
ret
|
||||||
|
|
||||||
MoveNameText:
|
MoveNameText:
|
||||||
text_jump _MoveNameText
|
text_far _MoveNameText
|
||||||
start_asm
|
start_asm
|
||||||
; get start address
|
; get start address
|
||||||
ld hl, .endusedmovetexts
|
ld hl, .endusedmovetexts
|
||||||
@ -115,19 +115,19 @@ MoveNameText:
|
|||||||
dw EndUsedMove5Text
|
dw EndUsedMove5Text
|
||||||
|
|
||||||
EndUsedMove1Text:
|
EndUsedMove1Text:
|
||||||
text_jump _EndUsedMove1Text
|
text_far _EndUsedMove1Text
|
||||||
db "@"
|
db "@"
|
||||||
EndUsedMove2Text:
|
EndUsedMove2Text:
|
||||||
text_jump _EndUsedMove2Text
|
text_far _EndUsedMove2Text
|
||||||
db "@"
|
db "@"
|
||||||
EndUsedMove3Text:
|
EndUsedMove3Text:
|
||||||
text_jump _EndUsedMove3Text
|
text_far _EndUsedMove3Text
|
||||||
db "@"
|
db "@"
|
||||||
EndUsedMove4Text:
|
EndUsedMove4Text:
|
||||||
text_jump _EndUsedMove4Text
|
text_far _EndUsedMove4Text
|
||||||
db "@"
|
db "@"
|
||||||
EndUsedMove5Text:
|
EndUsedMove5Text:
|
||||||
text_jump _EndUsedMove5Text
|
text_far _EndUsedMove5Text
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
GetMoveGrammar:
|
GetMoveGrammar:
|
||||||
|
@ -22,7 +22,7 @@ CheckForMobileBattleRules:
|
|||||||
|
|
||||||
.ExcuseMeText:
|
.ExcuseMeText:
|
||||||
; Excuse me!
|
; Excuse me!
|
||||||
text_jump UnknownText_0x1c5937
|
text_far UnknownText_0x1c5937
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
_CheckForBattleTowerRules:
|
_CheckForBattleTowerRules:
|
||||||
@ -57,7 +57,7 @@ _CheckForBattleTowerRules:
|
|||||||
|
|
||||||
JumpText_ExcuseMeYoureNotReady:
|
JumpText_ExcuseMeYoureNotReady:
|
||||||
; Excuse me. You're not ready.
|
; Excuse me. You're not ready.
|
||||||
text_jump Text_ExcuseMeYoureNotReady
|
text_far Text_ExcuseMeYoureNotReady
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BattleTower_PleaseReturnWhenReady:
|
BattleTower_PleaseReturnWhenReady:
|
||||||
@ -67,37 +67,37 @@ BattleTower_PleaseReturnWhenReady:
|
|||||||
|
|
||||||
.PleaseReturnWhenReady:
|
.PleaseReturnWhenReady:
|
||||||
; Please return when you're ready.
|
; Please return when you're ready.
|
||||||
text_jump UnknownText_0x1c5962
|
text_far UnknownText_0x1c5962
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
JumpText_NeedAtLeastThreeMon:
|
JumpText_NeedAtLeastThreeMon:
|
||||||
; You need at least three #MON.
|
; You need at least three #MON.
|
||||||
text_jump UnknownText_0x1c5983
|
text_far UnknownText_0x1c5983
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
JumpText_EggDoesNotQualify:
|
JumpText_EggDoesNotQualify:
|
||||||
; Sorry, an EGG doesn't qualify.
|
; Sorry, an EGG doesn't qualify.
|
||||||
text_jump UnknownText_0x1c59a3
|
text_far UnknownText_0x1c59a3
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
JumpText_OnlyThreeMonMayBeEntered:
|
JumpText_OnlyThreeMonMayBeEntered:
|
||||||
; Only three #MON may be entered.
|
; Only three #MON may be entered.
|
||||||
text_jump Text_OnlyThreeMonMayBeEntered
|
text_far Text_OnlyThreeMonMayBeEntered
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
JumpText_TheMonMustAllBeDifferentKinds:
|
JumpText_TheMonMustAllBeDifferentKinds:
|
||||||
; The @ #MON must all be different kinds.
|
; The @ #MON must all be different kinds.
|
||||||
text_jump Text_TheMonMustAllBeDifferentKinds
|
text_far Text_TheMonMustAllBeDifferentKinds
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
JumpText_TheMonMustNotHoldTheSameItems:
|
JumpText_TheMonMustNotHoldTheSameItems:
|
||||||
; The @ #MON must not hold the same items.
|
; The @ #MON must not hold the same items.
|
||||||
text_jump Text_TheMonMustNotHoldTheSameItems
|
text_far Text_TheMonMustNotHoldTheSameItems
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
JumpText_YouCantTakeAnEgg:
|
JumpText_YouCantTakeAnEgg:
|
||||||
; You can't take an EGG!
|
; You can't take an EGG!
|
||||||
text_jump Text_YouCantTakeAnEgg
|
text_far Text_YouCantTakeAnEgg
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BattleTower_ExecuteJumptable:
|
BattleTower_ExecuteJumptable:
|
||||||
|
@ -231,481 +231,481 @@ BTFemaleTrainerTexts:
|
|||||||
dw BTWinF15
|
dw BTWinF15
|
||||||
|
|
||||||
BTGreetingM1:
|
BTGreetingM1:
|
||||||
text_jump BattleTowerText_0x1ec000
|
text_far BattleTowerText_0x1ec000
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossM1:
|
BTLossM1:
|
||||||
text_jump BattleTowerText_0x1ec03b
|
text_far BattleTowerText_0x1ec03b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinM1:
|
BTWinM1:
|
||||||
text_jump UnknownText_0x1ec060
|
text_far UnknownText_0x1ec060
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingM2:
|
BTGreetingM2:
|
||||||
text_jump BattleTowerText_0x1ec080
|
text_far BattleTowerText_0x1ec080
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossM2:
|
BTLossM2:
|
||||||
text_jump UnknownText_0x1ec0a3
|
text_far UnknownText_0x1ec0a3
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinM2:
|
BTWinM2:
|
||||||
text_jump UnknownText_0x1ec0c4
|
text_far UnknownText_0x1ec0c4
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingM3:
|
BTGreetingM3:
|
||||||
text_jump UnknownText_0x1ec0e1
|
text_far UnknownText_0x1ec0e1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossM3:
|
BTLossM3:
|
||||||
text_jump UnknownText_0x1ec108
|
text_far UnknownText_0x1ec108
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinM3:
|
BTWinM3:
|
||||||
text_jump UnknownText_0x1ec12a
|
text_far UnknownText_0x1ec12a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingM4:
|
BTGreetingM4:
|
||||||
text_jump UnknownText_0x1ec14d
|
text_far UnknownText_0x1ec14d
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossM4:
|
BTLossM4:
|
||||||
text_jump UnknownText_0x1ec16f
|
text_far UnknownText_0x1ec16f
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinM4:
|
BTWinM4:
|
||||||
text_jump UnknownText_0x1ec190
|
text_far UnknownText_0x1ec190
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingM5:
|
BTGreetingM5:
|
||||||
text_jump UnknownText_0x1ec1ae
|
text_far UnknownText_0x1ec1ae
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossM5:
|
BTLossM5:
|
||||||
text_jump UnknownText_0x1ec1d0
|
text_far UnknownText_0x1ec1d0
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinM5:
|
BTWinM5:
|
||||||
text_jump UnknownText_0x1ec1f4
|
text_far UnknownText_0x1ec1f4
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingM6:
|
BTGreetingM6:
|
||||||
text_jump UnknownText_0x1ec216
|
text_far UnknownText_0x1ec216
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossM6:
|
BTLossM6:
|
||||||
text_jump UnknownText_0x1ec238
|
text_far UnknownText_0x1ec238
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinM6:
|
BTWinM6:
|
||||||
text_jump UnknownText_0x1ec259
|
text_far UnknownText_0x1ec259
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingM7:
|
BTGreetingM7:
|
||||||
text_jump UnknownText_0x1ec27b
|
text_far UnknownText_0x1ec27b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossM7:
|
BTLossM7:
|
||||||
text_jump UnknownText_0x1ec2a0
|
text_far UnknownText_0x1ec2a0
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinM7:
|
BTWinM7:
|
||||||
text_jump UnknownText_0x1ec2c0
|
text_far UnknownText_0x1ec2c0
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingM8:
|
BTGreetingM8:
|
||||||
text_jump UnknownText_0x1ec2d9
|
text_far UnknownText_0x1ec2d9
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossM8:
|
BTLossM8:
|
||||||
text_jump UnknownText_0x1ec2fe
|
text_far UnknownText_0x1ec2fe
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinM8:
|
BTWinM8:
|
||||||
text_jump UnknownText_0x1ec320
|
text_far UnknownText_0x1ec320
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingM9:
|
BTGreetingM9:
|
||||||
text_jump UnknownText_0x1ec33f
|
text_far UnknownText_0x1ec33f
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossM9:
|
BTLossM9:
|
||||||
text_jump UnknownText_0x1ec36c
|
text_far UnknownText_0x1ec36c
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinM9:
|
BTWinM9:
|
||||||
text_jump UnknownText_0x1ec389
|
text_far UnknownText_0x1ec389
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingM10:
|
BTGreetingM10:
|
||||||
text_jump UnknownText_0x1ec3ad
|
text_far UnknownText_0x1ec3ad
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossM10:
|
BTLossM10:
|
||||||
text_jump UnknownText_0x1ec3c5
|
text_far UnknownText_0x1ec3c5
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinM10:
|
BTWinM10:
|
||||||
text_jump UnknownText_0x1ec3e5
|
text_far UnknownText_0x1ec3e5
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingM11:
|
BTGreetingM11:
|
||||||
text_jump UnknownText_0x1ec402
|
text_far UnknownText_0x1ec402
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossM11:
|
BTLossM11:
|
||||||
text_jump UnknownText_0x1ec411
|
text_far UnknownText_0x1ec411
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinM11:
|
BTWinM11:
|
||||||
text_jump UnknownText_0x1ec41f
|
text_far UnknownText_0x1ec41f
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingM12:
|
BTGreetingM12:
|
||||||
text_jump UnknownText_0x1ec42e
|
text_far UnknownText_0x1ec42e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossM12:
|
BTLossM12:
|
||||||
text_jump UnknownText_0x1ec461
|
text_far UnknownText_0x1ec461
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinM12:
|
BTWinM12:
|
||||||
text_jump UnknownText_0x1ec4a0
|
text_far UnknownText_0x1ec4a0
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingM13:
|
BTGreetingM13:
|
||||||
text_jump UnknownText_0x1ec4d6
|
text_far UnknownText_0x1ec4d6
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossM13:
|
BTLossM13:
|
||||||
text_jump UnknownText_0x1ec4f5
|
text_far UnknownText_0x1ec4f5
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinM13:
|
BTWinM13:
|
||||||
text_jump UnknownText_0x1ec512
|
text_far UnknownText_0x1ec512
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingM14:
|
BTGreetingM14:
|
||||||
text_jump UnknownText_0x1ec532
|
text_far UnknownText_0x1ec532
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossM14:
|
BTLossM14:
|
||||||
text_jump UnknownText_0x1ec54b
|
text_far UnknownText_0x1ec54b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinM14:
|
BTWinM14:
|
||||||
text_jump UnknownText_0x1ec565
|
text_far UnknownText_0x1ec565
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingM15:
|
BTGreetingM15:
|
||||||
text_jump UnknownText_0x1ec580
|
text_far UnknownText_0x1ec580
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossM15:
|
BTLossM15:
|
||||||
text_jump UnknownText_0x1ec59d
|
text_far UnknownText_0x1ec59d
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinM15:
|
BTWinM15:
|
||||||
text_jump UnknownText_0x1ec5b5
|
text_far UnknownText_0x1ec5b5
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingM16:
|
BTGreetingM16:
|
||||||
text_jump UnknownText_0x1ec5d3
|
text_far UnknownText_0x1ec5d3
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossM16:
|
BTLossM16:
|
||||||
text_jump UnknownText_0x1ec5ee
|
text_far UnknownText_0x1ec5ee
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinM16:
|
BTWinM16:
|
||||||
text_jump UnknownText_0x1ec60d
|
text_far UnknownText_0x1ec60d
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingM17:
|
BTGreetingM17:
|
||||||
text_jump UnknownText_0x1ec631
|
text_far UnknownText_0x1ec631
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossM17:
|
BTLossM17:
|
||||||
text_jump UnknownText_0x1ec651
|
text_far UnknownText_0x1ec651
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinM17:
|
BTWinM17:
|
||||||
text_jump UnknownText_0x1ec68f
|
text_far UnknownText_0x1ec68f
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingM18:
|
BTGreetingM18:
|
||||||
text_jump UnknownText_0x1ec6b1
|
text_far UnknownText_0x1ec6b1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossM18:
|
BTLossM18:
|
||||||
text_jump UnknownText_0x1ec6d0
|
text_far UnknownText_0x1ec6d0
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinM18:
|
BTWinM18:
|
||||||
text_jump UnknownText_0x1ec708
|
text_far UnknownText_0x1ec708
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingM19:
|
BTGreetingM19:
|
||||||
text_jump UnknownText_0x1ec720
|
text_far UnknownText_0x1ec720
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossM19:
|
BTLossM19:
|
||||||
text_jump UnknownText_0x1ec73e
|
text_far UnknownText_0x1ec73e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinM19:
|
BTWinM19:
|
||||||
text_jump UnknownText_0x1ec75b
|
text_far UnknownText_0x1ec75b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingM20:
|
BTGreetingM20:
|
||||||
text_jump UnknownText_0x1ec77f
|
text_far UnknownText_0x1ec77f
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossM20:
|
BTLossM20:
|
||||||
text_jump UnknownText_0x1ec798
|
text_far UnknownText_0x1ec798
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinM20:
|
BTWinM20:
|
||||||
text_jump UnknownText_0x1ec7bb
|
text_far UnknownText_0x1ec7bb
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingM21:
|
BTGreetingM21:
|
||||||
text_jump UnknownText_0x1ec7d8
|
text_far UnknownText_0x1ec7d8
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossM21:
|
BTLossM21:
|
||||||
text_jump UnknownText_0x1ec818
|
text_far UnknownText_0x1ec818
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinM21:
|
BTWinM21:
|
||||||
text_jump UnknownText_0x1ec837
|
text_far UnknownText_0x1ec837
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingM22:
|
BTGreetingM22:
|
||||||
text_jump UnknownText_0x1ec858
|
text_far UnknownText_0x1ec858
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossM22:
|
BTLossM22:
|
||||||
text_jump UnknownText_0x1ec876
|
text_far UnknownText_0x1ec876
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinM22:
|
BTWinM22:
|
||||||
text_jump UnknownText_0x1ec898
|
text_far UnknownText_0x1ec898
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingM23:
|
BTGreetingM23:
|
||||||
text_jump UnknownText_0x1ec8b1
|
text_far UnknownText_0x1ec8b1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossM23:
|
BTLossM23:
|
||||||
text_jump UnknownText_0x1ec8d5
|
text_far UnknownText_0x1ec8d5
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinM23:
|
BTWinM23:
|
||||||
text_jump UnknownText_0x1ec8f0
|
text_far UnknownText_0x1ec8f0
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingM24:
|
BTGreetingM24:
|
||||||
text_jump UnknownText_0x1ec911
|
text_far UnknownText_0x1ec911
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossM24:
|
BTLossM24:
|
||||||
text_jump UnknownText_0x1ec928
|
text_far UnknownText_0x1ec928
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinM24:
|
BTWinM24:
|
||||||
text_jump UnknownText_0x1ec949
|
text_far UnknownText_0x1ec949
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingM25:
|
BTGreetingM25:
|
||||||
text_jump UnknownText_0x1ec969
|
text_far UnknownText_0x1ec969
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossM25:
|
BTLossM25:
|
||||||
text_jump UnknownText_0x1ec986
|
text_far UnknownText_0x1ec986
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinM25:
|
BTWinM25:
|
||||||
text_jump UnknownText_0x1ec99b
|
text_far UnknownText_0x1ec99b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingF1:
|
BTGreetingF1:
|
||||||
text_jump UnknownText_0x1ec9bd
|
text_far UnknownText_0x1ec9bd
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossF1:
|
BTLossF1:
|
||||||
text_jump UnknownText_0x1ec9d9
|
text_far UnknownText_0x1ec9d9
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinF1:
|
BTWinF1:
|
||||||
text_jump UnknownText_0x1ec9f7
|
text_far UnknownText_0x1ec9f7
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingF2:
|
BTGreetingF2:
|
||||||
text_jump UnknownText_0x1eca0a
|
text_far UnknownText_0x1eca0a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossF2:
|
BTLossF2:
|
||||||
text_jump UnknownText_0x1eca2a
|
text_far UnknownText_0x1eca2a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinF2:
|
BTWinF2:
|
||||||
text_jump UnknownText_0x1eca47
|
text_far UnknownText_0x1eca47
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingF3:
|
BTGreetingF3:
|
||||||
text_jump UnknownText_0x1eca64
|
text_far UnknownText_0x1eca64
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossF3:
|
BTLossF3:
|
||||||
text_jump UnknownText_0x1eca82
|
text_far UnknownText_0x1eca82
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinF3:
|
BTWinF3:
|
||||||
text_jump UnknownText_0x1eca9d
|
text_far UnknownText_0x1eca9d
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingF4:
|
BTGreetingF4:
|
||||||
text_jump UnknownText_0x1ecabf
|
text_far UnknownText_0x1ecabf
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossF4:
|
BTLossF4:
|
||||||
text_jump UnknownText_0x1ecade
|
text_far UnknownText_0x1ecade
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinF4:
|
BTWinF4:
|
||||||
text_jump UnknownText_0x1ecafa
|
text_far UnknownText_0x1ecafa
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingF5:
|
BTGreetingF5:
|
||||||
text_jump UnknownText_0x1ecb19
|
text_far UnknownText_0x1ecb19
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossF5:
|
BTLossF5:
|
||||||
text_jump UnknownText_0x1ecb37
|
text_far UnknownText_0x1ecb37
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinF5:
|
BTWinF5:
|
||||||
text_jump UnknownText_0x1ecb55
|
text_far UnknownText_0x1ecb55
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingF6:
|
BTGreetingF6:
|
||||||
text_jump UnknownText_0x1ecb70
|
text_far UnknownText_0x1ecb70
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossF6:
|
BTLossF6:
|
||||||
text_jump UnknownText_0x1ecb92
|
text_far UnknownText_0x1ecb92
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinF6:
|
BTWinF6:
|
||||||
text_jump UnknownText_0x1ecbb6
|
text_far UnknownText_0x1ecbb6
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingF7:
|
BTGreetingF7:
|
||||||
text_jump UnknownText_0x1ecbd9
|
text_far UnknownText_0x1ecbd9
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossF7:
|
BTLossF7:
|
||||||
text_jump UnknownText_0x1ecbf3
|
text_far UnknownText_0x1ecbf3
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinF7:
|
BTWinF7:
|
||||||
text_jump UnknownText_0x1ecc15
|
text_far UnknownText_0x1ecc15
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingF8:
|
BTGreetingF8:
|
||||||
text_jump UnknownText_0x1ecc39
|
text_far UnknownText_0x1ecc39
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossF8:
|
BTLossF8:
|
||||||
text_jump UnknownText_0x1ecc55
|
text_far UnknownText_0x1ecc55
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinF8:
|
BTWinF8:
|
||||||
text_jump UnknownText_0x1ecc75
|
text_far UnknownText_0x1ecc75
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingF9:
|
BTGreetingF9:
|
||||||
text_jump UnknownText_0x1ecc92
|
text_far UnknownText_0x1ecc92
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossF9:
|
BTLossF9:
|
||||||
text_jump UnknownText_0x1ecca7
|
text_far UnknownText_0x1ecca7
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinF9:
|
BTWinF9:
|
||||||
text_jump UnknownText_0x1eccc1
|
text_far UnknownText_0x1eccc1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingF10:
|
BTGreetingF10:
|
||||||
text_jump UnknownText_0x1eccd7
|
text_far UnknownText_0x1eccd7
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossF10:
|
BTLossF10:
|
||||||
text_jump UnknownText_0x1eccef
|
text_far UnknownText_0x1eccef
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinF10:
|
BTWinF10:
|
||||||
text_jump UnknownText_0x1ecd0e
|
text_far UnknownText_0x1ecd0e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingF11:
|
BTGreetingF11:
|
||||||
text_jump UnknownText_0x1ecd2b
|
text_far UnknownText_0x1ecd2b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossF11:
|
BTLossF11:
|
||||||
text_jump UnknownText_0x1ecd4d
|
text_far UnknownText_0x1ecd4d
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinF11:
|
BTWinF11:
|
||||||
text_jump UnknownText_0x1ecd6b
|
text_far UnknownText_0x1ecd6b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingF12:
|
BTGreetingF12:
|
||||||
text_jump UnknownText_0x1ecd8d
|
text_far UnknownText_0x1ecd8d
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossF12:
|
BTLossF12:
|
||||||
text_jump UnknownText_0x1ecdaf
|
text_far UnknownText_0x1ecdaf
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinF12:
|
BTWinF12:
|
||||||
text_jump UnknownText_0x1ecdcf
|
text_far UnknownText_0x1ecdcf
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingF13:
|
BTGreetingF13:
|
||||||
text_jump UnknownText_0x1ecded
|
text_far UnknownText_0x1ecded
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossF13:
|
BTLossF13:
|
||||||
text_jump UnknownText_0x1ece0d
|
text_far UnknownText_0x1ece0d
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinF13:
|
BTWinF13:
|
||||||
text_jump UnknownText_0x1ece2a
|
text_far UnknownText_0x1ece2a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingF14:
|
BTGreetingF14:
|
||||||
text_jump UnknownText_0x1ece4b
|
text_far UnknownText_0x1ece4b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossF14:
|
BTLossF14:
|
||||||
text_jump UnknownText_0x1ece70
|
text_far UnknownText_0x1ece70
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinF14:
|
BTWinF14:
|
||||||
text_jump UnknownText_0x1ece8a
|
text_far UnknownText_0x1ece8a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTGreetingF15:
|
BTGreetingF15:
|
||||||
text_jump UnknownText_0x1ecea8
|
text_far UnknownText_0x1ecea8
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTLossF15:
|
BTLossF15:
|
||||||
text_jump UnknownText_0x1ecec9
|
text_far UnknownText_0x1ecec9
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BTWinF15:
|
BTWinF15:
|
||||||
text_jump UnknownText_0x1ecee8
|
text_far UnknownText_0x1ecee8
|
||||||
db "@"
|
db "@"
|
||||||
|
@ -148,31 +148,31 @@ BuenaPrize:
|
|||||||
|
|
||||||
.Text_AskWhichPrize:
|
.Text_AskWhichPrize:
|
||||||
; Which prize would you like?
|
; Which prize would you like?
|
||||||
text_jump UnknownText_0x1c589f
|
text_far UnknownText_0x1c589f
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_IsThatRight:
|
.Text_IsThatRight:
|
||||||
; ? Is that right?
|
; ? Is that right?
|
||||||
text_jump UnknownText_0x1c58bc
|
text_far UnknownText_0x1c58bc
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_HereYouGo: ; Here you go!
|
.Text_HereYouGo: ; Here you go!
|
||||||
text_jump UnknownText_0x1c58d1
|
text_far UnknownText_0x1c58d1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_NotEnoughPoints:
|
.Text_NotEnoughPoints:
|
||||||
; You don't have enough points.
|
; You don't have enough points.
|
||||||
text_jump UnknownText_0x1c58e0
|
text_far UnknownText_0x1c58e0
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_NoRoom:
|
.Text_NoRoom:
|
||||||
; You have no room for it.
|
; You have no room for it.
|
||||||
text_jump UnknownText_0x1c58ff
|
text_far UnknownText_0x1c58ff
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_PleaseComeBackAgain:
|
.Text_PleaseComeBackAgain:
|
||||||
; Oh. Please come back again!
|
; Oh. Please come back again!
|
||||||
text_jump UnknownText_0x1c591a
|
text_far UnknownText_0x1c591a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Buena_DisplayBlueCardBalance:
|
Buena_DisplayBlueCardBalance:
|
||||||
|
@ -34,5 +34,5 @@ BugContest_SetCaughtContestMon:
|
|||||||
|
|
||||||
.caughttext
|
.caughttext
|
||||||
; Caught @ !
|
; Caught @ !
|
||||||
text_jump UnknownText_0x1c10c0
|
text_far UnknownText_0x1c10c0
|
||||||
db "@"
|
db "@"
|
||||||
|
@ -34,10 +34,10 @@ BugCatchingContestReturnToGateScript:
|
|||||||
|
|
||||||
BugCatchingContestText_BeeepTimesUp:
|
BugCatchingContestText_BeeepTimesUp:
|
||||||
; ANNOUNCER: BEEEP! Time's up!
|
; ANNOUNCER: BEEEP! Time's up!
|
||||||
text_jump UnknownText_0x1bd2ca
|
text_far UnknownText_0x1bd2ca
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BugCatchingContestText_ContestIsOver:
|
BugCatchingContestText_ContestIsOver:
|
||||||
; ANNOUNCER: The Contest is over!
|
; ANNOUNCER: The Contest is over!
|
||||||
text_jump UnknownText_0x1bd2e7
|
text_far UnknownText_0x1bd2e7
|
||||||
db "@"
|
db "@"
|
||||||
|
@ -88,7 +88,7 @@ DisplayCaughtContestMonStats:
|
|||||||
|
|
||||||
SwitchMonText:
|
SwitchMonText:
|
||||||
; Switch #MON?
|
; Switch #MON?
|
||||||
text_jump UnknownText_0x1c10cf
|
text_far UnknownText_0x1c10cf
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
DisplayAlreadyCaughtText:
|
DisplayAlreadyCaughtText:
|
||||||
@ -98,7 +98,7 @@ DisplayAlreadyCaughtText:
|
|||||||
|
|
||||||
.AlreadyCaughtText:
|
.AlreadyCaughtText:
|
||||||
; You already caught a @ .
|
; You already caught a @ .
|
||||||
text_jump UnknownText_0x1c10dd
|
text_far UnknownText_0x1c10dd
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
DummyPredef2F:
|
DummyPredef2F:
|
||||||
|
@ -26,7 +26,7 @@ _BugContestJudging:
|
|||||||
jp BugContest_GetPlayersResult
|
jp BugContest_GetPlayersResult
|
||||||
|
|
||||||
BugContest_FirstPlaceText:
|
BugContest_FirstPlaceText:
|
||||||
text_jump ContestJudging_FirstPlaceText
|
text_far ContestJudging_FirstPlaceText
|
||||||
start_asm
|
start_asm
|
||||||
ld de, SFX_1ST_PLACE
|
ld de, SFX_1ST_PLACE
|
||||||
call PlaySFX
|
call PlaySFX
|
||||||
@ -36,12 +36,12 @@ BugContest_FirstPlaceText:
|
|||||||
|
|
||||||
BugContest_FirstPlaceScoreText:
|
BugContest_FirstPlaceScoreText:
|
||||||
; The winning score was @ points!
|
; The winning score was @ points!
|
||||||
text_jump ContestJudging_FirstPlaceScoreText
|
text_far ContestJudging_FirstPlaceScoreText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BugContest_SecondPlaceText:
|
BugContest_SecondPlaceText:
|
||||||
; Placing second was @ , who caught a @ !@ @
|
; Placing second was @ , who caught a @ !@ @
|
||||||
text_jump ContestJudging_SecondPlaceText
|
text_far ContestJudging_SecondPlaceText
|
||||||
start_asm
|
start_asm
|
||||||
ld de, SFX_2ND_PLACE
|
ld de, SFX_2ND_PLACE
|
||||||
call PlaySFX
|
call PlaySFX
|
||||||
@ -51,12 +51,12 @@ BugContest_SecondPlaceText:
|
|||||||
|
|
||||||
BugContest_SecondPlaceScoreText:
|
BugContest_SecondPlaceScoreText:
|
||||||
; The score was @ points!
|
; The score was @ points!
|
||||||
text_jump ContestJudging_SecondPlaceScoreText
|
text_far ContestJudging_SecondPlaceScoreText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BugContest_ThirdPlaceText:
|
BugContest_ThirdPlaceText:
|
||||||
; Placing third was @ , who caught a @ !@ @
|
; Placing third was @ , who caught a @ !@ @
|
||||||
text_jump ContestJudging_ThirdPlaceText
|
text_far ContestJudging_ThirdPlaceText
|
||||||
start_asm
|
start_asm
|
||||||
ld de, SFX_3RD_PLACE
|
ld de, SFX_3RD_PLACE
|
||||||
call PlaySFX
|
call PlaySFX
|
||||||
@ -66,7 +66,7 @@ BugContest_ThirdPlaceText:
|
|||||||
|
|
||||||
BugContest_ThirdPlaceScoreText:
|
BugContest_ThirdPlaceScoreText:
|
||||||
; The score was @ points!
|
; The score was @ points!
|
||||||
text_jump ContestJudging_ThirdPlaceScoreText
|
text_far ContestJudging_ThirdPlaceScoreText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
LoadContestantName:
|
LoadContestantName:
|
||||||
|
@ -168,7 +168,7 @@ DayCareAskDepositPokemon:
|
|||||||
|
|
||||||
.DummyText:
|
.DummyText:
|
||||||
;
|
;
|
||||||
text_jump UnknownText_0x1bdaa7
|
text_far UnknownText_0x1bdaa7
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
DayCare_DepositPokemonText:
|
DayCare_DepositPokemonText:
|
||||||
@ -297,102 +297,102 @@ PrintDayCareText:
|
|||||||
|
|
||||||
.DayCareManIntro:
|
.DayCareManIntro:
|
||||||
; I'm the DAY-CARE MAN. Want me to raise a #MON?
|
; I'm the DAY-CARE MAN. Want me to raise a #MON?
|
||||||
text_jump UnknownText_0x1bdaa9
|
text_far UnknownText_0x1bdaa9
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.DayCareManOddEgg:
|
.DayCareManOddEgg:
|
||||||
; I'm the DAY-CARE MAN. Do you know about EGGS? I was raising #MON with my wife, you see. We were shocked to find an EGG! How incredible is that? So, want me to raise a #MON?
|
; I'm the DAY-CARE MAN. Do you know about EGGS? I was raising #MON with my wife, you see. We were shocked to find an EGG! How incredible is that? So, want me to raise a #MON?
|
||||||
text_jump UnknownText_0x1bdad8
|
text_far UnknownText_0x1bdad8
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.DayCareLadyIntro:
|
.DayCareLadyIntro:
|
||||||
; I'm the DAY-CARE LADY. Should I raise a #MON for you?
|
; I'm the DAY-CARE LADY. Should I raise a #MON for you?
|
||||||
text_jump UnknownText_0x1bdb85
|
text_far UnknownText_0x1bdb85
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.DayCareLadyOddEgg:
|
.DayCareLadyOddEgg:
|
||||||
; I'm the DAY-CARE LADY. Do you know about EGGS? My husband and I were raising some #MON, you see. We were shocked to find an EGG! How incredible could that be? Should I raise a #MON for you?
|
; I'm the DAY-CARE LADY. Do you know about EGGS? My husband and I were raising some #MON, you see. We were shocked to find an EGG! How incredible could that be? Should I raise a #MON for you?
|
||||||
text_jump UnknownText_0x1bdbbb
|
text_far UnknownText_0x1bdbbb
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.WhichOne:
|
.WhichOne:
|
||||||
; What should I raise for you?
|
; What should I raise for you?
|
||||||
text_jump UnknownText_0x1bdc79
|
text_far UnknownText_0x1bdc79
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.JustOneMon:
|
.JustOneMon:
|
||||||
; Oh? But you have just one #MON.
|
; Oh? But you have just one #MON.
|
||||||
text_jump UnknownText_0x1bdc97
|
text_far UnknownText_0x1bdc97
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.CantAcceptEgg:
|
.CantAcceptEgg:
|
||||||
; Sorry, but I can't accept an EGG.
|
; Sorry, but I can't accept an EGG.
|
||||||
text_jump UnknownText_0x1bdcb8
|
text_far UnknownText_0x1bdcb8
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.RemoveMail:
|
.RemoveMail:
|
||||||
; Remove MAIL before you come see me.
|
; Remove MAIL before you come see me.
|
||||||
text_jump UnknownText_0x1bdcda
|
text_far UnknownText_0x1bdcda
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.LastHealthyMon:
|
.LastHealthyMon:
|
||||||
; If you give me that, what will you battle with?
|
; If you give me that, what will you battle with?
|
||||||
text_jump UnknownText_0x1bdcff
|
text_far UnknownText_0x1bdcff
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.OkayIllRaiseYourMon:
|
.OkayIllRaiseYourMon:
|
||||||
; OK. I'll raise your @ .
|
; OK. I'll raise your @ .
|
||||||
text_jump UnknownText_0x1bdd30
|
text_far UnknownText_0x1bdd30
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.ComeBackForItLater:
|
.ComeBackForItLater:
|
||||||
; Come back for it later.
|
; Come back for it later.
|
||||||
text_jump UnknownText_0x1bdd4b
|
text_far UnknownText_0x1bdd4b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.AreWeGeniusesOrWhat:
|
.AreWeGeniusesOrWhat:
|
||||||
; Are we geniuses or what? Want to see your @ ?
|
; Are we geniuses or what? Want to see your @ ?
|
||||||
text_jump UnknownText_0x1bdd64
|
text_far UnknownText_0x1bdd64
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.AskRetrieveMon:
|
.AskRetrieveMon:
|
||||||
; Your @ has grown a lot. By level, it's grown by @ . If you want your #MON back, it will cost ¥@ .
|
; Your @ has grown a lot. By level, it's grown by @ . If you want your #MON back, it will cost ¥@ .
|
||||||
text_jump UnknownText_0x1bdd96
|
text_far UnknownText_0x1bdd96
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.PerfectHeresYourMon:
|
.PerfectHeresYourMon:
|
||||||
; Perfect! Here's your #MON.
|
; Perfect! Here's your #MON.
|
||||||
text_jump UnknownText_0x1bde04
|
text_far UnknownText_0x1bde04
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.GotBackMon:
|
.GotBackMon:
|
||||||
; got back @ .
|
; got back @ .
|
||||||
text_jump UnknownText_0x1bde1f
|
text_far UnknownText_0x1bde1f
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.ImmediatelyWithdrawMon:
|
.ImmediatelyWithdrawMon:
|
||||||
; Huh? Back already? Your @ needs a little more time with us. If you want your #MON back, it will cost ¥100.
|
; Huh? Back already? Your @ needs a little more time with us. If you want your #MON back, it will cost ¥100.
|
||||||
text_jump UnknownText_0x1bde32
|
text_far UnknownText_0x1bde32
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.PartyFull:
|
.PartyFull:
|
||||||
; You have no room for it.
|
; You have no room for it.
|
||||||
text_jump UnknownText_0x1bdea2
|
text_far UnknownText_0x1bdea2
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.NotEnoughMoney:
|
.NotEnoughMoney:
|
||||||
; You don't have enough money.
|
; You don't have enough money.
|
||||||
text_jump UnknownText_0x1bdebc
|
text_far UnknownText_0x1bdebc
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.OhFineThen:
|
.OhFineThen:
|
||||||
; Oh, fine then.
|
; Oh, fine then.
|
||||||
text_jump UnknownText_0x1bded9
|
text_far UnknownText_0x1bded9
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.ComeAgain:
|
.ComeAgain:
|
||||||
; Come again.
|
; Come again.
|
||||||
text_jump UnknownText_0x1bdee9
|
text_far UnknownText_0x1bdee9
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
DayCareManOutside:
|
DayCareManOutside:
|
||||||
@ -405,7 +405,7 @@ DayCareManOutside:
|
|||||||
|
|
||||||
.NotYet:
|
.NotYet:
|
||||||
; Not yet…
|
; Not yet…
|
||||||
text_jump UnknownText_0x1bdef6
|
text_far UnknownText_0x1bdef6
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.AskGiveEgg:
|
.AskGiveEgg:
|
||||||
@ -447,27 +447,27 @@ DayCareManOutside:
|
|||||||
|
|
||||||
.IntroText:
|
.IntroText:
|
||||||
; Ah, it's you! We were raising your #MON, and my goodness, were we surprised! Your #MON had an EGG! We don't know how it got there, but your #MON had it. You want it?
|
; Ah, it's you! We were raising your #MON, and my goodness, were we surprised! Your #MON had an EGG! We don't know how it got there, but your #MON had it. You want it?
|
||||||
text_jump UnknownText_0x1bdf00
|
text_far UnknownText_0x1bdf00
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.GotEggText:
|
.GotEggText:
|
||||||
; received the EGG!
|
; received the EGG!
|
||||||
text_jump UnknownText_0x1bdfa5
|
text_far UnknownText_0x1bdfa5
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.TakeGoodCareOfItText:
|
.TakeGoodCareOfItText:
|
||||||
; Take good care of it.
|
; Take good care of it.
|
||||||
text_jump UnknownText_0x1bdfba
|
text_far UnknownText_0x1bdfba
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.IllKeepItThanksText:
|
.IllKeepItThanksText:
|
||||||
; Well then, I'll keep it. Thanks!
|
; Well then, I'll keep it. Thanks!
|
||||||
text_jump UnknownText_0x1bdfd1
|
text_far UnknownText_0x1bdfd1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.PartyFullText:
|
.PartyFullText:
|
||||||
; You have no room in your party. Come back later.
|
; You have no room in your party. Come back later.
|
||||||
text_jump UnknownText_0x1bdff2
|
text_far UnknownText_0x1bdff2
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
DayCare_GiveEgg:
|
DayCare_GiveEgg:
|
||||||
|
@ -139,7 +139,7 @@ Elevator_AskWhichFloor:
|
|||||||
|
|
||||||
Elevator_WhichFloorText:
|
Elevator_WhichFloorText:
|
||||||
; Which floor?
|
; Which floor?
|
||||||
text_jump UnknownText_0x1bd2bc
|
text_far UnknownText_0x1bd2bc
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Elevator_GetCurrentFloorText:
|
Elevator_GetCurrentFloorText:
|
||||||
|
@ -97,21 +97,21 @@ GetFruitTreeItem:
|
|||||||
INCLUDE "data/items/fruit_trees.asm"
|
INCLUDE "data/items/fruit_trees.asm"
|
||||||
|
|
||||||
FruitBearingTreeText:
|
FruitBearingTreeText:
|
||||||
text_jump _FruitBearingTreeText
|
text_far _FruitBearingTreeText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
HeyItsFruitText:
|
HeyItsFruitText:
|
||||||
text_jump _HeyItsFruitText
|
text_far _HeyItsFruitText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
ObtainedFruitText:
|
ObtainedFruitText:
|
||||||
text_jump _ObtainedFruitText
|
text_far _ObtainedFruitText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
FruitPackIsFullText:
|
FruitPackIsFullText:
|
||||||
text_jump _FruitPackIsFullText
|
text_far _FruitPackIsFullText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
NothingHereText:
|
NothingHereText:
|
||||||
text_jump _NothingHereText
|
text_far _NothingHereText
|
||||||
db "@"
|
db "@"
|
||||||
|
@ -43,10 +43,10 @@ ItemFinder:
|
|||||||
|
|
||||||
.Text_FoundSomething:
|
.Text_FoundSomething:
|
||||||
; Yes! ITEMFINDER indicates there's an item nearby.
|
; Yes! ITEMFINDER indicates there's an item nearby.
|
||||||
text_jump UnknownText_0x1c0a77
|
text_far UnknownText_0x1c0a77
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_FoundNothing:
|
.Text_FoundNothing:
|
||||||
; Nope! ITEMFINDER isn't responding.
|
; Nope! ITEMFINDER isn't responding.
|
||||||
text_jump UnknownText_0x1c0aa9
|
text_far UnknownText_0x1c0aa9
|
||||||
db "@"
|
db "@"
|
||||||
|
@ -5,7 +5,7 @@ Kurt_PrintTextWhichApricorn:
|
|||||||
|
|
||||||
.Text:
|
.Text:
|
||||||
; Which APRICORN should I use?
|
; Which APRICORN should I use?
|
||||||
text_jump UnknownText_0x1bc06b
|
text_far UnknownText_0x1bc06b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Kurt_PrintTextHowMany:
|
Kurt_PrintTextHowMany:
|
||||||
@ -15,7 +15,7 @@ Kurt_PrintTextHowMany:
|
|||||||
|
|
||||||
.Text:
|
.Text:
|
||||||
; How many should I make?
|
; How many should I make?
|
||||||
text_jump UnknownText_0x1bc089
|
text_far UnknownText_0x1bc089
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
SelectApricornForKurt:
|
SelectApricornForKurt:
|
||||||
|
@ -208,12 +208,12 @@ CheckForLuckyNumberWinners:
|
|||||||
|
|
||||||
.FoundPartymonText:
|
.FoundPartymonText:
|
||||||
; Congratulations! We have a match with the ID number of @ in your party.
|
; Congratulations! We have a match with the ID number of @ in your party.
|
||||||
text_jump UnknownText_0x1c1261
|
text_far UnknownText_0x1c1261
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.FoundBoxmonText:
|
.FoundBoxmonText:
|
||||||
; Congratulations! We have a match with the ID number of @ in your PC BOX.
|
; Congratulations! We have a match with the ID number of @ in your PC BOX.
|
||||||
text_jump UnknownText_0x1c12ae
|
text_far UnknownText_0x1c12ae
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PrintTodaysLuckyNumber:
|
PrintTodaysLuckyNumber:
|
||||||
|
@ -73,7 +73,7 @@ CheckMagikarpLength:
|
|||||||
|
|
||||||
.MeasureItText:
|
.MeasureItText:
|
||||||
; Let me measure that MAGIKARP. …Hm, it measures @ .
|
; Let me measure that MAGIKARP. …Hm, it measures @ .
|
||||||
text_jump UnknownText_0x1c1203
|
text_far UnknownText_0x1c1203
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Magikarp_LoadFeetInchesChars:
|
Magikarp_LoadFeetInchesChars:
|
||||||
@ -313,5 +313,5 @@ MagikarpHouseSign:
|
|||||||
|
|
||||||
.CurrentRecordtext:
|
.CurrentRecordtext:
|
||||||
; "CURRENT RECORD"
|
; "CURRENT RECORD"
|
||||||
text_jump UnknownText_0x1c123a
|
text_far UnknownText_0x1c123a
|
||||||
db "@"
|
db "@"
|
||||||
|
@ -29,12 +29,12 @@ FindItemInBallScript::
|
|||||||
|
|
||||||
.text_found
|
.text_found
|
||||||
; found @ !
|
; found @ !
|
||||||
text_jump UnknownText_0x1c0a1c
|
text_far UnknownText_0x1c0a1c
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.text_bag_full
|
.text_bag_full
|
||||||
; But can't carry any more items.
|
; But can't carry any more items.
|
||||||
text_jump UnknownText_0x1c0a2c
|
text_far UnknownText_0x1c0a2c
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.TryReceiveItem:
|
.TryReceiveItem:
|
||||||
|
@ -7,7 +7,7 @@ RepelWoreOffScript::
|
|||||||
|
|
||||||
.text
|
.text
|
||||||
; REPEL's effect wore off.
|
; REPEL's effect wore off.
|
||||||
text_jump UnknownText_0x1bd308
|
text_far UnknownText_0x1bd308
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
HiddenItemScript::
|
HiddenItemScript::
|
||||||
@ -33,12 +33,12 @@ HiddenItemScript::
|
|||||||
|
|
||||||
.found_text
|
.found_text
|
||||||
; found @ !
|
; found @ !
|
||||||
text_jump UnknownText_0x1bd321
|
text_far UnknownText_0x1bd321
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.no_room_text
|
.no_room_text
|
||||||
; But has no space left…
|
; But has no space left…
|
||||||
text_jump UnknownText_0x1bd331
|
text_far UnknownText_0x1bd331
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
SetMemEvent:
|
SetMemEvent:
|
||||||
|
@ -391,33 +391,33 @@ DSTChecks:
|
|||||||
|
|
||||||
.Text_AdjustClock:
|
.Text_AdjustClock:
|
||||||
; Do you want to adjust your clock for Daylight Saving Time?
|
; Do you want to adjust your clock for Daylight Saving Time?
|
||||||
text_jump UnknownText_0x1c6095
|
text_far UnknownText_0x1c6095
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_LostInstructionBooklet:
|
.Text_LostInstructionBooklet:
|
||||||
; I lost the instruction booklet for the POKéGEAR.
|
; I lost the instruction booklet for the POKéGEAR.
|
||||||
; Come back again in a while.
|
; Come back again in a while.
|
||||||
text_jump UnknownText_0x1c60d1
|
text_far UnknownText_0x1c60d1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_SwitchToDST:
|
.Text_SwitchToDST:
|
||||||
; Do you want to switch to Daylight Saving Time?
|
; Do you want to switch to Daylight Saving Time?
|
||||||
text_jump UnknownText_0x1c6000
|
text_far UnknownText_0x1c6000
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_SetClockForward:
|
.Text_SetClockForward:
|
||||||
; I set the clock forward by one hour.
|
; I set the clock forward by one hour.
|
||||||
text_jump UnknownText_0x1c6030
|
text_far UnknownText_0x1c6030
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_IsDSTOver:
|
.Text_IsDSTOver:
|
||||||
; Is Daylight Saving Time over?
|
; Is Daylight Saving Time over?
|
||||||
text_jump UnknownText_0x1c6056
|
text_far UnknownText_0x1c6056
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_SetClockBack:
|
.Text_SetClockBack:
|
||||||
; I put the clock back one hour.
|
; I put the clock back one hour.
|
||||||
text_jump UnknownText_0x1c6075
|
text_far UnknownText_0x1c6075
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Mom_SetUpWithdrawMenu:
|
Mom_SetUpWithdrawMenu:
|
||||||
@ -592,82 +592,82 @@ Mom_WithdrawDepositMenuJoypad:
|
|||||||
|
|
||||||
UnknownText_0x16649:
|
UnknownText_0x16649:
|
||||||
; Wow, that's a cute #MON. Where did you get it? … So, you're leaving on an adventure… OK! I'll help too. But what can I do for you? I know! I'll save money for you. On a long journey, money's important. Do you want me to save your money?
|
; Wow, that's a cute #MON. Where did you get it? … So, you're leaving on an adventure… OK! I'll help too. But what can I do for you? I know! I'll save money for you. On a long journey, money's important. Do you want me to save your money?
|
||||||
text_jump UnknownText_0x1bd77f
|
text_far UnknownText_0x1bd77f
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x1664e:
|
UnknownText_0x1664e:
|
||||||
; OK, I'll take care of your money.
|
; OK, I'll take care of your money.
|
||||||
text_jump UnknownText_0x1bd868
|
text_far UnknownText_0x1bd868
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x16653:
|
UnknownText_0x16653:
|
||||||
; Be careful. #MON are your friends. You need to work as a team. Now, go on!
|
; Be careful. #MON are your friends. You need to work as a team. Now, go on!
|
||||||
text_jump UnknownText_0x1bd88e
|
text_far UnknownText_0x1bd88e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x16658:
|
UnknownText_0x16658:
|
||||||
; Hi! Welcome home! You're trying very hard, I see. I've kept your room tidy. Or is this about your money?
|
; Hi! Welcome home! You're trying very hard, I see. I've kept your room tidy. Or is this about your money?
|
||||||
text_jump UnknownText_0x1bd8da
|
text_far UnknownText_0x1bd8da
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x1665d:
|
UnknownText_0x1665d:
|
||||||
; What do you want to do?
|
; What do you want to do?
|
||||||
text_jump UnknownText_0x1bd942
|
text_far UnknownText_0x1bd942
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x16662:
|
UnknownText_0x16662:
|
||||||
; How much do you want to save?
|
; How much do you want to save?
|
||||||
text_jump UnknownText_0x1bd95b
|
text_far UnknownText_0x1bd95b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x16667:
|
UnknownText_0x16667:
|
||||||
; How much do you want to take?
|
; How much do you want to take?
|
||||||
text_jump UnknownText_0x1bd97a
|
text_far UnknownText_0x1bd97a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x1666c:
|
UnknownText_0x1666c:
|
||||||
; Do you want to save some money?
|
; Do you want to save some money?
|
||||||
text_jump UnknownText_0x1bd999
|
text_far UnknownText_0x1bd999
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x16671:
|
UnknownText_0x16671:
|
||||||
; You haven't saved that much.
|
; You haven't saved that much.
|
||||||
text_jump UnknownText_0x1bd9ba
|
text_far UnknownText_0x1bd9ba
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x16676:
|
UnknownText_0x16676:
|
||||||
; You can't take that much.
|
; You can't take that much.
|
||||||
text_jump UnknownText_0x1bd9d7
|
text_far UnknownText_0x1bd9d7
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x1667b:
|
UnknownText_0x1667b:
|
||||||
; You don't have that much.
|
; You don't have that much.
|
||||||
text_jump UnknownText_0x1bd9f1
|
text_far UnknownText_0x1bd9f1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x16680:
|
UnknownText_0x16680:
|
||||||
; You can't save that much.
|
; You can't save that much.
|
||||||
text_jump UnknownText_0x1bda0b
|
text_far UnknownText_0x1bda0b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x16685:
|
UnknownText_0x16685:
|
||||||
; OK, I'll save your money. Trust me! , stick with it!
|
; OK, I'll save your money. Trust me! , stick with it!
|
||||||
text_jump UnknownText_0x1bda25
|
text_far UnknownText_0x1bda25
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x1668a:
|
UnknownText_0x1668a:
|
||||||
; Your money's safe here! Get going!
|
; Your money's safe here! Get going!
|
||||||
text_jump UnknownText_0x1bda5b
|
text_far UnknownText_0x1bda5b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x1668f:
|
UnknownText_0x1668f:
|
||||||
; , don't give up!
|
; , don't give up!
|
||||||
text_jump UnknownText_0x1bda7e
|
text_far UnknownText_0x1bda7e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x16694:
|
UnknownText_0x16694:
|
||||||
; Just do what you can.
|
; Just do what you can.
|
||||||
text_jump UnknownText_0x1bda90
|
text_far UnknownText_0x1bda90
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Mom_SavedString:
|
Mom_SavedString:
|
||||||
|
@ -208,32 +208,32 @@ INCLUDE "data/items/mom_phone.asm"
|
|||||||
|
|
||||||
_MomText_HiHowAreYou:
|
_MomText_HiHowAreYou:
|
||||||
; Hi, ! How are you?
|
; Hi, ! How are you?
|
||||||
text_jump UnknownText_0x1bc615
|
text_far UnknownText_0x1bc615
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
_MomText_FoundAnItem:
|
_MomText_FoundAnItem:
|
||||||
; I found a useful item shopping, so
|
; I found a useful item shopping, so
|
||||||
text_jump UnknownText_0x1bc62a
|
text_far UnknownText_0x1bc62a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
_MomText_BoughtWithYourMoney:
|
_MomText_BoughtWithYourMoney:
|
||||||
; I bought it with your money. Sorry!
|
; I bought it with your money. Sorry!
|
||||||
text_jump UnknownText_0x1bc64e
|
text_far UnknownText_0x1bc64e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
_MomText_ItsInPC:
|
_MomText_ItsInPC:
|
||||||
; It's in your PC. You'll like it!
|
; It's in your PC. You'll like it!
|
||||||
text_jump UnknownText_0x1bc673
|
text_far UnknownText_0x1bc673
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
_MomText_FoundADoll:
|
_MomText_FoundADoll:
|
||||||
; While shopping today, I saw this adorable doll, so
|
; While shopping today, I saw this adorable doll, so
|
||||||
text_jump UnknownText_0x1bc693
|
text_far UnknownText_0x1bc693
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
_MomText_ItsInRoom:
|
_MomText_ItsInRoom:
|
||||||
; It's in your room. You'll love it!
|
; It's in your room. You'll love it!
|
||||||
text_jump UnknownText_0x1bc6c7
|
text_far UnknownText_0x1bc6c7
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
db 0 ; unused
|
db 0 ; unused
|
||||||
|
@ -61,42 +61,42 @@ MoveDeletion:
|
|||||||
|
|
||||||
.OnlyOneMoveText:
|
.OnlyOneMoveText:
|
||||||
; That #MON knows only one move.
|
; That #MON knows only one move.
|
||||||
text_jump UnknownText_0x1c5eba
|
text_far UnknownText_0x1c5eba
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.ConfirmDeleteText:
|
.ConfirmDeleteText:
|
||||||
; Oh, make it forget @ ?
|
; Oh, make it forget @ ?
|
||||||
text_jump UnknownText_0x1c5eda
|
text_far UnknownText_0x1c5eda
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.MoveDeletedText:
|
.MoveDeletedText:
|
||||||
; Done! Your #MON forgot the move.
|
; Done! Your #MON forgot the move.
|
||||||
text_jump UnknownText_0x1c5ef5
|
text_far UnknownText_0x1c5ef5
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.EggText:
|
.EggText:
|
||||||
; An EGG doesn't know any moves!
|
; An EGG doesn't know any moves!
|
||||||
text_jump UnknownText_0x1c5f17
|
text_far UnknownText_0x1c5f17
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.DeclinedDeletionText:
|
.DeclinedDeletionText:
|
||||||
; No? Come visit me again.
|
; No? Come visit me again.
|
||||||
text_jump UnknownText_0x1c5f36
|
text_far UnknownText_0x1c5f36
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.AskWhichMoveText:
|
.AskWhichMoveText:
|
||||||
; Which move should it forget, then?
|
; Which move should it forget, then?
|
||||||
text_jump UnknownText_0x1c5f50
|
text_far UnknownText_0x1c5f50
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.IntroText:
|
.IntroText:
|
||||||
; Um… Oh, yes, I'm the MOVE DELETER. I can make #MON forget moves. Shall I make a #MON forget?
|
; Um… Oh, yes, I'm the MOVE DELETER. I can make #MON forget moves. Shall I make a #MON forget?
|
||||||
text_jump UnknownText_0x1c5f74
|
text_far UnknownText_0x1c5f74
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.AskWhichMonText:
|
.AskWhichMonText:
|
||||||
; Which #MON?
|
; Which #MON?
|
||||||
text_jump UnknownText_0x1c5fd1
|
text_far UnknownText_0x1c5fd1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.DeleteMove:
|
.DeleteMove:
|
||||||
|
@ -182,54 +182,54 @@ NameRaterIntroText:
|
|||||||
; Hello, hello! I'm the NAME RATER.
|
; Hello, hello! I'm the NAME RATER.
|
||||||
; I rate the names of #MON.
|
; I rate the names of #MON.
|
||||||
; Would you like me to rate names?
|
; Would you like me to rate names?
|
||||||
text_jump UnknownText_0x1c0043
|
text_far UnknownText_0x1c0043
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
NameRaterWhichMonText:
|
NameRaterWhichMonText:
|
||||||
; Which #MON's nickname should I rate for you?
|
; Which #MON's nickname should I rate for you?
|
||||||
text_jump UnknownText_0x1c00a0
|
text_far UnknownText_0x1c00a0
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
NameRaterIsGoodText:
|
NameRaterIsGoodText:
|
||||||
; Hm… @ … That's a fairly decent name.
|
; Hm… @ … That's a fairly decent name.
|
||||||
; But, how about a slightly better nickname?
|
; But, how about a slightly better nickname?
|
||||||
; Want me to give it a better name?
|
; Want me to give it a better name?
|
||||||
text_jump UnknownText_0x1c00cd
|
text_far UnknownText_0x1c00cd
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
NameRaterWhichNameText:
|
NameRaterWhichNameText:
|
||||||
; All right. What name should we give it, then?
|
; All right. What name should we give it, then?
|
||||||
text_jump UnknownText_0x1c0142
|
text_far UnknownText_0x1c0142
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
NameRaterEvenBetterText:
|
NameRaterEvenBetterText:
|
||||||
; That's a better name than before! Well done!
|
; That's a better name than before! Well done!
|
||||||
text_jump UnknownText_0x1c0171
|
text_far UnknownText_0x1c0171
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
NameRaterCancelText:
|
NameRaterCancelText:
|
||||||
; OK, then. Come again sometime.
|
; OK, then. Come again sometime.
|
||||||
text_jump UnknownText_0x1c019e
|
text_far UnknownText_0x1c019e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
NameRaterTradedText:
|
NameRaterTradedText:
|
||||||
; Hm… @ ? What a great name! It's perfect.
|
; Hm… @ ? What a great name! It's perfect.
|
||||||
; Treat @ with loving care.
|
; Treat @ with loving care.
|
||||||
text_jump UnknownText_0x1c01be
|
text_far UnknownText_0x1c01be
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
NameRaterEggText:
|
NameRaterEggText:
|
||||||
; Whoa… That's just an EGG.
|
; Whoa… That's just an EGG.
|
||||||
text_jump UnknownText_0x1c0208
|
text_far UnknownText_0x1c0208
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
NameRaterSameAsBeforeText:
|
NameRaterSameAsBeforeText:
|
||||||
; It might look the different as before,
|
; It might look the different as before,
|
||||||
; but this new name is much better! Well done!
|
; but this new name is much better! Well done!
|
||||||
text_jump UnknownText_0x1c0222
|
text_far UnknownText_0x1c0222
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
NameRaterDoneText:
|
NameRaterDoneText:
|
||||||
; All right. This #MON is now named @ .
|
; All right. This #MON is now named @ .
|
||||||
text_jump UnknownText_0x1c0272
|
text_far UnknownText_0x1c0272
|
||||||
db "@"
|
db "@"
|
||||||
|
@ -432,12 +432,12 @@ TradeTexts:
|
|||||||
|
|
||||||
ConnectLinkCableText:
|
ConnectLinkCableText:
|
||||||
; OK, connect the Game Link Cable.
|
; OK, connect the Game Link Cable.
|
||||||
text_jump UnknownText_0x1bd407
|
text_far UnknownText_0x1bd407
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TradedForText:
|
TradedForText:
|
||||||
; traded givemon for getmon
|
; traded givemon for getmon
|
||||||
text_jump UnknownText_0x1bd429
|
text_far UnknownText_0x1bd429
|
||||||
start_asm
|
start_asm
|
||||||
ld de, MUSIC_NONE
|
ld de, MUSIC_NONE
|
||||||
call PlayMusic
|
call PlayMusic
|
||||||
@ -448,93 +448,93 @@ TradedForText:
|
|||||||
.done
|
.done
|
||||||
; sound_dex_fanfare_80_109
|
; sound_dex_fanfare_80_109
|
||||||
; interpret_data
|
; interpret_data
|
||||||
text_jump UnknownText_0x1bd445
|
text_far UnknownText_0x1bd445
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TradeIntroText1:
|
TradeIntroText1:
|
||||||
; I collect #MON. Do you have @ ? Want to trade it for my @ ?
|
; I collect #MON. Do you have @ ? Want to trade it for my @ ?
|
||||||
text_jump UnknownText_0x1bd449
|
text_far UnknownText_0x1bd449
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TradeCancelText1:
|
TradeCancelText1:
|
||||||
; You don't want to trade? Aww…
|
; You don't want to trade? Aww…
|
||||||
text_jump UnknownText_0x1bd48c
|
text_far UnknownText_0x1bd48c
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TradeWrongText1:
|
TradeWrongText1:
|
||||||
; Huh? That's not @ . What a letdown…
|
; Huh? That's not @ . What a letdown…
|
||||||
text_jump UnknownText_0x1bd4aa
|
text_far UnknownText_0x1bd4aa
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TradeCompleteText1:
|
TradeCompleteText1:
|
||||||
; Yay! I got myself @ ! Thanks!
|
; Yay! I got myself @ ! Thanks!
|
||||||
text_jump UnknownText_0x1bd4d2
|
text_far UnknownText_0x1bd4d2
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TradeAfterText1:
|
TradeAfterText1:
|
||||||
; Hi, how's my old @ doing?
|
; Hi, how's my old @ doing?
|
||||||
text_jump UnknownText_0x1bd4f4
|
text_far UnknownText_0x1bd4f4
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TradeIntroText2:
|
TradeIntroText2:
|
||||||
TradeIntroText3:
|
TradeIntroText3:
|
||||||
; Hi, I'm looking for this #MON. If you have @ , would you trade it for my @ ?
|
; Hi, I'm looking for this #MON. If you have @ , would you trade it for my @ ?
|
||||||
text_jump UnknownText_0x1bd512
|
text_far UnknownText_0x1bd512
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TradeCancelText2:
|
TradeCancelText2:
|
||||||
TradeCancelText3:
|
TradeCancelText3:
|
||||||
; You don't have one either? Gee, that's really disappointing…
|
; You don't have one either? Gee, that's really disappointing…
|
||||||
text_jump UnknownText_0x1bd565
|
text_far UnknownText_0x1bd565
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TradeWrongText2:
|
TradeWrongText2:
|
||||||
TradeWrongText3:
|
TradeWrongText3:
|
||||||
; You don't have @ ? That's too bad, then.
|
; You don't have @ ? That's too bad, then.
|
||||||
text_jump UnknownText_0x1bd5a1
|
text_far UnknownText_0x1bd5a1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TradeCompleteText2:
|
TradeCompleteText2:
|
||||||
; Great! Thank you! I finally got @ .
|
; Great! Thank you! I finally got @ .
|
||||||
text_jump UnknownText_0x1bd5cc
|
text_far UnknownText_0x1bd5cc
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TradeAfterText2:
|
TradeAfterText2:
|
||||||
; Hi! The @ you traded me is doing great!
|
; Hi! The @ you traded me is doing great!
|
||||||
text_jump UnknownText_0x1bd5f4
|
text_far UnknownText_0x1bd5f4
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TradeIntroText4:
|
TradeIntroText4:
|
||||||
; 's cute, but I don't have it. Do you have @ ? Want to trade it for my @ ?
|
; 's cute, but I don't have it. Do you have @ ? Want to trade it for my @ ?
|
||||||
text_jump UnknownText_0x1bd621
|
text_far UnknownText_0x1bd621
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TradeCancelText4:
|
TradeCancelText4:
|
||||||
; You don't want to trade? Oh, darn…
|
; You don't want to trade? Oh, darn…
|
||||||
text_jump UnknownText_0x1bd673
|
text_far UnknownText_0x1bd673
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TradeWrongText4:
|
TradeWrongText4:
|
||||||
; That's not @ . Please trade with me if you get one.
|
; That's not @ . Please trade with me if you get one.
|
||||||
text_jump UnknownText_0x1bd696
|
text_far UnknownText_0x1bd696
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TradeCompleteText4:
|
TradeCompleteText4:
|
||||||
; Wow! Thank you! I always wanted @ !
|
; Wow! Thank you! I always wanted @ !
|
||||||
text_jump UnknownText_0x1bd6cd
|
text_far UnknownText_0x1bd6cd
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TradeAfterText4:
|
TradeAfterText4:
|
||||||
; How is that @ I traded you doing? Your @ 's so cute!
|
; How is that @ I traded you doing? Your @ 's so cute!
|
||||||
text_jump UnknownText_0x1bd6f5
|
text_far UnknownText_0x1bd6f5
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TradeCompleteText3:
|
TradeCompleteText3:
|
||||||
; Uh? What happened?
|
; Uh? What happened?
|
||||||
text_jump UnknownText_0x1bd731
|
text_far UnknownText_0x1bd731
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TradeAfterText3:
|
TradeAfterText3:
|
||||||
; Trading is so odd… I still have a lot to learn about it.
|
; Trading is so odd… I still have a lot to learn about it.
|
||||||
text_jump UnknownText_0x1bd745
|
text_far UnknownText_0x1bd745
|
||||||
db "@"
|
db "@"
|
||||||
|
@ -60,7 +60,7 @@ CheckBadge:
|
|||||||
.BadgeRequiredText:
|
.BadgeRequiredText:
|
||||||
; Sorry! A new BADGE
|
; Sorry! A new BADGE
|
||||||
; is required.
|
; is required.
|
||||||
text_jump _BadgeRequiredText
|
text_far _BadgeRequiredText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
CheckPartyMove:
|
CheckPartyMove:
|
||||||
@ -114,7 +114,7 @@ FieldMoveFailed:
|
|||||||
|
|
||||||
.CantUseHere:
|
.CantUseHere:
|
||||||
; Can't use that here.
|
; Can't use that here.
|
||||||
text_jump UnknownText_0x1c05c8
|
text_far UnknownText_0x1c05c8
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
CutFunction:
|
CutFunction:
|
||||||
@ -163,12 +163,12 @@ CutFunction:
|
|||||||
|
|
||||||
Text_UsedCut:
|
Text_UsedCut:
|
||||||
; used CUT!
|
; used CUT!
|
||||||
text_jump UnknownText_0x1c05dd
|
text_far UnknownText_0x1c05dd
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_NothingToCut:
|
Text_NothingToCut:
|
||||||
; There's nothing to CUT here.
|
; There's nothing to CUT here.
|
||||||
text_jump UnknownText_0x1c05ec
|
text_far UnknownText_0x1c05ec
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
CheckMapForSomethingToCut:
|
CheckMapForSomethingToCut:
|
||||||
@ -323,7 +323,7 @@ Script_UseFlash:
|
|||||||
end
|
end
|
||||||
|
|
||||||
UnknownText_0xc8f3:
|
UnknownText_0xc8f3:
|
||||||
text_jump UnknownText_0x1c0609
|
text_far UnknownText_0x1c0609
|
||||||
start_asm
|
start_asm
|
||||||
call WaitSFX
|
call WaitSFX
|
||||||
ld de, SFX_FLASH
|
ld de, SFX_FLASH
|
||||||
@ -429,15 +429,15 @@ UsedSurfScript:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
UsedSurfText:
|
UsedSurfText:
|
||||||
text_jump _UsedSurfText
|
text_far _UsedSurfText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
CantSurfText:
|
CantSurfText:
|
||||||
text_jump _CantSurfText
|
text_far _CantSurfText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
AlreadySurfingText:
|
AlreadySurfingText:
|
||||||
text_jump _AlreadySurfingText
|
text_far _AlreadySurfingText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
GetSurfType:
|
GetSurfType:
|
||||||
@ -545,7 +545,7 @@ AskSurfScript:
|
|||||||
end
|
end
|
||||||
|
|
||||||
AskSurfText:
|
AskSurfText:
|
||||||
text_jump _AskSurfText ; The water is calm.
|
text_far _AskSurfText ; The water is calm.
|
||||||
db "@" ; Want to SURF?
|
db "@" ; Want to SURF?
|
||||||
|
|
||||||
FlyFunction:
|
FlyFunction:
|
||||||
@ -709,7 +709,7 @@ Script_UsedWaterfall:
|
|||||||
|
|
||||||
.Text_UsedWaterfall:
|
.Text_UsedWaterfall:
|
||||||
; used WATERFALL!
|
; used WATERFALL!
|
||||||
text_jump UnknownText_0x1c068e
|
text_far UnknownText_0x1c068e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TryWaterfallOW::
|
TryWaterfallOW::
|
||||||
@ -739,7 +739,7 @@ Script_CantDoWaterfall:
|
|||||||
|
|
||||||
.Text_CantDoWaterfall:
|
.Text_CantDoWaterfall:
|
||||||
; Wow, it's a huge waterfall.
|
; Wow, it's a huge waterfall.
|
||||||
text_jump UnknownText_0x1c06a3
|
text_far UnknownText_0x1c06a3
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Script_AskWaterfall:
|
Script_AskWaterfall:
|
||||||
@ -752,7 +752,7 @@ Script_AskWaterfall:
|
|||||||
|
|
||||||
.AskUseWaterfall:
|
.AskUseWaterfall:
|
||||||
; Do you want to use WATERFALL?
|
; Do you want to use WATERFALL?
|
||||||
text_jump UnknownText_0x1c06bf
|
text_far UnknownText_0x1c06bf
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
EscapeRopeFunction:
|
EscapeRopeFunction:
|
||||||
@ -839,17 +839,17 @@ dig_incave
|
|||||||
|
|
||||||
.Text_UsedDig:
|
.Text_UsedDig:
|
||||||
; used DIG!
|
; used DIG!
|
||||||
text_jump UnknownText_0x1c06de
|
text_far UnknownText_0x1c06de
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_UsedEscapeRope:
|
.Text_UsedEscapeRope:
|
||||||
; used an ESCAPE ROPE.
|
; used an ESCAPE ROPE.
|
||||||
text_jump UnknownText_0x1c06ed
|
text_far UnknownText_0x1c06ed
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_CantUseHere:
|
.Text_CantUseHere:
|
||||||
; Can't use that here.
|
; Can't use that here.
|
||||||
text_jump UnknownText_0x1c0705
|
text_far UnknownText_0x1c0705
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.UsedEscapeRopeScript:
|
.UsedEscapeRopeScript:
|
||||||
@ -938,12 +938,12 @@ TeleportFunction:
|
|||||||
|
|
||||||
.Text_ReturnToLastMonCenter:
|
.Text_ReturnToLastMonCenter:
|
||||||
; Return to the last #MON CENTER.
|
; Return to the last #MON CENTER.
|
||||||
text_jump UnknownText_0x1c071a
|
text_far UnknownText_0x1c071a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_CantUseHere:
|
.Text_CantUseHere:
|
||||||
; Can't use that here.
|
; Can't use that here.
|
||||||
text_jump UnknownText_0x1c073b
|
text_far UnknownText_0x1c073b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.TeleportScript:
|
.TeleportScript:
|
||||||
@ -991,7 +991,7 @@ StrengthFunction:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
.JumpText:
|
.JumpText:
|
||||||
text_jump UnknownText_0x1c0751
|
text_far UnknownText_0x1c0751
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Failed:
|
.Failed:
|
||||||
@ -1032,11 +1032,11 @@ Script_UsedStrength:
|
|||||||
end
|
end
|
||||||
|
|
||||||
.UsedStrength:
|
.UsedStrength:
|
||||||
text_jump UnknownText_0x1c0774
|
text_far UnknownText_0x1c0774
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.StrengthAllowedItToMoveBoulders:
|
.StrengthAllowedItToMoveBoulders:
|
||||||
text_jump UnknownText_0x1c0788
|
text_far UnknownText_0x1c0788
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
AskStrengthScript:
|
AskStrengthScript:
|
||||||
@ -1061,17 +1061,17 @@ AskStrengthScript:
|
|||||||
|
|
||||||
UnknownText_0xcd69:
|
UnknownText_0xcd69:
|
||||||
; A #MON may be able to move this. Want to use STRENGTH?
|
; A #MON may be able to move this. Want to use STRENGTH?
|
||||||
text_jump UnknownText_0x1c07a0
|
text_far UnknownText_0x1c07a0
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0xcd6e:
|
UnknownText_0xcd6e:
|
||||||
; Boulders may now be moved!
|
; Boulders may now be moved!
|
||||||
text_jump UnknownText_0x1c07d8
|
text_far UnknownText_0x1c07d8
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0xcd73:
|
UnknownText_0xcd73:
|
||||||
; A #MON may be able to move this.
|
; A #MON may be able to move this.
|
||||||
text_jump UnknownText_0x1c07f4
|
text_far UnknownText_0x1c07f4
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TryStrengthOW:
|
TryStrengthOW:
|
||||||
@ -1147,7 +1147,7 @@ Jumptable_cdae:
|
|||||||
|
|
||||||
Text_UsedWhirlpool:
|
Text_UsedWhirlpool:
|
||||||
; used WHIRLPOOL!
|
; used WHIRLPOOL!
|
||||||
text_jump UnknownText_0x1c0816
|
text_far UnknownText_0x1c0816
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TryWhirlpoolMenu:
|
TryWhirlpoolMenu:
|
||||||
@ -1234,7 +1234,7 @@ Script_MightyWhirlpool:
|
|||||||
jumptext .MightyWhirlpoolText
|
jumptext .MightyWhirlpoolText
|
||||||
|
|
||||||
.MightyWhirlpoolText:
|
.MightyWhirlpoolText:
|
||||||
text_jump UnknownText_0x1c082b
|
text_far UnknownText_0x1c082b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Script_AskWhirlpoolOW:
|
Script_AskWhirlpoolOW:
|
||||||
@ -1246,7 +1246,7 @@ Script_AskWhirlpoolOW:
|
|||||||
end
|
end
|
||||||
|
|
||||||
UnknownText_0xce78:
|
UnknownText_0xce78:
|
||||||
text_jump UnknownText_0x1c0864
|
text_far UnknownText_0x1c0864
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
HeadbuttFunction:
|
HeadbuttFunction:
|
||||||
@ -1272,12 +1272,12 @@ TryHeadbuttFromMenu:
|
|||||||
|
|
||||||
UnknownText_0xce9d:
|
UnknownText_0xce9d:
|
||||||
; did a HEADBUTT!
|
; did a HEADBUTT!
|
||||||
text_jump UnknownText_0x1c0897
|
text_far UnknownText_0x1c0897
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0xcea2:
|
UnknownText_0xcea2:
|
||||||
; Nope. Nothing…
|
; Nope. Nothing…
|
||||||
text_jump UnknownText_0x1c08ac
|
text_far UnknownText_0x1c08ac
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
HeadbuttFromMenuScript:
|
HeadbuttFromMenuScript:
|
||||||
@ -1330,7 +1330,7 @@ AskHeadbuttScript:
|
|||||||
|
|
||||||
UnknownText_0xcee6:
|
UnknownText_0xcee6:
|
||||||
; A #MON could be in this tree. Want to HEADBUTT it?
|
; A #MON could be in this tree. Want to HEADBUTT it?
|
||||||
text_jump UnknownText_0x1c08bc
|
text_far UnknownText_0x1c08bc
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
RockSmashFunction:
|
RockSmashFunction:
|
||||||
@ -1406,7 +1406,7 @@ MovementData_0xcf55:
|
|||||||
step_end
|
step_end
|
||||||
|
|
||||||
UnknownText_0xcf58:
|
UnknownText_0xcf58:
|
||||||
text_jump UnknownText_0x1c08f0
|
text_far UnknownText_0x1c08f0
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
AskRockSmashScript:
|
AskRockSmashScript:
|
||||||
@ -1424,12 +1424,12 @@ AskRockSmashScript:
|
|||||||
|
|
||||||
UnknownText_0xcf72:
|
UnknownText_0xcf72:
|
||||||
; Maybe a #MON can break this.
|
; Maybe a #MON can break this.
|
||||||
text_jump UnknownText_0x1c0906
|
text_far UnknownText_0x1c0906
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0xcf77:
|
UnknownText_0xcf77:
|
||||||
; This rock looks breakable. Want to use ROCK SMASH?
|
; This rock looks breakable. Want to use ROCK SMASH?
|
||||||
text_jump UnknownText_0x1c0924
|
text_far UnknownText_0x1c0924
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
HasRockSmash:
|
HasRockSmash:
|
||||||
@ -1632,17 +1632,17 @@ PutTheRodAway:
|
|||||||
|
|
||||||
UnknownText_0xd0a4:
|
UnknownText_0xd0a4:
|
||||||
; Oh! A bite!
|
; Oh! A bite!
|
||||||
text_jump UnknownText_0x1c0958
|
text_far UnknownText_0x1c0958
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0xd0a9:
|
UnknownText_0xd0a9:
|
||||||
; Not even a nibble!
|
; Not even a nibble!
|
||||||
text_jump UnknownText_0x1c0965
|
text_far UnknownText_0x1c0965
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0xd0ae: ; unused
|
UnknownText_0xd0ae: ; unused
|
||||||
; Looks like there's nothing here.
|
; Looks like there's nothing here.
|
||||||
text_jump UnknownText_0x1c0979
|
text_far UnknownText_0x1c0979
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BikeFunction:
|
BikeFunction:
|
||||||
@ -1776,17 +1776,17 @@ Script_CantGetOffBike:
|
|||||||
|
|
||||||
.CantGetOffBikeText:
|
.CantGetOffBikeText:
|
||||||
; You can't get off here!
|
; You can't get off here!
|
||||||
text_jump UnknownText_0x1c099a
|
text_far UnknownText_0x1c099a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
GotOnTheBikeText:
|
GotOnTheBikeText:
|
||||||
; got on the @ .
|
; got on the @ .
|
||||||
text_jump UnknownText_0x1c09b2
|
text_far UnknownText_0x1c09b2
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
GotOffTheBikeText:
|
GotOffTheBikeText:
|
||||||
; got off the @ .
|
; got off the @ .
|
||||||
text_jump UnknownText_0x1c09c7
|
text_far UnknownText_0x1c09c7
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TryCutOW::
|
TryCutOW::
|
||||||
@ -1832,12 +1832,12 @@ AskCutScript:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
UnknownText_0xd1c8:
|
UnknownText_0xd1c8:
|
||||||
text_jump UnknownText_0x1c09dd
|
text_far UnknownText_0x1c09dd
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
CantCutScript:
|
CantCutScript:
|
||||||
jumptext UnknownText_0xd1d0
|
jumptext UnknownText_0xd1d0
|
||||||
|
|
||||||
UnknownText_0xd1d0:
|
UnknownText_0xd1d0:
|
||||||
text_jump UnknownText_0x1c0a05
|
text_far UnknownText_0x1c0a05
|
||||||
db "@"
|
db "@"
|
||||||
|
@ -146,9 +146,9 @@ DoPoisonStep::
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
.PoisonFaintText:
|
.PoisonFaintText:
|
||||||
text_jump UnknownText_0x1c0acc
|
text_far UnknownText_0x1c0acc
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.PoisonWhiteOutText:
|
.PoisonWhiteOutText:
|
||||||
text_jump UnknownText_0x1c0ada
|
text_far UnknownText_0x1c0ada
|
||||||
db "@"
|
db "@"
|
||||||
|
@ -298,42 +298,42 @@ SeerTexts:
|
|||||||
|
|
||||||
SeerIntroText:
|
SeerIntroText:
|
||||||
; I see all. I know all… Certainly, I know of your #MON!
|
; I see all. I know all… Certainly, I know of your #MON!
|
||||||
text_jump UnknownText_0x1c475f
|
text_far UnknownText_0x1c475f
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
SeerCantTellText:
|
SeerCantTellText:
|
||||||
; Whaaaat? I can't tell a thing! How could I not know of this?
|
; Whaaaat? I can't tell a thing! How could I not know of this?
|
||||||
text_jump UnknownText_0x1c4797
|
text_far UnknownText_0x1c4797
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
SeerMetAtText:
|
SeerMetAtText:
|
||||||
; Hm… I see you met @ here: @ !
|
; Hm… I see you met @ here: @ !
|
||||||
text_jump UnknownText_0x1c47d4
|
text_far UnknownText_0x1c47d4
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
SeerTimeLevelText:
|
SeerTimeLevelText:
|
||||||
; The time was @ ! Its level was @ ! Am I good or what?
|
; The time was @ ! Its level was @ ! Am I good or what?
|
||||||
text_jump UnknownText_0x1c47fa
|
text_far UnknownText_0x1c47fa
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
SeerTradedText:
|
SeerTradedText:
|
||||||
; Hm… @ came from @ in a trade? @ was where @ met @ !
|
; Hm… @ came from @ in a trade? @ was where @ met @ !
|
||||||
text_jump UnknownText_0x1c4837
|
text_far UnknownText_0x1c4837
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
SeerLevelOnlyText:
|
SeerLevelOnlyText:
|
||||||
; What!? Incredible! I don't understand how, but it is incredible! You are special. I can't tell where you met it, but it was at level @ . Am I good or what?
|
; What!? Incredible! I don't understand how, but it is incredible! You are special. I can't tell where you met it, but it was at level @ . Am I good or what?
|
||||||
text_jump UnknownText_0x1c487f
|
text_far UnknownText_0x1c487f
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
SeerEggText:
|
SeerEggText:
|
||||||
; Hey! That's an EGG! You can't say that you've met it yet…
|
; Hey! That's an EGG! You can't say that you've met it yet…
|
||||||
text_jump UnknownText_0x1c491d
|
text_far UnknownText_0x1c491d
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
SeerCancelText:
|
SeerCancelText:
|
||||||
; Fufufu! I saw that you'd do nothing!
|
; Fufufu! I saw that you'd do nothing!
|
||||||
text_jump UnknownText_0x1c4955
|
text_far UnknownText_0x1c4955
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
SeerAdvice:
|
SeerAdvice:
|
||||||
@ -373,27 +373,27 @@ SeerAdviceTexts:
|
|||||||
|
|
||||||
SeerAdvice1:
|
SeerAdvice1:
|
||||||
; Incidentally… It would be wise to raise your #MON with a little more care.
|
; Incidentally… It would be wise to raise your #MON with a little more care.
|
||||||
text_jump UnknownText_0x1c497a
|
text_far UnknownText_0x1c497a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
SeerAdvice2:
|
SeerAdvice2:
|
||||||
; Incidentally… It seems to have grown a little. @ seems to be becoming more confident.
|
; Incidentally… It seems to have grown a little. @ seems to be becoming more confident.
|
||||||
text_jump UnknownText_0x1c49c6
|
text_far UnknownText_0x1c49c6
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
SeerAdvice3:
|
SeerAdvice3:
|
||||||
; Incidentally… @ has grown. It's gained much strength.
|
; Incidentally… @ has grown. It's gained much strength.
|
||||||
text_jump UnknownText_0x1c4a21
|
text_far UnknownText_0x1c4a21
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
SeerAdvice4:
|
SeerAdvice4:
|
||||||
; Incidentally… It certainly has grown mighty! This @ must have come through numerous #MON battles. It looks brimming with confidence.
|
; Incidentally… It certainly has grown mighty! This @ must have come through numerous #MON battles. It looks brimming with confidence.
|
||||||
text_jump UnknownText_0x1c4a5b
|
text_far UnknownText_0x1c4a5b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
SeerAdvice5:
|
SeerAdvice5:
|
||||||
; Incidentally… I'm impressed by your dedication. It's been a long time since I've seen a #MON as mighty as this @ . I'm sure that seeing @ in battle would excite anyone.
|
; Incidentally… I'm impressed by your dedication. It's been a long time since I've seen a #MON as mighty as this @ . I'm sure that seeing @ in battle would excite anyone.
|
||||||
text_jump UnknownText_0x1c4ae5
|
text_far UnknownText_0x1c4ae5
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
GetCaughtGender:
|
GetCaughtGender:
|
||||||
|
@ -111,7 +111,7 @@ PC_CheckPartyForPokemon:
|
|||||||
|
|
||||||
.MustHavePokemonToUse:
|
.MustHavePokemonToUse:
|
||||||
; Bzzzzt! You must have a #MON to use this!
|
; Bzzzzt! You must have a #MON to use this!
|
||||||
text_jump UnknownText_0x1c1328
|
text_far UnknownText_0x1c1328
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BillsPC:
|
BillsPC:
|
||||||
@ -201,7 +201,7 @@ _PlayersHousePC:
|
|||||||
|
|
||||||
UnknownText_0x156ff:
|
UnknownText_0x156ff:
|
||||||
; turned on the PC.
|
; turned on the PC.
|
||||||
text_jump UnknownText_0x1c1353
|
text_far UnknownText_0x1c1353
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
_PlayersPC:
|
_PlayersPC:
|
||||||
@ -305,7 +305,7 @@ PC_DisplayTextWaitMenu:
|
|||||||
|
|
||||||
UnknownText_0x157cc:
|
UnknownText_0x157cc:
|
||||||
; What do you want to do?
|
; What do you want to do?
|
||||||
text_jump UnknownText_0x1c1368
|
text_far UnknownText_0x1c1368
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PlayerWithdrawItemMenu:
|
PlayerWithdrawItemMenu:
|
||||||
@ -373,15 +373,15 @@ PlayerWithdrawItemMenu:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
.HowManyText:
|
.HowManyText:
|
||||||
text_jump _PlayersPCHowManyWithdrawText
|
text_far _PlayersPCHowManyWithdrawText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.WithdrewText:
|
.WithdrewText:
|
||||||
text_jump _PlayersPCWithdrewItemsText
|
text_far _PlayersPCWithdrewItemsText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.NoRoomText:
|
.NoRoomText:
|
||||||
text_jump _PlayersPCNoRoomWithdrawText
|
text_far _PlayersPCNoRoomWithdrawText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PlayerTossItemMenu:
|
PlayerTossItemMenu:
|
||||||
@ -444,7 +444,7 @@ PlayerDepositItemMenu:
|
|||||||
|
|
||||||
.NoItemsInBag:
|
.NoItemsInBag:
|
||||||
; No items here!
|
; No items here!
|
||||||
text_jump UnknownText_0x1c13df
|
text_far UnknownText_0x1c13df
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.TryDepositItem:
|
.TryDepositItem:
|
||||||
@ -533,15 +533,15 @@ PlayerDepositItemMenu:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
.HowManyText:
|
.HowManyText:
|
||||||
text_jump _PlayersPCHowManyDepositText
|
text_far _PlayersPCHowManyDepositText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.DepositText:
|
.DepositText:
|
||||||
text_jump _PlayersPCDepositItemsText
|
text_far _PlayersPCDepositItemsText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.NoRoomText:
|
.NoRoomText:
|
||||||
text_jump _PlayersPCNoRoomDepositText
|
text_far _PlayersPCNoRoomDepositText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PlayerMailBoxMenu:
|
PlayerMailBoxMenu:
|
||||||
@ -640,30 +640,30 @@ PC_DisplayText:
|
|||||||
|
|
||||||
PokecenterPCText_BootedUpPC:
|
PokecenterPCText_BootedUpPC:
|
||||||
; turned on the PC.
|
; turned on the PC.
|
||||||
text_jump UnknownText_0x1c144d
|
text_far UnknownText_0x1c144d
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PokecenterPCText_AccessWhosePC:
|
PokecenterPCText_AccessWhosePC:
|
||||||
; Access whose PC?
|
; Access whose PC?
|
||||||
text_jump UnknownText_0x1c1462
|
text_far UnknownText_0x1c1462
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PokecenterPCText_AccessedBillsPC:
|
PokecenterPCText_AccessedBillsPC:
|
||||||
; BILL's PC accessed. #MON Storage System opened.
|
; BILL's PC accessed. #MON Storage System opened.
|
||||||
text_jump UnknownText_0x1c1474
|
text_far UnknownText_0x1c1474
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PokecenterPCText_AccessedOwnPC:
|
PokecenterPCText_AccessedOwnPC:
|
||||||
; Accessed own PC. Item Storage System opened.
|
; Accessed own PC. Item Storage System opened.
|
||||||
text_jump UnknownText_0x1c14a4
|
text_far UnknownText_0x1c14a4
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PokecenterPCText_AccessedOaksPC:
|
PokecenterPCText_AccessedOaksPC:
|
||||||
; PROF.OAK's PC accessed. #DEX Rating System opened.
|
; PROF.OAK's PC accessed. #DEX Rating System opened.
|
||||||
text_jump UnknownText_0x1c14d2
|
text_far UnknownText_0x1c14d2
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PokecenterPCText_LinkClosed:
|
PokecenterPCText_LinkClosed:
|
||||||
; … Link closed…
|
; … Link closed…
|
||||||
text_jump UnknownText_0x1c1505
|
text_far UnknownText_0x1c1505
|
||||||
db "@"
|
db "@"
|
||||||
|
@ -31,25 +31,25 @@ PhotoStudio:
|
|||||||
|
|
||||||
.Text_AskWhichMon:
|
.Text_AskWhichMon:
|
||||||
; Which #MON should I photo- graph?
|
; Which #MON should I photo- graph?
|
||||||
text_jump UnknownText_0x1be024
|
text_far UnknownText_0x1be024
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_HoldStill:
|
.Text_HoldStill:
|
||||||
; All righty. Hold still for a bit.
|
; All righty. Hold still for a bit.
|
||||||
text_jump UnknownText_0x1be047
|
text_far UnknownText_0x1be047
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_Presto:
|
.Text_Presto:
|
||||||
; Presto! All done. Come again, OK?
|
; Presto! All done. Come again, OK?
|
||||||
text_jump UnknownText_0x1be06a
|
text_far UnknownText_0x1be06a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_NoPicture:
|
.Text_NoPicture:
|
||||||
; Oh, no picture? Come again, OK?
|
; Oh, no picture? Come again, OK?
|
||||||
text_jump UnknownText_0x1c0000
|
text_far UnknownText_0x1c0000
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_Egg:
|
.Text_Egg:
|
||||||
; An EGG? My talent is worth more…
|
; An EGG? My talent is worth more…
|
||||||
text_jump UnknownText_0x1c0021
|
text_far UnknownText_0x1c0021
|
||||||
db "@"
|
db "@"
|
||||||
|
@ -101,93 +101,93 @@ endr
|
|||||||
INCLUDE "data/events/pokedex_ratings.asm"
|
INCLUDE "data/events/pokedex_ratings.asm"
|
||||||
|
|
||||||
OakPCText1:
|
OakPCText1:
|
||||||
text_jump _OakPCText1
|
text_far _OakPCText1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakPCText2:
|
OakPCText2:
|
||||||
text_jump _OakPCText2
|
text_far _OakPCText2
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakPCText3:
|
OakPCText3:
|
||||||
text_jump _OakPCText3
|
text_far _OakPCText3
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakRating01:
|
OakRating01:
|
||||||
text_jump _OakRating01
|
text_far _OakRating01
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakRating02:
|
OakRating02:
|
||||||
text_jump _OakRating02
|
text_far _OakRating02
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakRating03:
|
OakRating03:
|
||||||
text_jump _OakRating03
|
text_far _OakRating03
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakRating04:
|
OakRating04:
|
||||||
text_jump _OakRating04
|
text_far _OakRating04
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakRating05:
|
OakRating05:
|
||||||
text_jump _OakRating05
|
text_far _OakRating05
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakRating06:
|
OakRating06:
|
||||||
text_jump _OakRating06
|
text_far _OakRating06
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakRating07:
|
OakRating07:
|
||||||
text_jump _OakRating07
|
text_far _OakRating07
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakRating08:
|
OakRating08:
|
||||||
text_jump _OakRating08
|
text_far _OakRating08
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakRating09:
|
OakRating09:
|
||||||
text_jump _OakRating09
|
text_far _OakRating09
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakRating10:
|
OakRating10:
|
||||||
text_jump _OakRating10
|
text_far _OakRating10
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakRating11:
|
OakRating11:
|
||||||
text_jump _OakRating11
|
text_far _OakRating11
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakRating12:
|
OakRating12:
|
||||||
text_jump _OakRating12
|
text_far _OakRating12
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakRating13:
|
OakRating13:
|
||||||
text_jump _OakRating13
|
text_far _OakRating13
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakRating14:
|
OakRating14:
|
||||||
text_jump _OakRating14
|
text_far _OakRating14
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakRating15:
|
OakRating15:
|
||||||
text_jump _OakRating15
|
text_far _OakRating15
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakRating16:
|
OakRating16:
|
||||||
text_jump _OakRating16
|
text_far _OakRating16
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakRating17:
|
OakRating17:
|
||||||
text_jump _OakRating17
|
text_far _OakRating17
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakRating18:
|
OakRating18:
|
||||||
text_jump _OakRating18
|
text_far _OakRating18
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakRating19:
|
OakRating19:
|
||||||
text_jump _OakRating19
|
text_far _OakRating19
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakPCText4:
|
OakPCText4:
|
||||||
text_jump _OakPCText4
|
text_far _OakPCText4
|
||||||
db "@"
|
db "@"
|
||||||
|
@ -66,5 +66,5 @@ SacredAshScript:
|
|||||||
|
|
||||||
UnknownText_0x50845:
|
UnknownText_0x50845:
|
||||||
; 's #MON were all healed!
|
; 's #MON were all healed!
|
||||||
text_jump UnknownText_0x1c0b65
|
text_far UnknownText_0x1c0b65
|
||||||
db "@"
|
db "@"
|
||||||
|
@ -169,7 +169,7 @@ GetMysteryGiftItem:
|
|||||||
|
|
||||||
.ReceiveItemText:
|
.ReceiveItemText:
|
||||||
; received item
|
; received item
|
||||||
text_jump UnknownText_0x1bd3be
|
text_far UnknownText_0x1bd3be
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BugContestJudging:
|
BugContestJudging:
|
||||||
@ -257,12 +257,12 @@ CheckCoinsAndCoinCase:
|
|||||||
|
|
||||||
.NoCoinsText:
|
.NoCoinsText:
|
||||||
; You have no coins.
|
; You have no coins.
|
||||||
text_jump UnknownText_0x1bd3d7
|
text_far UnknownText_0x1bd3d7
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.NoCoinCaseText:
|
.NoCoinCaseText:
|
||||||
; You don't have a COIN CASE.
|
; You don't have a COIN CASE.
|
||||||
text_jump UnknownText_0x1bd3eb
|
text_far UnknownText_0x1bd3eb
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
ClearBGPalettesBufferScreen:
|
ClearBGPalettesBufferScreen:
|
||||||
|
@ -17,7 +17,7 @@ _Squirtbottle:
|
|||||||
|
|
||||||
.NothingHappenedText:
|
.NothingHappenedText:
|
||||||
; sprinkled water. But nothing happened…
|
; sprinkled water. But nothing happened…
|
||||||
text_jump UnknownText_0x1c0b3b
|
text_far UnknownText_0x1c0b3b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.CheckCanUseSquirtbottle:
|
.CheckCanUseSquirtbottle:
|
||||||
|
@ -59,10 +59,10 @@ SweetScentEncounter:
|
|||||||
|
|
||||||
UnknownText_0x50726:
|
UnknownText_0x50726:
|
||||||
; used SWEET SCENT!
|
; used SWEET SCENT!
|
||||||
text_jump UnknownText_0x1c0b03
|
text_far UnknownText_0x1c0b03
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x5072b:
|
UnknownText_0x5072b:
|
||||||
; Looks like there's nothing here…
|
; Looks like there's nothing here…
|
||||||
text_jump UnknownText_0x1c0b1a
|
text_far UnknownText_0x1c0b1a
|
||||||
db "@"
|
db "@"
|
||||||
|
@ -26,7 +26,7 @@ Script_Whiteout:
|
|||||||
|
|
||||||
.WhitedOutText:
|
.WhitedOutText:
|
||||||
; is out of useable #MON! whited out!
|
; is out of useable #MON! whited out!
|
||||||
text_jump UnknownText_0x1c0a4e
|
text_far UnknownText_0x1c0a4e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OverworldBGMap:
|
OverworldBGMap:
|
||||||
|
@ -117,7 +117,7 @@ _CardFlip:
|
|||||||
|
|
||||||
.PlayWithThreeCoinsText:
|
.PlayWithThreeCoinsText:
|
||||||
; Play with three coins?
|
; Play with three coins?
|
||||||
text_jump UnknownText_0x1c5793
|
text_far UnknownText_0x1c5793
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.DeductCoins:
|
.DeductCoins:
|
||||||
@ -157,7 +157,7 @@ _CardFlip:
|
|||||||
|
|
||||||
.NotEnoughCoinsText:
|
.NotEnoughCoinsText:
|
||||||
; Not enough coins…
|
; Not enough coins…
|
||||||
text_jump UnknownText_0x1c57ab
|
text_far UnknownText_0x1c57ab
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.ChooseACard:
|
.ChooseACard:
|
||||||
@ -234,7 +234,7 @@ _CardFlip:
|
|||||||
|
|
||||||
.ChooseACardText:
|
.ChooseACardText:
|
||||||
; Choose a card.
|
; Choose a card.
|
||||||
text_jump UnknownText_0x1c57be
|
text_far UnknownText_0x1c57be
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.PlaceYourBet:
|
.PlaceYourBet:
|
||||||
@ -256,7 +256,7 @@ _CardFlip:
|
|||||||
|
|
||||||
.PlaceYourBetText:
|
.PlaceYourBetText:
|
||||||
; Place your bet.
|
; Place your bet.
|
||||||
text_jump UnknownText_0x1c57ce
|
text_far UnknownText_0x1c57ce
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.CheckTheCard:
|
.CheckTheCard:
|
||||||
@ -327,12 +327,12 @@ _CardFlip:
|
|||||||
|
|
||||||
.PlayAgainText:
|
.PlayAgainText:
|
||||||
; Want to play again?
|
; Want to play again?
|
||||||
text_jump UnknownText_0x1c57df
|
text_far UnknownText_0x1c57df
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.CardsShuffledText:
|
.CardsShuffledText:
|
||||||
; The cards have been shuffled.
|
; The cards have been shuffled.
|
||||||
text_jump UnknownText_0x1c57f4
|
text_far UnknownText_0x1c57f4
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Quit:
|
.Quit:
|
||||||
@ -1114,12 +1114,12 @@ CardFlip_CheckWinCondition:
|
|||||||
|
|
||||||
.Text_Yeah:
|
.Text_Yeah:
|
||||||
; Yeah!
|
; Yeah!
|
||||||
text_jump UnknownText_0x1c5813
|
text_far UnknownText_0x1c5813
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_Darn:
|
.Text_Darn:
|
||||||
; Darn…
|
; Darn…
|
||||||
text_jump UnknownText_0x1c581a
|
text_far UnknownText_0x1c581a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.AddCoinPlaySFX:
|
.AddCoinPlaySFX:
|
||||||
|
@ -322,12 +322,12 @@ DummyGame_CheckMatch:
|
|||||||
|
|
||||||
DummyGameText_Yeah:
|
DummyGameText_Yeah:
|
||||||
; , yeah!
|
; , yeah!
|
||||||
text_jump UnknownText_0x1c1a5b
|
text_far UnknownText_0x1c1a5b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
DummyGameText_Darn:
|
DummyGameText_Darn:
|
||||||
; Darn…
|
; Darn…
|
||||||
text_jump UnknownText_0x1c1a65
|
text_far UnknownText_0x1c1a65
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
DummyGame_InitBoard:
|
DummyGame_InitBoard:
|
||||||
|
@ -1749,17 +1749,17 @@ Slots_AskBet:
|
|||||||
|
|
||||||
.Text_BetHowManyCoins:
|
.Text_BetHowManyCoins:
|
||||||
; Bet how many coins?
|
; Bet how many coins?
|
||||||
text_jump UnknownText_0x1c5049
|
text_far UnknownText_0x1c5049
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_Start:
|
.Text_Start:
|
||||||
; Start!
|
; Start!
|
||||||
text_jump UnknownText_0x1c505e
|
text_far UnknownText_0x1c505e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_NotEnoughCoins:
|
.Text_NotEnoughCoins:
|
||||||
; Not enough coins.
|
; Not enough coins.
|
||||||
text_jump UnknownText_0x1c5066
|
text_far UnknownText_0x1c5066
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.MenuHeader:
|
.MenuHeader:
|
||||||
@ -1805,11 +1805,11 @@ Slots_AskPlayAgain:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
.Text_OutOfCoins:
|
.Text_OutOfCoins:
|
||||||
text_jump UnknownText_0x1c5079
|
text_far UnknownText_0x1c5079
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_PlayAgain:
|
.Text_PlayAgain:
|
||||||
text_jump UnknownText_0x1c5092
|
text_far UnknownText_0x1c5092
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Slots_GetPayout:
|
Slots_GetPayout:
|
||||||
@ -1907,12 +1907,12 @@ endr
|
|||||||
|
|
||||||
.Text_LinedUpWonCoins:
|
.Text_LinedUpWonCoins:
|
||||||
; lined up! Won @ coins!
|
; lined up! Won @ coins!
|
||||||
text_jump UnknownText_0x1c509f
|
text_far UnknownText_0x1c509f
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_Darn:
|
.Text_Darn:
|
||||||
; Darn!
|
; Darn!
|
||||||
text_jump UnknownText_0x1c50bb
|
text_far UnknownText_0x1c50bb
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.LinedUpSevens:
|
.LinedUpSevens:
|
||||||
|
@ -1063,37 +1063,37 @@ LevelBallMultiplier:
|
|||||||
|
|
||||||
Text_RBY_CatchMarowak:
|
Text_RBY_CatchMarowak:
|
||||||
; It dodged the thrown BALL! This #MON can't be caught!
|
; It dodged the thrown BALL! This #MON can't be caught!
|
||||||
text_jump UnknownText_0x1c5a5a
|
text_far UnknownText_0x1c5a5a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_RBY_NoShake:
|
Text_RBY_NoShake:
|
||||||
; You missed the #MON!
|
; You missed the #MON!
|
||||||
text_jump UnknownText_0x1c5a90
|
text_far UnknownText_0x1c5a90
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_NoShake:
|
Text_NoShake:
|
||||||
; Oh no! The #MON broke free!
|
; Oh no! The #MON broke free!
|
||||||
text_jump UnknownText_0x1c5aa6
|
text_far UnknownText_0x1c5aa6
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_OneShake:
|
Text_OneShake:
|
||||||
; Aww! It appeared to be caught!
|
; Aww! It appeared to be caught!
|
||||||
text_jump UnknownText_0x1c5ac3
|
text_far UnknownText_0x1c5ac3
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_TwoShakes:
|
Text_TwoShakes:
|
||||||
; Aargh! Almost had it!
|
; Aargh! Almost had it!
|
||||||
text_jump UnknownText_0x1c5ae3
|
text_far UnknownText_0x1c5ae3
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_ThreeShakes:
|
Text_ThreeShakes:
|
||||||
; Shoot! It was so close too!
|
; Shoot! It was so close too!
|
||||||
text_jump UnknownText_0x1c5afa
|
text_far UnknownText_0x1c5afa
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_GotchaMonWasCaught:
|
Text_GotchaMonWasCaught:
|
||||||
; Gotcha! @ was caught!@ @
|
; Gotcha! @ was caught!@ @
|
||||||
text_jump UnknownText_0x1c5b17
|
text_far UnknownText_0x1c5b17
|
||||||
start_asm
|
start_asm
|
||||||
call WaitSFX
|
call WaitSFX
|
||||||
push bc
|
push bc
|
||||||
@ -1108,22 +1108,22 @@ Text_GotchaMonWasCaught:
|
|||||||
|
|
||||||
TextJump_Waitbutton:
|
TextJump_Waitbutton:
|
||||||
; @
|
; @
|
||||||
text_jump Text_Waitbutton_2
|
text_far Text_Waitbutton_2
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_SentToBillsPC:
|
Text_SentToBillsPC:
|
||||||
; was sent to BILL's PC.
|
; was sent to BILL's PC.
|
||||||
text_jump UnknownText_0x1c5b38
|
text_far UnknownText_0x1c5b38
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_AddedToPokedex:
|
Text_AddedToPokedex:
|
||||||
; 's data was newly added to the #DEX.@ @
|
; 's data was newly added to the #DEX.@ @
|
||||||
text_jump UnknownText_0x1c5b53
|
text_far UnknownText_0x1c5b53
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_AskNicknameNewlyCaughtMon:
|
Text_AskNicknameNewlyCaughtMon:
|
||||||
; Give a nickname to @ ?
|
; Give a nickname to @ ?
|
||||||
text_jump UnknownText_0x1c5b7f
|
text_far UnknownText_0x1c5b7f
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
ReturnToBattle_UseBall:
|
ReturnToBattle_UseBall:
|
||||||
@ -1234,7 +1234,7 @@ RareCandy_StatBooster_ExitMenu:
|
|||||||
|
|
||||||
Text_StatRose:
|
Text_StatRose:
|
||||||
; 's @ rose.
|
; 's @ rose.
|
||||||
text_jump UnknownText_0x1c5b9a
|
text_far UnknownText_0x1c5b9a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
StatStrings:
|
StatStrings:
|
||||||
@ -2062,7 +2062,7 @@ Softboiled_MilkDrinkFunction:
|
|||||||
|
|
||||||
.Text_CantBeUsed:
|
.Text_CantBeUsed:
|
||||||
; That can't be used on this #MON.
|
; That can't be used on this #MON.
|
||||||
text_jump UnknownText_0x1c5bac
|
text_far UnknownText_0x1c5bac
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
EscapeRopeEffect:
|
EscapeRopeEffect:
|
||||||
@ -2098,7 +2098,7 @@ UseRepel:
|
|||||||
|
|
||||||
TextJump_RepelUsedEarlierIsStillInEffect:
|
TextJump_RepelUsedEarlierIsStillInEffect:
|
||||||
; The REPEL used earlier is still in effect.
|
; The REPEL used earlier is still in effect.
|
||||||
text_jump Text_RepelUsedEarlierIsStillInEffect
|
text_far Text_RepelUsedEarlierIsStillInEffect
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
XAccuracyEffect:
|
XAccuracyEffect:
|
||||||
@ -2239,17 +2239,17 @@ PokeFluteEffect:
|
|||||||
|
|
||||||
.CatchyTune:
|
.CatchyTune:
|
||||||
; Played the # FLUTE. Now, that's a catchy tune!
|
; Played the # FLUTE. Now, that's a catchy tune!
|
||||||
text_jump UnknownText_0x1c5bf9
|
text_far UnknownText_0x1c5bf9
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.AllSleepingMonWokeUp:
|
.AllSleepingMonWokeUp:
|
||||||
; All sleeping #MON woke up.
|
; All sleeping #MON woke up.
|
||||||
text_jump UnknownText_0x1c5c28
|
text_far UnknownText_0x1c5c28
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.PlayedTheFlute:
|
.PlayedTheFlute:
|
||||||
; played the # FLUTE.@ @
|
; played the # FLUTE.@ @
|
||||||
text_jump UnknownText_0x1c5c44
|
text_far UnknownText_0x1c5c44
|
||||||
start_asm
|
start_asm
|
||||||
ld a, [wBattleMode]
|
ld a, [wBattleMode]
|
||||||
and a
|
and a
|
||||||
@ -2269,7 +2269,7 @@ BlueCardEffect:
|
|||||||
jp MenuTextBoxWaitButton
|
jp MenuTextBoxWaitButton
|
||||||
|
|
||||||
.bluecardtext
|
.bluecardtext
|
||||||
text_jump UnknownText_0x1c5c5e
|
text_far UnknownText_0x1c5c5e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
CoinCaseEffect:
|
CoinCaseEffect:
|
||||||
@ -2277,7 +2277,7 @@ CoinCaseEffect:
|
|||||||
jp MenuTextBoxWaitButton
|
jp MenuTextBoxWaitButton
|
||||||
|
|
||||||
.coincasetext
|
.coincasetext
|
||||||
text_jump UnknownText_0x1c5c7b
|
text_far UnknownText_0x1c5c7b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OldRodEffect:
|
OldRodEffect:
|
||||||
@ -2532,27 +2532,27 @@ RestorePP:
|
|||||||
|
|
||||||
TextJump_RaiseThePPOfWhichMove:
|
TextJump_RaiseThePPOfWhichMove:
|
||||||
; Raise the PP of which move?
|
; Raise the PP of which move?
|
||||||
text_jump Text_RaiseThePPOfWhichMove
|
text_far Text_RaiseThePPOfWhichMove
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TextJump_RestoreThePPOfWhichMove:
|
TextJump_RestoreThePPOfWhichMove:
|
||||||
; Restore the PP of which move?
|
; Restore the PP of which move?
|
||||||
text_jump Text_RestoreThePPOfWhichMove
|
text_far Text_RestoreThePPOfWhichMove
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TextJump_PPIsMaxedOut:
|
TextJump_PPIsMaxedOut:
|
||||||
; 's PP is maxed out.
|
; 's PP is maxed out.
|
||||||
text_jump Text_PPIsMaxedOut
|
text_far Text_PPIsMaxedOut
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TextJump_PPsIncreased:
|
TextJump_PPsIncreased:
|
||||||
; 's PP increased.
|
; 's PP increased.
|
||||||
text_jump Text_PPsIncreased
|
text_far Text_PPsIncreased
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0xf739:
|
UnknownText_0xf739:
|
||||||
; PP was restored.
|
; PP was restored.
|
||||||
text_jump UnknownText_0x1c5cf1
|
text_far UnknownText_0x1c5cf1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
SquirtbottleEffect:
|
SquirtbottleEffect:
|
||||||
@ -2591,7 +2591,7 @@ OpenBox:
|
|||||||
|
|
||||||
.text
|
.text
|
||||||
; There was a trophy inside!
|
; There was a trophy inside!
|
||||||
text_jump UnknownText_0x1c5d03
|
text_far UnknownText_0x1c5d03
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
NoEffect:
|
NoEffect:
|
||||||
@ -2686,67 +2686,67 @@ CantUseItemMessage:
|
|||||||
|
|
||||||
LooksBitterText:
|
LooksBitterText:
|
||||||
; It looks bitter…
|
; It looks bitter…
|
||||||
text_jump UnknownText_0x1c5d3e
|
text_far UnknownText_0x1c5d3e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
CantUseOnEggText:
|
CantUseOnEggText:
|
||||||
; That can't be used on an EGG.
|
; That can't be used on an EGG.
|
||||||
text_jump UnknownText_0x1c5d50
|
text_far UnknownText_0x1c5d50
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
IsntTheTimeText:
|
IsntTheTimeText:
|
||||||
; OAK: ! This isn't the time to use that!
|
; OAK: ! This isn't the time to use that!
|
||||||
text_jump UnknownText_0x1c5d6e
|
text_far UnknownText_0x1c5d6e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BelongsToSomeoneElseText:
|
BelongsToSomeoneElseText:
|
||||||
; That belongs to someone else!
|
; That belongs to someone else!
|
||||||
text_jump UnknownText_0x1c5d97
|
text_far UnknownText_0x1c5d97
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
WontHaveAnyEffectText:
|
WontHaveAnyEffectText:
|
||||||
; It won't have any effect.
|
; It won't have any effect.
|
||||||
text_jump UnknownText_0x1c5db6
|
text_far UnknownText_0x1c5db6
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BlockedTheBallText:
|
BlockedTheBallText:
|
||||||
; The trainer blocked the BALL!
|
; The trainer blocked the BALL!
|
||||||
text_jump UnknownText_0x1c5dd0
|
text_far UnknownText_0x1c5dd0
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
DontBeAThiefText:
|
DontBeAThiefText:
|
||||||
; Don't be a thief!
|
; Don't be a thief!
|
||||||
text_jump UnknownText_0x1c5def
|
text_far UnknownText_0x1c5def
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
CyclingIsntAllowedText:
|
CyclingIsntAllowedText:
|
||||||
; Cycling isn't allowed here.
|
; Cycling isn't allowed here.
|
||||||
text_jump UnknownText_0x1c5e01
|
text_far UnknownText_0x1c5e01
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
CantGetOnYourBikeText:
|
CantGetOnYourBikeText:
|
||||||
; Can't get on your @ now.
|
; Can't get on your @ now.
|
||||||
text_jump UnknownText_0x1c5e1d
|
text_far UnknownText_0x1c5e1d
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Ball_BoxIsFullText:
|
Ball_BoxIsFullText:
|
||||||
; The #MON BOX is full. That can't be used now.
|
; The #MON BOX is full. That can't be used now.
|
||||||
text_jump UnknownText_0x1c5e3a
|
text_far UnknownText_0x1c5e3a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UsedItemText:
|
UsedItemText:
|
||||||
; used the@ .
|
; used the@ .
|
||||||
text_jump UnknownText_0x1c5e68
|
text_far UnknownText_0x1c5e68
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
GotOnTheItemText:
|
GotOnTheItemText:
|
||||||
; got on the@ .
|
; got on the@ .
|
||||||
text_jump UnknownText_0x1c5e7b
|
text_far UnknownText_0x1c5e7b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
GotOffTheItemText:
|
GotOffTheItemText:
|
||||||
; got off@ the @ .
|
; got off@ the @ .
|
||||||
text_jump UnknownText_0x1c5e90
|
text_far UnknownText_0x1c5e90
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
ApplyPPUp:
|
ApplyPPUp:
|
||||||
|
@ -581,12 +581,12 @@ RooftopSaleAskPurchaseQuantity:
|
|||||||
|
|
||||||
Text_Mart_HowMany:
|
Text_Mart_HowMany:
|
||||||
; How many?
|
; How many?
|
||||||
text_jump UnknownText_0x1c4bfd
|
text_far UnknownText_0x1c4bfd
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_Mart_CostsThisMuch:
|
Text_Mart_CostsThisMuch:
|
||||||
; @ (S) will be ¥@ .
|
; @ (S) will be ¥@ .
|
||||||
text_jump UnknownText_0x1c4c08
|
text_far UnknownText_0x1c4c08
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
MenuHeader_Buy:
|
MenuHeader_Buy:
|
||||||
@ -624,107 +624,107 @@ MenuHeader_Buy:
|
|||||||
|
|
||||||
Text_HerbShop_Intro:
|
Text_HerbShop_Intro:
|
||||||
; Hello, dear. I sell inexpensive herbal medicine. They're good, but a trifle bitter. Your #MON may not like them. Hehehehe…
|
; Hello, dear. I sell inexpensive herbal medicine. They're good, but a trifle bitter. Your #MON may not like them. Hehehehe…
|
||||||
text_jump UnknownText_0x1c4c28
|
text_far UnknownText_0x1c4c28
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_HerbShop_HowMany:
|
Text_HerbShop_HowMany:
|
||||||
; How many?
|
; How many?
|
||||||
text_jump UnknownText_0x1c4ca3
|
text_far UnknownText_0x1c4ca3
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_HerbShop_CostsThisMuch:
|
Text_HerbShop_CostsThisMuch:
|
||||||
; @ (S) will be ¥@ .
|
; @ (S) will be ¥@ .
|
||||||
text_jump UnknownText_0x1c4cae
|
text_far UnknownText_0x1c4cae
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_HerbShop_HereYouGo:
|
Text_HerbShop_HereYouGo:
|
||||||
; Thank you, dear. Hehehehe…
|
; Thank you, dear. Hehehehe…
|
||||||
text_jump UnknownText_0x1c4cce
|
text_far UnknownText_0x1c4cce
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_HerbShop_BagFull:
|
Text_HerbShop_BagFull:
|
||||||
; Oh? Your PACK is full, dear.
|
; Oh? Your PACK is full, dear.
|
||||||
text_jump UnknownText_0x1c4cea
|
text_far UnknownText_0x1c4cea
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_HerbShop_InsufficientFunds:
|
Text_HerbShop_InsufficientFunds:
|
||||||
; Hehehe… You don't have the money.
|
; Hehehe… You don't have the money.
|
||||||
text_jump UnknownText_0x1c4d08
|
text_far UnknownText_0x1c4d08
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_HerbShop_ComeAgain:
|
Text_HerbShop_ComeAgain:
|
||||||
; Come again, dear. Hehehehe…
|
; Come again, dear. Hehehehe…
|
||||||
text_jump UnknownText_0x1c4d2a
|
text_far UnknownText_0x1c4d2a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_BargainShop_Intro:
|
Text_BargainShop_Intro:
|
||||||
; Hiya! Care to see some bargains? I sell rare items that nobody else carries--but only one of each item.
|
; Hiya! Care to see some bargains? I sell rare items that nobody else carries--but only one of each item.
|
||||||
text_jump UnknownText_0x1c4d47
|
text_far UnknownText_0x1c4d47
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_BargainShop_CostsThisMuch:
|
Text_BargainShop_CostsThisMuch:
|
||||||
; costs ¥@ . Want it?
|
; costs ¥@ . Want it?
|
||||||
text_jump UnknownText_0x1c4db0
|
text_far UnknownText_0x1c4db0
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_BargainShop_HereYouGo:
|
Text_BargainShop_HereYouGo:
|
||||||
; Thanks.
|
; Thanks.
|
||||||
text_jump UnknownText_0x1c4dcd
|
text_far UnknownText_0x1c4dcd
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_BargainShop_BagFull:
|
Text_BargainShop_BagFull:
|
||||||
; Uh-oh, your PACK is chock-full.
|
; Uh-oh, your PACK is chock-full.
|
||||||
text_jump UnknownText_0x1c4dd6
|
text_far UnknownText_0x1c4dd6
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_BargainShop_SoldOut:
|
Text_BargainShop_SoldOut:
|
||||||
; You bought that already. I'm all sold out of it.
|
; You bought that already. I'm all sold out of it.
|
||||||
text_jump UnknownText_0x1c4df7
|
text_far UnknownText_0x1c4df7
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_BargainShop_InsufficientFunds:
|
Text_BargainShop_InsufficientFunds:
|
||||||
; Uh-oh, you're short on funds.
|
; Uh-oh, you're short on funds.
|
||||||
text_jump UnknownText_0x1c4e28
|
text_far UnknownText_0x1c4e28
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_BargainShop_ComeAgain:
|
Text_BargainShop_ComeAgain:
|
||||||
; Come by again sometime.
|
; Come by again sometime.
|
||||||
text_jump UnknownText_0x1c4e46
|
text_far UnknownText_0x1c4e46
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_Pharmacist_Intro:
|
Text_Pharmacist_Intro:
|
||||||
; What's up? Need some medicine?
|
; What's up? Need some medicine?
|
||||||
text_jump UnknownText_0x1c4e5f
|
text_far UnknownText_0x1c4e5f
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_Pharmacy_HowMany:
|
Text_Pharmacy_HowMany:
|
||||||
; How many?
|
; How many?
|
||||||
text_jump UnknownText_0x1c4e7e
|
text_far UnknownText_0x1c4e7e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_Pharmacy_CostsThisMuch:
|
Text_Pharmacy_CostsThisMuch:
|
||||||
; @ (S) will cost ¥@ .
|
; @ (S) will cost ¥@ .
|
||||||
text_jump UnknownText_0x1c4e89
|
text_far UnknownText_0x1c4e89
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_Pharmacy_HereYouGo:
|
Text_Pharmacy_HereYouGo:
|
||||||
; Thanks much!
|
; Thanks much!
|
||||||
text_jump UnknownText_0x1c4eab
|
text_far UnknownText_0x1c4eab
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_Pharmacy_BagFull:
|
Text_Pharmacy_BagFull:
|
||||||
; You don't have any more space.
|
; You don't have any more space.
|
||||||
text_jump UnknownText_0x1c4eb9
|
text_far UnknownText_0x1c4eb9
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_Pharmacy_InsufficientFunds:
|
Text_Pharmacy_InsufficientFunds:
|
||||||
; Huh? That's not enough money.
|
; Huh? That's not enough money.
|
||||||
text_jump UnknownText_0x1c4ed8
|
text_far UnknownText_0x1c4ed8
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_Pharmacist_ComeAgain:
|
Text_Pharmacist_ComeAgain:
|
||||||
; All right. See you around.
|
; All right. See you around.
|
||||||
text_jump UnknownText_0x1c4ef6
|
text_far UnknownText_0x1c4ef6
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
SellMenu:
|
SellMenu:
|
||||||
@ -751,7 +751,7 @@ SellMenu:
|
|||||||
|
|
||||||
.NothingToSellText:
|
.NothingToSellText:
|
||||||
; You don't have anything to sell.
|
; You don't have anything to sell.
|
||||||
text_jump UnknownText_0x1c4f12
|
text_far UnknownText_0x1c4f12
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.TryToSellItem:
|
.TryToSellItem:
|
||||||
@ -820,12 +820,12 @@ SellMenu:
|
|||||||
|
|
||||||
Text_Mart_SellHowMany:
|
Text_Mart_SellHowMany:
|
||||||
; How many?
|
; How many?
|
||||||
text_jump UnknownText_0x1c4f33
|
text_far UnknownText_0x1c4f33
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_Mart_ICanPayThisMuch:
|
Text_Mart_ICanPayThisMuch:
|
||||||
; I can pay you ¥@ . Is that OK?
|
; I can pay you ¥@ . Is that OK?
|
||||||
text_jump UnknownText_0x1c4f3e
|
text_far UnknownText_0x1c4f3e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.UnusedString15f7d:
|
.UnusedString15f7d:
|
||||||
@ -833,7 +833,7 @@ Text_Mart_ICanPayThisMuch:
|
|||||||
|
|
||||||
Text_Mart_HowMayIHelpYou:
|
Text_Mart_HowMayIHelpYou:
|
||||||
; Welcome! How may I help you?
|
; Welcome! How may I help you?
|
||||||
text_jump UnknownText_0x1c4f62
|
text_far UnknownText_0x1c4f62
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
MenuHeader_BuySell:
|
MenuHeader_BuySell:
|
||||||
@ -851,35 +851,35 @@ MenuHeader_BuySell:
|
|||||||
|
|
||||||
Text_Mart_HereYouGo:
|
Text_Mart_HereYouGo:
|
||||||
; Here you are. Thank you!
|
; Here you are. Thank you!
|
||||||
text_jump UnknownText_0x1c4f80
|
text_far UnknownText_0x1c4f80
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_Mart_InsufficientFunds:
|
Text_Mart_InsufficientFunds:
|
||||||
; You don't have enough money.
|
; You don't have enough money.
|
||||||
text_jump UnknownText_0x1c4f9a
|
text_far UnknownText_0x1c4f9a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_Mart_BagFull:
|
Text_Mart_BagFull:
|
||||||
; You can't carry any more items.
|
; You can't carry any more items.
|
||||||
text_jump UnknownText_0x1c4fb7
|
text_far UnknownText_0x1c4fb7
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TextMart_CantBuyFromYou:
|
TextMart_CantBuyFromYou:
|
||||||
; Sorry, I can't buy that from you.
|
; Sorry, I can't buy that from you.
|
||||||
text_jump UnknownText_0x1c4fd7
|
text_far UnknownText_0x1c4fd7
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_Mart_ComeAgain:
|
Text_Mart_ComeAgain:
|
||||||
; Please come again!
|
; Please come again!
|
||||||
text_jump UnknownText_0x1c4ff9
|
text_far UnknownText_0x1c4ff9
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_Mart_AnythingElse:
|
Text_Mart_AnythingElse:
|
||||||
text_jump UnknownText_0x1c500d
|
text_far UnknownText_0x1c500d
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_Mart_SoldForAmount:
|
Text_Mart_SoldForAmount:
|
||||||
text_jump UnknownText_0x1c502e
|
text_far UnknownText_0x1c502e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PlayTransactionSound:
|
PlayTransactionSound:
|
||||||
|
@ -616,7 +616,7 @@ GiveItem:
|
|||||||
ret
|
ret
|
||||||
.Egg:
|
.Egg:
|
||||||
; An EGG can't hold an item.
|
; An EGG can't hold an item.
|
||||||
text_jump Text_AnEGGCantHoldAnItem
|
text_far Text_AnEGGCantHoldAnItem
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
QuitItemSubmenu:
|
QuitItemSubmenu:
|
||||||
@ -1548,58 +1548,58 @@ PC_Mart_BallsPocketMenuHeader:
|
|||||||
|
|
||||||
Text_PackNoItems:
|
Text_PackNoItems:
|
||||||
; No items.
|
; No items.
|
||||||
text_jump UnknownText_0x1c0b9a
|
text_far UnknownText_0x1c0b9a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_ThrowAwayHowMany:
|
Text_ThrowAwayHowMany:
|
||||||
; Throw away how many?
|
; Throw away how many?
|
||||||
text_jump UnknownText_0x1c0ba5
|
text_far UnknownText_0x1c0ba5
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_ConfirmThrowAway:
|
Text_ConfirmThrowAway:
|
||||||
; Throw away @ @ (S)?
|
; Throw away @ @ (S)?
|
||||||
text_jump UnknownText_0x1c0bbb
|
text_far UnknownText_0x1c0bbb
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_ThrewAway:
|
Text_ThrewAway:
|
||||||
; Threw away @ (S).
|
; Threw away @ (S).
|
||||||
text_jump UnknownText_0x1c0bd8
|
text_far UnknownText_0x1c0bd8
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_ThisIsntTheTime:
|
Text_ThisIsntTheTime:
|
||||||
; OAK: ! This isn't the time to use that!
|
; OAK: ! This isn't the time to use that!
|
||||||
text_jump UnknownText_0x1c0bee
|
text_far UnknownText_0x1c0bee
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TextJump_YouDontHaveAMon:
|
TextJump_YouDontHaveAMon:
|
||||||
; You don't have a #MON!
|
; You don't have a #MON!
|
||||||
text_jump Text_YouDontHaveAMon
|
text_far Text_YouDontHaveAMon
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_RegisteredItem:
|
Text_RegisteredItem:
|
||||||
; Registered the @ .
|
; Registered the @ .
|
||||||
text_jump UnknownText_0x1c0c2e
|
text_far UnknownText_0x1c0c2e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_CantRegister:
|
Text_CantRegister:
|
||||||
; You can't register that item.
|
; You can't register that item.
|
||||||
text_jump UnknownText_0x1c0c45
|
text_far UnknownText_0x1c0c45
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_MoveItemWhere:
|
Text_MoveItemWhere:
|
||||||
; Where should this be moved to?
|
; Where should this be moved to?
|
||||||
text_jump UnknownText_0x1c0c63
|
text_far UnknownText_0x1c0c63
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_PackEmptyString:
|
Text_PackEmptyString:
|
||||||
;
|
;
|
||||||
text_jump UnknownText_0x1c0c83
|
text_far UnknownText_0x1c0c83
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TextJump_YouCantUseItInABattle:
|
TextJump_YouCantUseItInABattle:
|
||||||
; Doesn't seem to be used anywhere
|
; Doesn't seem to be used anywhere
|
||||||
; "You can't use it in a battle."
|
; "You can't use it in a battle."
|
||||||
text_jump Text_YouCantUseItInABattle
|
text_far Text_YouCantUseItInABattle
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PackMenuGFX:
|
PackMenuGFX:
|
||||||
|
@ -168,22 +168,22 @@ TeachTMHM:
|
|||||||
|
|
||||||
Text_BootedTM:
|
Text_BootedTM:
|
||||||
; Booted up a TM.
|
; Booted up a TM.
|
||||||
text_jump UnknownText_0x1c0373
|
text_far UnknownText_0x1c0373
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_BootedHM:
|
Text_BootedHM:
|
||||||
; Booted up an HM.
|
; Booted up an HM.
|
||||||
text_jump UnknownText_0x1c0384
|
text_far UnknownText_0x1c0384
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_ItContained:
|
Text_ItContained:
|
||||||
; It contained @ . Teach @ to a #MON?
|
; It contained @ . Teach @ to a #MON?
|
||||||
text_jump UnknownText_0x1c0396
|
text_far UnknownText_0x1c0396
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_TMHMNotCompatible:
|
Text_TMHMNotCompatible:
|
||||||
; is not compatible with @ . It can't learn @ .
|
; is not compatible with @ . It can't learn @ .
|
||||||
text_jump UnknownText_0x1c03c2
|
text_far UnknownText_0x1c03c2
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TMHM_PocketLoop:
|
TMHM_PocketLoop:
|
||||||
@ -499,12 +499,12 @@ Unreferenced_Function2cadf:
|
|||||||
|
|
||||||
.NoRoomText:
|
.NoRoomText:
|
||||||
; You have no room for any more @ S.
|
; You have no room for any more @ S.
|
||||||
text_jump UnknownText_0x1c03fa
|
text_far UnknownText_0x1c03fa
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.ReceivedText:
|
.ReceivedText:
|
||||||
; You received @ !
|
; You received @ !
|
||||||
text_jump UnknownText_0x1c0421
|
text_far UnknownText_0x1c0421
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.CheckHaveRoomForTMHM:
|
.CheckHaveRoomForTMHM:
|
||||||
|
@ -507,7 +507,7 @@ LinkTimeout:
|
|||||||
|
|
||||||
.TooMuchTimeHasElapsed:
|
.TooMuchTimeHasElapsed:
|
||||||
; Too much time has elapsed. Please try again.
|
; Too much time has elapsed. Please try again.
|
||||||
text_jump UnknownText_0x1c4183
|
text_far UnknownText_0x1c4183
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
ExchangeBytes:
|
ExchangeBytes:
|
||||||
@ -1489,7 +1489,7 @@ Function28926:
|
|||||||
|
|
||||||
.Text_CantTradeLastMon:
|
.Text_CantTradeLastMon:
|
||||||
; If you trade that #MON, you won't be able to battle.
|
; If you trade that #MON, you won't be able to battle.
|
||||||
text_jump UnknownText_0x1c41b1
|
text_far UnknownText_0x1c41b1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.String_Stats_Trade:
|
.String_Stats_Trade:
|
||||||
@ -1497,7 +1497,7 @@ Function28926:
|
|||||||
|
|
||||||
.Text_Abnormal:
|
.Text_Abnormal:
|
||||||
; Your friend's @ appears to be abnormal!
|
; Your friend's @ appears to be abnormal!
|
||||||
text_jump UnknownText_0x1c41e6
|
text_far UnknownText_0x1c41e6
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Function28ac9:
|
Function28ac9:
|
||||||
@ -1950,7 +1950,7 @@ String28eab:
|
|||||||
|
|
||||||
UnknownText_0x28eb8:
|
UnknownText_0x28eb8:
|
||||||
; Trade @ for @ ?
|
; Trade @ for @ ?
|
||||||
text_jump UnknownText_0x1c4212
|
text_far UnknownText_0x1c4212
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
String28ebd:
|
String28ebd:
|
||||||
|
@ -128,35 +128,35 @@ DoMysteryGift:
|
|||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_LinkCanceled:
|
.Text_LinkCanceled:
|
||||||
text_jump UnknownText_0x1c0436
|
text_far UnknownText_0x1c0436
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_CommunicationError:
|
.Text_CommunicationError:
|
||||||
text_jump UnknownText_0x1c0454
|
text_far UnknownText_0x1c0454
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_ReceiveGiftAtCounter:
|
.Text_ReceiveGiftAtCounter:
|
||||||
text_jump UnknownText_0x1c046a
|
text_far UnknownText_0x1c046a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_FriendNotReady:
|
.Text_FriendNotReady:
|
||||||
text_jump UnknownText_0x1c048e
|
text_far UnknownText_0x1c048e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_MaxFiveGifts:
|
.Text_MaxFiveGifts:
|
||||||
text_jump UnknownText_0x1c04a7
|
text_far UnknownText_0x1c04a7
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_MaxOneGiftPerPerson:
|
.Text_MaxOneGiftPerPerson:
|
||||||
text_jump UnknownText_0x1c04c6
|
text_far UnknownText_0x1c04c6
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_Sent:
|
.Text_Sent:
|
||||||
text_jump UnknownText_0x1c04e9
|
text_far UnknownText_0x1c04e9
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_SentToHome:
|
.Text_SentToHome:
|
||||||
text_jump UnknownText_0x1c04fa
|
text_far UnknownText_0x1c04fa
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.CheckAlreadyGotFiveGiftsToday:
|
.CheckAlreadyGotFiveGiftsToday:
|
||||||
@ -1490,23 +1490,23 @@ String_PressAToLink_BToCancel_JP:
|
|||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_ReceivedCard:
|
Text_ReceivedCard:
|
||||||
text_jump UnknownText_0x1c051a
|
text_far UnknownText_0x1c051a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_ListedCardAsNumber:
|
Text_ListedCardAsNumber:
|
||||||
text_jump UnknownText_0x1c0531
|
text_far UnknownText_0x1c0531
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_CardNotRegistered:
|
Text_CardNotRegistered:
|
||||||
text_jump UnknownText_0x1c0555
|
text_far UnknownText_0x1c0555
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_MGLinkCanceled:
|
Text_MGLinkCanceled:
|
||||||
text_jump UnknownText_0x1c0573
|
text_far UnknownText_0x1c0573
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_MGCommError:
|
Text_MGCommError:
|
||||||
text_jump UnknownText_0x1c0591
|
text_far UnknownText_0x1c0591
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Function105777:
|
Function105777:
|
||||||
|
@ -20,7 +20,7 @@ _DeleteSaveData:
|
|||||||
|
|
||||||
.Text_ClearAllSaveData:
|
.Text_ClearAllSaveData:
|
||||||
; Clear all save data?
|
; Clear all save data?
|
||||||
text_jump UnknownText_0x1c564a
|
text_far UnknownText_0x1c564a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.NoYesMenuHeader:
|
.NoYesMenuHeader:
|
||||||
|
@ -55,7 +55,7 @@ InitGender:
|
|||||||
|
|
||||||
TextJump_AreYouABoyOrAreYouAGirl:
|
TextJump_AreYouABoyOrAreYouAGirl:
|
||||||
; Are you a boy? Or are you a girl?
|
; Are you a boy? Or are you a girl?
|
||||||
text_jump Text_AreYouABoyOrAreYouAGirl
|
text_far Text_AreYouABoyOrAreYouAGirl
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
InitGenderScreen:
|
InitGenderScreen:
|
||||||
|
@ -703,11 +703,11 @@ OakSpeech:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
OakText1:
|
OakText1:
|
||||||
text_jump _OakText1
|
text_far _OakText1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakText2:
|
OakText2:
|
||||||
text_jump _OakText2
|
text_far _OakText2
|
||||||
start_asm
|
start_asm
|
||||||
ld a, WOOPER
|
ld a, WOOPER
|
||||||
call PlayMonCry
|
call PlayMonCry
|
||||||
@ -716,23 +716,23 @@ OakText2:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
OakText3:
|
OakText3:
|
||||||
text_jump _OakText3
|
text_far _OakText3
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakText4:
|
OakText4:
|
||||||
text_jump _OakText4
|
text_far _OakText4
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakText5:
|
OakText5:
|
||||||
text_jump _OakText5
|
text_far _OakText5
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakText6:
|
OakText6:
|
||||||
text_jump _OakText6
|
text_far _OakText6
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakText7:
|
OakText7:
|
||||||
text_jump _OakText7
|
text_far _OakText7
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
NamePlayer:
|
NamePlayer:
|
||||||
|
@ -282,7 +282,7 @@ MainMenu_PrintCurrentTimeAndDay:
|
|||||||
|
|
||||||
.UnusedText:
|
.UnusedText:
|
||||||
; Clock time unknown
|
; Clock time unknown
|
||||||
text_jump UnknownText_0x1c5182
|
text_far UnknownText_0x1c5182
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.PlaceCurrentDay:
|
.PlaceCurrentDay:
|
||||||
|
@ -732,7 +732,7 @@ Error_Cant_ExitMenu:
|
|||||||
jr .InfiniteLoop
|
jr .InfiniteLoop
|
||||||
|
|
||||||
.Text_NoWindowsAvailableForPopping:
|
.Text_NoWindowsAvailableForPopping:
|
||||||
text_jump UnknownText_0x1c46b7
|
text_far UnknownText_0x1c46b7
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
_InitVerticalMenuCursor::
|
_InitVerticalMenuCursor::
|
||||||
|
@ -1097,40 +1097,40 @@ Checksum:
|
|||||||
|
|
||||||
Text_WouldYouLikeToSaveTheGame:
|
Text_WouldYouLikeToSaveTheGame:
|
||||||
; Would you like to save the game?
|
; Would you like to save the game?
|
||||||
text_jump UnknownText_0x1c454b
|
text_far UnknownText_0x1c454b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_SavingDontTurnOffThePower:
|
Text_SavingDontTurnOffThePower:
|
||||||
; SAVING… DON'T TURN OFF THE POWER.
|
; SAVING… DON'T TURN OFF THE POWER.
|
||||||
text_jump UnknownText_0x1c456d
|
text_far UnknownText_0x1c456d
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_PlayerSavedTheGame:
|
Text_PlayerSavedTheGame:
|
||||||
; saved the game.
|
; saved the game.
|
||||||
text_jump UnknownText_0x1c4590
|
text_far UnknownText_0x1c4590
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_AlreadyASaveFile:
|
Text_AlreadyASaveFile:
|
||||||
; There is already a save file. Is it OK to overwrite?
|
; There is already a save file. Is it OK to overwrite?
|
||||||
text_jump UnknownText_0x1c45a3
|
text_far UnknownText_0x1c45a3
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_AnotherSaveFile:
|
Text_AnotherSaveFile:
|
||||||
; There is another save file. Is it OK to overwrite?
|
; There is another save file. Is it OK to overwrite?
|
||||||
text_jump UnknownText_0x1c45d9
|
text_far UnknownText_0x1c45d9
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_SaveFileCorrupted:
|
Text_SaveFileCorrupted:
|
||||||
; The save file is corrupted!
|
; The save file is corrupted!
|
||||||
text_jump UnknownText_0x1c460d
|
text_far UnknownText_0x1c460d
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_SaveOnBoxSwitch:
|
Text_SaveOnBoxSwitch:
|
||||||
; When you change a #MON BOX, data will be saved. OK?
|
; When you change a #MON BOX, data will be saved. OK?
|
||||||
text_jump UnknownText_0x1c462a
|
text_far UnknownText_0x1c462a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_SaveOnMoveMonWOMail:
|
Text_SaveOnMoveMonWOMail:
|
||||||
; Each time you move a #MON, data will be saved. OK?
|
; Each time you move a #MON, data will be saved. OK?
|
||||||
text_jump UnknownText_0x1c465f
|
text_far UnknownText_0x1c465f
|
||||||
db "@"
|
db "@"
|
||||||
|
@ -425,7 +425,7 @@ StartMenu_Quit:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
.EndTheContestText:
|
.EndTheContestText:
|
||||||
text_jump UnknownText_0x1c1a6c
|
text_far UnknownText_0x1c1a6c
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
StartMenu_Save:
|
StartMenu_Save:
|
||||||
|
@ -25,7 +25,7 @@ InitDisplayForHallOfFame:
|
|||||||
|
|
||||||
.SavingRecordDontTurnOff:
|
.SavingRecordDontTurnOff:
|
||||||
; SAVING RECORD… DON'T TURN OFF!
|
; SAVING RECORD… DON'T TURN OFF!
|
||||||
text_jump UnknownText_0x1bd39e
|
text_far UnknownText_0x1bd39e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
InitDisplayForRedCredits:
|
InitDisplayForRedCredits:
|
||||||
|
@ -1191,12 +1191,12 @@ TradeAnim_SentToOTText:
|
|||||||
|
|
||||||
.Text_WasSentTo:
|
.Text_WasSentTo:
|
||||||
; was sent to @ .
|
; was sent to @ .
|
||||||
text_jump UnknownText_0x1bc6e9
|
text_far UnknownText_0x1bc6e9
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_MonName:
|
.Text_MonName:
|
||||||
;
|
;
|
||||||
text_jump UnknownText_0x1bc701
|
text_far UnknownText_0x1bc701
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TradeAnim_OTBidsFarewell:
|
TradeAnim_OTBidsFarewell:
|
||||||
@ -1211,12 +1211,12 @@ TradeAnim_OTBidsFarewell:
|
|||||||
|
|
||||||
.Text_BidsFarewellToMon:
|
.Text_BidsFarewellToMon:
|
||||||
; bids farewell to
|
; bids farewell to
|
||||||
text_jump UnknownText_0x1bc703
|
text_far UnknownText_0x1bc703
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_MonName:
|
.Text_MonName:
|
||||||
; .
|
; .
|
||||||
text_jump UnknownText_0x1bc719
|
text_far UnknownText_0x1bc719
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TradeAnim_TakeCareOfText:
|
TradeAnim_TakeCareOfText:
|
||||||
@ -1234,7 +1234,7 @@ TradeAnim_TakeCareOfText:
|
|||||||
|
|
||||||
.Text_TakeGoodCareOfMon:
|
.Text_TakeGoodCareOfMon:
|
||||||
; Take good care of @ .
|
; Take good care of @ .
|
||||||
text_jump UnknownText_0x1bc71f
|
text_far UnknownText_0x1bc71f
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TradeAnim_OTSendsText1:
|
TradeAnim_OTSendsText1:
|
||||||
@ -1251,12 +1251,12 @@ TradeAnim_OTSendsText1:
|
|||||||
|
|
||||||
.Text_ForYourMon:
|
.Text_ForYourMon:
|
||||||
; For @ 's @ ,
|
; For @ 's @ ,
|
||||||
text_jump UnknownText_0x1bc739
|
text_far UnknownText_0x1bc739
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_OTSends:
|
.Text_OTSends:
|
||||||
; sends @ .
|
; sends @ .
|
||||||
text_jump UnknownText_0x1bc74c
|
text_far UnknownText_0x1bc74c
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TradeAnim_OTSendsText2:
|
TradeAnim_OTSendsText2:
|
||||||
@ -1273,12 +1273,12 @@ TradeAnim_OTSendsText2:
|
|||||||
|
|
||||||
.Text_WillTrade:
|
.Text_WillTrade:
|
||||||
; will trade @ @
|
; will trade @ @
|
||||||
text_jump UnknownText_0x1bc75e
|
text_far UnknownText_0x1bc75e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_ForYourMon:
|
.Text_ForYourMon:
|
||||||
; for @ 's @ .
|
; for @ 's @ .
|
||||||
text_jump UnknownText_0x1bc774
|
text_far UnknownText_0x1bc774
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TradeAnim_Wait80Frames:
|
TradeAnim_Wait80Frames:
|
||||||
|
@ -384,7 +384,7 @@ PopulateDecoCategoryMenu:
|
|||||||
|
|
||||||
.Text_nothing_to_choose:
|
.Text_nothing_to_choose:
|
||||||
; There's nothing to choose.
|
; There's nothing to choose.
|
||||||
text_jump UnknownText_0x1bc471
|
text_far UnknownText_0x1bc471
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.NonscrollingMenuHeader:
|
.NonscrollingMenuHeader:
|
||||||
@ -806,7 +806,7 @@ DecoAction_SetItUp_Ornament:
|
|||||||
|
|
||||||
UnknownText_0x26e41:
|
UnknownText_0x26e41:
|
||||||
; Which side do you want to put it on?
|
; Which side do you want to put it on?
|
||||||
text_jump UnknownText_0x1bc48c
|
text_far UnknownText_0x1bc48c
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
DecoAction_PutItAway_Ornament:
|
DecoAction_PutItAway_Ornament:
|
||||||
@ -832,7 +832,7 @@ DecoAction_PutItAway_Ornament:
|
|||||||
|
|
||||||
DecoText_WhichSide:
|
DecoText_WhichSide:
|
||||||
; Which side do you want to put away?
|
; Which side do you want to put away?
|
||||||
text_jump UnknownText_0x1bc4b2
|
text_far UnknownText_0x1bc4b2
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
DecoAction_AskWhichSide:
|
DecoAction_AskWhichSide:
|
||||||
@ -885,27 +885,27 @@ MenuData_0x26eb3:
|
|||||||
|
|
||||||
DecoText_PutAwayTheDeco:
|
DecoText_PutAwayTheDeco:
|
||||||
; Put away the @ .
|
; Put away the @ .
|
||||||
text_jump UnknownText_0x1bc4d7
|
text_far UnknownText_0x1bc4d7
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
DecoText_NothingToPutAway:
|
DecoText_NothingToPutAway:
|
||||||
; There's nothing to put away.
|
; There's nothing to put away.
|
||||||
text_jump UnknownText_0x1bc4ec
|
text_far UnknownText_0x1bc4ec
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
DecoText_SetUpTheDeco:
|
DecoText_SetUpTheDeco:
|
||||||
; Set up the @ .
|
; Set up the @ .
|
||||||
text_jump UnknownText_0x1bc509
|
text_far UnknownText_0x1bc509
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
DecoText_PutAwayAndSetUp:
|
DecoText_PutAwayAndSetUp:
|
||||||
; Put away the @ and set up the @ .
|
; Put away the @ and set up the @ .
|
||||||
text_jump UnknownText_0x1bc51c
|
text_far UnknownText_0x1bc51c
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
DecoText_AlreadySetUp:
|
DecoText_AlreadySetUp:
|
||||||
; That's already set up.
|
; That's already set up.
|
||||||
text_jump UnknownText_0x1bc546
|
text_far UnknownText_0x1bc546
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
GetDecorationName_c_de:
|
GetDecorationName_c_de:
|
||||||
@ -1013,7 +1013,7 @@ DecorationDesc_TownMapPoster:
|
|||||||
|
|
||||||
.TownMapText:
|
.TownMapText:
|
||||||
; It's the TOWN MAP.
|
; It's the TOWN MAP.
|
||||||
text_jump UnknownText_0x1bc55d
|
text_far UnknownText_0x1bc55d
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
DecorationDesc_PikachuPoster:
|
DecorationDesc_PikachuPoster:
|
||||||
@ -1021,7 +1021,7 @@ DecorationDesc_PikachuPoster:
|
|||||||
|
|
||||||
.PikaPosterText:
|
.PikaPosterText:
|
||||||
; It's a poster of a cute PIKACHU.
|
; It's a poster of a cute PIKACHU.
|
||||||
text_jump UnknownText_0x1bc570
|
text_far UnknownText_0x1bc570
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
DecorationDesc_ClefairyPoster:
|
DecorationDesc_ClefairyPoster:
|
||||||
@ -1029,7 +1029,7 @@ DecorationDesc_ClefairyPoster:
|
|||||||
|
|
||||||
.ClefairyPosterText:
|
.ClefairyPosterText:
|
||||||
; It's a poster of a cute CLEFAIRY.
|
; It's a poster of a cute CLEFAIRY.
|
||||||
text_jump UnknownText_0x1bc591
|
text_far UnknownText_0x1bc591
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
DecorationDesc_JigglypuffPoster:
|
DecorationDesc_JigglypuffPoster:
|
||||||
@ -1037,7 +1037,7 @@ DecorationDesc_JigglypuffPoster:
|
|||||||
|
|
||||||
.JigglypuffPosterText:
|
.JigglypuffPosterText:
|
||||||
; It's a poster of a cute JIGGLYPUFF.
|
; It's a poster of a cute JIGGLYPUFF.
|
||||||
text_jump UnknownText_0x1bc5b3
|
text_far UnknownText_0x1bc5b3
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
DecorationDesc_NullPoster:
|
DecorationDesc_NullPoster:
|
||||||
@ -1068,7 +1068,7 @@ DecorationDesc_OrnamentOrConsole:
|
|||||||
|
|
||||||
.OrnamentConsoleText:
|
.OrnamentConsoleText:
|
||||||
; It's an adorable @ .
|
; It's an adorable @ .
|
||||||
text_jump UnknownText_0x1bc5d7
|
text_far UnknownText_0x1bc5d7
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
DecorationDesc_GiantOrnament:
|
DecorationDesc_GiantOrnament:
|
||||||
@ -1081,7 +1081,7 @@ DecorationDesc_GiantOrnament:
|
|||||||
|
|
||||||
.BigDollText:
|
.BigDollText:
|
||||||
; A giant doll! It's fluffy and cuddly.
|
; A giant doll! It's fluffy and cuddly.
|
||||||
text_jump UnknownText_0x1bc5ef
|
text_far UnknownText_0x1bc5ef
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
ToggleMaptileDecorations:
|
ToggleMaptileDecorations:
|
||||||
|
@ -536,7 +536,7 @@ GiveItemScript:
|
|||||||
end
|
end
|
||||||
|
|
||||||
ReceivedItemText:
|
ReceivedItemText:
|
||||||
text_jump UnknownText_0x1c4719
|
text_far UnknownText_0x1c4719
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Script_verbosegiveitem2:
|
Script_verbosegiveitem2:
|
||||||
@ -628,11 +628,11 @@ CurItemName:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
PutItemInPocketText:
|
PutItemInPocketText:
|
||||||
text_jump UnknownText_0x1c472c
|
text_far UnknownText_0x1c472c
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PocketIsFullText:
|
PocketIsFullText:
|
||||||
text_jump UnknownText_0x1c474b
|
text_far UnknownText_0x1c474b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Script_pokemart:
|
Script_pokemart:
|
||||||
|
@ -12,7 +12,7 @@ SelectMenu::
|
|||||||
jp CloseText
|
jp CloseText
|
||||||
|
|
||||||
ItemMayBeRegisteredText:
|
ItemMayBeRegisteredText:
|
||||||
text_jump UnknownText_0x1c1cf3
|
text_far UnknownText_0x1c1cf3
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
CheckRegisteredItem:
|
CheckRegisteredItem:
|
||||||
|
@ -834,7 +834,7 @@ RandomUnseenWildMon:
|
|||||||
|
|
||||||
.SawRareMonText:
|
.SawRareMonText:
|
||||||
; I just saw some rare @ in @ . I'll call you if I see another rare #MON, OK?
|
; I just saw some rare @ in @ . I'll call you if I see another rare #MON, OK?
|
||||||
text_jump UnknownText_0x1bd34b
|
text_far UnknownText_0x1bd34b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
RandomPhoneWildMon:
|
RandomPhoneWildMon:
|
||||||
|
@ -416,7 +416,7 @@ WrongNumber:
|
|||||||
end
|
end
|
||||||
.text
|
.text
|
||||||
; Huh? Sorry, wrong number!
|
; Huh? Sorry, wrong number!
|
||||||
text_jump UnknownText_0x1c5565
|
text_far UnknownText_0x1c5565
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Script_ReceivePhoneCall:
|
Script_ReceivePhoneCall:
|
||||||
@ -541,7 +541,7 @@ HangUp_Beep:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
UnknownText_0x9032a:
|
UnknownText_0x9032a:
|
||||||
text_jump UnknownText_0x1c5580
|
text_far UnknownText_0x1c5580
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
HangUp_BoopOn:
|
HangUp_BoopOn:
|
||||||
@ -550,7 +550,7 @@ HangUp_BoopOn:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
UnknownText_0x90336:
|
UnknownText_0x90336:
|
||||||
text_jump UnknownText_0x1c5588
|
text_far UnknownText_0x1c5588
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
HangUp_BoopOff:
|
HangUp_BoopOff:
|
||||||
@ -710,7 +710,7 @@ UnknownScript_0x90657:
|
|||||||
|
|
||||||
UnknownText_0x9065b:
|
UnknownText_0x9065b:
|
||||||
; That number is out of the area.
|
; That number is out of the area.
|
||||||
text_jump UnknownText_0x1c558b
|
text_far UnknownText_0x1c558b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PhoneScript_JustTalkToThem:
|
PhoneScript_JustTalkToThem:
|
||||||
@ -719,7 +719,7 @@ PhoneScript_JustTalkToThem:
|
|||||||
|
|
||||||
UnknownText_0x90664:
|
UnknownText_0x90664:
|
||||||
; Just go talk to that person!
|
; Just go talk to that person!
|
||||||
text_jump UnknownText_0x1c55ac
|
text_far UnknownText_0x1c55ac
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownScript_0x90669:
|
UnknownScript_0x90669:
|
||||||
@ -728,5 +728,5 @@ UnknownScript_0x90669:
|
|||||||
|
|
||||||
UnknownText_0x9066d:
|
UnknownText_0x9066d:
|
||||||
; Thank you!
|
; Thank you!
|
||||||
text_jump UnknownText_0x1c55ca
|
text_far UnknownText_0x1c55ca
|
||||||
db "@"
|
db "@"
|
||||||
|
@ -532,7 +532,7 @@ Pokegear_UpdateClock:
|
|||||||
db "ごご@"
|
db "ごご@"
|
||||||
|
|
||||||
.DayText:
|
.DayText:
|
||||||
text_jump UnknownText_0x1c5821
|
text_far UnknownText_0x1c5821
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PokegearMap_CheckRegion:
|
PokegearMap_CheckRegion:
|
||||||
@ -936,12 +936,12 @@ PokegearPhone_MakePhoneCall:
|
|||||||
|
|
||||||
.dotdotdot
|
.dotdotdot
|
||||||
;
|
;
|
||||||
text_jump UnknownText_0x1c5824
|
text_far UnknownText_0x1c5824
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.OutOfServiceArea:
|
.OutOfServiceArea:
|
||||||
; You're out of the service area.
|
; You're out of the service area.
|
||||||
text_jump UnknownText_0x1c5827
|
text_far UnknownText_0x1c5827
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PokegearPhone_FinishPhoneCall:
|
PokegearPhone_FinishPhoneCall:
|
||||||
@ -1353,17 +1353,17 @@ Pokegear_LoadTilemapRLE:
|
|||||||
|
|
||||||
PokegearText_WhomToCall:
|
PokegearText_WhomToCall:
|
||||||
; Whom do you want to call?
|
; Whom do you want to call?
|
||||||
text_jump UnknownText_0x1c5847
|
text_far UnknownText_0x1c5847
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PokegearText_PressAnyButtonToExit:
|
PokegearText_PressAnyButtonToExit:
|
||||||
; Press any button to exit.
|
; Press any button to exit.
|
||||||
text_jump UnknownText_0x1c5862
|
text_far UnknownText_0x1c5862
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PokegearText_DeleteStoredNumber:
|
PokegearText_DeleteStoredNumber:
|
||||||
; Delete this stored phone number?
|
; Delete this stored phone number?
|
||||||
text_jump UnknownText_0x1c587d
|
text_far UnknownText_0x1c587d
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PokegearSpritesGFX:
|
PokegearSpritesGFX:
|
||||||
|
@ -305,32 +305,32 @@ OaksPKMNTalk6:
|
|||||||
|
|
||||||
OPT_IntroText1:
|
OPT_IntroText1:
|
||||||
; MARY: PROF.OAK'S
|
; MARY: PROF.OAK'S
|
||||||
text_jump _OPT_IntroText1
|
text_far _OPT_IntroText1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OPT_IntroText2:
|
OPT_IntroText2:
|
||||||
; #MON TALK!
|
; #MON TALK!
|
||||||
text_jump _OPT_IntroText2
|
text_far _OPT_IntroText2
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OPT_IntroText3:
|
OPT_IntroText3:
|
||||||
; With me, MARY!
|
; With me, MARY!
|
||||||
text_jump _OPT_IntroText3
|
text_far _OPT_IntroText3
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OPT_OakText1:
|
OPT_OakText1:
|
||||||
; OAK: @ @
|
; OAK: @ @
|
||||||
text_jump _OPT_OakText1
|
text_far _OPT_OakText1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OPT_OakText2:
|
OPT_OakText2:
|
||||||
; may be seen around
|
; may be seen around
|
||||||
text_jump _OPT_OakText2
|
text_far _OPT_OakText2
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OPT_OakText3:
|
OPT_OakText3:
|
||||||
; @ .
|
; @ .
|
||||||
text_jump _OPT_OakText3
|
text_far _OPT_OakText3
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OaksPKMNTalk7:
|
OaksPKMNTalk7:
|
||||||
@ -343,7 +343,7 @@ OaksPKMNTalk7:
|
|||||||
|
|
||||||
OPT_MaryText1:
|
OPT_MaryText1:
|
||||||
; MARY: @ 's
|
; MARY: @ 's
|
||||||
text_jump _OPT_MaryText1
|
text_far _OPT_MaryText1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OaksPKMNTalk8:
|
OaksPKMNTalk8:
|
||||||
@ -383,82 +383,82 @@ OaksPKMNTalk8:
|
|||||||
|
|
||||||
.sweetadorably
|
.sweetadorably
|
||||||
; sweet and adorably
|
; sweet and adorably
|
||||||
text_jump OPT_SweetAdorably
|
text_far OPT_SweetAdorably
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.wigglyslickly
|
.wigglyslickly
|
||||||
; wiggly and slickly
|
; wiggly and slickly
|
||||||
text_jump OPT_WigglySlickly
|
text_far OPT_WigglySlickly
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.aptlynamed
|
.aptlynamed
|
||||||
; aptly named and
|
; aptly named and
|
||||||
text_jump OPT_AptlyNamed
|
text_far OPT_AptlyNamed
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.undeniablykindof
|
.undeniablykindof
|
||||||
; undeniably kind of
|
; undeniably kind of
|
||||||
text_jump OPT_UndeniablyKindOf
|
text_far OPT_UndeniablyKindOf
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.unbearably
|
.unbearably
|
||||||
; so, so unbearably
|
; so, so unbearably
|
||||||
text_jump OPT_Unbearably
|
text_far OPT_Unbearably
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.wowimpressively
|
.wowimpressively
|
||||||
; wow, impressively
|
; wow, impressively
|
||||||
text_jump OPT_WowImpressively
|
text_far OPT_WowImpressively
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.almostpoisonously
|
.almostpoisonously
|
||||||
; almost poisonously
|
; almost poisonously
|
||||||
text_jump OPT_AlmostPoisonously
|
text_far OPT_AlmostPoisonously
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.sensually
|
.sensually
|
||||||
; ooh, so sensually
|
; ooh, so sensually
|
||||||
text_jump OPT_Sensually
|
text_far OPT_Sensually
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.mischievously
|
.mischievously
|
||||||
; so mischievously
|
; so mischievously
|
||||||
text_jump OPT_Mischievously
|
text_far OPT_Mischievously
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.topically
|
.topically
|
||||||
; so very topically
|
; so very topically
|
||||||
text_jump OPT_Topically
|
text_far OPT_Topically
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.addictively
|
.addictively
|
||||||
; sure addictively
|
; sure addictively
|
||||||
text_jump OPT_Addictively
|
text_far OPT_Addictively
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.looksinwater
|
.looksinwater
|
||||||
; looks in water is
|
; looks in water is
|
||||||
text_jump OPT_LooksInWater
|
text_far OPT_LooksInWater
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.evolutionmustbe
|
.evolutionmustbe
|
||||||
; evolution must be
|
; evolution must be
|
||||||
text_jump OPT_EvolutionMustBe
|
text_far OPT_EvolutionMustBe
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.provocatively
|
.provocatively
|
||||||
; provocatively
|
; provocatively
|
||||||
text_jump OPT_Provocatively
|
text_far OPT_Provocatively
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.flippedout
|
.flippedout
|
||||||
; so flipped out and
|
; so flipped out and
|
||||||
text_jump OPT_FlippedOut
|
text_far OPT_FlippedOut
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.heartmeltingly
|
.heartmeltingly
|
||||||
; heart-meltingly
|
; heart-meltingly
|
||||||
text_jump OPT_HeartMeltingly
|
text_far OPT_HeartMeltingly
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OaksPKMNTalk9:
|
OaksPKMNTalk9:
|
||||||
@ -506,82 +506,82 @@ OaksPKMNTalk9:
|
|||||||
|
|
||||||
.cute
|
.cute
|
||||||
; cute.
|
; cute.
|
||||||
text_jump OPT_Cute
|
text_far OPT_Cute
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.weird
|
.weird
|
||||||
; weird.
|
; weird.
|
||||||
text_jump OPT_Weird
|
text_far OPT_Weird
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.pleasant
|
.pleasant
|
||||||
; pleasant.
|
; pleasant.
|
||||||
text_jump OPT_Pleasant
|
text_far OPT_Pleasant
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.boldsortof
|
.boldsortof
|
||||||
; bold, sort of.
|
; bold, sort of.
|
||||||
text_jump OPT_BoldSortOf
|
text_far OPT_BoldSortOf
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.frightening
|
.frightening
|
||||||
; frightening.
|
; frightening.
|
||||||
text_jump OPT_Frightening
|
text_far OPT_Frightening
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.suavedebonair
|
.suavedebonair
|
||||||
; suave & debonair!
|
; suave & debonair!
|
||||||
text_jump OPT_SuaveDebonair
|
text_far OPT_SuaveDebonair
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.powerful
|
.powerful
|
||||||
; powerful.
|
; powerful.
|
||||||
text_jump OPT_Powerful
|
text_far OPT_Powerful
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.exciting
|
.exciting
|
||||||
; exciting.
|
; exciting.
|
||||||
text_jump OPT_Exciting
|
text_far OPT_Exciting
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.groovy
|
.groovy
|
||||||
; groovy!
|
; groovy!
|
||||||
text_jump OPT_Groovy
|
text_far OPT_Groovy
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.inspiring
|
.inspiring
|
||||||
; inspiring.
|
; inspiring.
|
||||||
text_jump OPT_Inspiring
|
text_far OPT_Inspiring
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.friendly
|
.friendly
|
||||||
; friendly.
|
; friendly.
|
||||||
text_jump OPT_Friendly
|
text_far OPT_Friendly
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.hothothot
|
.hothothot
|
||||||
; hot, hot, hot!
|
; hot, hot, hot!
|
||||||
text_jump OPT_HotHotHot
|
text_far OPT_HotHotHot
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.stimulating
|
.stimulating
|
||||||
; stimulating.
|
; stimulating.
|
||||||
text_jump OPT_Stimulating
|
text_far OPT_Stimulating
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.guarded
|
.guarded
|
||||||
; guarded.
|
; guarded.
|
||||||
text_jump OPT_Guarded
|
text_far OPT_Guarded
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.lovely
|
.lovely
|
||||||
; lovely.
|
; lovely.
|
||||||
text_jump OPT_Lovely
|
text_far OPT_Lovely
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.speedy
|
.speedy
|
||||||
; speedy.
|
; speedy.
|
||||||
text_jump OPT_Speedy
|
text_far OPT_Speedy
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OaksPKMNTalk10:
|
OaksPKMNTalk10:
|
||||||
@ -599,7 +599,7 @@ OaksPKMNTalk10:
|
|||||||
|
|
||||||
OPT_PokemonChannelText:
|
OPT_PokemonChannelText:
|
||||||
; #MON
|
; #MON
|
||||||
text_jump _OPT_PokemonChannelText
|
text_far _OPT_PokemonChannelText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OPT_RestartText:
|
OPT_RestartText:
|
||||||
@ -849,7 +849,7 @@ CopyDexEntryPart2:
|
|||||||
|
|
||||||
PokedexShowText:
|
PokedexShowText:
|
||||||
; @ @
|
; @ @
|
||||||
text_jump _PokedexShowText
|
text_far _PokedexShowText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BenMonMusic1:
|
BenMonMusic1:
|
||||||
@ -921,52 +921,52 @@ StartPokemonMusicChannel:
|
|||||||
|
|
||||||
BenIntroText1:
|
BenIntroText1:
|
||||||
; BEN: #MON MUSIC
|
; BEN: #MON MUSIC
|
||||||
text_jump _BenIntroText1
|
text_far _BenIntroText1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BenIntroText2:
|
BenIntroText2:
|
||||||
; CHANNEL!
|
; CHANNEL!
|
||||||
text_jump _BenIntroText2
|
text_far _BenIntroText2
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BenIntroText3:
|
BenIntroText3:
|
||||||
; It's me, DJ BEN!
|
; It's me, DJ BEN!
|
||||||
text_jump _BenIntroText3
|
text_far _BenIntroText3
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
FernIntroText1:
|
FernIntroText1:
|
||||||
; FERN: #MUSIC!
|
; FERN: #MUSIC!
|
||||||
text_jump _FernIntroText1
|
text_far _FernIntroText1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
FernIntroMusic2:
|
FernIntroMusic2:
|
||||||
; With DJ FERN!
|
; With DJ FERN!
|
||||||
text_jump _FernIntroText2
|
text_far _FernIntroText2
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BenFernText1:
|
BenFernText1:
|
||||||
; Today's @ ,
|
; Today's @ ,
|
||||||
text_jump _BenFernText1
|
text_far _BenFernText1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BenFernText2A:
|
BenFernText2A:
|
||||||
; so let us jam to
|
; so let us jam to
|
||||||
text_jump _BenFernText2A
|
text_far _BenFernText2A
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BenFernText2B:
|
BenFernText2B:
|
||||||
; so chill out to
|
; so chill out to
|
||||||
text_jump _BenFernText2B
|
text_far _BenFernText2B
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BenFernText3A:
|
BenFernText3A:
|
||||||
; #MON March!
|
; #MON March!
|
||||||
text_jump _BenFernText3A
|
text_far _BenFernText3A
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BenFernText3B:
|
BenFernText3B:
|
||||||
; #MON Lullaby!
|
; #MON Lullaby!
|
||||||
text_jump _BenFernText3B
|
text_far _BenFernText3B
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
LuckyNumberShow1:
|
LuckyNumberShow1:
|
||||||
@ -1062,67 +1062,67 @@ LuckyNumberShow15:
|
|||||||
|
|
||||||
LC_Text1:
|
LC_Text1:
|
||||||
; REED: Yeehaw! How
|
; REED: Yeehaw! How
|
||||||
text_jump _LC_Text1
|
text_far _LC_Text1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
LC_Text2:
|
LC_Text2:
|
||||||
; y'all doin' now?
|
; y'all doin' now?
|
||||||
text_jump _LC_Text2
|
text_far _LC_Text2
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
LC_Text3:
|
LC_Text3:
|
||||||
; Whether you're up
|
; Whether you're up
|
||||||
text_jump _LC_Text3
|
text_far _LC_Text3
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
LC_Text4:
|
LC_Text4:
|
||||||
; or way down low,
|
; or way down low,
|
||||||
text_jump _LC_Text4
|
text_far _LC_Text4
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
LC_Text5:
|
LC_Text5:
|
||||||
; don't you miss the
|
; don't you miss the
|
||||||
text_jump _LC_Text5
|
text_far _LC_Text5
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
LC_Text6:
|
LC_Text6:
|
||||||
; LUCKY NUMBER SHOW!
|
; LUCKY NUMBER SHOW!
|
||||||
text_jump _LC_Text6
|
text_far _LC_Text6
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
LC_Text7:
|
LC_Text7:
|
||||||
; This week's Lucky
|
; This week's Lucky
|
||||||
text_jump _LC_Text7
|
text_far _LC_Text7
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
LC_Text8:
|
LC_Text8:
|
||||||
; Number is @ !
|
; Number is @ !
|
||||||
text_jump _LC_Text8
|
text_far _LC_Text8
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
LC_Text9:
|
LC_Text9:
|
||||||
; I'll repeat that!
|
; I'll repeat that!
|
||||||
text_jump _LC_Text9
|
text_far _LC_Text9
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
LC_Text10:
|
LC_Text10:
|
||||||
; Match it and go to
|
; Match it and go to
|
||||||
text_jump _LC_Text10
|
text_far _LC_Text10
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
LC_Text11:
|
LC_Text11:
|
||||||
; the RADIO TOWER!
|
; the RADIO TOWER!
|
||||||
text_jump _LC_Text11
|
text_far _LC_Text11
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
LC_DragText1:
|
LC_DragText1:
|
||||||
; …Repeating myself
|
; …Repeating myself
|
||||||
text_jump _LC_DragText1
|
text_far _LC_DragText1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
LC_DragText2:
|
LC_DragText2:
|
||||||
; gets to be a drag…
|
; gets to be a drag…
|
||||||
text_jump _LC_DragText2
|
text_far _LC_DragText2
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PeoplePlaces1:
|
PeoplePlaces1:
|
||||||
@ -1148,17 +1148,17 @@ PeoplePlaces3:
|
|||||||
|
|
||||||
PnP_Text1:
|
PnP_Text1:
|
||||||
; PLACES AND PEOPLE!
|
; PLACES AND PEOPLE!
|
||||||
text_jump _PnP_Text1
|
text_far _PnP_Text1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PnP_Text2:
|
PnP_Text2:
|
||||||
; Brought to you by
|
; Brought to you by
|
||||||
text_jump _PnP_Text2
|
text_far _PnP_Text2
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PnP_Text3:
|
PnP_Text3:
|
||||||
; me, DJ LILY!
|
; me, DJ LILY!
|
||||||
text_jump _PnP_Text3
|
text_far _PnP_Text3
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PeoplePlaces4: ; People
|
PeoplePlaces4: ; People
|
||||||
@ -1200,7 +1200,7 @@ INCLUDE "data/radio/pnp_hidden_people.asm"
|
|||||||
|
|
||||||
PnP_Text4:
|
PnP_Text4:
|
||||||
; @ @ @
|
; @ @ @
|
||||||
text_jump _PnP_Text4
|
text_far _PnP_Text4
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PeoplePlaces5:
|
PeoplePlaces5:
|
||||||
@ -1249,82 +1249,82 @@ PeoplePlaces5:
|
|||||||
|
|
||||||
PnP_cute:
|
PnP_cute:
|
||||||
; is cute.
|
; is cute.
|
||||||
text_jump _PnP_cute
|
text_far _PnP_cute
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PnP_lazy:
|
PnP_lazy:
|
||||||
; is sort of lazy.
|
; is sort of lazy.
|
||||||
text_jump _PnP_lazy
|
text_far _PnP_lazy
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PnP_happy:
|
PnP_happy:
|
||||||
; is always happy.
|
; is always happy.
|
||||||
text_jump _PnP_happy
|
text_far _PnP_happy
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PnP_noisy:
|
PnP_noisy:
|
||||||
; is quite noisy.
|
; is quite noisy.
|
||||||
text_jump _PnP_noisy
|
text_far _PnP_noisy
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PnP_precocious:
|
PnP_precocious:
|
||||||
; is precocious.
|
; is precocious.
|
||||||
text_jump _PnP_precocious
|
text_far _PnP_precocious
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PnP_bold:
|
PnP_bold:
|
||||||
; is somewhat bold.
|
; is somewhat bold.
|
||||||
text_jump _PnP_bold
|
text_far _PnP_bold
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PnP_picky:
|
PnP_picky:
|
||||||
; is too picky!
|
; is too picky!
|
||||||
text_jump _PnP_picky
|
text_far _PnP_picky
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PnP_sortofok:
|
PnP_sortofok:
|
||||||
; is sort of OK.
|
; is sort of OK.
|
||||||
text_jump _PnP_sortofok
|
text_far _PnP_sortofok
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PnP_soso:
|
PnP_soso:
|
||||||
; is just so-so.
|
; is just so-so.
|
||||||
text_jump _PnP_soso
|
text_far _PnP_soso
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PnP_great:
|
PnP_great:
|
||||||
; is actually great.
|
; is actually great.
|
||||||
text_jump _PnP_great
|
text_far _PnP_great
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PnP_mytype:
|
PnP_mytype:
|
||||||
; is just my type.
|
; is just my type.
|
||||||
text_jump _PnP_mytype
|
text_far _PnP_mytype
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PnP_cool:
|
PnP_cool:
|
||||||
; is so cool, no?
|
; is so cool, no?
|
||||||
text_jump _PnP_cool
|
text_far _PnP_cool
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PnP_inspiring:
|
PnP_inspiring:
|
||||||
; is inspiring!
|
; is inspiring!
|
||||||
text_jump _PnP_inspiring
|
text_far _PnP_inspiring
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PnP_weird:
|
PnP_weird:
|
||||||
; is kind of weird.
|
; is kind of weird.
|
||||||
text_jump _PnP_weird
|
text_far _PnP_weird
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PnP_rightforme:
|
PnP_rightforme:
|
||||||
; is right for me?
|
; is right for me?
|
||||||
text_jump _PnP_rightforme
|
text_far _PnP_rightforme
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PnP_odd:
|
PnP_odd:
|
||||||
; is definitely odd!
|
; is definitely odd!
|
||||||
text_jump _PnP_odd
|
text_far _PnP_odd
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PeoplePlaces6: ; Places
|
PeoplePlaces6: ; Places
|
||||||
@ -1350,7 +1350,7 @@ INCLUDE "data/radio/pnp_hidden_places.asm"
|
|||||||
|
|
||||||
PnP_Text5:
|
PnP_Text5:
|
||||||
; @ @
|
; @ @
|
||||||
text_jump _PnP_Text5
|
text_far _PnP_Text5
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PeoplePlaces7:
|
PeoplePlaces7:
|
||||||
@ -1451,52 +1451,52 @@ RocketRadio10:
|
|||||||
|
|
||||||
RocketRadioText1:
|
RocketRadioText1:
|
||||||
; … …Ahem, we are
|
; … …Ahem, we are
|
||||||
text_jump _RocketRadioText1
|
text_far _RocketRadioText1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
RocketRadioText2:
|
RocketRadioText2:
|
||||||
; TEAM ROCKET!
|
; TEAM ROCKET!
|
||||||
text_jump _RocketRadioText2
|
text_far _RocketRadioText2
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
RocketRadioText3:
|
RocketRadioText3:
|
||||||
; After three years
|
; After three years
|
||||||
text_jump _RocketRadioText3
|
text_far _RocketRadioText3
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
RocketRadioText4:
|
RocketRadioText4:
|
||||||
; of preparation, we
|
; of preparation, we
|
||||||
text_jump _RocketRadioText4
|
text_far _RocketRadioText4
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
RocketRadioText5:
|
RocketRadioText5:
|
||||||
; have risen again
|
; have risen again
|
||||||
text_jump _RocketRadioText5
|
text_far _RocketRadioText5
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
RocketRadioText6:
|
RocketRadioText6:
|
||||||
; from the ashes!
|
; from the ashes!
|
||||||
text_jump _RocketRadioText6
|
text_far _RocketRadioText6
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
RocketRadioText7:
|
RocketRadioText7:
|
||||||
; GIOVANNI! @ Can you
|
; GIOVANNI! @ Can you
|
||||||
text_jump _RocketRadioText7
|
text_far _RocketRadioText7
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
RocketRadioText8:
|
RocketRadioText8:
|
||||||
; hear?@ We did it!
|
; hear?@ We did it!
|
||||||
text_jump _RocketRadioText8
|
text_far _RocketRadioText8
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
RocketRadioText9:
|
RocketRadioText9:
|
||||||
; @ Where is our boss?
|
; @ Where is our boss?
|
||||||
text_jump _RocketRadioText9
|
text_far _RocketRadioText9
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
RocketRadioText10:
|
RocketRadioText10:
|
||||||
; @ Is he listening?
|
; @ Is he listening?
|
||||||
text_jump _RocketRadioText10
|
text_far _RocketRadioText10
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PokeFluteRadio:
|
PokeFluteRadio:
|
||||||
@ -1808,92 +1808,92 @@ BuenasPasswordChannelName:
|
|||||||
|
|
||||||
BuenaRadioText1:
|
BuenaRadioText1:
|
||||||
; BUENA: BUENA here!
|
; BUENA: BUENA here!
|
||||||
text_jump _BuenaRadioText1
|
text_far _BuenaRadioText1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BuenaRadioText2:
|
BuenaRadioText2:
|
||||||
; Today's password!
|
; Today's password!
|
||||||
text_jump _BuenaRadioText2
|
text_far _BuenaRadioText2
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BuenaRadioText3:
|
BuenaRadioText3:
|
||||||
; Let me think… It's
|
; Let me think… It's
|
||||||
text_jump _BuenaRadioText3
|
text_far _BuenaRadioText3
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BuenaRadioText4:
|
BuenaRadioText4:
|
||||||
; @ !
|
; @ !
|
||||||
text_jump _BuenaRadioText4
|
text_far _BuenaRadioText4
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BuenaRadioText5:
|
BuenaRadioText5:
|
||||||
; Don't forget it!
|
; Don't forget it!
|
||||||
text_jump _BuenaRadioText5
|
text_far _BuenaRadioText5
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BuenaRadioText6:
|
BuenaRadioText6:
|
||||||
; I'm in GOLDENROD's
|
; I'm in GOLDENROD's
|
||||||
text_jump _BuenaRadioText6
|
text_far _BuenaRadioText6
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BuenaRadioText7:
|
BuenaRadioText7:
|
||||||
; RADIO TOWER!
|
; RADIO TOWER!
|
||||||
text_jump _BuenaRadioText7
|
text_far _BuenaRadioText7
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BuenaRadioMidnightText1:
|
BuenaRadioMidnightText1:
|
||||||
; BUENA: Oh my…
|
; BUENA: Oh my…
|
||||||
text_jump _BuenaRadioMidnightText1
|
text_far _BuenaRadioMidnightText1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BuenaRadioMidnightText2:
|
BuenaRadioMidnightText2:
|
||||||
; It's midnight! I
|
; It's midnight! I
|
||||||
text_jump _BuenaRadioMidnightText2
|
text_far _BuenaRadioMidnightText2
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BuenaRadioMidnightText3:
|
BuenaRadioMidnightText3:
|
||||||
; have to shut down!
|
; have to shut down!
|
||||||
text_jump _BuenaRadioMidnightText3
|
text_far _BuenaRadioMidnightText3
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BuenaRadioMidnightText4:
|
BuenaRadioMidnightText4:
|
||||||
; Thanks for tuning
|
; Thanks for tuning
|
||||||
text_jump _BuenaRadioMidnightText4
|
text_far _BuenaRadioMidnightText4
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BuenaRadioMidnightText5:
|
BuenaRadioMidnightText5:
|
||||||
; in to the end! But
|
; in to the end! But
|
||||||
text_jump _BuenaRadioMidnightText5
|
text_far _BuenaRadioMidnightText5
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BuenaRadioMidnightText6:
|
BuenaRadioMidnightText6:
|
||||||
; don't stay up too
|
; don't stay up too
|
||||||
text_jump _BuenaRadioMidnightText6
|
text_far _BuenaRadioMidnightText6
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BuenaRadioMidnightText7:
|
BuenaRadioMidnightText7:
|
||||||
; late! Presented to
|
; late! Presented to
|
||||||
text_jump _BuenaRadioMidnightText7
|
text_far _BuenaRadioMidnightText7
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BuenaRadioMidnightText8:
|
BuenaRadioMidnightText8:
|
||||||
; you by DJ BUENA!
|
; you by DJ BUENA!
|
||||||
text_jump _BuenaRadioMidnightText8
|
text_far _BuenaRadioMidnightText8
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BuenaRadioMidnightText9:
|
BuenaRadioMidnightText9:
|
||||||
; I'm outta here!
|
; I'm outta here!
|
||||||
text_jump _BuenaRadioMidnightText9
|
text_far _BuenaRadioMidnightText9
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BuenaRadioMidnightText10:
|
BuenaRadioMidnightText10:
|
||||||
; …
|
; …
|
||||||
text_jump _BuenaRadioMidnightText10
|
text_far _BuenaRadioMidnightText10
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BuenaOffTheAirText:
|
BuenaOffTheAirText:
|
||||||
;
|
;
|
||||||
text_jump _BuenaOffTheAirText
|
text_far _BuenaOffTheAirText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
CopyRadioTextToRAM:
|
CopyRadioTextToRAM:
|
||||||
|
@ -16,7 +16,7 @@ _BillsPC:
|
|||||||
|
|
||||||
.Text_GottaHavePokemon:
|
.Text_GottaHavePokemon:
|
||||||
; You gotta have #MON to call!
|
; You gotta have #MON to call!
|
||||||
text_jump UnknownText_0x1c1006
|
text_far UnknownText_0x1c1006
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.LogIn:
|
.LogIn:
|
||||||
@ -37,7 +37,7 @@ _BillsPC:
|
|||||||
|
|
||||||
.Text_What:
|
.Text_What:
|
||||||
; What?
|
; What?
|
||||||
text_jump UnknownText_0x1c1024
|
text_far UnknownText_0x1c1024
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.LogOut:
|
.LogOut:
|
||||||
@ -130,7 +130,7 @@ BillsPC_MovePKMNMenu:
|
|||||||
|
|
||||||
.Text_MonHoldingMail:
|
.Text_MonHoldingMail:
|
||||||
; There is a #MON holding MAIL. Please remove the MAIL.
|
; There is a #MON holding MAIL. Please remove the MAIL.
|
||||||
text_jump UnknownText_0x1c102b
|
text_far UnknownText_0x1c102b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BillsPC_DepositMenu:
|
BillsPC_DepositMenu:
|
||||||
@ -165,12 +165,12 @@ Unreferenced_Functione512:
|
|||||||
|
|
||||||
.Text_NoMon:
|
.Text_NoMon:
|
||||||
; You don't have a single #MON!
|
; You don't have a single #MON!
|
||||||
text_jump UnknownText_0x1c1062
|
text_far UnknownText_0x1c1062
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_ItsYourLastMon:
|
.Text_ItsYourLastMon:
|
||||||
; You can't deposit your last #MON!
|
; You can't deposit your last #MON!
|
||||||
text_jump UnknownText_0x1c1080
|
text_far UnknownText_0x1c1080
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
CheckCurPartyMonFainted:
|
CheckCurPartyMonFainted:
|
||||||
@ -226,7 +226,7 @@ Unreferenced_Functione56d:
|
|||||||
|
|
||||||
UnknownText_0xe57e:
|
UnknownText_0xe57e:
|
||||||
; You can't take any more #MON.
|
; You can't take any more #MON.
|
||||||
text_jump UnknownText_0x1c10a2
|
text_far UnknownText_0x1c10a2
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BillsPC_ChangeBoxMenu:
|
BillsPC_ChangeBoxMenu:
|
||||||
|
@ -356,7 +356,7 @@ HatchEggs:
|
|||||||
|
|
||||||
.Text_HatchEgg:
|
.Text_HatchEgg:
|
||||||
; Huh? @ @
|
; Huh? @ @
|
||||||
text_jump UnknownText_0x1c0db0
|
text_far UnknownText_0x1c0db0
|
||||||
start_asm
|
start_asm
|
||||||
ld hl, wVramState
|
ld hl, wVramState
|
||||||
res 0, [hl]
|
res 0, [hl]
|
||||||
@ -378,17 +378,17 @@ HatchEggs:
|
|||||||
|
|
||||||
.ClearTextbox:
|
.ClearTextbox:
|
||||||
;
|
;
|
||||||
text_jump UnknownText_0x1c0db8
|
text_far UnknownText_0x1c0db8
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.CameOutOfItsEgg:
|
.CameOutOfItsEgg:
|
||||||
; came out of its EGG!@ @
|
; came out of its EGG!@ @
|
||||||
text_jump UnknownText_0x1c0dba
|
text_far UnknownText_0x1c0dba
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_NicknameHatchling:
|
.Text_NicknameHatchling:
|
||||||
; Give a nickname to @ ?
|
; Give a nickname to @ ?
|
||||||
text_jump UnknownText_0x1c0dd8
|
text_far UnknownText_0x1c0dd8
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
InitEggMoves:
|
InitEggMoves:
|
||||||
@ -895,12 +895,12 @@ DayCareMonCursor:
|
|||||||
|
|
||||||
DayCareMon2Text:
|
DayCareMon2Text:
|
||||||
; It's @ that was left with the DAY-CARE LADY.
|
; It's @ that was left with the DAY-CARE LADY.
|
||||||
text_jump UnknownText_0x1c0df3
|
text_far UnknownText_0x1c0df3
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
DayCareMon1Text:
|
DayCareMon1Text:
|
||||||
; It's @ that was left with the DAY-CARE MAN.
|
; It's @ that was left with the DAY-CARE MAN.
|
||||||
text_jump UnknownText_0x1c0e24
|
text_far UnknownText_0x1c0e24
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
DayCareMonCompatibilityText:
|
DayCareMonCompatibilityText:
|
||||||
@ -930,27 +930,27 @@ DayCareMonCompatibilityText:
|
|||||||
|
|
||||||
.AllAlone:
|
.AllAlone:
|
||||||
; It's brimming with energy.
|
; It's brimming with energy.
|
||||||
text_jump UnknownText_0x1c0e54
|
text_far UnknownText_0x1c0e54
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Incompatible:
|
.Incompatible:
|
||||||
; It has no interest in @ .
|
; It has no interest in @ .
|
||||||
text_jump UnknownText_0x1c0e6f
|
text_far UnknownText_0x1c0e6f
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.HighCompatibility:
|
.HighCompatibility:
|
||||||
; It appears to care for @ .
|
; It appears to care for @ .
|
||||||
text_jump UnknownText_0x1c0e8d
|
text_far UnknownText_0x1c0e8d
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.ModerateCompatibility:
|
.ModerateCompatibility:
|
||||||
; It's friendly with @ .
|
; It's friendly with @ .
|
||||||
text_jump UnknownText_0x1c0eac
|
text_far UnknownText_0x1c0eac
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.SlightCompatibility:
|
.SlightCompatibility:
|
||||||
; It shows interest in @ .
|
; It shows interest in @ .
|
||||||
text_jump UnknownText_0x1c0ec6
|
text_far UnknownText_0x1c0ec6
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Unreferenced_DayCareMonPrintEmptyString:
|
Unreferenced_DayCareMonPrintEmptyString:
|
||||||
|
@ -158,7 +158,7 @@ GiveANickname_YesNo:
|
|||||||
|
|
||||||
TextJump_GiveANickname:
|
TextJump_GiveANickname:
|
||||||
; Give a nickname to the @ you received?
|
; Give a nickname to the @ you received?
|
||||||
text_jump UnknownText_0x1c12fc
|
text_far UnknownText_0x1c12fc
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
SetCaughtData:
|
SetCaughtData:
|
||||||
|
@ -396,22 +396,22 @@ IsMonHoldingEverstone:
|
|||||||
|
|
||||||
Text_CongratulationsYourPokemon:
|
Text_CongratulationsYourPokemon:
|
||||||
; Congratulations! Your @ @
|
; Congratulations! Your @ @
|
||||||
text_jump UnknownText_0x1c4b92
|
text_far UnknownText_0x1c4b92
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_EvolvedIntoPKMN:
|
Text_EvolvedIntoPKMN:
|
||||||
; evolved into @ !
|
; evolved into @ !
|
||||||
text_jump UnknownText_0x1c4baf
|
text_far UnknownText_0x1c4baf
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_StoppedEvolving:
|
Text_StoppedEvolving:
|
||||||
; Huh? @ stopped evolving!
|
; Huh? @ stopped evolving!
|
||||||
text_jump UnknownText_0x1c4bc5
|
text_far UnknownText_0x1c4bc5
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_WhatEvolving:
|
Text_WhatEvolving:
|
||||||
; What? @ is evolving!
|
; What? @ is evolving!
|
||||||
text_jump UnknownText_0x1c4be3
|
text_far UnknownText_0x1c4be3
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
LearnLevelMoves:
|
LearnLevelMoves:
|
||||||
|
@ -21,5 +21,5 @@ KnowsMove:
|
|||||||
|
|
||||||
.Text_knows:
|
.Text_knows:
|
||||||
; knows @ .
|
; knows @ .
|
||||||
text_jump UnknownText_0x1c5ea8
|
text_far UnknownText_0x1c5ea8
|
||||||
db "@"
|
db "@"
|
||||||
|
@ -202,32 +202,32 @@ ForgetMove:
|
|||||||
|
|
||||||
Text_LearnedMove:
|
Text_LearnedMove:
|
||||||
; <MON> learned <MOVE>!
|
; <MON> learned <MOVE>!
|
||||||
text_jump UnknownText_0x1c5660
|
text_far UnknownText_0x1c5660
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_ForgetWhich:
|
Text_ForgetWhich:
|
||||||
; Which move should be forgotten?
|
; Which move should be forgotten?
|
||||||
text_jump UnknownText_0x1c5678
|
text_far UnknownText_0x1c5678
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_StopLearning:
|
Text_StopLearning:
|
||||||
; Stop learning <MOVE>?
|
; Stop learning <MOVE>?
|
||||||
text_jump UnknownText_0x1c5699
|
text_far UnknownText_0x1c5699
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_DidNotLearn:
|
Text_DidNotLearn:
|
||||||
; <MON> did not learn <MOVE>.
|
; <MON> did not learn <MOVE>.
|
||||||
text_jump UnknownText_0x1c56af
|
text_far UnknownText_0x1c56af
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_TryingToLearn:
|
Text_TryingToLearn:
|
||||||
; <MON> is trying to learn <MOVE>. But <MON> can't learn more than
|
; <MON> is trying to learn <MOVE>. But <MON> can't learn more than
|
||||||
; four moves. Delete an older move to make room for <MOVE>?
|
; four moves. Delete an older move to make room for <MOVE>?
|
||||||
text_jump UnknownText_0x1c56c9
|
text_far UnknownText_0x1c56c9
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_1_2_and_Poof:
|
Text_1_2_and_Poof:
|
||||||
text_jump UnknownText_0x1c5740 ; 1, 2 and…
|
text_far UnknownText_0x1c5740 ; 1, 2 and…
|
||||||
start_asm
|
start_asm
|
||||||
push de
|
push de
|
||||||
ld de, SFX_SWITCH_POKEMON
|
ld de, SFX_SWITCH_POKEMON
|
||||||
@ -238,10 +238,10 @@ Text_1_2_and_Poof:
|
|||||||
|
|
||||||
.PoofForgot:
|
.PoofForgot:
|
||||||
; Poof! <MON> forgot <MOVE>. And…
|
; Poof! <MON> forgot <MOVE>. And…
|
||||||
text_jump UnknownText_0x1c574e
|
text_far UnknownText_0x1c574e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_CantForgetHM:
|
Text_CantForgetHM:
|
||||||
; HM moves can't be forgotten now.
|
; HM moves can't be forgotten now.
|
||||||
text_jump UnknownText_0x1c5772
|
text_far UnknownText_0x1c5772
|
||||||
db "@"
|
db "@"
|
||||||
|
@ -310,7 +310,7 @@ _PlayerMailBoxMenu:
|
|||||||
jp MenuTextBoxBackup
|
jp MenuTextBoxBackup
|
||||||
|
|
||||||
.EmptyMailboxText:
|
.EmptyMailboxText:
|
||||||
text_jump _EmptyMailboxText
|
text_far _EmptyMailboxText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
InitMail:
|
InitMail:
|
||||||
@ -453,15 +453,15 @@ MailboxPC:
|
|||||||
jp MenuTextBoxBackup
|
jp MenuTextBoxBackup
|
||||||
|
|
||||||
.PutAwayText:
|
.PutAwayText:
|
||||||
text_jump ClearedMailPutAwayText
|
text_far ClearedMailPutAwayText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.PackFullText:
|
.PackFullText:
|
||||||
text_jump MailPackFullText
|
text_far MailPackFullText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.MessageLostText:
|
.MessageLostText:
|
||||||
text_jump MailMessageLostText
|
text_far MailMessageLostText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.GetMailType:
|
.GetMailType:
|
||||||
@ -521,15 +521,15 @@ MailboxPC:
|
|||||||
jp CloseSubmenu
|
jp CloseSubmenu
|
||||||
|
|
||||||
.HoldingMailText:
|
.HoldingMailText:
|
||||||
text_jump MailAlreadyHoldingItemText
|
text_far MailAlreadyHoldingItemText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.EggText:
|
.EggText:
|
||||||
text_jump MailEggText
|
text_far MailEggText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.MailMovedText:
|
.MailMovedText:
|
||||||
text_jump MailMovedFromBoxText
|
text_far MailMovedFromBoxText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Cancel:
|
.Cancel:
|
||||||
|
@ -63,17 +63,17 @@ TossItemFromPC:
|
|||||||
|
|
||||||
.TossHowMany:
|
.TossHowMany:
|
||||||
; Toss out how many @ (S)?
|
; Toss out how many @ (S)?
|
||||||
text_jump UnknownText_0x1c1a90
|
text_far UnknownText_0x1c1a90
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.ConfirmToss:
|
.ConfirmToss:
|
||||||
; Throw away @ @ (S)?
|
; Throw away @ @ (S)?
|
||||||
text_jump UnknownText_0x1c1aad
|
text_far UnknownText_0x1c1aad
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.TossedThisMany:
|
.TossedThisMany:
|
||||||
; Discarded @ (S).
|
; Discarded @ (S).
|
||||||
text_jump UnknownText_0x1c1aca
|
text_far UnknownText_0x1c1aca
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.CantToss:
|
.CantToss:
|
||||||
@ -83,7 +83,7 @@ TossItemFromPC:
|
|||||||
|
|
||||||
.TooImportantToToss:
|
.TooImportantToToss:
|
||||||
; That's too impor- tant to toss out!
|
; That's too impor- tant to toss out!
|
||||||
text_jump UnknownText_0x1c1adf
|
text_far UnknownText_0x1c1adf
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
CantUseItem:
|
CantUseItem:
|
||||||
@ -92,7 +92,7 @@ CantUseItem:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
CantUseItemText:
|
CantUseItemText:
|
||||||
text_jump UnknownText_0x1c1b03
|
text_far UnknownText_0x1c1b03
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PartyMonItemName:
|
PartyMonItemName:
|
||||||
@ -391,35 +391,35 @@ GiveTakeItemMenuData:
|
|||||||
db "TAKE@"
|
db "TAKE@"
|
||||||
|
|
||||||
TookAndMadeHoldText:
|
TookAndMadeHoldText:
|
||||||
text_jump UnknownText_0x1c1b2c
|
text_far UnknownText_0x1c1b2c
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
MadeHoldText:
|
MadeHoldText:
|
||||||
text_jump UnknownText_0x1c1b57
|
text_far UnknownText_0x1c1b57
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
PleaseRemoveMailText:
|
PleaseRemoveMailText:
|
||||||
text_jump UnknownText_0x1c1b6f
|
text_far UnknownText_0x1c1b6f
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
IsntHoldingAnythingText:
|
IsntHoldingAnythingText:
|
||||||
text_jump UnknownText_0x1c1b8e
|
text_far UnknownText_0x1c1b8e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
ItemStorageIsFullText:
|
ItemStorageIsFullText:
|
||||||
text_jump UnknownText_0x1c1baa
|
text_far UnknownText_0x1c1baa
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TookFromText:
|
TookFromText:
|
||||||
text_jump UnknownText_0x1c1bc4
|
text_far UnknownText_0x1c1bc4
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
SwitchAlreadyHoldingText:
|
SwitchAlreadyHoldingText:
|
||||||
text_jump UnknownText_0x1c1bdc
|
text_far UnknownText_0x1c1bdc
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
CantBeHeldText:
|
CantBeHeldText:
|
||||||
text_jump UnknownText_0x1c1c09
|
text_far UnknownText_0x1c1c09
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
GetPartyItemLocation:
|
GetPartyItemLocation:
|
||||||
@ -562,32 +562,32 @@ MonMailAction:
|
|||||||
|
|
||||||
.mailwilllosemessagetext
|
.mailwilllosemessagetext
|
||||||
; The MAIL will lose its message. OK?
|
; The MAIL will lose its message. OK?
|
||||||
text_jump UnknownText_0x1c1c22
|
text_far UnknownText_0x1c1c22
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.tookmailfrommontext
|
.tookmailfrommontext
|
||||||
; MAIL detached from <POKEMON>.
|
; MAIL detached from <POKEMON>.
|
||||||
text_jump UnknownText_0x1c1c47
|
text_far UnknownText_0x1c1c47
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.bagfulltext
|
.bagfulltext
|
||||||
; There's no space for removing MAIL.
|
; There's no space for removing MAIL.
|
||||||
text_jump UnknownText_0x1c1c62
|
text_far UnknownText_0x1c1c62
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.sendmailtopctext
|
.sendmailtopctext
|
||||||
; Send the removed MAIL to your PC?
|
; Send the removed MAIL to your PC?
|
||||||
text_jump UnknownText_0x1c1c86
|
text_far UnknownText_0x1c1c86
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.mailboxfulltext
|
.mailboxfulltext
|
||||||
; Your PC's MAILBOX is full.
|
; Your PC's MAILBOX is full.
|
||||||
text_jump UnknownText_0x1c1ca9
|
text_far UnknownText_0x1c1ca9
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.sentmailtopctext
|
.sentmailtopctext
|
||||||
; The MAIL was sent to your PC.
|
; The MAIL was sent to your PC.
|
||||||
text_jump UnknownText_0x1c1cc4
|
text_far UnknownText_0x1c1cc4
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OpenPartyStats:
|
OpenPartyStats:
|
||||||
@ -749,7 +749,7 @@ MonMenu_Softboiled_MilkDrink:
|
|||||||
|
|
||||||
.Text_NotEnoughHP:
|
.Text_NotEnoughHP:
|
||||||
; Not enough HP!
|
; Not enough HP!
|
||||||
text_jump UnknownText_0x1c1ce3
|
text_far UnknownText_0x1c1ce3
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.CheckMonHasEnoughHP:
|
.CheckMonHasEnoughHP:
|
||||||
|
@ -1800,7 +1800,7 @@ GivePoke::
|
|||||||
|
|
||||||
TextJump_WasSentToBillsPC:
|
TextJump_WasSentToBillsPC:
|
||||||
; was sent to BILL's PC.
|
; was sent to BILL's PC.
|
||||||
text_jump Text_WasSentToBillsPC
|
text_far Text_WasSentToBillsPC
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
InitNickname:
|
InitNickname:
|
||||||
|
@ -805,52 +805,52 @@ PrintPartyMenuActionText:
|
|||||||
|
|
||||||
.Text_RecoveredSomeHP:
|
.Text_RecoveredSomeHP:
|
||||||
; recovered @ HP!
|
; recovered @ HP!
|
||||||
text_jump UnknownText_0x1bc0a2
|
text_far UnknownText_0x1bc0a2
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_CuredOfPoison:
|
.Text_CuredOfPoison:
|
||||||
; 's cured of poison.
|
; 's cured of poison.
|
||||||
text_jump UnknownText_0x1bc0bb
|
text_far UnknownText_0x1bc0bb
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_RidOfParalysis:
|
.Text_RidOfParalysis:
|
||||||
; 's rid of paralysis.
|
; 's rid of paralysis.
|
||||||
text_jump UnknownText_0x1bc0d2
|
text_far UnknownText_0x1bc0d2
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_BurnWasHealed:
|
.Text_BurnWasHealed:
|
||||||
; 's burn was healed.
|
; 's burn was healed.
|
||||||
text_jump UnknownText_0x1bc0ea
|
text_far UnknownText_0x1bc0ea
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_Defrosted:
|
.Text_Defrosted:
|
||||||
; was defrosted.
|
; was defrosted.
|
||||||
text_jump UnknownText_0x1bc101
|
text_far UnknownText_0x1bc101
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_WokeUp:
|
.Text_WokeUp:
|
||||||
; woke up.
|
; woke up.
|
||||||
text_jump UnknownText_0x1bc115
|
text_far UnknownText_0x1bc115
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_HealthReturned:
|
.Text_HealthReturned:
|
||||||
; 's health returned.
|
; 's health returned.
|
||||||
text_jump UnknownText_0x1bc123
|
text_far UnknownText_0x1bc123
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_Revitalized:
|
.Text_Revitalized:
|
||||||
; is revitalized.
|
; is revitalized.
|
||||||
text_jump UnknownText_0x1bc13a
|
text_far UnknownText_0x1bc13a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_GrewToLevel:
|
.Text_GrewToLevel:
|
||||||
; grew to level @ !@ @
|
; grew to level @ !@ @
|
||||||
text_jump UnknownText_0x1bc14f
|
text_far UnknownText_0x1bc14f
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_CameToItsSenses:
|
.Text_CameToItsSenses:
|
||||||
; came to its senses.
|
; came to its senses.
|
||||||
text_jump UnknownText_0x1bc16e
|
text_far UnknownText_0x1bc16e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.PrintText:
|
.PrintText:
|
||||||
|
@ -33,17 +33,17 @@ _ResetClock:
|
|||||||
|
|
||||||
.text_okay
|
.text_okay
|
||||||
; Password OK. Select CONTINUE & reset settings.
|
; Password OK. Select CONTINUE & reset settings.
|
||||||
text_jump UnknownText_0x1c55db
|
text_far UnknownText_0x1c55db
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.text_wrong
|
.text_wrong
|
||||||
; Wrong password!
|
; Wrong password!
|
||||||
text_jump UnknownText_0x1c560b
|
text_far UnknownText_0x1c560b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.text_askreset
|
.text_askreset
|
||||||
; Reset the clock?
|
; Reset the clock?
|
||||||
text_jump UnknownText_0x1c561c
|
text_far UnknownText_0x1c561c
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.NoYes_MenuHeader:
|
.NoYes_MenuHeader:
|
||||||
@ -103,7 +103,7 @@ ClockResetPassword:
|
|||||||
|
|
||||||
.pleaseenterpasswordtext
|
.pleaseenterpasswordtext
|
||||||
; Please enter the password.
|
; Please enter the password.
|
||||||
text_jump UnknownText_0x1c562e
|
text_far UnknownText_0x1c562e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.updateIDdisplay
|
.updateIDdisplay
|
||||||
|
@ -49,12 +49,12 @@ RestartClock:
|
|||||||
|
|
||||||
.Text_ClockTimeMayBeWrong:
|
.Text_ClockTimeMayBeWrong:
|
||||||
; The clock's time may be wrong. Please reset the time.
|
; The clock's time may be wrong. Please reset the time.
|
||||||
text_jump UnknownText_0x1c40e6
|
text_far UnknownText_0x1c40e6
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_SetWithControlPad:
|
.Text_SetWithControlPad:
|
||||||
; Set with the Control Pad. Confirm: A Button Cancel: B Button
|
; Set with the Control Pad. Confirm: A Button Cancel: B Button
|
||||||
text_jump UnknownText_0x1c411c
|
text_far UnknownText_0x1c411c
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.SetClock:
|
.SetClock:
|
||||||
@ -103,12 +103,12 @@ RestartClock:
|
|||||||
|
|
||||||
.Text_IsThisOK:
|
.Text_IsThisOK:
|
||||||
; Is this OK?
|
; Is this OK?
|
||||||
text_jump UnknownText_0x1c415b
|
text_far UnknownText_0x1c415b
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.Text_ClockReset:
|
.Text_ClockReset:
|
||||||
; The clock has been reset.
|
; The clock has been reset.
|
||||||
text_jump UnknownText_0x1c4168
|
text_far UnknownText_0x1c4168
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.joy_loop
|
.joy_loop
|
||||||
|
@ -291,12 +291,12 @@ PrintTwoDigitNumberRightAlign:
|
|||||||
|
|
||||||
Text_WokeUpOak:
|
Text_WokeUpOak:
|
||||||
; Zzz… Hm? Wha…? You woke me up! Will you check the clock for me?
|
; Zzz… Hm? Wha…? You woke me up! Will you check the clock for me?
|
||||||
text_jump UnknownText_0x1bc29c
|
text_far UnknownText_0x1bc29c
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_WhatTimeIsIt:
|
Text_WhatTimeIsIt:
|
||||||
; What time is it?
|
; What time is it?
|
||||||
text_jump UnknownText_0x1bc2eb
|
text_far UnknownText_0x1bc2eb
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
String_oclock:
|
String_oclock:
|
||||||
@ -304,7 +304,7 @@ String_oclock:
|
|||||||
|
|
||||||
Text_WhatHrs:
|
Text_WhatHrs:
|
||||||
; What?@ @
|
; What?@ @
|
||||||
text_jump UnknownText_0x1bc2fd
|
text_far UnknownText_0x1bc2fd
|
||||||
start_asm
|
start_asm
|
||||||
hlcoord 1, 16
|
hlcoord 1, 16
|
||||||
call DisplayHourOClock
|
call DisplayHourOClock
|
||||||
@ -313,12 +313,12 @@ Text_WhatHrs:
|
|||||||
|
|
||||||
.QuestionMark:
|
.QuestionMark:
|
||||||
; ?
|
; ?
|
||||||
text_jump UnknownText_0x1bc305
|
text_far UnknownText_0x1bc305
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Text_HowManyMinutes:
|
Text_HowManyMinutes:
|
||||||
; How many minutes?
|
; How many minutes?
|
||||||
text_jump UnknownText_0x1bc308
|
text_far UnknownText_0x1bc308
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
String_min:
|
String_min:
|
||||||
@ -326,7 +326,7 @@ String_min:
|
|||||||
|
|
||||||
Text_WhoaMins:
|
Text_WhoaMins:
|
||||||
; Whoa!@ @
|
; Whoa!@ @
|
||||||
text_jump UnknownText_0x1bc31b
|
text_far UnknownText_0x1bc31b
|
||||||
start_asm
|
start_asm
|
||||||
hlcoord 7, 14
|
hlcoord 7, 14
|
||||||
call DisplayMinutesWithMinString
|
call DisplayMinutesWithMinString
|
||||||
@ -335,7 +335,7 @@ Text_WhoaMins:
|
|||||||
|
|
||||||
.QuestionMark:
|
.QuestionMark:
|
||||||
; ?
|
; ?
|
||||||
text_jump UnknownText_0x1bc323
|
text_far UnknownText_0x1bc323
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
OakText_ResponseToSetTime:
|
OakText_ResponseToSetTime:
|
||||||
@ -370,17 +370,17 @@ OakText_ResponseToSetTime:
|
|||||||
|
|
||||||
.overslept
|
.overslept
|
||||||
; ! I overslept!
|
; ! I overslept!
|
||||||
text_jump UnknownText_0x1bc326
|
text_far UnknownText_0x1bc326
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.yikes
|
.yikes
|
||||||
; ! Yikes! I over- slept!
|
; ! Yikes! I over- slept!
|
||||||
text_jump UnknownText_0x1bc336
|
text_far UnknownText_0x1bc336
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.sodark
|
.sodark
|
||||||
; ! No wonder it's so dark!
|
; ! No wonder it's so dark!
|
||||||
text_jump UnknownText_0x1bc34f
|
text_far UnknownText_0x1bc34f
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
TimeSetBackgroundGFX:
|
TimeSetBackgroundGFX:
|
||||||
@ -534,7 +534,7 @@ SetDayOfWeek:
|
|||||||
|
|
||||||
.WhatDayIsItText:
|
.WhatDayIsItText:
|
||||||
; What day is it?
|
; What day is it?
|
||||||
text_jump UnknownText_0x1bc369
|
text_far UnknownText_0x1bc369
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.ConfirmWeekdayText:
|
.ConfirmWeekdayText:
|
||||||
@ -546,7 +546,7 @@ SetDayOfWeek:
|
|||||||
|
|
||||||
.IsIt:
|
.IsIt:
|
||||||
; , is it?
|
; , is it?
|
||||||
text_jump UnknownText_0x1bc37a
|
text_far UnknownText_0x1bc37a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
InitialSetDSTFlag:
|
InitialSetDSTFlag:
|
||||||
@ -574,7 +574,7 @@ InitialSetDSTFlag:
|
|||||||
|
|
||||||
.DSTIsThatOK:
|
.DSTIsThatOK:
|
||||||
; DST, is that OK?
|
; DST, is that OK?
|
||||||
text_jump Text_DSTIsThatOK
|
text_far Text_DSTIsThatOK
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
InitialClearDSTFlag:
|
InitialClearDSTFlag:
|
||||||
@ -602,7 +602,7 @@ InitialClearDSTFlag:
|
|||||||
|
|
||||||
.IsThatOK:
|
.IsThatOK:
|
||||||
; , is that OK?
|
; , is that OK?
|
||||||
text_jump UnknownText_0x1c5ff1
|
text_far UnknownText_0x1c5ff1
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
DebugDisplayTime:
|
DebugDisplayTime:
|
||||||
|
@ -1107,21 +1107,21 @@ ObjectEvent::
|
|||||||
jumptextfaceplayer ObjectEventText
|
jumptextfaceplayer ObjectEventText
|
||||||
|
|
||||||
ObjectEventText::
|
ObjectEventText::
|
||||||
text_jump _ObjectEventText
|
text_far _ObjectEventText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
BGEvent::
|
BGEvent::
|
||||||
jumptext BGEventText
|
jumptext BGEventText
|
||||||
|
|
||||||
BGEventText::
|
BGEventText::
|
||||||
text_jump UnknownText_0x1c46fc
|
text_far UnknownText_0x1c46fc
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
CoordinatesEvent::
|
CoordinatesEvent::
|
||||||
jumptext CoordinatesEventText
|
jumptext CoordinatesEventText
|
||||||
|
|
||||||
CoordinatesEventText::
|
CoordinatesEventText::
|
||||||
text_jump UnknownText_0x1c4706
|
text_far UnknownText_0x1c4706
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
CheckObjectMask::
|
CheckObjectMask::
|
||||||
|
@ -739,7 +739,7 @@ TextCommand_RAM::
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
TextCommand_FAR::
|
TextCommand_FAR::
|
||||||
; text_jump
|
; text_far
|
||||||
; write text from a different bank
|
; write text from a different bank
|
||||||
; little endian
|
; little endian
|
||||||
; [$16][addr][bank]
|
; [$16][addr][bank]
|
||||||
|
@ -163,3 +163,6 @@ step_sleep_5 EQUS "step_sleep 5"
|
|||||||
step_sleep_6 EQUS "step_sleep 6"
|
step_sleep_6 EQUS "step_sleep 6"
|
||||||
step_sleep_7 EQUS "step_sleep 7"
|
step_sleep_7 EQUS "step_sleep 7"
|
||||||
step_sleep_8 EQUS "step_sleep 8"
|
step_sleep_8 EQUS "step_sleep 8"
|
||||||
|
|
||||||
|
; macros/scripts/text.asm
|
||||||
|
text_jump EQUS "text_far"
|
||||||
|
@ -131,7 +131,7 @@ current_day: MACRO
|
|||||||
ENDM
|
ENDM
|
||||||
|
|
||||||
enum TX_FAR ; $16
|
enum TX_FAR ; $16
|
||||||
text_jump: MACRO
|
text_far: MACRO
|
||||||
db TX_FAR
|
db TX_FAR
|
||||||
dw \1
|
dw \1
|
||||||
db BANK(\1)
|
db BANK(\1)
|
||||||
|
@ -241,7 +241,7 @@ Function4a94e:
|
|||||||
|
|
||||||
UnknownText_0x4a9be:
|
UnknownText_0x4a9be:
|
||||||
; Pick three #MON for battle.
|
; Pick three #MON for battle.
|
||||||
text_jump UnknownText_0x1c51d7
|
text_far UnknownText_0x1c51d7
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Function4a9c3:
|
Function4a9c3:
|
||||||
@ -294,7 +294,7 @@ Function4a9d7:
|
|||||||
|
|
||||||
UnknownText_0x4aa1d:
|
UnknownText_0x4aa1d:
|
||||||
; , @ and @ . Use these three?
|
; , @ and @ . Use these three?
|
||||||
text_jump UnknownText_0x1c51f4
|
text_far UnknownText_0x1c51f4
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Function4aa22:
|
Function4aa22:
|
||||||
@ -794,7 +794,7 @@ Function4ad17:
|
|||||||
|
|
||||||
UnknownText_0x4ad51:
|
UnknownText_0x4ad51:
|
||||||
; Only three #MON may enter.
|
; Only three #MON may enter.
|
||||||
text_jump UnknownText_0x1c521c
|
text_far UnknownText_0x1c521c
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Function4ad56:
|
Function4ad56:
|
||||||
|
@ -2636,22 +2636,22 @@ Function8a0ff:
|
|||||||
|
|
||||||
UnknownText_0x8a102:
|
UnknownText_0x8a102:
|
||||||
; The CARD FOLDER stores your and your friends' CARDS. A CARD contains information like the person's name, phone number and profile.
|
; The CARD FOLDER stores your and your friends' CARDS. A CARD contains information like the person's name, phone number and profile.
|
||||||
text_jump UnknownText_0x1c5238
|
text_far UnknownText_0x1c5238
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x8a107:
|
UnknownText_0x8a107:
|
||||||
; This is your CARD. Once you've entered your phone number, you can trade CARDS with your friends.
|
; This is your CARD. Once you've entered your phone number, you can trade CARDS with your friends.
|
||||||
text_jump UnknownText_0x1c52bc
|
text_far UnknownText_0x1c52bc
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x8a10c:
|
UnknownText_0x8a10c:
|
||||||
; If you have your friend's CARD, you can use it to make a call from a mobile phone on the 2nd floor of a #MON CENTER.
|
; If you have your friend's CARD, you can use it to make a call from a mobile phone on the 2nd floor of a #MON CENTER.
|
||||||
text_jump UnknownText_0x1c531e
|
text_far UnknownText_0x1c531e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x8a111:
|
UnknownText_0x8a111:
|
||||||
; To safely store your collection of CARDS, you must set a PASSCODE for your CARD FOLDER.
|
; To safely store your collection of CARDS, you must set a PASSCODE for your CARD FOLDER.
|
||||||
text_jump UnknownText_0x1c5394
|
text_far UnknownText_0x1c5394
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Function8a116:
|
Function8a116:
|
||||||
@ -2780,17 +2780,17 @@ Function8a20d:
|
|||||||
|
|
||||||
UnknownText_0x8a232:
|
UnknownText_0x8a232:
|
||||||
; If the CARD FOLDER is deleted, all its CARDS and the PASSCODE will also be deleted. Beware--a deleted CARD FOLDER can't be restored. Want to delete your CARD FOLDER?
|
; If the CARD FOLDER is deleted, all its CARDS and the PASSCODE will also be deleted. Beware--a deleted CARD FOLDER can't be restored. Want to delete your CARD FOLDER?
|
||||||
text_jump UnknownText_0x1c53ee
|
text_far UnknownText_0x1c53ee
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x8a237:
|
UnknownText_0x8a237:
|
||||||
; Are you sure you want to delete it?
|
; Are you sure you want to delete it?
|
||||||
text_jump UnknownText_0x1c5494
|
text_far UnknownText_0x1c5494
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x8a23c:
|
UnknownText_0x8a23c:
|
||||||
; The CARD FOLDER has been deleted.
|
; The CARD FOLDER has been deleted.
|
||||||
text_jump UnknownText_0x1c54b9
|
text_far UnknownText_0x1c54b9
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Function8a241:
|
Function8a241:
|
||||||
@ -2875,12 +2875,12 @@ MenuHeader_0x8a2ef:
|
|||||||
|
|
||||||
UnknownText_0x8a2f4:
|
UnknownText_0x8a2f4:
|
||||||
; There is an older CARD FOLDER from a previous journey. Do you want to open it?
|
; There is an older CARD FOLDER from a previous journey. Do you want to open it?
|
||||||
text_jump UnknownText_0x1c54dd
|
text_far UnknownText_0x1c54dd
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x8a2f9:
|
UnknownText_0x8a2f9:
|
||||||
; Delete the old CARD FOLDER?
|
; Delete the old CARD FOLDER?
|
||||||
text_jump UnknownText_0x1c552d
|
text_far UnknownText_0x1c552d
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Function8a2fe:
|
Function8a2fe:
|
||||||
@ -4153,7 +4153,7 @@ Function8ac7c:
|
|||||||
|
|
||||||
UnknownText_0x8ad06:
|
UnknownText_0x8ad06:
|
||||||
; Finish registering CARDS?
|
; Finish registering CARDS?
|
||||||
text_jump UnknownText_0x1c554a
|
text_far UnknownText_0x1c554a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Function8ad0b:
|
Function8ad0b:
|
||||||
|
@ -459,27 +459,27 @@ Function8b555:
|
|||||||
|
|
||||||
UnknownText_0x8b5ce:
|
UnknownText_0x8b5ce:
|
||||||
; Please enter any four-digit number.
|
; Please enter any four-digit number.
|
||||||
text_jump UnknownText_0x1bc187
|
text_far UnknownText_0x1bc187
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x8b5d3:
|
UnknownText_0x8b5d3:
|
||||||
; Enter the same number to confirm.
|
; Enter the same number to confirm.
|
||||||
text_jump UnknownText_0x1bc1ac
|
text_far UnknownText_0x1bc1ac
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x8b5d8:
|
UnknownText_0x8b5d8:
|
||||||
; That's not the same number.
|
; That's not the same number.
|
||||||
text_jump UnknownText_0x1bc1cf
|
text_far UnknownText_0x1bc1cf
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x8b5dd:
|
UnknownText_0x8b5dd:
|
||||||
; Your PASSCODE has been set. Enter this number next time to open the CARD FOLDER.
|
; Your PASSCODE has been set. Enter this number next time to open the CARD FOLDER.
|
||||||
text_jump UnknownText_0x1bc1eb
|
text_far UnknownText_0x1bc1eb
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x8b5e2:
|
UnknownText_0x8b5e2:
|
||||||
; 0000 is invalid!
|
; 0000 is invalid!
|
||||||
text_jump UnknownText_0x1bc23e
|
text_far UnknownText_0x1bc23e
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Function8b5e7:
|
Function8b5e7:
|
||||||
@ -524,17 +524,17 @@ Function8b5e7:
|
|||||||
|
|
||||||
UnknownText_0x8b642:
|
UnknownText_0x8b642:
|
||||||
; Enter the CARD FOLDER PASSCODE.
|
; Enter the CARD FOLDER PASSCODE.
|
||||||
text_jump UnknownText_0x1bc251
|
text_far UnknownText_0x1bc251
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x8b647:
|
UnknownText_0x8b647:
|
||||||
; Incorrect PASSCODE!
|
; Incorrect PASSCODE!
|
||||||
text_jump UnknownText_0x1bc272
|
text_far UnknownText_0x1bc272
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x8b64c:
|
UnknownText_0x8b64c:
|
||||||
; CARD FOLDER open.@ @
|
; CARD FOLDER open.@ @
|
||||||
text_jump UnknownText_0x1bc288
|
text_far UnknownText_0x1bc288
|
||||||
start_asm
|
start_asm
|
||||||
ld de, SFX_TWINKLE
|
ld de, SFX_TWINKLE
|
||||||
call PlaySFX
|
call PlaySFX
|
||||||
|
@ -4802,15 +4802,15 @@ Function1021b8:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
UnknownText_0x1021d1:
|
UnknownText_0x1021d1:
|
||||||
text_jump UnknownText_0x1bd19a
|
text_far UnknownText_0x1bd19a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x1021d6:
|
UnknownText_0x1021d6:
|
||||||
text_jump UnknownText_0x1bd1ba
|
text_far UnknownText_0x1bd1ba
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x1021db:
|
UnknownText_0x1021db:
|
||||||
text_jump UnknownText_0x1bd1dd
|
text_far UnknownText_0x1bd1dd
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Function1021e0:
|
Function1021e0:
|
||||||
@ -4820,15 +4820,15 @@ Function1021e0:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
UnknownText_0x1021ea:
|
UnknownText_0x1021ea:
|
||||||
text_jump UnknownText_0x1bd201
|
text_far UnknownText_0x1bd201
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x1021ef:
|
UnknownText_0x1021ef:
|
||||||
text_jump UnknownText_0x1bd211
|
text_far UnknownText_0x1bd211
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x1021f4:
|
UnknownText_0x1021f4:
|
||||||
text_jump UnknownText_0x1bd223
|
text_far UnknownText_0x1bd223
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Function1021f9:
|
Function1021f9:
|
||||||
@ -6577,7 +6577,7 @@ Function102ea8:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
UnknownText_0x102ee2:
|
UnknownText_0x102ee2:
|
||||||
text_jump UnknownText_0x1bd286
|
text_far UnknownText_0x1bd286
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Function102ee7:
|
Function102ee7:
|
||||||
@ -7496,25 +7496,25 @@ MenuData_10374f:
|
|||||||
db "せつめい@"
|
db "せつめい@"
|
||||||
|
|
||||||
UnknownText_0x10375d:
|
UnknownText_0x10375d:
|
||||||
text_jump UnknownText_0x1c422a
|
text_far UnknownText_0x1c422a
|
||||||
db "@"
|
db "@"
|
||||||
UnknownText_0x103762:
|
UnknownText_0x103762:
|
||||||
text_jump UnknownText_0x1c4275
|
text_far UnknownText_0x1c4275
|
||||||
db "@"
|
db "@"
|
||||||
UnknownText_0x103767:
|
UnknownText_0x103767:
|
||||||
text_jump UnknownText_0x1c4298
|
text_far UnknownText_0x1c4298
|
||||||
db "@"
|
db "@"
|
||||||
UnknownText_0x10376c:
|
UnknownText_0x10376c:
|
||||||
text_jump UnknownText_0x1c439c
|
text_far UnknownText_0x1c439c
|
||||||
db "@"
|
db "@"
|
||||||
UnknownText_0x103771:
|
UnknownText_0x103771:
|
||||||
text_jump UnknownText_0x1c43dc
|
text_far UnknownText_0x1c43dc
|
||||||
db "@"
|
db "@"
|
||||||
UnknownText_0x103776:
|
UnknownText_0x103776:
|
||||||
text_jump UnknownText_0x1c4419
|
text_far UnknownText_0x1c4419
|
||||||
db "@"
|
db "@"
|
||||||
UnknownText_0x10377b:
|
UnknownText_0x10377b:
|
||||||
text_jump UnknownText_0x1c445a
|
text_far UnknownText_0x1c445a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Function103780:
|
Function103780:
|
||||||
@ -7578,7 +7578,7 @@ Function1037c2:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
UnknownText_0x1037e6:
|
UnknownText_0x1037e6:
|
||||||
text_jump UnknownText_0x1c449c
|
text_far UnknownText_0x1c449c
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Function1037eb:
|
Function1037eb:
|
||||||
@ -7608,11 +7608,11 @@ Function1037eb:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
UnknownText_0x103819:
|
UnknownText_0x103819:
|
||||||
text_jump UnknownText_0x1c44c0
|
text_far UnknownText_0x1c44c0
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x10381e:
|
UnknownText_0x10381e:
|
||||||
text_jump UnknownText_0x1c44e7
|
text_far UnknownText_0x1c44e7
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Function103823:
|
Function103823:
|
||||||
@ -7660,7 +7660,7 @@ Function10383c:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
UnknownText_0x103876:
|
UnknownText_0x103876:
|
||||||
text_jump UnknownText_0x1c4508
|
text_far UnknownText_0x1c4508
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Function10387b:
|
Function10387b:
|
||||||
@ -7676,5 +7676,5 @@ Function10387b:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
UnknownText_0x103898:
|
UnknownText_0x103898:
|
||||||
text_jump UnknownText_0x1c4525
|
text_far UnknownText_0x1c4525
|
||||||
db "@"
|
db "@"
|
||||||
|
@ -1550,15 +1550,15 @@ Function108bec:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
.PlayerWillTradeMon:
|
.PlayerWillTradeMon:
|
||||||
text_jump UnknownText_0x1bc787
|
text_far UnknownText_0x1bc787
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.ForPartnersMon:
|
.ForPartnersMon:
|
||||||
text_jump UnknownText_0x1bc79d
|
text_far UnknownText_0x1bc79d
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.UnusedTextPlayersMonTrade:
|
.UnusedTextPlayersMonTrade:
|
||||||
text_jump UnknownText_0x1bc7b0
|
text_far UnknownText_0x1bc7b0
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Function108c16:
|
Function108c16:
|
||||||
@ -1571,7 +1571,7 @@ Function108c16:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
.TakeGoodCareOfMon:
|
.TakeGoodCareOfMon:
|
||||||
text_jump UnknownText_0x1bc7c3
|
text_far UnknownText_0x1bc7c3
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Function108c2b:
|
Function108c2b:
|
||||||
@ -1584,7 +1584,7 @@ Function108c2b:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
.PlayersMonTrade:
|
.PlayersMonTrade:
|
||||||
text_jump UnknownText_0x1bc7dd
|
text_far UnknownText_0x1bc7dd
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Function108c40:
|
Function108c40:
|
||||||
@ -1607,11 +1607,11 @@ Function108c40:
|
|||||||
ret
|
ret
|
||||||
|
|
||||||
.TakeGoodCareOf:
|
.TakeGoodCareOf:
|
||||||
text_jump UnknownText_0x1bc7f0
|
text_far UnknownText_0x1bc7f0
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
.CameBack:
|
.CameBack:
|
||||||
text_jump UnknownText_0x1bc80a
|
text_far UnknownText_0x1bc80a
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
Function108c6d:
|
Function108c6d:
|
||||||
|
@ -7424,11 +7424,11 @@ YesNo117ccc:
|
|||||||
next "いいえ@"
|
next "いいえ@"
|
||||||
|
|
||||||
MobileStadiumEntryText:
|
MobileStadiumEntryText:
|
||||||
text_jump _MobileStadiumEntryText
|
text_far _MobileStadiumEntryText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
MobileStadiumSuccessText:
|
MobileStadiumSuccessText:
|
||||||
text_jump _MobileStadiumSuccessText
|
text_far _MobileStadiumSuccessText
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
MobileStudium_JumptableIncrement:
|
MobileStudium_JumptableIncrement:
|
||||||
|
@ -457,12 +457,12 @@ String_4a34b:
|
|||||||
|
|
||||||
UnknownText_0x4a358:
|
UnknownText_0x4a358:
|
||||||
; Delete the saved LOG-IN PASSWORD?
|
; Delete the saved LOG-IN PASSWORD?
|
||||||
text_jump UnknownText_0x1c5196
|
text_far UnknownText_0x1c5196
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
UnknownText_0x4a35d:
|
UnknownText_0x4a35d:
|
||||||
; Deleted the LOG-IN PASSWORD.
|
; Deleted the LOG-IN PASSWORD.
|
||||||
text_jump UnknownText_0x1c51b9
|
text_far UnknownText_0x1c51b9
|
||||||
db "@"
|
db "@"
|
||||||
|
|
||||||
DeletePassword_YesNo_MenuHeader:
|
DeletePassword_YesNo_MenuHeader:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user