mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-11-16 11:27:33 -08:00
Use charmaps for special string codepoints.
Also fix all the text. Also fix some unreferenced scripts that were interpreted as text.
This commit is contained in:
parent
c00949dddf
commit
e2c2e20f93
@ -1205,9 +1205,10 @@ Unknown_408b2: ; 408b2
|
||||
; 408bd
|
||||
|
||||
String_408bd: ; 408bd
|
||||
db "NEW #DEX MODE", $4e
|
||||
db "OLD #DEX MODE", $4e
|
||||
db "A to Z MODE@"
|
||||
db "NEW #DEX MODE"
|
||||
next "OLD #DEX MODE"
|
||||
next "A to Z MODE"
|
||||
db "@"
|
||||
; 408e5
|
||||
|
||||
String_408e5: ; 408e5
|
||||
@ -1753,23 +1754,23 @@ Unknown_40e7d: ; 40e7d
|
||||
; 40e85
|
||||
|
||||
String_40e85: ; 40e85
|
||||
db $e1, $e2, " are listed by", $4e
|
||||
db "evolution type.@"
|
||||
db $e1, $e2, " are listed by"
|
||||
next "evolution type.@"
|
||||
; 40ea6
|
||||
|
||||
String_40ea6: ; 40ea6
|
||||
db $e1, $e2, " are listed by", $4e
|
||||
db "official type.@"
|
||||
db $e1, $e2, " are listed by"
|
||||
next "official type.@"
|
||||
; 40ec6
|
||||
|
||||
String_40ec6: ; 40ec6
|
||||
db $e1, $e2, " are listed", $4e
|
||||
db "alphabetically.@"
|
||||
db $e1, $e2, " are listed"
|
||||
next "alphabetically.@"
|
||||
; 40ee4
|
||||
|
||||
String_40ee4: ; 40ee4
|
||||
db "UNOWN are listed", $4e
|
||||
db "in catching order.@"
|
||||
db "UNOWN are listed"
|
||||
next "in catching order.@"
|
||||
; 40f08
|
||||
|
||||
Function40f08: ; 40f08 (10:4f08)
|
||||
@ -2031,8 +2032,8 @@ Function41107: ; 41107
|
||||
; 41126
|
||||
|
||||
String_41126: ; 41126
|
||||
db "The specified type", $4e
|
||||
db "was not found.@"
|
||||
db "The specified type"
|
||||
next "was not found.@"
|
||||
; 41148
|
||||
|
||||
Function41148: ; 41148 (10:5148)
|
||||
|
@ -273,3 +273,13 @@
|
||||
charmap "ー", $e3
|
||||
|
||||
charmap "ァ", $e9
|
||||
|
||||
charmap "<PLAYER>", $52
|
||||
charmap "<RIVAL>", $53
|
||||
charmap "<RED>", $38
|
||||
charmap "<GREEN>", $39
|
||||
charmap "<TARGET>", $59
|
||||
charmap "<USER>", $5a
|
||||
charmap "<ENEMY>", $3f
|
||||
|
||||
charmap "<PLAY_G>", $14 ; <PLAYER> + gender
|
||||
|
43
main.asm
43
main.asm
@ -639,7 +639,7 @@ MenuDataHeader_0x5efb: ; 5efb
|
||||
MenuData2_0x5f03: ; 5f03
|
||||
db $00 ; flags
|
||||
db 4 ; items
|
||||
db "PLAYER ", $52, "@"
|
||||
db "PLAYER <PLAYER>@"
|
||||
db "BADGES@"
|
||||
db " @"
|
||||
db "TIME@"
|
||||
@ -667,7 +667,7 @@ Function5f1c: ; 5f1c
|
||||
ret
|
||||
|
||||
.Player
|
||||
db $52, "@"
|
||||
db "<PLAYER>@"
|
||||
; 5f40
|
||||
|
||||
Function5f40: ; 5f40
|
||||
@ -13109,22 +13109,39 @@ StartMenu:: ; 125cd
|
||||
.PokedexString db "#DEX@"
|
||||
.PartyString db "#MON@"
|
||||
.PackString db "PACK@"
|
||||
.StatusString db $52, "@"
|
||||
.StatusString db "<PLAYER>@"
|
||||
.SaveString db "SAVE@"
|
||||
.OptionString db "OPTION@"
|
||||
.ExitString db "EXIT@"
|
||||
.PokegearString db $24, "GEAR@"
|
||||
.QuitString db "QUIT@"
|
||||
|
||||
.PokedexDesc db "#MON", $4e, "database@"
|
||||
.PartyDesc db "Party ", $4a, $4e, "status@"
|
||||
.PackDesc db "Contains", $4e, "items@"
|
||||
.PokegearDesc db "Trainer's", $4e, "key device@"
|
||||
.StatusDesc db "Your own", $4e, "status@"
|
||||
.SaveDesc db "Save your", $4e, "progress@"
|
||||
.OptionDesc db "Change", $4e, "settings@"
|
||||
.ExitDesc db "Close this", $4e, "menu@"
|
||||
.QuitDesc db "Quit and", $4e, "be judged.@"
|
||||
.PokedexDesc db "#MON"
|
||||
next "database@"
|
||||
|
||||
.PartyDesc db "Party ", $4a
|
||||
next "status@"
|
||||
|
||||
.PackDesc db "Contains"
|
||||
next "items@"
|
||||
|
||||
.PokegearDesc db "Trainer's"
|
||||
next "key device@"
|
||||
|
||||
.StatusDesc db "Your own"
|
||||
next "status@"
|
||||
|
||||
.SaveDesc db "Save your"
|
||||
next "progress@"
|
||||
|
||||
.OptionDesc db "Change"
|
||||
next "settings@"
|
||||
|
||||
.ExitDesc db "Close this"
|
||||
next "menu@"
|
||||
|
||||
.QuitDesc db "Quit and"
|
||||
next "be judged.@"
|
||||
|
||||
|
||||
.OpenMenu ; 127e5
|
||||
@ -19412,7 +19429,7 @@ Unknown_155e6: ; 155e6
|
||||
dw Function156ab, String_15623
|
||||
; 155fa
|
||||
|
||||
String_155fa: db $52, "'s PC@"
|
||||
String_155fa: db "<PLAYER>'s PC@"
|
||||
String_15600: db "BILL's PC@"
|
||||
String_15609: db "PROF.OAK's PC@"
|
||||
String_15616: db "HALL OF FAME@"
|
||||
|
@ -270,7 +270,7 @@ UnknownText_0x18edae: ; 0x18edae
|
||||
; 0x18ee14
|
||||
|
||||
UnknownText_0x18ee14: ; 0x18ee14
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "HIVEBADGE."
|
||||
done
|
||||
; 0x18ee2b
|
||||
|
@ -387,7 +387,7 @@ UnknownText_0x1985df:
|
||||
done
|
||||
|
||||
UnknownText_0x19860b:
|
||||
text $52, ", here's"
|
||||
text "<PLAYER>, here's"
|
||||
line "your GS BALL back!"
|
||||
done
|
||||
|
||||
|
@ -406,78 +406,110 @@ UnknownText_0x9e60a: ; 0x9e60a
|
||||
; 0x9e62f
|
||||
|
||||
UnknownText_0x9e62f: ; 0x9e62f
|
||||
db $0, "BATTLE TOWER is a", $4f
|
||||
db "facility made for", $55
|
||||
db "#MON battles.", $51
|
||||
db "Countless #MON", $4f
|
||||
db "trainers gather", $51
|
||||
db "from all over to", $4f
|
||||
db "hold battles in", $51
|
||||
db "specially designed", $4f
|
||||
db "BATTLE ROOMS.", $51
|
||||
db "There are many", $4f
|
||||
db "BATTLE ROOMS in", $55
|
||||
db "the BATTLE TOWER.", $51
|
||||
db "Each ROOM holds", $4f
|
||||
db "seven trainers.", $51
|
||||
db "If you defeat the", $4f
|
||||
db "seven in a ROOM,", $51
|
||||
db "and you have a", $4f
|
||||
db "good record, you", $51
|
||||
db "could become the", $4f
|
||||
db "ROOM's LEADER.", $51
|
||||
db "All LEADERS will", $4f
|
||||
db "be recorded in the", $51
|
||||
db "HONOR ROLL for", $4f
|
||||
db "posterity.", $51
|
||||
db "You may challenge", $4f
|
||||
db "in up to five", $51
|
||||
db "BATTLE ROOMS each", $4f
|
||||
db "day.", $51
|
||||
db "However, you may", $4f
|
||||
db "battle only once a", $51
|
||||
db "day in any given", $4f
|
||||
db "ROOM.", $51
|
||||
db "To interrupt a", $4f
|
||||
db "session, you must", $51
|
||||
db "SAVE. If not, you", $4f
|
||||
db "won't be able to", $51
|
||||
db "resume your ROOM", $4f
|
||||
db "challenge.", $51
|
||||
db $57
|
||||
text "BATTLE TOWER is a"
|
||||
line "facility made for"
|
||||
cont "#MON battles."
|
||||
|
||||
para "Countless #MON"
|
||||
line "trainers gather"
|
||||
|
||||
para "from all over to"
|
||||
line "hold battles in"
|
||||
|
||||
para "specially designed"
|
||||
line "BATTLE ROOMS."
|
||||
|
||||
para "There are many"
|
||||
line "BATTLE ROOMS in"
|
||||
cont "the BATTLE TOWER."
|
||||
|
||||
para "Each ROOM holds"
|
||||
line "seven trainers."
|
||||
|
||||
para "If you defeat the"
|
||||
line "seven in a ROOM,"
|
||||
|
||||
para "and you have a"
|
||||
line "good record, you"
|
||||
|
||||
para "could become the"
|
||||
line "ROOM's LEADER."
|
||||
|
||||
para "All LEADERS will"
|
||||
line "be recorded in the"
|
||||
|
||||
para "HONOR ROLL for"
|
||||
line "posterity."
|
||||
|
||||
para "You may challenge"
|
||||
line "in up to five"
|
||||
|
||||
para "BATTLE ROOMS each"
|
||||
line "day."
|
||||
|
||||
para "However, you may"
|
||||
line "battle only once a"
|
||||
|
||||
para "day in any given"
|
||||
line "ROOM."
|
||||
|
||||
para "To interrupt a"
|
||||
line "session, you must"
|
||||
|
||||
para "SAVE. If not, you"
|
||||
line "won't be able to"
|
||||
|
||||
para "resume your ROOM"
|
||||
line "challenge."
|
||||
|
||||
para ""
|
||||
done
|
||||
; 0x9e886
|
||||
|
||||
UnknownText_0x9e886: ; 0x9e886
|
||||
db $0, "BATTLE TOWER is a", $4f
|
||||
db "facility made for", $55
|
||||
db "#MON battles.", $51
|
||||
db "Countless #MON", $4f
|
||||
db "trainers gather", $51
|
||||
db "from all over to", $4f
|
||||
db "hold battles in", $51
|
||||
db "specially designed", $4f
|
||||
db "BATTLE ROOMS.", $51
|
||||
db "There are many", $4f
|
||||
db "BATTLE ROOMS in", $55
|
||||
db "the BATTLE TOWER.", $51
|
||||
db "Each ROOM holds", $4f
|
||||
db "seven trainers.", $51
|
||||
db "Beat them all, and", $4f
|
||||
db "win a prize.", $51
|
||||
db "To interrupt a", $4f
|
||||
db "session, you must", $51
|
||||
db "SAVE. If not, you", $4f
|
||||
db "won't be able to", $51
|
||||
db "resume your ROOM", $4f
|
||||
db "challenge.", $51
|
||||
db $57
|
||||
text "BATTLE TOWER is a"
|
||||
line "facility made for"
|
||||
cont "#MON battles."
|
||||
|
||||
para "Countless #MON"
|
||||
line "trainers gather"
|
||||
|
||||
para "from all over to"
|
||||
line "hold battles in"
|
||||
|
||||
para "specially designed"
|
||||
line "BATTLE ROOMS."
|
||||
|
||||
para "There are many"
|
||||
line "BATTLE ROOMS in"
|
||||
cont "the BATTLE TOWER."
|
||||
|
||||
para "Each ROOM holds"
|
||||
line "seven trainers."
|
||||
|
||||
para "Beat them all, and"
|
||||
line "win a prize."
|
||||
|
||||
para "To interrupt a"
|
||||
line "session, you must"
|
||||
|
||||
para "SAVE. If not, you"
|
||||
line "won't be able to"
|
||||
|
||||
para "resume your ROOM"
|
||||
line "challenge."
|
||||
|
||||
para ""
|
||||
done
|
||||
; 0x9e9eb
|
||||
|
||||
UnknownText_0x9e9eb: ; 0x9e9eb
|
||||
db $0, "Received a list of", $4f
|
||||
db "LEADERS on the", $55
|
||||
db "HONOR ROLL.", $51
|
||||
db $57
|
||||
text "Received a list of"
|
||||
line "LEADERS on the"
|
||||
cont "HONOR ROLL."
|
||||
|
||||
para ""
|
||||
done
|
||||
; 0x9ea1b
|
||||
|
||||
UnknownText_0x9ea1b: ; 0x9ea1b
|
||||
@ -487,8 +519,10 @@ UnknownText_0x9ea1b: ; 0x9ea1b
|
||||
; 0x9ea3c
|
||||
|
||||
UnknownText_0x9ea3c: ; 0x9ea3c
|
||||
db $0, "Thank you!", $51
|
||||
db $57
|
||||
text "Thank you!"
|
||||
|
||||
para ""
|
||||
done
|
||||
; 0x9ea49
|
||||
|
||||
UnknownText_0x9ea49: ; 0x9ea49
|
||||
@ -498,25 +532,35 @@ UnknownText_0x9ea49: ; 0x9ea49
|
||||
; 0x9ea5f
|
||||
|
||||
UnknownText_0x9ea5f: ; 0x9ea5f
|
||||
db $0, "Congratulations!", $51
|
||||
db "You've beaten all", $4f
|
||||
db "the trainers!", $51
|
||||
db "Your feat may be", $4f
|
||||
db "worth registering,", $51
|
||||
db $52, ". With your", $4f
|
||||
db "results, you may", $51
|
||||
db "be chosen as a", $4f
|
||||
db "ROOM LEADER.", $51
|
||||
db $57
|
||||
text "Congratulations!"
|
||||
|
||||
para "You've beaten all"
|
||||
line "the trainers!"
|
||||
|
||||
para "Your feat may be"
|
||||
line "worth registering,"
|
||||
|
||||
para "<PLAYER>. With your"
|
||||
line "results, you may"
|
||||
|
||||
para "be chosen as a"
|
||||
line "ROOM LEADER."
|
||||
|
||||
para ""
|
||||
done
|
||||
; 0x9eaef
|
||||
|
||||
UnknownText_0x9eaef: ; 0x9eaef
|
||||
db $0, "Congratulations!", $51
|
||||
db "You've beaten all", $4f
|
||||
db "the trainers!", $51
|
||||
db "For that, you get", $4f
|
||||
db "this great prize!", $51
|
||||
db $57
|
||||
text "Congratulations!"
|
||||
|
||||
para "You've beaten all"
|
||||
line "the trainers!"
|
||||
|
||||
para "For that, you get"
|
||||
line "this great prize!"
|
||||
|
||||
para ""
|
||||
done
|
||||
; 0x9eb45
|
||||
|
||||
UnknownText_0x9eb45: ; 0x9eb45
|
||||
@ -529,13 +573,13 @@ UnknownText_0x9eb45: ; 0x9eb45
|
||||
; 0x9eb7e
|
||||
|
||||
UnknownText_0x9eb7e: ; 0x9eb7e
|
||||
db $0, $52, " got five", $4f
|
||||
db "@"
|
||||
text "<PLAYER> got five"
|
||||
line "@"
|
||||
text_from_ram StringBuffer4
|
||||
db $0, "!@"
|
||||
text "!@"
|
||||
sound0x0F
|
||||
text_waitbutton
|
||||
db $50
|
||||
db "@"
|
||||
; 0x9eb94
|
||||
|
||||
UnknownText_0x9eb94: ; 0x9eb94
|
||||
|
@ -19,9 +19,11 @@ EkansScript_0x19594c: ; 0x19594c
|
||||
end
|
||||
; 0x195956
|
||||
|
||||
UnknownText_0x195956: ; 0x195956
|
||||
limited_interpret_data 2
|
||||
db $0, "ズ", $03, $00
|
||||
UnknownScript_0x195956:
|
||||
jumpstd picturebookshelf
|
||||
|
||||
UnknownScript_0x195959:
|
||||
jumpstd magazinebookshelf
|
||||
|
||||
UnknownText_0x19595c: ; 0x19595c
|
||||
text "A clan of trainers"
|
||||
|
@ -275,7 +275,7 @@ UnknownText_0x195196:
|
||||
done
|
||||
|
||||
UnknownText_0x1951bf:
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "TM24."
|
||||
done
|
||||
|
||||
|
@ -111,7 +111,7 @@ UnknownText_0x1809fe: ; 0x1809fe
|
||||
para "determined. Per-"
|
||||
line "fect for battle!"
|
||||
|
||||
para "Ready, ", $52, "?"
|
||||
para "Ready, <PLAYER>?"
|
||||
line "You will bow down"
|
||||
|
||||
para "to our overwhelm-"
|
||||
|
@ -261,7 +261,7 @@ UnknownText_0x185ecc: ; 0x185ecc
|
||||
|
||||
para "And you are…?"
|
||||
|
||||
para $52, "? Glad to"
|
||||
para "<PLAYER>? Glad to"
|
||||
line "meet you!"
|
||||
|
||||
para "I heard rumors"
|
||||
|
@ -222,7 +222,7 @@ UnknownText_0x18626a: ; 0x18626a
|
||||
|
||||
para "I'm all choked up!"
|
||||
|
||||
para $52, ", I owe"
|
||||
para "<PLAYER>, I owe"
|
||||
line "this all to you!"
|
||||
|
||||
para "Thank you!"
|
||||
@ -239,7 +239,7 @@ UnknownText_0x18626a: ; 0x18626a
|
||||
para "I'm going to track"
|
||||
line "SUICUNE."
|
||||
|
||||
para $52, ", let's"
|
||||
para "<PLAYER>, let's"
|
||||
line "meet again!"
|
||||
|
||||
para "Farewell!"
|
||||
|
@ -207,14 +207,14 @@ EatathonContestPosterText:
|
||||
done
|
||||
|
||||
FoundLeftoversText:
|
||||
text $52, " found"
|
||||
text "<PLAYER> found"
|
||||
line "@"
|
||||
text_from_ram StringBuffer3
|
||||
text "!"
|
||||
done
|
||||
|
||||
NoRoomForLeftoversText:
|
||||
text "But ", $52, " can't"
|
||||
text "But <PLAYER> can't"
|
||||
line "hold another item…"
|
||||
done
|
||||
|
||||
|
@ -110,7 +110,7 @@ CeladonClangText:
|
||||
|
||||
para "@"
|
||||
text_from_ram StringBuffer3
|
||||
db $0
|
||||
text ""
|
||||
line "popped out."
|
||||
done
|
||||
|
||||
|
@ -238,7 +238,7 @@ UnknownText_0x72c3e: ; 0x72c3e
|
||||
; 0x72c96
|
||||
|
||||
UnknownText_0x72c96: ; 0x72c96
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "RAINBOWBADGE."
|
||||
done
|
||||
; 0x72cb0
|
||||
|
@ -15,7 +15,7 @@ CeladonMansion2FBookshelf:
|
||||
jumpstd difficultbookshelf
|
||||
|
||||
CeladonMansion2FComputerText:
|
||||
text $52, " turned on"
|
||||
text "<PLAYER> turned on"
|
||||
line "the PC."
|
||||
|
||||
para "…"
|
||||
|
@ -30,7 +30,7 @@ UnknownText_0x71aa1: ; 0x71aa1
|
||||
text "There's graffiti"
|
||||
line "on the wall…"
|
||||
|
||||
para $52, " added a"
|
||||
para "<PLAYER> added a"
|
||||
line "moustache!"
|
||||
done
|
||||
; 0x71ad4
|
||||
|
@ -109,7 +109,7 @@ UnknownText_0x71f22: ; 0x71f22
|
||||
; 0x71f65
|
||||
|
||||
UnknownText_0x71f65: ; 0x71f65
|
||||
text $52, ", have you"
|
||||
text "<PLAYER>, have you"
|
||||
line "heard?"
|
||||
|
||||
para "There have been"
|
||||
@ -126,13 +126,13 @@ UnknownText_0x71f65: ; 0x71f65
|
||||
line "ECRUTEAK."
|
||||
|
||||
para "I'll be seeing"
|
||||
line "you, ", $52, "!"
|
||||
line "you, <PLAYER>!"
|
||||
done
|
||||
; 0x7201a
|
||||
|
||||
UnknownText_0x7201a: ; 0x7201a
|
||||
text "Oh, by the way,"
|
||||
line $52, "."
|
||||
line "<PLAYER>."
|
||||
|
||||
para "Have you caught"
|
||||
line "the legendary"
|
||||
@ -149,7 +149,7 @@ UnknownText_0x7201a: ; 0x7201a
|
||||
cont "you'll inform me."
|
||||
|
||||
para "I'm counting on"
|
||||
line "you, ", $52, "!"
|
||||
line "you, <PLAYER>!"
|
||||
done
|
||||
; 0x720b8
|
||||
|
||||
|
@ -335,7 +335,7 @@ UnknownText_0x18870c: ; 0x18870c
|
||||
; 0x188768
|
||||
|
||||
UnknownText_0x188768: ; 0x188768
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "CASCADEBADGE."
|
||||
done
|
||||
; 0x188782
|
||||
|
@ -409,7 +409,7 @@ GuideGentGiftText:
|
||||
done
|
||||
|
||||
GotMapCardText:
|
||||
text $52, "'s #GEAR"
|
||||
text "<PLAYER>'s #GEAR"
|
||||
line "now has a MAP!"
|
||||
done
|
||||
|
||||
|
@ -271,7 +271,7 @@ UnknownText_0x1a03cc:
|
||||
|
||||
UnknownText_0x1a0433:
|
||||
text "EUSINE: Yo,"
|
||||
line $52, "."
|
||||
line "<PLAYER>."
|
||||
|
||||
para "Wasn't that"
|
||||
line "SUICUNE just now?"
|
||||
@ -303,7 +303,7 @@ UnknownText_0x1a0433:
|
||||
line "a trainer to earn"
|
||||
cont "SUICUNE's respect!"
|
||||
|
||||
para "Come on, ", $52, "."
|
||||
para "Come on, <PLAYER>."
|
||||
line "Let's battle now!"
|
||||
done
|
||||
|
||||
@ -314,7 +314,7 @@ UnknownText_0x1a05a1:
|
||||
|
||||
UnknownText_0x1a05c3:
|
||||
text "You're amazing,"
|
||||
line $52, "!"
|
||||
line "<PLAYER>!"
|
||||
|
||||
para "No wonder #MON"
|
||||
line "gravitate to you."
|
||||
|
@ -268,7 +268,7 @@ UnknownText_0x9d7f6: ; 0x9d7f6
|
||||
; 0x9d835
|
||||
|
||||
UnknownText_0x9d835: ; 0x9d835
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "STORMBADGE."
|
||||
done
|
||||
; 0x9d84d
|
||||
|
@ -59,7 +59,7 @@ PharmacistGiveSecretpotionText:
|
||||
done
|
||||
|
||||
ReceivedSecretpotionText:
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "SECRETPOTION."
|
||||
done
|
||||
|
||||
|
@ -87,7 +87,7 @@ CianwoodGymGuyText: ; 0x9dc33
|
||||
; 0x9ddc5
|
||||
|
||||
CianwoodGymGuyWinText: ; 0x9ddc5
|
||||
text $52, "! You won!"
|
||||
text "<PLAYER>! You won!"
|
||||
line "I could tell by"
|
||||
cont "looking at you!"
|
||||
done
|
||||
|
@ -198,13 +198,13 @@ MovementData_0x18afd0: ; 0x18afd0
|
||||
; 0x18afda
|
||||
|
||||
UnknownText_0x18afda: ; 0x18afda
|
||||
text $52, ": Hi! Do"
|
||||
text "<PLAYER>: Hi! Do"
|
||||
line "you like #MON?"
|
||||
|
||||
para $52, ": Uh, no, I"
|
||||
para "<PLAYER>: Uh, no, I"
|
||||
line "just asked you."
|
||||
|
||||
para $52, ": Huh?"
|
||||
para "<PLAYER>: Huh?"
|
||||
line "You're strange!"
|
||||
done
|
||||
; 0x18b028
|
||||
@ -219,17 +219,17 @@ UnknownText_0x18b028: ; 0x18b028
|
||||
; 0x18b064
|
||||
|
||||
UnknownText_0x18b064: ; 0x18b064
|
||||
text $52, ": Hi!"
|
||||
text "<PLAYER>: Hi!"
|
||||
line "I heard that you"
|
||||
|
||||
para "lost your favorite"
|
||||
line "# DOLL."
|
||||
|
||||
para $52, ": If I find"
|
||||
para "<PLAYER>: If I find"
|
||||
line "it, you'll give me"
|
||||
cont "a rail PASS?"
|
||||
|
||||
para $52, ": I'll go"
|
||||
para "<PLAYER>: I'll go"
|
||||
line "find it for you."
|
||||
|
||||
para "You think you lost"
|
||||
@ -286,13 +286,13 @@ UnknownText_0x18b214: ; 0x18b214
|
||||
; 0x18b298
|
||||
|
||||
UnknownText_0x18b298: ; 0x18b298
|
||||
text $52, ": Hi!"
|
||||
text "<PLAYER>: Hi!"
|
||||
line "Thanks a lot for"
|
||||
cont "the rail PASS!"
|
||||
|
||||
para $52, ": Pardon?"
|
||||
para "<PLAYER>: Pardon?"
|
||||
|
||||
para $52, ": Is it"
|
||||
para "<PLAYER>: Is it"
|
||||
line "that fun to mimic"
|
||||
cont "my every move?"
|
||||
done
|
||||
@ -305,29 +305,29 @@ UnknownText_0x18b2f5: ; 0x18b2f5
|
||||
; 0x18b316
|
||||
|
||||
UnknownText_0x18b316: ; 0x18b316
|
||||
text $52, ": Hi. You"
|
||||
text "<PLAYER>: Hi. You"
|
||||
line "must like #MON."
|
||||
|
||||
para $52, ": No, not"
|
||||
para "<PLAYER>: No, not"
|
||||
line "me. I asked you."
|
||||
|
||||
para $52, ": Pardon?"
|
||||
para "<PLAYER>: Pardon?"
|
||||
line "You're weird!"
|
||||
done
|
||||
; 0x18b366
|
||||
|
||||
UnknownText_0x18b366: ; 0x18b366
|
||||
text $52, ": Hi. Did"
|
||||
text "<PLAYER>: Hi. Did"
|
||||
line "you really lose"
|
||||
cont "your # DOLL?"
|
||||
|
||||
para $52, ": You'll"
|
||||
para "<PLAYER>: You'll"
|
||||
line "really give me a"
|
||||
|
||||
para "rail PASS if I"
|
||||
line "find it for you?"
|
||||
|
||||
para $52, ": Sure,"
|
||||
para "<PLAYER>: Sure,"
|
||||
line "I'll look for it!"
|
||||
|
||||
para "You think you lost"
|
||||
@ -337,12 +337,12 @@ UnknownText_0x18b366: ; 0x18b366
|
||||
; 0x18b415
|
||||
|
||||
UnknownText_0x18b415: ; 0x18b415
|
||||
text $52, ": Thank you"
|
||||
text "<PLAYER>: Thank you"
|
||||
line "for the rail PASS!"
|
||||
|
||||
para $52, ": …Pardon?"
|
||||
para "<PLAYER>: …Pardon?"
|
||||
|
||||
para $52, ": Is it"
|
||||
para "<PLAYER>: Is it"
|
||||
line "really that fun to"
|
||||
|
||||
para "copy what I say"
|
||||
|
@ -143,7 +143,7 @@ UnknownText_0x631a1: ; 0x631a1
|
||||
; 0x631ae
|
||||
|
||||
UnknownText_0x631ae: ; 0x631ae
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "ODD EGG!"
|
||||
done
|
||||
; 0x631c3
|
||||
|
@ -503,7 +503,7 @@ UnknownText_0x18d47c: ; 0x18d47c
|
||||
para "That conviction is"
|
||||
line "what is important!"
|
||||
|
||||
para $52, ", don't"
|
||||
para "<PLAYER>, don't"
|
||||
line "lose that belief."
|
||||
|
||||
para "It will see you"
|
||||
@ -564,7 +564,7 @@ UnknownText_0x18d604: ; 0x18d604
|
||||
; 0x18d697
|
||||
|
||||
UnknownText_0x18d697: ; 0x18d697
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "DRATINI!"
|
||||
done
|
||||
; 0x18d6ac
|
||||
@ -697,7 +697,7 @@ UnknownText_0x18d9bf: ; 0x18d9bf
|
||||
; 0x18d9f2
|
||||
|
||||
UnknownText_0x18d9f2: ; 0x18d9f2
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "RISINGBADGE."
|
||||
done
|
||||
; 0x18da0b
|
||||
@ -722,7 +722,8 @@ UnknownText_0x18da0b: ; 0x18da0b
|
||||
; 0x18dab4
|
||||
|
||||
UnknownText_0x18dab4: ; 0x18dab4
|
||||
db $0, $56, $56, $56, $56, $56, $56, $57
|
||||
text $56, $56, $56, $56, $56, $56
|
||||
done
|
||||
; 0x18dabc
|
||||
|
||||
DragonShrine_MapEventHeader: ; 0x18dabc
|
||||
|
@ -306,7 +306,7 @@ UnknownText_0x18c9bf: ; 0x18c9bf
|
||||
; 0x18c9fb
|
||||
|
||||
UnknownText_0x18c9fb: ; 0x18c9fb
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "TM24."
|
||||
done
|
||||
; 0x18ca0d
|
||||
@ -384,7 +384,7 @@ UnknownText_0x18cc2e: ; 0x18cc2e
|
||||
|
||||
UnknownText_0x18cc83: ; 0x18cc83
|
||||
text "…"
|
||||
line "What? ", $52, "?"
|
||||
line "What? <PLAYER>?"
|
||||
|
||||
para "…No, I won't"
|
||||
line "battle you now…"
|
||||
@ -501,7 +501,7 @@ UnknownText_0x18cf0f: ; 0x18cf0f
|
||||
; 0x18cf41
|
||||
|
||||
UnknownText_0x18cf41: ; 0x18cf41
|
||||
text $52, " found"
|
||||
text "<PLAYER> found"
|
||||
line "@"
|
||||
text_from_ram StringBuffer3
|
||||
text "!"
|
||||
@ -509,7 +509,7 @@ UnknownText_0x18cf41: ; 0x18cf41
|
||||
; 0x18cf51
|
||||
|
||||
UnknownText_0x18cf51: ; 0x18cf51
|
||||
text "But ", $52, " can't"
|
||||
text "But <PLAYER> can't"
|
||||
line "carry any more"
|
||||
cont "items."
|
||||
done
|
||||
|
@ -309,7 +309,7 @@ UnknownText_0x9a00a: ; 0x9a00a
|
||||
; 0x9a043
|
||||
|
||||
UnknownText_0x9a043: ; 0x9a043
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "FOGBADGE."
|
||||
done
|
||||
; 0x9a059
|
||||
@ -465,7 +465,7 @@ EcruteakGymGuyText: ; 0x9a3e8
|
||||
; 0x9a452
|
||||
|
||||
EcruteakGymGuyWinText: ; 0x9a452
|
||||
text "Whew, ", $52, "."
|
||||
text "Whew, <PLAYER>."
|
||||
line "You did great!"
|
||||
|
||||
para "I was cowering in"
|
||||
|
@ -111,7 +111,7 @@ UnknownText_0x98ed8: ; 0x98ed8
|
||||
text "Hi, I'm BILL. And"
|
||||
line "who are you?"
|
||||
|
||||
para "Hmm, ", $52, ", huh?"
|
||||
para "Hmm, <PLAYER>, huh?"
|
||||
line "You've come at the"
|
||||
cont "right time."
|
||||
done
|
||||
|
@ -18,7 +18,7 @@ ElmsHouseBookshelf:
|
||||
jumpstd difficultbookshelf
|
||||
|
||||
ElmsWifeText:
|
||||
text "Hi, ", $14, "! My"
|
||||
text "Hi, <PLAY_G>! My"
|
||||
line "husband's always"
|
||||
|
||||
para "so busy--I hope"
|
||||
|
@ -794,7 +794,7 @@ AfterChikoritaMovement: ; 0x78fb0
|
||||
; 0x78fb6
|
||||
|
||||
UnknownText_0x78fb6: ; 0x78fb6
|
||||
text "ELM: ", $14, "!"
|
||||
text "ELM: <PLAY_G>!"
|
||||
line "There you are!"
|
||||
|
||||
para "I needed to ask"
|
||||
@ -807,7 +807,7 @@ UnknownText_0x78fb6: ; 0x78fb6
|
||||
line "wondering if you"
|
||||
|
||||
para "could help me with"
|
||||
line "it, ", $14, "."
|
||||
line "it, <PLAY_G>."
|
||||
|
||||
para "You see…"
|
||||
|
||||
@ -834,7 +834,7 @@ UnknownText_0x78fb6: ; 0x78fb6
|
||||
; 0x790fa
|
||||
|
||||
UnknownText_0x790fa: ; 0x790fa
|
||||
text "Thanks, ", $14, "!"
|
||||
text "Thanks, <PLAY_G>!"
|
||||
|
||||
para "You're a great"
|
||||
line "help!"
|
||||
@ -902,7 +902,7 @@ UnknownText_0x791df: ; 0x791df
|
||||
|
||||
para "I know!"
|
||||
|
||||
para $14, ", can you"
|
||||
para "<PLAY_G>, can you"
|
||||
line "go in our place?"
|
||||
done
|
||||
; 0x792ff
|
||||
@ -916,7 +916,7 @@ UnknownText_0x792ff: ; 0x792ff
|
||||
|
||||
para "You'll be that"
|
||||
line "#MON's first"
|
||||
cont "partner, ", $14, "!"
|
||||
cont "partner, <PLAY_G>!"
|
||||
|
||||
para "Go on. Pick one!"
|
||||
done
|
||||
@ -973,7 +973,7 @@ ChoseStarterText: ; 0x79487
|
||||
; 0x794ad
|
||||
|
||||
ReceivedStarterText: ; 0x794ad
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "@"
|
||||
text_from_ram StringBuffer3
|
||||
text "!"
|
||||
@ -1012,12 +1012,12 @@ ElmDirectionsText2: ; 0x79581
|
||||
done
|
||||
|
||||
ElmDirectionsText3: ; 0x795db
|
||||
text $14, ", I'm"
|
||||
text "<PLAY_G>, I'm"
|
||||
line "counting on you!"
|
||||
done
|
||||
|
||||
GotElmsNumberText: ; 0x795f3
|
||||
text $52, " got ELM's"
|
||||
text "<PLAYER> got ELM's"
|
||||
line "phone number."
|
||||
done
|
||||
|
||||
@ -1048,7 +1048,7 @@ ElmsLabHealingMachineText2:
|
||||
done
|
||||
|
||||
ElmAfterTheftText1: ; 0x796cd
|
||||
text "ELM: ", $14, ", this"
|
||||
text "ELM: <PLAY_G>, this"
|
||||
line "is terrible…"
|
||||
|
||||
para "Oh, yes, what was"
|
||||
@ -1058,7 +1058,7 @@ ElmAfterTheftText1: ; 0x796cd
|
||||
; 0x79712
|
||||
|
||||
ElmAfterTheftText2: ; 0x79712
|
||||
text $52, " handed"
|
||||
text "<PLAYER> handed"
|
||||
line "the MYSTERY EGG to"
|
||||
cont "PROF.ELM."
|
||||
done
|
||||
@ -1084,7 +1084,7 @@ ElmAfterTheftText5: ; 0x79780
|
||||
para "PROF.OAK gave you"
|
||||
line "a #DEX?"
|
||||
|
||||
para $14, ", is that"
|
||||
para "<PLAY_G>, is that"
|
||||
line "true? Th-that's"
|
||||
cont "incredible!"
|
||||
|
||||
@ -1093,7 +1093,7 @@ ElmAfterTheftText5: ; 0x79780
|
||||
cont "tial of people as"
|
||||
cont "trainers."
|
||||
|
||||
para "Wow, ", $14, ". You"
|
||||
para "Wow, <PLAY_G>. You"
|
||||
line "may have what it"
|
||||
|
||||
para "takes to become"
|
||||
@ -1114,7 +1114,7 @@ ElmAfterTheftText5: ; 0x79780
|
||||
; 0x798cf
|
||||
|
||||
ElmAfterTheftText6: ; 0x798cf
|
||||
text "…", $14, ". The"
|
||||
text "…<PLAY_G>. The"
|
||||
line "road to the"
|
||||
|
||||
para "championship will"
|
||||
@ -1136,7 +1136,7 @@ ElmStudyingEggText: ; 0x7993c
|
||||
; 0x7997d
|
||||
|
||||
ElmAideHasEggText: ; 0x7997d
|
||||
text "ELM: ", $14, "?"
|
||||
text "ELM: <PLAY_G>?"
|
||||
line "Didn't you meet my"
|
||||
cont "assistant?"
|
||||
|
||||
@ -1159,7 +1159,7 @@ ElmWaitingEggHatchText: ; 0x79a1b
|
||||
; 0x79a40
|
||||
|
||||
UnknownText_0x79a40: ; 0x79a40
|
||||
text $14, "? I thought"
|
||||
text "<PLAY_G>? I thought"
|
||||
line "the EGG hatched."
|
||||
|
||||
para "Where is the"
|
||||
@ -1168,7 +1168,7 @@ UnknownText_0x79a40: ; 0x79a40
|
||||
; 0x79a72
|
||||
|
||||
ShowElmTogepiText1: ; 0x79a72
|
||||
text "ELM: ", $14, ", you"
|
||||
text "ELM: <PLAY_G>, you"
|
||||
line "look great!"
|
||||
done
|
||||
; 0x79a8b
|
||||
@ -1194,7 +1194,7 @@ ShowElmTogepiText3: ; 0x79a9f
|
||||
; 0x79b1c
|
||||
|
||||
ElmGiveEverstoneText1: ; 0x79b1c
|
||||
text "Thanks, ", $14, "!"
|
||||
text "Thanks, <PLAY_G>!"
|
||||
line "You're helping"
|
||||
|
||||
para "unravel #MON"
|
||||
@ -1227,7 +1227,7 @@ ElmGiveEverstoneText2: ; 0x79b8d
|
||||
; 0x79c37
|
||||
|
||||
UnknownText_0x79c37: ; 0x79c37
|
||||
text "ELM: ", $14, ", I'll"
|
||||
text "ELM: <PLAY_G>, I'll"
|
||||
line "call you if any-"
|
||||
cont "thing comes up."
|
||||
done
|
||||
@ -1249,7 +1249,7 @@ UnknownText_0x79c65: ; 0x79c65
|
||||
; 0x79cd0
|
||||
|
||||
ElmGiveMasterBallText1: ; 0x79cd0
|
||||
text "ELM: Hi, ", $14, "!"
|
||||
text "ELM: Hi, <PLAY_G>!"
|
||||
line "Thanks to you, my"
|
||||
|
||||
para "research is going"
|
||||
@ -1279,12 +1279,12 @@ ElmGiveMasterBallText2: ; 0x79d31
|
||||
line "make much better"
|
||||
|
||||
para "use of it than I"
|
||||
line "can, ", $14, "!"
|
||||
line "can, <PLAY_G>!"
|
||||
done
|
||||
; 0x79df3
|
||||
|
||||
ElmGiveTicketText1: ; 0x79df3
|
||||
text "ELM: ", $14, "!"
|
||||
text "ELM: <PLAY_G>!"
|
||||
line "There you are!"
|
||||
|
||||
para "I called because I"
|
||||
@ -1304,7 +1304,7 @@ ElmGiveTicketText2: ; 0x79e6f
|
||||
line "from OLIVINE CITY."
|
||||
|
||||
para "But you knew that"
|
||||
line "already, ", $14, "."
|
||||
line "already, <PLAY_G>."
|
||||
|
||||
para "After all, you've"
|
||||
line "traveled all over"
|
||||
@ -1323,7 +1323,7 @@ UnknownText_0x79f0b: ; 0x79f0b
|
||||
; 0x79f38
|
||||
|
||||
UnknownText_0x79f38: ; 0x79f38
|
||||
text $14, ", I want"
|
||||
text "<PLAY_G>, I want"
|
||||
line "you to have this"
|
||||
cont "for your errand."
|
||||
done
|
||||
@ -1363,7 +1363,7 @@ UnknownText_0x79f95: ; 0x79f95
|
||||
; 0x7a078
|
||||
|
||||
UnknownText_0x7a078: ; 0x7a078
|
||||
text $14, "!"
|
||||
text "<PLAY_G>!"
|
||||
|
||||
para "Use these on your"
|
||||
line "#DEX quest!"
|
||||
@ -1404,7 +1404,7 @@ UnknownText_0x7a0f0: ; 0x7a0f0
|
||||
; 0x7a1c0
|
||||
|
||||
UnknownText_0x7a1c0: ; 0x7a1c0
|
||||
text "OK! So ", $53
|
||||
text "OK! So <RIVAL>"
|
||||
line "was his name."
|
||||
|
||||
para "Thanks for helping"
|
||||
@ -1425,7 +1425,7 @@ ElmsLabWindowText2:
|
||||
done
|
||||
|
||||
ElmsLabTravelTip1Text:
|
||||
text $52, " opened a"
|
||||
text "<PLAYER> opened a"
|
||||
line "book."
|
||||
|
||||
para "Travel Tip 1:"
|
||||
@ -1435,7 +1435,7 @@ ElmsLabTravelTip1Text:
|
||||
done
|
||||
|
||||
ElmsLabTravelTip2Text:
|
||||
text $52, " opened a"
|
||||
text "<PLAYER> opened a"
|
||||
line "book."
|
||||
|
||||
para "Travel Tip 2:"
|
||||
@ -1445,7 +1445,7 @@ ElmsLabTravelTip2Text:
|
||||
done
|
||||
|
||||
ElmsLabTravelTip3Text:
|
||||
text $52, " opened a"
|
||||
text "<PLAYER> opened a"
|
||||
line "book."
|
||||
|
||||
para "Travel Tip 3:"
|
||||
@ -1456,7 +1456,7 @@ ElmsLabTravelTip3Text:
|
||||
done
|
||||
|
||||
ElmsLabTravelTip4Text:
|
||||
text $52, " opened a"
|
||||
text "<PLAYER> opened a"
|
||||
line "book."
|
||||
|
||||
para "Travel Tip 4:"
|
||||
|
@ -405,7 +405,7 @@ UnknownText_0x760ae: ; 0x760ae
|
||||
; 0x76143
|
||||
|
||||
UnknownText_0x76143: ; 0x76143
|
||||
text $14, ", was it?"
|
||||
text "<PLAY_G>, was it?"
|
||||
line "I heard you enter-"
|
||||
cont "tained my grand-"
|
||||
cont "daughter."
|
||||
|
@ -271,7 +271,7 @@ UnknownText_0x195fa1: ; 0x195fa1
|
||||
; 0x195feb
|
||||
|
||||
UnknownText_0x195feb: ; 0x195feb
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "SOULBADGE."
|
||||
done
|
||||
; 0x196002
|
||||
|
@ -76,7 +76,7 @@ UnknownText_0x547f8: ; 0x547f8
|
||||
; 0x54848
|
||||
|
||||
UnknownText_0x54848: ; 0x54848
|
||||
text $52, " borrowed a"
|
||||
text "<PLAYER> borrowed a"
|
||||
line "BICYCLE."
|
||||
done
|
||||
; 0x5485f
|
||||
|
@ -114,7 +114,7 @@ BillsHouseRadio:
|
||||
jumpstd radio2
|
||||
|
||||
UnknownText_0x54c74: ; 0x54c74
|
||||
text "BILL: Hi, ", $52, "!"
|
||||
text "BILL: Hi, <PLAYER>!"
|
||||
line "Do us a favor and"
|
||||
cont "take this EEVEE."
|
||||
|
||||
@ -130,7 +130,7 @@ UnknownText_0x54c74: ; 0x54c74
|
||||
|
||||
para "Can I count on you"
|
||||
line "to play with it,"
|
||||
cont $52, "?"
|
||||
cont "<PLAYER>?"
|
||||
done
|
||||
; 0x54d3f
|
||||
|
||||
@ -150,7 +150,7 @@ UnknownText_0x54d3f: ; 0x54d3f
|
||||
; 0x54dae
|
||||
|
||||
UnknownText_0x54dae: ; 0x54dae
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "EEVEE!"
|
||||
done
|
||||
; 0x54dc1
|
||||
@ -230,7 +230,7 @@ UnknownText_0x54f9e: ; 0x54f9e
|
||||
; 0x54fd9
|
||||
|
||||
UnknownText_0x54fd9: ; 0x54fd9
|
||||
text $52, " recorded"
|
||||
text "<PLAYER> recorded"
|
||||
line "BILL's number."
|
||||
done
|
||||
; 0x54ff3
|
||||
|
@ -536,7 +536,8 @@ UnknownText_0x1991ac:
|
||||
done
|
||||
|
||||
UnknownText_0x1991cf:
|
||||
db $0, $57
|
||||
text ""
|
||||
done
|
||||
|
||||
GoldenrodCity_MapEventHeader:
|
||||
; filler
|
||||
|
@ -314,7 +314,7 @@ UnknownText_0x54222: ; 0x54222
|
||||
; 0x54273
|
||||
|
||||
UnknownText_0x54273: ; 0x54273
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "PLAINBADGE."
|
||||
done
|
||||
; 0x5428b
|
||||
|
@ -781,7 +781,7 @@ UnknownText_0x62260: ; 0x62260
|
||||
; 0x622f0
|
||||
|
||||
UnknownText_0x622f0: ; 0x622f0
|
||||
text $52, ", isn't it?"
|
||||
text "<PLAYER>, isn't it?"
|
||||
|
||||
para "Congratulations!"
|
||||
|
||||
@ -873,7 +873,7 @@ UnknownText_0x6252a: ; 0x6252a
|
||||
; 0x62549
|
||||
|
||||
UnknownText_0x62549: ; 0x62549
|
||||
text $52, " gave away"
|
||||
text "<PLAYER> gave away"
|
||||
line "the EON MAIL."
|
||||
done
|
||||
; 0x62564
|
||||
|
@ -108,7 +108,7 @@ UnknownText_0x1814a6: ; 0x1814a6
|
||||
para "all the makings"
|
||||
line "of greatness!"
|
||||
|
||||
para $14, ", allow me"
|
||||
para "<PLAY_G>, allow me"
|
||||
line "to register you"
|
||||
|
||||
para "and your partners"
|
||||
|
@ -990,7 +990,7 @@ UnknownText_0x6f394: ; 0x6f394
|
||||
; 0x6f43b
|
||||
|
||||
UnknownText_0x6f43b: ; 0x6f43b
|
||||
text $52, " put in the"
|
||||
text "<PLAYER> put in the"
|
||||
line "GS BALL."
|
||||
done
|
||||
; 0x6f452
|
||||
@ -999,7 +999,7 @@ UnknownText_0x6f452: ; 0x6f452
|
||||
text "Whew, wasn't that"
|
||||
line "something!"
|
||||
|
||||
para $52, ", that was"
|
||||
para "<PLAYER>, that was"
|
||||
line "fantastic. Thanks!"
|
||||
|
||||
para "The legends about"
|
||||
|
@ -246,7 +246,7 @@ UnknownText_0x1801f5: ; 0x1801f5
|
||||
para "are going to pound"
|
||||
line "you."
|
||||
|
||||
para $52, "!"
|
||||
para "<PLAYER>!"
|
||||
line "I challenge you!"
|
||||
done
|
||||
; 0x180295
|
||||
|
@ -94,7 +94,7 @@ UnknownText_0x180c27: ; 0x180c27
|
||||
text "I am KAREN of the"
|
||||
line "ELITE FOUR."
|
||||
|
||||
para "You're ", $52, "?"
|
||||
para "You're <PLAYER>?"
|
||||
line "How amusing."
|
||||
|
||||
para "I love dark-type"
|
||||
|
@ -115,7 +115,7 @@ UnknownScript_0x7a572: ; 0x7a572
|
||||
; 0x7a578
|
||||
|
||||
GearName: ; 0x7a578
|
||||
db $54, "GEAR@"
|
||||
db "#GEAR@"
|
||||
; 0x7a57e
|
||||
|
||||
UnknownScript_0x7a57e: ; 0x7a57e
|
||||
@ -232,7 +232,7 @@ MovementData_0x7a602: ; 0x7a602
|
||||
; 0x7a604
|
||||
|
||||
UnknownText_0x7a604: ; 0x7a604
|
||||
text "Oh, ", $52, "…! Our"
|
||||
text "Oh, <PLAYER>…! Our"
|
||||
line "neighbor, PROF."
|
||||
|
||||
para "ELM, was looking"
|
||||
@ -342,7 +342,7 @@ UnknownText_0x7a8e5: ; 0x7a8e5
|
||||
; 0x7a957
|
||||
|
||||
UnknownText_0x7a957: ; 0x7a957
|
||||
text $52, ", do it!"
|
||||
text "<PLAYER>, do it!"
|
||||
|
||||
para "I'm behind you all"
|
||||
line "the way!"
|
||||
@ -351,25 +351,25 @@ UnknownText_0x7a957: ; 0x7a957
|
||||
|
||||
NeighborMornIntroText:
|
||||
text "Good morning,"
|
||||
line $14, "!"
|
||||
line "<PLAY_G>!"
|
||||
|
||||
para "I'm visiting!"
|
||||
done
|
||||
|
||||
NeighborDayIntroText:
|
||||
text "Hello, ", $14, "!"
|
||||
text "Hello, <PLAY_G>!"
|
||||
line "I'm visiting!"
|
||||
done
|
||||
|
||||
NeighborNiteIntroText:
|
||||
text "Good evening,"
|
||||
line $14, "!"
|
||||
line "<PLAY_G>!"
|
||||
|
||||
para "I'm visiting!"
|
||||
done
|
||||
|
||||
NeighborText:
|
||||
text $14, ", have you"
|
||||
text "<PLAY_G>, have you"
|
||||
line "heard?"
|
||||
|
||||
para "My daughter is"
|
||||
|
@ -488,7 +488,7 @@ MovementData_0x18e46c: ; 0x18e46c
|
||||
UnknownText_0x18e473: ; 0x18e473
|
||||
text "Hm? Who are you?"
|
||||
|
||||
para $52, ", eh? You"
|
||||
para "<PLAYER>, eh? You"
|
||||
line "want me to make"
|
||||
cont "some BALLS?"
|
||||
|
||||
@ -528,7 +528,7 @@ UnknownText_0x18e473: ; 0x18e473
|
||||
; 0x18e615
|
||||
|
||||
UnknownText_0x18e615: ; 0x18e615
|
||||
text "KURT: Hi, ", $52, "!"
|
||||
text "KURT: Hi, <PLAYER>!"
|
||||
|
||||
para "You handled your-"
|
||||
line "self like a real"
|
||||
@ -591,7 +591,7 @@ UnknownText_0x18e7d8: ; 0x18e7d8
|
||||
; 0x18e7fb
|
||||
|
||||
UnknownText_0x18e7fb: ; 0x18e7fb
|
||||
text "KURT: Ah, ", $52, "!"
|
||||
text "KURT: Ah, <PLAYER>!"
|
||||
line "I just finished"
|
||||
cont "your BALL. Here!"
|
||||
done
|
||||
@ -645,7 +645,7 @@ UnknownText_0x18e949: ; 0x18e949
|
||||
; 0x18e95c
|
||||
|
||||
UnknownText_0x18e95c: ; 0x18e95c
|
||||
text $52, "!"
|
||||
text "<PLAYER>!"
|
||||
|
||||
para "This BALL started"
|
||||
line "to shake while I"
|
||||
|
@ -320,7 +320,7 @@ UnknownText_0x701b4:
|
||||
line "because of the"
|
||||
cont "rumors?"
|
||||
|
||||
para "You're ", $52, "?"
|
||||
para "You're <PLAYER>?"
|
||||
line "I'm LANCE, a"
|
||||
cont "trainer like you."
|
||||
|
||||
@ -330,7 +330,7 @@ UnknownText_0x701b4:
|
||||
|
||||
para "I saw the way you"
|
||||
line "battled earlier,"
|
||||
cont $14, "."
|
||||
cont "<PLAY_G>."
|
||||
|
||||
para "I can tell that"
|
||||
line "you're a trainer"
|
||||
@ -359,7 +359,7 @@ UnknownText_0x702c6:
|
||||
line "the cause."
|
||||
|
||||
para "I'll be waiting"
|
||||
line "for you, ", $14, "."
|
||||
line "for you, <PLAY_G>."
|
||||
done
|
||||
|
||||
UnknownText_0x70371:
|
||||
@ -378,7 +378,7 @@ UnknownText_0x703cb:
|
||||
done
|
||||
|
||||
UnknownText_0x703df:
|
||||
text $52, " obtained a"
|
||||
text "<PLAYER> obtained a"
|
||||
line "RED SCALE."
|
||||
done
|
||||
|
||||
|
@ -229,7 +229,7 @@ UnknownText_0x180f67: ; 0x180f67
|
||||
text "LANCE: I've been"
|
||||
line "waiting for you."
|
||||
|
||||
para $14, "!"
|
||||
para "<PLAY_G>!"
|
||||
|
||||
para "I knew that you,"
|
||||
line "with your skills,"
|
||||
@ -281,7 +281,7 @@ UnknownText_0x181132: ; 0x181132
|
||||
|
||||
para "You have become"
|
||||
line "truly powerful,"
|
||||
cont $14, "."
|
||||
cont "<PLAY_G>."
|
||||
|
||||
para "Your #MON have"
|
||||
line "responded to your"
|
||||
@ -308,7 +308,7 @@ UnknownText_0x1811dd: ; 0x1811dd
|
||||
|
||||
UnknownText_0x18121b: ; 0x18121b
|
||||
text "PROF.OAK: Ah,"
|
||||
line $14, "!"
|
||||
line "<PLAY_G>!"
|
||||
|
||||
para "It's been a long"
|
||||
line "while."
|
||||
@ -336,7 +336,7 @@ UnknownText_0x18121b: ; 0x18121b
|
||||
line "severed."
|
||||
|
||||
para "Congratulations,"
|
||||
line $14, "!"
|
||||
line "<PLAY_G>!"
|
||||
done
|
||||
; 0x18134b
|
||||
|
||||
@ -352,7 +352,7 @@ UnknownText_0x18137b: ; 0x18137b
|
||||
line "getting to be a"
|
||||
cont "bit too noisy…"
|
||||
|
||||
para $14, ", could you"
|
||||
para "<PLAY_G>, could you"
|
||||
line "come with me?"
|
||||
done
|
||||
; 0x1813c5
|
||||
|
@ -142,7 +142,7 @@ UnknownText_0x7effb: ; 0x7effb
|
||||
|
||||
UnknownText_0x7f0a1: ; 0x7f0a1
|
||||
text "Ah! So you're the"
|
||||
line $14, " who solved"
|
||||
line "<PLAY_G> who solved"
|
||||
|
||||
para "the POWER PLANT's"
|
||||
line "problem?"
|
||||
|
@ -285,7 +285,7 @@ UnknownText_0x199cb3: ; 0x199cb3
|
||||
; 0x199d3b
|
||||
|
||||
UnknownText_0x199d3b: ; 0x199d3b
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "GLACIERBADGE."
|
||||
done
|
||||
; 0x199d55
|
||||
|
@ -219,7 +219,7 @@ UnknownText_0x6c52a: ; 0x6c52a
|
||||
|
||||
UnknownText_0x6c549: ; 0x6c549
|
||||
text "What took you,"
|
||||
line $14, "?"
|
||||
line "<PLAY_G>?"
|
||||
|
||||
para "Just as I thought,"
|
||||
line "that strange radio"
|
||||
@ -236,7 +236,7 @@ UnknownText_0x6c59e: ; 0x6c59e
|
||||
; 0x6c5ba
|
||||
|
||||
UnknownText_0x6c5ba: ; 0x6c5ba
|
||||
text "LANCE: ", $14, ", we"
|
||||
text "LANCE: <PLAY_G>, we"
|
||||
line "should split up to"
|
||||
|
||||
para "check this place."
|
||||
|
@ -28,10 +28,11 @@ UnknownScript_0x199990: ; 0x199990
|
||||
end
|
||||
; 0x199996
|
||||
|
||||
; TODO wtf?
|
||||
UnknownText_0x199996: ; 0x199996
|
||||
limited_interpret_data 2
|
||||
db $0, "ズ", $03, $00
|
||||
UnknownScript_0x195996:
|
||||
jumpstd picturebookshelf
|
||||
|
||||
UnknownScript_0x195999:
|
||||
jumpstd magazinebookshelf
|
||||
|
||||
UnknownText_0x19999c: ; 0x19999c
|
||||
text "I heard that a red"
|
||||
|
@ -142,7 +142,7 @@ UnknownText_0x9d3ed: ; 0x9d3ed
|
||||
; 0x9d41b
|
||||
|
||||
UnknownText_0x9d41b: ; 0x9d41b
|
||||
text $52, " received a"
|
||||
text "<PLAYER> received a"
|
||||
line "#MON."
|
||||
done
|
||||
; 0x9d42f
|
||||
|
@ -99,7 +99,7 @@ UnknownText_0x74105: ; 0x74105
|
||||
text $56, " ", $56, " ", $56
|
||||
|
||||
para "It's been a while,"
|
||||
line $52, "."
|
||||
line "<PLAYER>."
|
||||
|
||||
para "…Since I lost to"
|
||||
line "you, I thought"
|
||||
@ -111,7 +111,7 @@ UnknownText_0x74105: ; 0x74105
|
||||
para "And we came up"
|
||||
line "with an answer."
|
||||
|
||||
para $52, ", now we'll"
|
||||
para "<PLAYER>, now we'll"
|
||||
line "show you!"
|
||||
done
|
||||
; 0x7419d
|
||||
@ -147,7 +147,7 @@ UnknownText_0x741fa: ; 0x741fa
|
||||
para "Because these guys"
|
||||
line "are behind me."
|
||||
|
||||
para "…Listen, ", $52, "."
|
||||
para "…Listen, <PLAYER>."
|
||||
|
||||
para "One of these days"
|
||||
line "I'm going to prove"
|
||||
|
@ -116,7 +116,7 @@ UnknownText_0x7e2c0: ; 0x7e2c0
|
||||
; 0x7e355
|
||||
|
||||
UnknownText_0x7e355: ; 0x7e355
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "TYROGUE."
|
||||
done
|
||||
; 0x7e36a
|
||||
|
@ -189,7 +189,7 @@ MovementData_0x196f61: ; 0x196f61
|
||||
|
||||
UnknownText_0x196f66: ; 0x196f66
|
||||
text "Hello, hello! You"
|
||||
line "must be ", $14, "."
|
||||
line "must be <PLAY_G>."
|
||||
|
||||
para "PROF.ELM said that"
|
||||
line "you would visit."
|
||||
@ -204,7 +204,7 @@ UnknownText_0x196fa8: ; 0x196fa8
|
||||
; 0x196fd2
|
||||
|
||||
UnknownText_0x196fd2: ; 0x196fd2
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "MYSTERY EGG."
|
||||
done
|
||||
; 0x196feb
|
||||
@ -267,7 +267,7 @@ UnknownText_0x19714a: ; 0x19714a
|
||||
|
||||
UnknownText_0x197185: ; 0x197185
|
||||
text "OAK: Aha! So"
|
||||
line "you're ", $14, "!"
|
||||
line "you're <PLAY_G>!"
|
||||
|
||||
para "I'm OAK! A #MON"
|
||||
line "researcher."
|
||||
@ -331,7 +331,7 @@ UnknownText_0x197185: ; 0x197185
|
||||
; 0x1973cc
|
||||
|
||||
UnknownText_0x1973cc: ; 0x1973cc
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "#DEX!"
|
||||
done
|
||||
; 0x1973de
|
||||
@ -350,7 +350,7 @@ UnknownText_0x1973de: ; 0x1973de
|
||||
line "GOLDENROD for my"
|
||||
cont "usual radio show."
|
||||
|
||||
para $14, ", I'm"
|
||||
para "<PLAY_G>, I'm"
|
||||
line "counting on you!"
|
||||
done
|
||||
; 0x197476
|
||||
@ -363,7 +363,7 @@ UnknownText_0x197476: ; 0x197476
|
||||
para "That's rare! "
|
||||
line "I, I want it…"
|
||||
|
||||
para $14, ", would you"
|
||||
para "<PLAY_G>, would you"
|
||||
line "care to trade it?"
|
||||
|
||||
para "I can offer this"
|
||||
|
@ -196,7 +196,7 @@ UnknownText_0x1a80f7:
|
||||
done
|
||||
|
||||
UnknownText_0x1a8134:
|
||||
text "Wait, ", $14, "!"
|
||||
text "Wait, <PLAY_G>!"
|
||||
done
|
||||
|
||||
UnknownText_0x1a813e:
|
||||
@ -223,7 +223,7 @@ UnknownText_0x1a81c4:
|
||||
done
|
||||
|
||||
UnknownText_0x1a81f2:
|
||||
text "Hi, ", $14, "!"
|
||||
text "Hi, <PLAY_G>!"
|
||||
line "Leaving again?"
|
||||
|
||||
para "You should tell"
|
||||
@ -240,7 +240,7 @@ UnknownText_0x1a8236:
|
||||
done
|
||||
|
||||
UnknownText_0x1a8274:
|
||||
text "Yo, ", $52, "!"
|
||||
text "Yo, <PLAYER>!"
|
||||
|
||||
para "I hear PROF.ELM"
|
||||
line "discovered some"
|
||||
@ -269,7 +269,7 @@ UnknownText_0x1a82e8:
|
||||
done
|
||||
|
||||
UnknownText_0x1a8328:
|
||||
text $52, "'s House"
|
||||
text "<PLAYER>'s House"
|
||||
done
|
||||
|
||||
UnknownText_0x1a8332:
|
||||
|
@ -79,7 +79,7 @@ OaksLabPC:
|
||||
jumptext OaksLabPCText
|
||||
|
||||
OakWelcomeKantoText:
|
||||
text "OAK: Ah, ", $14, "!"
|
||||
text "OAK: Ah, <PLAY_G>!"
|
||||
line "It's good of you"
|
||||
|
||||
para "to come all this"
|
||||
@ -117,7 +117,7 @@ OakOpenMtSilverText:
|
||||
line "assessment of you."
|
||||
|
||||
para "Tell you what,"
|
||||
line $14, ". I'll make"
|
||||
line "<PLAY_G>. I'll make"
|
||||
|
||||
para "arrangements so"
|
||||
line "that you can go to"
|
||||
@ -137,7 +137,7 @@ OakOpenMtSilverText:
|
||||
|
||||
para "we can make an"
|
||||
line "exception in your"
|
||||
cont "case, ", $14, "."
|
||||
cont "case, <PLAY_G>."
|
||||
|
||||
para "Go up to INDIGO"
|
||||
line "PLATEAU. You can"
|
||||
@ -180,7 +180,7 @@ OakYesKantoBadgesText:
|
||||
line "for you."
|
||||
|
||||
para "Keep trying hard,"
|
||||
line $14, "!"
|
||||
line "<PLAY_G>!"
|
||||
done
|
||||
|
||||
UnknownText_0x19b7fb: ; 0x19b7fb
|
||||
@ -246,7 +246,7 @@ OaksLabPCText:
|
||||
line "away."
|
||||
|
||||
para "I heard rumors"
|
||||
line "that ", $14, " is"
|
||||
line "that <PLAY_G> is"
|
||||
|
||||
para "getting quite a"
|
||||
line "reputation."
|
||||
|
@ -141,7 +141,7 @@ UnknownText_0x9c2bb: ; 0x9c2bb
|
||||
; 0x9c33a
|
||||
|
||||
UnknownText_0x9c33a: ; 0x9c33a
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "MINERALBADGE."
|
||||
done
|
||||
; 0x9c354
|
||||
@ -157,7 +157,7 @@ UnknownText_0x9c354: ; 0x9c354
|
||||
; 0x9c393
|
||||
|
||||
UnknownText_0x9c393: ; 0x9c393
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "TM09."
|
||||
done
|
||||
; 0x9c3a5
|
||||
|
@ -209,7 +209,7 @@ UnknownText_0x60d99: ; 0x60d99
|
||||
; 0x60dc3
|
||||
|
||||
UnknownText_0x60dc3: ; 0x60dc3
|
||||
text $52, " handed the"
|
||||
text "<PLAYER> handed the"
|
||||
line "SECRETPOTION to"
|
||||
cont "JASMINE."
|
||||
done
|
||||
|
@ -345,7 +345,7 @@ UnknownText_0x74af6: ; 0x74af6
|
||||
; 0x74b11
|
||||
|
||||
UnknownText_0x74b11: ; 0x74b11
|
||||
text $52, " flashed"
|
||||
text "<PLAYER> flashed"
|
||||
line "the S.S.TICKET."
|
||||
|
||||
para "That's it."
|
||||
@ -354,7 +354,7 @@ UnknownText_0x74b11: ; 0x74b11
|
||||
; 0x74b41
|
||||
|
||||
UnknownText_0x74b41: ; 0x74b41
|
||||
text $52, " tried to"
|
||||
text "<PLAYER> tried to"
|
||||
line "show the S.S."
|
||||
cont "TICKET…"
|
||||
|
||||
|
@ -133,13 +133,13 @@ UnknownText_0x1a29bb: ; 0x1a29bb
|
||||
; 0x1a2a3d
|
||||
|
||||
UnknownText_0x1a2a3d: ; 0x1a2a3d
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "BOULDERBADGE."
|
||||
done
|
||||
; 0x1a2a57
|
||||
|
||||
UnknownText_0x1a2a57: ; 0x1a2a57
|
||||
text "BROCK: ", $14, ","
|
||||
text "BROCK: <PLAY_G>,"
|
||||
line "thanks. I enjoyed"
|
||||
|
||||
para "battling you, even"
|
||||
|
@ -1029,7 +1029,7 @@ UnknownText_0x19307c: ; 0x19307c
|
||||
UnknownText_0x19308b: ; 0x19308b
|
||||
text "Sorry--@"
|
||||
text_from_ram StringBuffer1
|
||||
db $0
|
||||
text ""
|
||||
line "can't be taken."
|
||||
prompt
|
||||
; 0x1930a8
|
||||
@ -1077,7 +1077,7 @@ UnknownText_0x19315f: ; 0x19315f
|
||||
|
||||
UnknownText_0x193190: ; 0x193190
|
||||
text "Hello! You're"
|
||||
line $52, ", right?"
|
||||
line "<PLAYER>, right?"
|
||||
|
||||
para "I have some-"
|
||||
line "thing for you."
|
||||
|
@ -193,7 +193,7 @@ UnknownText_0x191a72: ; 0x191a72
|
||||
; 0x191ae0
|
||||
|
||||
UnknownText_0x191ae0: ; 0x191ae0
|
||||
text "Hello, ", $14, "!"
|
||||
text "Hello, <PLAY_G>!"
|
||||
|
||||
para "Did you come see"
|
||||
line "me about my #-"
|
||||
@ -264,7 +264,7 @@ UnknownText_0x191c5a: ; 0x191c5a
|
||||
; 0x191d0a
|
||||
|
||||
UnknownText_0x191d0a: ; 0x191d0a
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "# DOLL."
|
||||
done
|
||||
; 0x191d1e
|
||||
|
@ -285,8 +285,9 @@ UnknownText_0x5cf5a: ; 0x5cf5a
|
||||
; 0x5cf79
|
||||
|
||||
UnknownText_0x5cf79: ; 0x5cf79
|
||||
db $0, $56, $4f
|
||||
db $56, $57
|
||||
text $56
|
||||
line $56
|
||||
done
|
||||
; 0x5cf7e
|
||||
|
||||
UnknownText_0x5cf7e: ; 0x5cf7e
|
||||
@ -430,7 +431,7 @@ UnknownText_0x5d37b: ; 0x5d37b
|
||||
; 0x5d3c0
|
||||
|
||||
UnknownText_0x5d3c0: ; 0x5d3c0
|
||||
text $52, "'s #GEAR"
|
||||
text "<PLAYER>'s #GEAR"
|
||||
line "can now double as"
|
||||
cont "a radio!"
|
||||
done
|
||||
|
@ -626,9 +626,9 @@ UnknownText_0x5de84: ; 0x5de84
|
||||
para "What was your name"
|
||||
line "again?"
|
||||
|
||||
para "…", $14, ", OK!"
|
||||
para "…<PLAY_G>, OK!"
|
||||
|
||||
para "Come on, ", $14, "."
|
||||
para "Come on, <PLAY_G>."
|
||||
line "Join the show."
|
||||
done
|
||||
; 0x5dedd
|
||||
@ -641,7 +641,7 @@ UnknownText_0x5dedd: ; 0x5dedd
|
||||
line "shout out today's"
|
||||
|
||||
para "password for"
|
||||
line $14, "!"
|
||||
line "<PLAY_G>!"
|
||||
done
|
||||
; 0x5df29
|
||||
|
||||
@ -690,7 +690,7 @@ UnknownText_0x5e054: ; 0x5e054
|
||||
text "BUENA: Yup! Our"
|
||||
line "contestant was"
|
||||
|
||||
para $14, "."
|
||||
para "<PLAY_G>."
|
||||
line "Thanks for coming!"
|
||||
|
||||
para "I hope all you"
|
||||
@ -753,7 +753,7 @@ UnknownText_0x5e1ee: ; 0x5e1ee
|
||||
cont "30 points, but…"
|
||||
|
||||
para "You came by so"
|
||||
line "often, ", $14, "."
|
||||
line "often, <PLAY_G>."
|
||||
|
||||
para "I'll make you a"
|
||||
line "special deal!"
|
||||
@ -764,7 +764,7 @@ UnknownText_0x5e1ee: ; 0x5e1ee
|
||||
; 0x5e2bf
|
||||
|
||||
UnknownText_0x5e2bf: ; 0x5e2bf
|
||||
text "BUENA: ", $14, ","
|
||||
text "BUENA: <PLAY_G>,"
|
||||
line "do you want to"
|
||||
|
||||
para "register my phone"
|
||||
@ -773,7 +773,7 @@ UnknownText_0x5e2bf: ; 0x5e2bf
|
||||
; 0x5e2f3
|
||||
|
||||
UnknownText_0x5e2f3: ; 0x5e2f3
|
||||
text $52, " registered"
|
||||
text "<PLAYER> registered"
|
||||
line "BUENA's number."
|
||||
done
|
||||
; 0x5e310
|
||||
@ -792,7 +792,7 @@ UnknownText_0x5e33c: ; 0x5e33c
|
||||
; 0x5e35e
|
||||
|
||||
UnknownText_0x5e35e: ; 0x5e35e
|
||||
text "BUENA: ", $14, ","
|
||||
text "BUENA: <PLAY_G>,"
|
||||
line "your phone list"
|
||||
|
||||
para "has no room left"
|
||||
|
@ -416,7 +416,7 @@ UnknownText_0x5eaa4: ; 0x5eaa4
|
||||
; 0x5eabc
|
||||
|
||||
UnknownText_0x5eabc: ; 0x5eabc
|
||||
text $52, " inserted"
|
||||
text "<PLAYER> inserted"
|
||||
line "the CARD KEY."
|
||||
done
|
||||
; 0x5ead6
|
||||
|
@ -291,7 +291,7 @@ Executivef1BeatenText: ; 0x6031e
|
||||
; 0x60358
|
||||
|
||||
UnknownText_0x60358: ; 0x60358
|
||||
text $52, ", isn't it?"
|
||||
text "<PLAYER>, isn't it?"
|
||||
|
||||
para "A brat like you"
|
||||
line "won't appreciate"
|
||||
@ -361,7 +361,7 @@ UnknownText_0x6050e: ; 0x6050e
|
||||
; 0x605b2
|
||||
|
||||
UnknownText_0x605b2: ; 0x605b2
|
||||
text "DIRECTOR: ", $14, ","
|
||||
text "DIRECTOR: <PLAY_G>,"
|
||||
line "thank you!"
|
||||
|
||||
para "Your courageous"
|
||||
@ -430,7 +430,7 @@ UnknownText_0x6062c: ; 0x6062c
|
||||
|
||||
UnknownText_0x60824: ; 0x60824
|
||||
text "DIRECTOR: Hello,"
|
||||
line $14, "!"
|
||||
line "<PLAY_G>!"
|
||||
|
||||
para "You know, I love"
|
||||
line "#MON."
|
||||
|
@ -15,7 +15,7 @@ MapRedsHouse2FSignpost1Script: ; 0x19b04d
|
||||
; 0x19b050
|
||||
|
||||
UnknownText_0x19b050: ; 0x19b050
|
||||
text $52, " played the"
|
||||
text "<PLAYER> played the"
|
||||
line "N64."
|
||||
|
||||
para "Better get going--"
|
||||
|
@ -467,7 +467,7 @@ UnknownText_0x1a50d7: ; 0x1a50d7
|
||||
|
||||
CooltrainerfBeth1SeenText: ; 0x1a5136
|
||||
text "I lost to a train-"
|
||||
line "er named ", $53, "."
|
||||
line "er named <RIVAL>."
|
||||
|
||||
para "He was really"
|
||||
line "strong, but…"
|
||||
|
@ -11,7 +11,7 @@ ScientistScript_0x9b952: ; 0x9b952
|
||||
; 0x9b955
|
||||
|
||||
UnknownText_0x9b955: ; 0x9b955
|
||||
text "Are you ", $14, "?"
|
||||
text "Are you <PLAY_G>?"
|
||||
|
||||
para "I work as PROF."
|
||||
line "OAK's AIDE."
|
||||
|
@ -378,7 +378,7 @@ UnknownText_0x1a5761: ; 0x1a5761
|
||||
; 0x1a5790
|
||||
|
||||
UnknownText_0x1a5790: ; 0x1a5790
|
||||
text $52, " handed"
|
||||
text "<PLAYER> handed"
|
||||
line "over the #MON"
|
||||
cont "holding the MAIL."
|
||||
done
|
||||
|
@ -651,7 +651,7 @@ UnknownText_0x190790:
|
||||
done
|
||||
|
||||
UnknownText_0x1907ab:
|
||||
text $52, ", right?"
|
||||
text "<PLAYER>, right?"
|
||||
line "Some guy wearing"
|
||||
|
||||
para "glasses was look-"
|
||||
|
@ -123,7 +123,7 @@ UnknownText_0x69e48: ; 0x69e48
|
||||
; 0x69eb8
|
||||
|
||||
UnknownText_0x69eb8: ; 0x69eb8
|
||||
text $52, " received a"
|
||||
text "<PLAYER> received a"
|
||||
line "#MON with MAIL."
|
||||
done
|
||||
; 0x69ed6
|
||||
|
@ -284,7 +284,7 @@ UnknownText_0x6a39d: ; 0x6a39d
|
||||
; 0x6a3c7
|
||||
|
||||
UnknownText_0x6a3c7: ; 0x6a3c7
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "20 PARK BALLS."
|
||||
done
|
||||
; 0x6a3e2
|
||||
@ -341,7 +341,7 @@ UnknownText_0x6a537: ; 0x6a537
|
||||
; 0x6a56b
|
||||
|
||||
UnknownText_0x6a56b: ; 0x6a56b
|
||||
text $52, "'s #MON"
|
||||
text "<PLAYER>'s #MON"
|
||||
line "were left with the"
|
||||
cont "CONTEST HELPER."
|
||||
done
|
||||
@ -415,7 +415,7 @@ UnknownText_0x6a71f: ; 0x6a71f
|
||||
UnknownText_0x6a79a: ; 0x6a79a
|
||||
text "You still have @"
|
||||
text_from_ram StringBuffer3
|
||||
db $0
|
||||
text ""
|
||||
line "minute(s) left."
|
||||
|
||||
para "Do you want to"
|
||||
|
@ -490,7 +490,7 @@ UnknownText_0x19426b: ; 0x19426b
|
||||
; 0x194290
|
||||
|
||||
UnknownText_0x194290: ; 0x194290
|
||||
text $52, " used the"
|
||||
text "<PLAYER> used the"
|
||||
line "SQUIRTBOTTLE."
|
||||
done
|
||||
; 0x1942aa
|
||||
@ -572,7 +572,7 @@ UnknownText_0x1944d0: ; 0x1944d0
|
||||
; 0x19451a
|
||||
|
||||
UnknownText_0x19451a: ; 0x19451a
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "TM08."
|
||||
done
|
||||
; 0x19452c
|
||||
|
@ -546,7 +546,7 @@ UnknownText_0x6ae87: ; 0x6ae87
|
||||
; 0x6aeb1
|
||||
|
||||
UnknownText_0x6aeb1: ; 0x6aeb1
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "20 PARK BALLS."
|
||||
done
|
||||
; 0x6aecc
|
||||
@ -603,7 +603,7 @@ UnknownText_0x6b021: ; 0x6b021
|
||||
; 0x6b055
|
||||
|
||||
UnknownText_0x6b055: ; 0x6b055
|
||||
text $52, "'s #MON"
|
||||
text "<PLAYER>'s #MON"
|
||||
line "were left with the"
|
||||
cont "CONTEST HELPER."
|
||||
done
|
||||
@ -677,7 +677,7 @@ UnknownText_0x6b209: ; 0x6b209
|
||||
UnknownText_0x6b284: ; 0x6b284
|
||||
text "You still have @"
|
||||
text_from_ram StringBuffer3
|
||||
db $0
|
||||
text ""
|
||||
line "minute(s) left."
|
||||
|
||||
para "Do you want to"
|
||||
@ -923,7 +923,7 @@ UnknownText_0x6b910: ; 0x6b910
|
||||
; 0x6b97f
|
||||
|
||||
UnknownText_0x6b97f: ; 0x6b97f
|
||||
text $52, "?"
|
||||
text "<PLAYER>?"
|
||||
|
||||
para "Here's the prize"
|
||||
line "we were holding"
|
||||
|
@ -171,7 +171,7 @@ UnknownText_0x9cda2: ; 0x9cda2
|
||||
; 0x9cdbc
|
||||
|
||||
UnknownText_0x9cdbc: ; 0x9cdbc
|
||||
text $52, " gave a"
|
||||
text "<PLAYER> gave a"
|
||||
line "BERRY to MILTANK."
|
||||
done
|
||||
; 0x9cdd8
|
||||
@ -195,13 +195,13 @@ UnknownText_0x9ce1b: ; 0x9ce1b
|
||||
; 0x9ce3c
|
||||
|
||||
UnknownText_0x9ce3c: ; 0x9ce3c
|
||||
text $52, " has no"
|
||||
text "<PLAYER> has no"
|
||||
line "BERRIES…"
|
||||
done
|
||||
; 0x9ce4f
|
||||
|
||||
UnknownText_0x9ce4f: ; 0x9ce4f
|
||||
text $52, " wouldn't"
|
||||
text "<PLAYER> wouldn't"
|
||||
line "give a BERRY."
|
||||
|
||||
para "MILTANK looks sad."
|
||||
|
@ -188,7 +188,7 @@ UnknownText_0x9d156: ; 0x9d156
|
||||
; 0x9d1b5
|
||||
|
||||
UnknownText_0x9d1b5: ; 0x9d1b5
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "TM13."
|
||||
done
|
||||
; 0x9d1c7
|
||||
|
@ -512,7 +512,7 @@ PokemaniacRonSeenText: ; 0x19d386
|
||||
text "Would you get"
|
||||
line "this?"
|
||||
|
||||
para "Some ", $53, " guy"
|
||||
para "Some <RIVAL> guy"
|
||||
line "made fun of my"
|
||||
cont "#MON!"
|
||||
|
||||
|
@ -266,7 +266,7 @@ UnknownText_0x19ad9b: ; 0x19ad9b
|
||||
; 0x19ae1b
|
||||
|
||||
UnknownText_0x19ae1b: ; 0x19ae1b
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "TM30."
|
||||
done
|
||||
; 0x19ae2d
|
||||
|
@ -233,7 +233,7 @@ UnknownText_0x59278: ; 0x59278
|
||||
; 0x592fa
|
||||
|
||||
UnknownText_0x592fa: ; 0x592fa
|
||||
text $52, "'s #DEX"
|
||||
text "<PLAYER>'s #DEX"
|
||||
line "was upgraded."
|
||||
done
|
||||
; 0x59311
|
||||
|
@ -229,7 +229,7 @@ UnknownText_0x189df4: ; 0x189df4
|
||||
; 0x189e95
|
||||
|
||||
UnknownText_0x189e95: ; 0x189e95
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "MARSHBADGE."
|
||||
done
|
||||
; 0x189ead
|
||||
|
@ -104,7 +104,7 @@ UnknownText_0x1ab646: ; 0x1ab646
|
||||
; 0x1ab683
|
||||
|
||||
UnknownText_0x1ab683: ; 0x1ab683
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "VOLCANOBADGE."
|
||||
done
|
||||
; 0x1ab69d
|
||||
|
@ -36,8 +36,9 @@ RedScript_0x18c603: ; 0x18c603
|
||||
; 0x18c637
|
||||
|
||||
UnknownText_0x18c637: ; 0x18c637
|
||||
db $0, $56, $4f
|
||||
db $56, $57
|
||||
text $56
|
||||
line $56
|
||||
done
|
||||
; 0x18c63c
|
||||
|
||||
UnknownText_0x18c63c: ; 0x18c63c
|
||||
@ -46,8 +47,9 @@ UnknownText_0x18c63c: ; 0x18c63c
|
||||
; 0x18c63f
|
||||
|
||||
UnknownText_0x18c63f: ; 0x18c63f
|
||||
db $0, $56, $4f
|
||||
db $56, $57
|
||||
text $56
|
||||
line $56
|
||||
done
|
||||
; 0x18c644
|
||||
|
||||
SilverCaveRoom3_MapEventHeader: ; 0x18c644
|
||||
|
@ -214,7 +214,7 @@ KurtSlowpokeWellVictoryMovementData: ; 0x5a6a5
|
||||
|
||||
UnknownText_0x5a6b5: ; 0x5a6b5
|
||||
text "KURT: Hey there,"
|
||||
line $52, "!"
|
||||
line "<PLAYER>!"
|
||||
|
||||
para "The guard up top"
|
||||
line "took off when I"
|
||||
@ -237,7 +237,7 @@ UnknownText_0x5a6b5: ; 0x5a6b5
|
||||
para "Ah, it can't be"
|
||||
line "helped."
|
||||
|
||||
para $52, ", show them"
|
||||
para "<PLAYER>, show them"
|
||||
line "how gutsy you are"
|
||||
cont "in my place!"
|
||||
done
|
||||
@ -245,7 +245,7 @@ UnknownText_0x5a6b5: ; 0x5a6b5
|
||||
|
||||
KurtLeaveSlowpokeWellText: ; 0x5a7ca
|
||||
text "KURT: Way to go,"
|
||||
line $52, "!"
|
||||
line "<PLAYER>!"
|
||||
|
||||
para "TEAM ROCKET has"
|
||||
line "taken off."
|
||||
@ -386,7 +386,7 @@ UnknownText_0x5abcb: ; 0x5abcb
|
||||
; 0x5ac09
|
||||
|
||||
UnknownText_0x5ac09: ; 0x5ac09
|
||||
text $52, " read the"
|
||||
text "<PLAYER> read the"
|
||||
line "MAIL."
|
||||
|
||||
para "Be good and look"
|
||||
|
@ -263,7 +263,7 @@ UnknownText_0x184aec: ; 0x184aec
|
||||
; 0x184bc8
|
||||
|
||||
UnknownText_0x184bc8: ; 0x184bc8
|
||||
text $53, " used an"
|
||||
text "<RIVAL> used an"
|
||||
line "ESCAPE ROPE!"
|
||||
done
|
||||
; 0x184be0
|
||||
|
@ -766,7 +766,7 @@ UnknownText_0x6d5d8: ; 0x6d5d8
|
||||
; 0x6d64e
|
||||
|
||||
UnknownText_0x6d64e: ; 0x6d64e
|
||||
text "Sorry, ", $14, "."
|
||||
text "Sorry, <PLAY_G>."
|
||||
line "I saw how well you"
|
||||
|
||||
para "were doing, so I"
|
||||
@ -806,7 +806,7 @@ UnknownText_0x6d6cf: ; 0x6d6cf
|
||||
para "makes me feel"
|
||||
line "guilty."
|
||||
|
||||
para $14, ", let's"
|
||||
para "<PLAY_G>, let's"
|
||||
line "split the job."
|
||||
done
|
||||
; 0x6d7ea
|
||||
@ -841,7 +841,7 @@ UnknownText_0x6d809: ; 0x6d809
|
||||
; 0x6d8e6
|
||||
|
||||
UnknownText_0x6d8e6: ; 0x6d8e6
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "HM06."
|
||||
done
|
||||
; 0x6d8f8
|
||||
@ -865,7 +865,7 @@ UnknownText_0x6d8f8: ; 0x6d8f8
|
||||
; 0x6d994
|
||||
|
||||
UnknownText_0x6d994: ; 0x6d994
|
||||
text $14, "…"
|
||||
text "<PLAY_G>…"
|
||||
|
||||
para "The journey to be-"
|
||||
line "coming the #MON"
|
||||
@ -909,7 +909,7 @@ UnknownText_0x6da97: ; 0x6da97
|
||||
; 0x6daf7
|
||||
|
||||
UnknownText_0x6daf7: ; 0x6daf7
|
||||
text "LANCE: ", $14, ","
|
||||
text "LANCE: <PLAY_G>,"
|
||||
line "let's give it our"
|
||||
cont "best for #MON."
|
||||
done
|
||||
@ -1005,7 +1005,7 @@ UnknownText_0x6dd39: ; 0x6dd39
|
||||
UnknownText_0x6dd6b: ; 0x6dd6b
|
||||
text "The door's closed…"
|
||||
|
||||
para $52, " entered"
|
||||
para "<PLAYER> entered"
|
||||
line "the password."
|
||||
|
||||
para "The door opened!"
|
||||
|
@ -429,7 +429,7 @@ UnknownText_0x6e179: ; 0x6e179
|
||||
line "very graciously"
|
||||
cont "told me so."
|
||||
|
||||
para $14, ", let's go"
|
||||
para "<PLAY_G>, let's go"
|
||||
line "get the passwords."
|
||||
done
|
||||
; 0x6e235
|
||||
@ -675,7 +675,7 @@ UnknownText_0x6e970: ; 0x6e970
|
||||
UnknownText_0x6e9a3: ; 0x6e9a3
|
||||
text "The door's closed…"
|
||||
|
||||
para $52, " entered"
|
||||
para "<PLAYER> entered"
|
||||
line "the two passwords."
|
||||
|
||||
para "The door opened!"
|
||||
|
@ -349,7 +349,7 @@ UnknownText_0x185203: ; 0x185203
|
||||
line "but you were even"
|
||||
|
||||
para "more incredible,"
|
||||
line $52, "."
|
||||
line "<PLAYER>."
|
||||
|
||||
para "I heard SUICUNE's"
|
||||
line "mystic power"
|
||||
@ -370,7 +370,7 @@ UnknownText_0x185203: ; 0x185203
|
||||
line "me that fantastic"
|
||||
cont "battle."
|
||||
|
||||
para "Later, ", $52, "!"
|
||||
para "Later, <PLAYER>!"
|
||||
done
|
||||
; 0x185386
|
||||
|
||||
@ -483,7 +483,7 @@ UnknownText_0x1856a3: ; 0x1856a3
|
||||
line "to see the #MON"
|
||||
|
||||
para "of rainbow colors,"
|
||||
line $52, "."
|
||||
line "<PLAYER>."
|
||||
|
||||
para "It happened just"
|
||||
line "as I envisioned."
|
||||
|
@ -190,7 +190,7 @@ UnknownText_0x192238: ; 0x192238
|
||||
; 0x192277
|
||||
|
||||
UnknownText_0x192277: ; 0x192277
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "THUNDERBADGE."
|
||||
done
|
||||
; 0x192291
|
||||
|
@ -259,7 +259,7 @@ UnknownText_0x74fa7:
|
||||
done
|
||||
|
||||
UnknownText_0x74fc2:
|
||||
text $52, " flashed"
|
||||
text "<PLAYER> flashed"
|
||||
line "the S.S.TICKET."
|
||||
|
||||
para "That's it."
|
||||
@ -267,7 +267,7 @@ UnknownText_0x74fc2:
|
||||
done
|
||||
|
||||
UnknownText_0x74ff2:
|
||||
text $52, " tried to"
|
||||
text "<PLAYER> tried to"
|
||||
line "show the S.S."
|
||||
cont "TICKET…"
|
||||
|
||||
|
@ -203,7 +203,7 @@ UnknownText_0x7455f: ; 0x7455f
|
||||
para "#MON with me."
|
||||
line "I'm invincible!"
|
||||
|
||||
para $52, "!"
|
||||
para "<PLAYER>!"
|
||||
line "I challenge you!"
|
||||
done
|
||||
; 0x7463d
|
||||
|
@ -188,7 +188,7 @@ UnknownText_0x6854a: ; 0x6854a
|
||||
; 0x685af
|
||||
|
||||
UnknownText_0x685af: ; 0x685af
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "ZEPHYRBADGE."
|
||||
done
|
||||
; 0x685c8
|
||||
|
@ -113,7 +113,7 @@ MovementData_0x69551: ; 0x69551
|
||||
; 0x69555
|
||||
|
||||
UnknownText_0x69555: ; 0x69555
|
||||
text $14, ", long"
|
||||
text "<PLAY_G>, long"
|
||||
line "time, no see."
|
||||
|
||||
para "PROF.ELM asked me"
|
||||
@ -138,7 +138,7 @@ UnknownText_0x695c5: ; 0x695c5
|
||||
line "with other active"
|
||||
cont "#MON to hatch."
|
||||
|
||||
para $14, ", you're"
|
||||
para "<PLAY_G>, you're"
|
||||
line "the only person"
|
||||
cont "we can rely on."
|
||||
|
||||
@ -166,7 +166,7 @@ UnknownText_0x696f2: ; 0x696f2
|
||||
; 0x69712
|
||||
|
||||
UnknownText_0x69712: ; 0x69712
|
||||
text $14, ", will you"
|
||||
text "<PLAY_G>, will you"
|
||||
line "take the EGG?"
|
||||
done
|
||||
; 0x6972d
|
||||
|
@ -111,7 +111,7 @@ UnknownText_0x9abae: ; 0x9abae
|
||||
; 0x9ac0f
|
||||
|
||||
UnknownText_0x9ac0f: ; 0x9ac0f
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "EARTHBADGE."
|
||||
done
|
||||
; 0x9ac27
|
||||
|
@ -92,7 +92,7 @@ MovementData_0x18052c: ; 0x18052c
|
||||
|
||||
UnknownText_0x180531: ; 0x180531
|
||||
text "Welcome to #MON"
|
||||
line "LEAGUE, ", $52, "."
|
||||
line "LEAGUE, <PLAYER>."
|
||||
|
||||
para "Allow me to intro-"
|
||||
line "duce myself. I am"
|
||||
@ -133,7 +133,7 @@ UnknownText_0x180644: ; 0x180644
|
||||
para "stand above all"
|
||||
line "trainers!"
|
||||
|
||||
para "Now, ", $52, ", move"
|
||||
para "Now, <PLAYER>, move"
|
||||
line "on and experience"
|
||||
|
||||
para "the true ferocity"
|
||||
|
@ -1324,7 +1324,7 @@ String_108a79: ; 108a79
|
||||
db "─ №", $f2
|
||||
next ""
|
||||
next "おや/"
|
||||
next $73, "№", $f2, ""
|
||||
next $73, "№", $f2
|
||||
db "@"
|
||||
; 108a87
|
||||
|
||||
|
291
text/battle.asm
291
text/battle.asm
File diff suppressed because it is too large
Load Diff
@ -247,9 +247,9 @@ UnknownText_0x1b05bf: ; 0x1b05bf
|
||||
; 0x1b0621
|
||||
|
||||
UnknownText_0x1b0621: ; 0x1b0621
|
||||
text $52, ", the No.@"
|
||||
text "<PLAYER>, the No.@"
|
||||
text_from_ram StringBuffer3
|
||||
db $0
|
||||
text ""
|
||||
line "finisher, wins"
|
||||
cont "@"
|
||||
text_from_ram StringBuffer4
|
||||
@ -258,7 +258,7 @@ UnknownText_0x1b0621: ; 0x1b0621
|
||||
; 0x1b0648
|
||||
|
||||
UnknownText_0x1b0648: ; 0x1b0648
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "@"
|
||||
text_from_ram StringBuffer4
|
||||
text "."
|
||||
@ -304,7 +304,7 @@ UnknownText_0x1b070d: ; 0x1b070d
|
||||
|
||||
UnknownText_0x1b074e: ; 0x1b074e
|
||||
text_from_ram StringBuffer3
|
||||
db $0
|
||||
text ""
|
||||
line "#MON GYM"
|
||||
done
|
||||
; 0x1b075c
|
||||
@ -312,9 +312,10 @@ UnknownText_0x1b074e: ; 0x1b074e
|
||||
UnknownText_0x1b075c: ; 0x1b075c
|
||||
text "LEADER: @"
|
||||
text_from_ram StringBuffer4
|
||||
db $0, $51
|
||||
db "WINNING TRAINERS:"
|
||||
line $52, $57
|
||||
text ""
|
||||
para "WINNING TRAINERS:"
|
||||
line "<PLAYER>"
|
||||
done
|
||||
; 0x1b077f
|
||||
|
||||
UnknownText_0x1b077f: ; 0x1b077f
|
||||
@ -408,14 +409,14 @@ HappinessText1:
|
||||
done
|
||||
|
||||
RegisteredNumber1Text:
|
||||
text $52, " registered"
|
||||
text "<PLAYER> registered"
|
||||
line "@"
|
||||
text_from_ram StringBuffer3
|
||||
text "'s number."
|
||||
done
|
||||
|
||||
RegisteredNumber2Text:
|
||||
text $52, " registered"
|
||||
text "<PLAYER> registered"
|
||||
line "@"
|
||||
text_from_ram StringBuffer3
|
||||
text "'s number."
|
||||
|
@ -144,27 +144,31 @@ UnknownText_0x1bc1cf: ; 0x1bc1cf
|
||||
|
||||
UnknownText_0x1bc1eb: ; 0x1bc1eb
|
||||
text "Your PASSCODE has"
|
||||
line "been set.", $51
|
||||
db "Enter this number"
|
||||
line "next time to open", $55
|
||||
db "the CARD FOLDER.", $51
|
||||
db $57
|
||||
line "been set."
|
||||
para "Enter this number"
|
||||
line "next time to open"
|
||||
cont "the CARD FOLDER."
|
||||
para ""
|
||||
done
|
||||
; 0x1bc23e
|
||||
|
||||
UnknownText_0x1bc23e: ; 0x1bc23e
|
||||
text "0000 is invalid!", $51
|
||||
db $57
|
||||
text "0000 is invalid!"
|
||||
para ""
|
||||
done
|
||||
; 0x1bc251
|
||||
|
||||
UnknownText_0x1bc251: ; 0x1bc251
|
||||
text "Enter the CARD", $4e, "FOLDER PASSCODE."
|
||||
text "Enter the CARD"
|
||||
next "FOLDER PASSCODE."
|
||||
done
|
||||
; 0x1bc272
|
||||
|
||||
UnknownText_0x1bc272: ; 0x1bc272
|
||||
text "Incorrect"
|
||||
line "PASSCODE!", $51
|
||||
db $57
|
||||
line "PASSCODE!"
|
||||
para ""
|
||||
done
|
||||
; 0x1bc288
|
||||
|
||||
UnknownText_0x1bc288: ; 0x1bc288
|
||||
@ -283,7 +287,8 @@ UnknownText_0x1bc404: ; 0x1bc404
|
||||
|
||||
UnknownText_0x1bc42c: ; 0x1bc42c
|
||||
text "The password is:"
|
||||
line $57
|
||||
line ""
|
||||
done
|
||||
; 0x1bc43f
|
||||
|
||||
UnknownText_0x1bc43f: ; 0x1bc43f
|
||||
@ -347,8 +352,8 @@ UnknownText_0x1bc51c: ; 0x1bc51c
|
||||
text "Put away the"
|
||||
line "@"
|
||||
text_from_ram StringBuffer3
|
||||
text $51
|
||||
db "and set up the"
|
||||
text ""
|
||||
para "and set up the"
|
||||
line "@"
|
||||
text_from_ram StringBuffer4
|
||||
text "."
|
||||
@ -399,7 +404,7 @@ UnknownText_0x1bc5ef: ; 0x1bc5ef
|
||||
; 0x1bc615
|
||||
|
||||
UnknownText_0x1bc615: ; 0x1bc615
|
||||
text "Hi, ", $52, "!"
|
||||
text "Hi, <PLAYER>!"
|
||||
line "How are you?"
|
||||
prompt
|
||||
; 0x1bc62a
|
||||
@ -1286,11 +1291,12 @@ UnknownText_0x1bcf96: ; 0x1bcf96
|
||||
|
||||
UnknownText_0x1bcf99: ; 0x1bcf99
|
||||
text ""
|
||||
line $57
|
||||
line ""
|
||||
done
|
||||
; 0x1bcf9c
|
||||
|
||||
UnknownText_0x1bcf9c: ; 0x1bcf9c
|
||||
text $3f
|
||||
text "<ENEMY>"
|
||||
line "withdrew"
|
||||
cont "@"
|
||||
text_from_ram EnemyMonNick
|
||||
@ -1299,11 +1305,11 @@ UnknownText_0x1bcf9c: ; 0x1bcf9c
|
||||
; 0x1bcfaf
|
||||
|
||||
UnknownText_0x1bcfaf: ; 0x1bcfaf
|
||||
text $3f
|
||||
text "<ENEMY>"
|
||||
line "used @"
|
||||
text_from_ram wd050
|
||||
text $55
|
||||
db "on @"
|
||||
text ""
|
||||
cont "on @"
|
||||
text_from_ram EnemyMonNick
|
||||
text "!"
|
||||
prompt
|
||||
@ -1383,7 +1389,8 @@ UnknownText_0x1bd0d8: ; 0x1bd0d8
|
||||
|
||||
UnknownText_0x1bd109: ; 0x1bd109
|
||||
text "There is no EGG."
|
||||
line $58
|
||||
line ""
|
||||
prompt
|
||||
; 0x1bd11c
|
||||
|
||||
UnknownText_0x1bd11c: ; 0x1bd11c
|
||||
@ -1528,7 +1535,7 @@ UnknownText_0x1bd308: ; 0x1bd308
|
||||
; 0x1bd321
|
||||
|
||||
UnknownText_0x1bd321: ; 0x1bd321
|
||||
text $52, " found"
|
||||
text "<PLAYER> found"
|
||||
line "@"
|
||||
text_from_ram StringBuffer3
|
||||
text "!"
|
||||
@ -1536,7 +1543,7 @@ UnknownText_0x1bd321: ; 0x1bd321
|
||||
; 0x1bd331
|
||||
|
||||
UnknownText_0x1bd331: ; 0x1bd331
|
||||
text "But ", $52, " has"
|
||||
text "But <PLAYER> has"
|
||||
line "no space left…"
|
||||
done
|
||||
; 0x1bd34b
|
||||
@ -1595,11 +1602,11 @@ UnknownText_0x1bd407: ; 0x1bd407
|
||||
; 0x1bd429
|
||||
|
||||
UnknownText_0x1bd429: ; 0x1bd429
|
||||
text $52, " traded"
|
||||
text "<PLAYER> traded"
|
||||
line "@"
|
||||
text_from_ram wd050
|
||||
text " for", $55
|
||||
db "@"
|
||||
text " for"
|
||||
cont "@"
|
||||
text_from_ram StringBuffer2
|
||||
text ".@"
|
||||
db "@"
|
||||
@ -1815,8 +1822,9 @@ UnknownText_0x1bd77f: ; 0x1bd77f
|
||||
|
||||
UnknownText_0x1bd868: ; 0x1bd868
|
||||
text "OK, I'll take care"
|
||||
line "of your money.", $51
|
||||
db $56, $56, $56, $58
|
||||
line "of your money."
|
||||
para $56, $56, $56
|
||||
prompt
|
||||
; 0x1bd88e
|
||||
|
||||
UnknownText_0x1bd88e: ; 0x1bd88e
|
||||
@ -1895,7 +1903,7 @@ UnknownText_0x1bda25: ; 0x1bda25
|
||||
text "OK, I'll save your"
|
||||
line "money. Trust me!"
|
||||
|
||||
para $52, ", stick"
|
||||
para "<PLAYER>, stick"
|
||||
line "with it!"
|
||||
done
|
||||
; 0x1bda5b
|
||||
@ -1907,7 +1915,7 @@ UnknownText_0x1bda5b: ; 0x1bda5b
|
||||
; 0x1bda7e
|
||||
|
||||
UnknownText_0x1bda7e: ; 0x1bda7e
|
||||
text $52, ", don't"
|
||||
text "<PLAYER>, don't"
|
||||
line "give up!"
|
||||
done
|
||||
; 0x1bda90
|
||||
@ -2059,7 +2067,7 @@ UnknownText_0x1bde04: ; 0x1bde04
|
||||
; 0x1bde1f
|
||||
|
||||
UnknownText_0x1bde1f: ; 0x1bde1f
|
||||
text $52, " got back"
|
||||
text "<PLAYER> got back"
|
||||
line "@"
|
||||
text_from_ram StringBuffer1
|
||||
text "."
|
||||
@ -2070,8 +2078,8 @@ UnknownText_0x1bde32: ; 0x1bde32
|
||||
text "Huh? Back already?"
|
||||
line "Your @"
|
||||
text_from_ram StringBuffer1
|
||||
text $51
|
||||
db "needs a little"
|
||||
text ""
|
||||
para "needs a little"
|
||||
line "more time with us."
|
||||
|
||||
para "If you want your"
|
||||
@ -2128,7 +2136,7 @@ UnknownText_0x1bdf00: ; 0x1bdf00
|
||||
; 0x1bdfa5
|
||||
|
||||
UnknownText_0x1bdfa5: ; 0x1bdfa5
|
||||
text $52, " received"
|
||||
text "<PLAYER> received"
|
||||
line "the EGG!"
|
||||
done
|
||||
; 0x1bdfba
|
||||
|
@ -292,8 +292,8 @@ UnknownText_0x1c04fa: ; 1c04fa
|
||||
text " sent"
|
||||
line "@"
|
||||
text_from_ram StringBuffer1
|
||||
text $55
|
||||
db "to @"
|
||||
text ""
|
||||
cont "to @"
|
||||
text_from_ram wc950 + 3
|
||||
text "'s home."
|
||||
prompt
|
||||
@ -422,7 +422,7 @@ UnknownText_0x1c06de: ; 1c06de
|
||||
; 1c06ed
|
||||
|
||||
UnknownText_0x1c06ed: ; 1c06ed
|
||||
text $52, " used an"
|
||||
text "<PLAYER> used an"
|
||||
line "ESCAPE ROPE."
|
||||
done
|
||||
; 1c0705
|
||||
@ -441,8 +441,9 @@ UnknownText_0x1c071a: ; 1c071a
|
||||
|
||||
UnknownText_0x1c073b: ; 1c073b
|
||||
text "Can't use that"
|
||||
line "here.", $51
|
||||
db $57
|
||||
line "here."
|
||||
para ""
|
||||
done
|
||||
; 1c0751
|
||||
|
||||
UnknownText_0x1c0751: ; 1c0751
|
||||
@ -578,7 +579,7 @@ UnknownText_0x1c099a: ; 1c099a
|
||||
; 1c09b2
|
||||
|
||||
UnknownText_0x1c09b2: ; 1c09b2
|
||||
text $52, " got on the"
|
||||
text "<PLAYER> got on the"
|
||||
line "@"
|
||||
text_from_ram StringBuffer2
|
||||
text "."
|
||||
@ -586,7 +587,7 @@ UnknownText_0x1c09b2: ; 1c09b2
|
||||
; 1c09c7
|
||||
|
||||
UnknownText_0x1c09c7: ; 1c09c7
|
||||
text $52, " got off"
|
||||
text "<PLAYER> got off"
|
||||
line "the @"
|
||||
text_from_ram StringBuffer2
|
||||
text "."
|
||||
@ -608,7 +609,7 @@ UnknownText_0x1c0a05: ; 1c0a05
|
||||
; 1c0a1c
|
||||
|
||||
UnknownText_0x1c0a1c: ; 1c0a1c
|
||||
text $52, " found"
|
||||
text "<PLAYER> found"
|
||||
line "@"
|
||||
text_from_ram StringBuffer3
|
||||
text "!"
|
||||
@ -616,17 +617,17 @@ UnknownText_0x1c0a1c: ; 1c0a1c
|
||||
; 1c0a2c
|
||||
|
||||
UnknownText_0x1c0a2c: ; 1c0a2c
|
||||
text "But ", $52, " can't"
|
||||
text "But <PLAYER> can't"
|
||||
line "carry any more"
|
||||
cont "items."
|
||||
done
|
||||
; 1c0a4e
|
||||
|
||||
UnknownText_0x1c0a4e: ; 1c0a4e
|
||||
text $52, " is out of"
|
||||
text "<PLAYER> is out of"
|
||||
line "useable #MON!"
|
||||
|
||||
para $52, " whited"
|
||||
para "<PLAYER> whited"
|
||||
line "out!"
|
||||
done
|
||||
; 1c0a77
|
||||
@ -652,10 +653,10 @@ UnknownText_0x1c0acc: ; 1c0acc
|
||||
; 1c0ada
|
||||
|
||||
UnknownText_0x1c0ada: ; 1c0ada
|
||||
text $52, " is out of"
|
||||
text "<PLAYER> is out of"
|
||||
line "useable #MON!"
|
||||
|
||||
para $52, " whited"
|
||||
para "<PLAYER> whited"
|
||||
line "out!"
|
||||
prompt
|
||||
; 1c0b03
|
||||
@ -674,7 +675,7 @@ UnknownText_0x1c0b1a: ; 1c0b1a
|
||||
; 1c0b3b
|
||||
|
||||
UnknownText_0x1c0b3b: ; 1c0b3b
|
||||
text $52, " sprinkled"
|
||||
text "<PLAYER> sprinkled"
|
||||
line "water."
|
||||
|
||||
para "But nothing"
|
||||
@ -683,7 +684,7 @@ UnknownText_0x1c0b3b: ; 1c0b3b
|
||||
; 1c0b65
|
||||
|
||||
UnknownText_0x1c0b65: ; 1c0b65
|
||||
text $52, "'s #MON"
|
||||
text "<PLAYER>'s #MON"
|
||||
line "were all healed!"
|
||||
done
|
||||
; 1c0b7f
|
||||
@ -724,7 +725,7 @@ UnknownText_0x1c0bd8: ; 1c0bd8
|
||||
; 1c0bee
|
||||
|
||||
UnknownText_0x1c0bee: ; 1c0bee
|
||||
text "OAK: ", $52, "!"
|
||||
text "OAK: <PLAYER>!"
|
||||
line "This isn't the"
|
||||
cont "time to use that!"
|
||||
prompt
|
||||
@ -774,7 +775,7 @@ UnknownText_0x1c0ca3: ; 1c0ca3
|
||||
; 1c0cc6
|
||||
|
||||
UnknownText_0x1c0cc6: ; 1c0cc6
|
||||
text $5a, "'s"
|
||||
text "<USER>'s"
|
||||
line "@"
|
||||
text_from_ram StringBuffer2
|
||||
db "@"
|
||||
@ -796,7 +797,7 @@ UnknownText_0x1c0ce0: ; 1c0ce0
|
||||
; 1c0ceb
|
||||
|
||||
UnknownText_0x1c0ceb: ; 1c0ceb
|
||||
text $59, "'s"
|
||||
text "<TARGET>'s"
|
||||
line "@"
|
||||
text_from_ram StringBuffer2
|
||||
db "@"
|
||||
@ -818,7 +819,7 @@ UnknownText_0x1c0d06: ; 1c0d06
|
||||
; 1c0d0e
|
||||
|
||||
UnknownText_0x1c0d0e: ; 1c0d0e
|
||||
text $5a, "@"
|
||||
text "<USER>@"
|
||||
db "@"
|
||||
; 1c0d12
|
||||
|
||||
@ -859,7 +860,7 @@ UnknownText_0x1c0d6c: ; 1c0d6c
|
||||
; 1c0d7a
|
||||
|
||||
_ActorNameText: ; 1c0d7a
|
||||
text $5a, "@"
|
||||
text "<USER>@"
|
||||
db "@"
|
||||
; 1c0d7e
|
||||
|
||||
@ -876,8 +877,8 @@ _UsedMove2Text: ; 1c0d87
|
||||
; 1c0d90
|
||||
|
||||
_UsedInsteadText: ; 1c0d90
|
||||
text "instead,", $55
|
||||
db "@"
|
||||
text "instead,"
|
||||
cont "@"
|
||||
db "@"
|
||||
; 1c0d9c
|
||||
|
||||
@ -916,8 +917,8 @@ _EndUsedMove5Text: ; 1c0dad
|
||||
; 1c0db0
|
||||
|
||||
UnknownText_0x1c0db0: ; 1c0db0
|
||||
text "Huh?", $51
|
||||
db "@"
|
||||
text "Huh?"
|
||||
para "@"
|
||||
db "@"
|
||||
; 1c0db8
|
||||
|
||||
@ -1142,20 +1143,20 @@ UnknownText_0x1c10fa: ; 1c10fa
|
||||
text "This Bug-Catching"
|
||||
line "Contest winner is@"
|
||||
interpret_data
|
||||
text "…", $51
|
||||
db "@"
|
||||
text "…"
|
||||
para "@"
|
||||
text_from_ram wd016
|
||||
text ","
|
||||
line "who caught a", $55
|
||||
db "@"
|
||||
line "who caught a"
|
||||
cont "@"
|
||||
text_from_ram StringBuffer1
|
||||
text "!@"
|
||||
db "@"
|
||||
; 1c113f
|
||||
|
||||
UnknownText_0x1c113f: ; 1c113f
|
||||
text $51
|
||||
db "The winning score"
|
||||
text ""
|
||||
para "The winning score"
|
||||
line "was @"
|
||||
deciram wd004, $23
|
||||
text " points!"
|
||||
@ -1166,8 +1167,8 @@ UnknownText_0x1c1166: ; 1c1166
|
||||
text "Placing second was"
|
||||
line "@"
|
||||
text_from_ram wd016
|
||||
text ",", $51
|
||||
db "who caught a"
|
||||
text ","
|
||||
para "who caught a"
|
||||
line "@"
|
||||
text_from_ram StringBuffer1
|
||||
text "!@"
|
||||
@ -1175,8 +1176,8 @@ UnknownText_0x1c1166: ; 1c1166
|
||||
; 1c1196
|
||||
|
||||
UnknownText_0x1c1196: ; 1c1196
|
||||
text $51
|
||||
db "The score was"
|
||||
text ""
|
||||
para "The score was"
|
||||
line "@"
|
||||
deciram wd008, $23
|
||||
text " points!"
|
||||
@ -1187,8 +1188,8 @@ UnknownText_0x1c11b5: ; 1c11b5
|
||||
text "Placing third was"
|
||||
line "@"
|
||||
text_from_ram wd016
|
||||
text ",", $51
|
||||
db "who caught a"
|
||||
text ","
|
||||
para "who caught a"
|
||||
line "@"
|
||||
text_from_ram StringBuffer1
|
||||
text "!@"
|
||||
@ -1196,8 +1197,8 @@ UnknownText_0x1c11b5: ; 1c11b5
|
||||
; 1c11e4
|
||||
|
||||
UnknownText_0x1c11e4: ; 1c11e4
|
||||
text $51
|
||||
db "The score was"
|
||||
text ""
|
||||
para "The score was"
|
||||
line "@"
|
||||
deciram wd00c, $23
|
||||
text " points!"
|
||||
@ -1216,8 +1217,8 @@ UnknownText_0x1c1203: ; 1c1203
|
||||
; 1c123a
|
||||
|
||||
UnknownText_0x1c123a: ; 1c123a
|
||||
text "CURRENT RECORD", $51
|
||||
db "@"
|
||||
text "CURRENT RECORD"
|
||||
para "@"
|
||||
text_from_ram StringBuffer1
|
||||
text " caught by"
|
||||
line "@"
|
||||
@ -1273,7 +1274,7 @@ UnknownText_0x1c1328: ; 1c1328
|
||||
; 1c1353
|
||||
|
||||
UnknownText_0x1c1353: ; 1c1353
|
||||
text $52, " turned on"
|
||||
text "<PLAYER> turned on"
|
||||
line "the PC."
|
||||
prompt
|
||||
; 1c1368
|
||||
@ -1334,7 +1335,7 @@ _KrissPCNoRoomDepositText: ; 1c142d
|
||||
; 1c144d
|
||||
|
||||
UnknownText_0x1c144d: ; 1c144d
|
||||
text $52, " turned on"
|
||||
text "<PLAYER> turned on"
|
||||
line "the PC."
|
||||
prompt
|
||||
; 1c1462
|
||||
@ -1566,19 +1567,21 @@ _OakPCText4: ; 1c19aa
|
||||
|
||||
UnknownText_0x1c19cd: ; 1c19cd
|
||||
text "Triple-theme"
|
||||
line "trainer ranking!", $51
|
||||
db "The SAVE file you"
|
||||
line "just sent might", $55
|
||||
db "make the rankings!", $51
|
||||
db $57
|
||||
line "trainer ranking!"
|
||||
para "The SAVE file you"
|
||||
line "just sent might"
|
||||
cont "make the rankings!"
|
||||
para ""
|
||||
done
|
||||
; 1c1a22
|
||||
|
||||
UnknownText_0x1c1a22: ; 1c1a22
|
||||
text "There is no"
|
||||
line "ranking data.", $51
|
||||
db "Link to obtain"
|
||||
line "ranking data.", $51
|
||||
db $57
|
||||
line "ranking data."
|
||||
para "Link to obtain"
|
||||
line "ranking data."
|
||||
para ""
|
||||
done
|
||||
; 1c1a5b
|
||||
|
||||
UnknownText_0x1c1a5b: ; 1c1a5b
|
||||
@ -1630,7 +1633,7 @@ UnknownText_0x1c1adf: ; 1c1adf
|
||||
; 1c1b03
|
||||
|
||||
UnknownText_0x1c1b03: ; 1c1b03
|
||||
text "OAK: ", $52, "!"
|
||||
text "OAK: <PLAYER>!"
|
||||
line "This isn't the"
|
||||
cont "time to use that!"
|
||||
done
|
||||
@ -1776,9 +1779,9 @@ _OakText1: ; 1c1d35
|
||||
|
||||
_OakText2: ; 1c1da4
|
||||
text "This world is in-"
|
||||
line "habited by crea-", $55
|
||||
db "tures that we call", $55
|
||||
db "#MON.@"
|
||||
line "habited by crea-"
|
||||
cont "tures that we call"
|
||||
cont "#MON.@"
|
||||
db "@"
|
||||
; 1c1de2
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user