mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
commit
d7166960f8
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
14
macros.asm
14
macros.asm
@ -1,4 +1,16 @@
|
||||
; rgbds macros
|
||||
|
||||
text EQUS "db $00," ; Start writing text.
|
||||
next EQUS "db $4e," ; Move a line down.
|
||||
line EQUS "db $4f," ; Start writing at the bottom line.
|
||||
para EQUS "db $51," ; Start a new paragraph.
|
||||
cont EQUS "db $55," ; Scroll to the next line.
|
||||
done EQUS "db $57" ; End a text box.
|
||||
prompt EQUS "db $58" ; Prompt the player to end a text box (initiating some other event).
|
||||
|
||||
; Pokedex text commands are only used with pokered.
|
||||
; They are included for compatibility.
|
||||
page EQUS "db $50," ; Start a new Pokedex page.
|
||||
dex EQUS "db $e8, $50" ; End a Pokedex entry.
|
||||
|
||||
|
||||
; macros require rst vectors to be defined
|
||||
|
96
main.asm
96
main.asm
@ -99139,101 +99139,121 @@ Function11a8fa: ; 11a8fa
|
||||
INCBIN "baserom.gbc",$11a909,$11aa13 - $11a909
|
||||
|
||||
UnknownText_0x11aa13: ; 0x11aa13
|
||||
db $0, "SAVE FILE will be", $4f
|
||||
db "sent.", $57
|
||||
text "SAVE FILE will be"
|
||||
line "sent."
|
||||
done
|
||||
; 0x11aa2c
|
||||
|
||||
UnknownText_0x11aa2c: ; 0x11aa2c
|
||||
db $0, "Sent SAVE FILE.", $4f
|
||||
db "Reading NEWS…", $57
|
||||
text "Sent SAVE FILE."
|
||||
line "Reading NEWS…"
|
||||
done
|
||||
; 0x11aa4b
|
||||
|
||||
UnknownText_0x11aa4b: ; 0x11aa4b
|
||||
db $0, "Reading NEWS…", $57
|
||||
text "Reading NEWS…"
|
||||
done
|
||||
; 0x11aa5a
|
||||
|
||||
UnknownText_0x11aa5a: ; 0x11aa5a
|
||||
db $0, "Received NEWS!", $57
|
||||
text "Received NEWS!"
|
||||
done
|
||||
; 0x11aa6a
|
||||
|
||||
UnknownText_0x11aa6a: ; 0x11aa6a
|
||||
db $0, "Quit reading NEWS?", $57
|
||||
text "Quit reading NEWS?"
|
||||
done
|
||||
; 0x11aa7e
|
||||
|
||||
UnknownText_0x11aa7e: ; 0x11aa7e
|
||||
db $0, "Canceled sending", $4f
|
||||
db "SAVE FILE.", $57
|
||||
text "Canceled sending"
|
||||
line "SAVE FILE."
|
||||
done
|
||||
; 0x11aa9b
|
||||
|
||||
UnknownText_0x11aa9b: ; 0x11aa9b
|
||||
db $0, "ODD EGG", $4f
|
||||
db "was received!", $57
|
||||
text "ODD EGG"
|
||||
line "was received!"
|
||||
done
|
||||
; 0x11aab2
|
||||
|
||||
UnknownText_0x11aab2: ; 0x11aab2
|
||||
db $0, "Registering your", $4f
|
||||
db "record…", $57
|
||||
text "Registering your"
|
||||
line "record…"
|
||||
done
|
||||
; 0x11aacc
|
||||
|
||||
UnknownText_0x11aacc: ; 0x11aacc
|
||||
db $0, "One visit per day", $4f
|
||||
db "per BATTLE ROOM!", $57
|
||||
text "One visit per day"
|
||||
line "per BATTLE ROOM!"
|
||||
done
|
||||
; 0x11aaf0
|
||||
|
||||
UnknownText_0x11aaf0: ; 0x11aaf0
|
||||
db $0, "A party #MON", $4f
|
||||
db "tops this level.", $57
|
||||
text "A party #MON"
|
||||
line "tops this level."
|
||||
done
|
||||
; 0x11ab0f
|
||||
|
||||
UnknownText_0x11ab0f: ; 0x11ab0f
|
||||
text_from_ram $cd49
|
||||
db $0, " may go", $4f
|
||||
db "only to BATTLE", $51
|
||||
db "ROOMS that are", $4f
|
||||
db "Lv.70 or higher.", $57
|
||||
text " may go"
|
||||
line "only to BATTLE"
|
||||
|
||||
para "ROOMS that are"
|
||||
line "Lv.70 or higher."
|
||||
done
|
||||
; 0x11ab4a
|
||||
|
||||
UnknownText_0x11ab4a: ; 0x11ab4a
|
||||
db $0, "Cancel your BATTLE", $4f
|
||||
db "ROOM challenge?", $57
|
||||
text "Cancel your BATTLE"
|
||||
line "ROOM challenge?"
|
||||
done
|
||||
; 0x11ab6e
|
||||
|
||||
UnknownText_0x11ab6e: ; 0x11ab6e
|
||||
db $0, "Exit GYM LEADER", $4f
|
||||
db "HONOR ROLL?", $57
|
||||
text "Exit GYM LEADER"
|
||||
line "HONOR ROLL?"
|
||||
done
|
||||
; 0x11ab8b
|
||||
|
||||
UnknownText_0x11ab8b: ; 0x11ab8b
|
||||
db $0, "Linking with the", $4f
|
||||
db "CENTER…", $57
|
||||
text "Linking with the"
|
||||
line "CENTER…"
|
||||
done
|
||||
; 0x11aba5
|
||||
|
||||
UnknownText_0x11aba5: ; 0x11aba5
|
||||
db $0, "What level do you", $4f
|
||||
db "want to challenge?", $57
|
||||
text "What level do you"
|
||||
line "want to challenge?"
|
||||
done
|
||||
; 0x11abcb
|
||||
|
||||
UnknownText_0x11abcb: ; 0x11abcb
|
||||
db $0, "Check BATTLE ROOM", $4f
|
||||
db "list by max level?", $57
|
||||
text "Check BATTLE ROOM"
|
||||
line "list by max level?"
|
||||
done
|
||||
; 0x11abf1
|
||||
|
||||
UnknownText_0x11abf1: ; 0x11abf1
|
||||
db $0, "Enter which", $4f
|
||||
db "BATTLE ROOM?", $57
|
||||
text "Enter which"
|
||||
line "BATTLE ROOM?"
|
||||
done
|
||||
; 0x11ac0b
|
||||
|
||||
UnknownText_0x11ac0b: ; 0x11ac0b
|
||||
db $0, "Which BATTLE ROOM?", $57
|
||||
text "Which BATTLE ROOM?"
|
||||
done
|
||||
; 0x11ac1f
|
||||
|
||||
UnknownText_0x11ac1f: ; 0x11ac1f
|
||||
text_from_ram StringBuffer3
|
||||
db $0, "'s ROOM", $4f
|
||||
db "@"
|
||||
text "'s ROOM"
|
||||
line "@"
|
||||
text_from_ram StringBuffer4
|
||||
db $0, "?", $55
|
||||
db "Please wait…", $57
|
||||
text "?"
|
||||
cont "Please wait…"
|
||||
done
|
||||
; 0x11ac3e
|
||||
|
||||
Function11ac3e: ; 11ac3e
|
||||
|
@ -241,187 +241,238 @@ UnknownScript_0x18ed04: ; 0x18ed04
|
||||
; 0x18ed0b
|
||||
|
||||
UnknownText_0x18ed0b: ; 0x18ed0b
|
||||
db $0, "I'm BUGSY!", $4f
|
||||
db "I never lose when", $51
|
||||
db "it comes to bug", $4f
|
||||
db "#MON.", $51
|
||||
db "My research is", $4f
|
||||
db "going to make me", $51
|
||||
db "the authority on", $4f
|
||||
db "bug #MON!", $51
|
||||
db "Let me demonstrate", $4f
|
||||
db "what I've learned", $55
|
||||
db "from my studies.", $57
|
||||
text "I'm BUGSY!"
|
||||
line "I never lose when"
|
||||
|
||||
para "it comes to bug"
|
||||
line "#MON."
|
||||
|
||||
para "My research is"
|
||||
line "going to make me"
|
||||
|
||||
para "the authority on"
|
||||
line "bug #MON!"
|
||||
|
||||
para "Let me demonstrate"
|
||||
line "what I've learned"
|
||||
cont "from my studies."
|
||||
done
|
||||
; 0x18edae
|
||||
|
||||
UnknownText_0x18edae: ; 0x18edae
|
||||
db $0, "Whoa, amazing!", $4f
|
||||
db "You're an expert", $55
|
||||
db "on #MON!", $51
|
||||
db "My research isn't", $4f
|
||||
db "complete yet.", $51
|
||||
db "OK, you win. Take", $4f
|
||||
db "this BADGE.", $57
|
||||
text "Whoa, amazing!"
|
||||
line "You're an expert"
|
||||
cont "on #MON!"
|
||||
|
||||
para "My research isn't"
|
||||
line "complete yet."
|
||||
|
||||
para "OK, you win. Take"
|
||||
line "this BADGE."
|
||||
done
|
||||
; 0x18ee14
|
||||
|
||||
UnknownText_0x18ee14: ; 0x18ee14
|
||||
db $0, $52, " received", $4f
|
||||
db "HIVEBADGE.", $57
|
||||
text $52, " received"
|
||||
line "HIVEBADGE."
|
||||
done
|
||||
; 0x18ee2b
|
||||
|
||||
UnknownText_0x18ee2b: ; 0x18ee2b
|
||||
db $0, "Do you know the", $4f
|
||||
db "benefits of HIVE-", $55
|
||||
db "BADGE?", $51
|
||||
db "If you have it,", $4f
|
||||
db "#MON up to L30", $51
|
||||
db "will obey you,", $4f
|
||||
db "even traded ones.", $51
|
||||
db "#MON that know", $4f
|
||||
db "CUT will be able", $51
|
||||
db "to use it outside", $4f
|
||||
db "of battle too.", $51
|
||||
db "Here, I also want", $4f
|
||||
db "you to have this.", $57
|
||||
text "Do you know the"
|
||||
line "benefits of HIVE-"
|
||||
cont "BADGE?"
|
||||
|
||||
para "If you have it,"
|
||||
line "#MON up to L30"
|
||||
|
||||
para "will obey you,"
|
||||
line "even traded ones."
|
||||
|
||||
para "#MON that know"
|
||||
line "CUT will be able"
|
||||
|
||||
para "to use it outside"
|
||||
line "of battle too."
|
||||
|
||||
para "Here, I also want"
|
||||
line "you to have this."
|
||||
done
|
||||
; 0x18eefa
|
||||
|
||||
UnknownText_0x18eefa: ; 0x18eefa
|
||||
db $0, "TM49 contains", $4f
|
||||
db "FURY CUTTER.", $51
|
||||
db "If you don't miss,", $4f
|
||||
db "it gets stronger", $55
|
||||
db "every turn.", $51
|
||||
db "The longer your", $4f
|
||||
db "battle goes, the", $55
|
||||
db "better it gets.", $51
|
||||
db "Isn't that great?", $4f
|
||||
db "I discovered it!", $57
|
||||
text "TM49 contains"
|
||||
line "FURY CUTTER."
|
||||
|
||||
para "If you don't miss,"
|
||||
line "it gets stronger"
|
||||
cont "every turn."
|
||||
|
||||
para "The longer your"
|
||||
line "battle goes, the"
|
||||
cont "better it gets."
|
||||
|
||||
para "Isn't that great?"
|
||||
line "I discovered it!"
|
||||
done
|
||||
; 0x18ef98
|
||||
|
||||
UnknownText_0x18ef98: ; 0x18ef98
|
||||
db $0, "Bug #MON are", $4f
|
||||
db "deep. There are", $51
|
||||
db "many mysteries to", $4f
|
||||
db "be explored.", $51
|
||||
db "Study your favor-", $4f
|
||||
db "ites thoroughly.", $57
|
||||
text "Bug #MON are"
|
||||
line "deep. There are"
|
||||
|
||||
para "many mysteries to"
|
||||
line "be explored."
|
||||
|
||||
para "Study your favor-"
|
||||
line "ites thoroughly."
|
||||
done
|
||||
; 0x18eff8
|
||||
|
||||
Bug_catcherBug_catcher_bennySeenText: ; 0x18eff8
|
||||
db $0, "Bug #MON evolve", $4f
|
||||
db "young. So they get", $51
|
||||
db "stronger that much", $4f
|
||||
db "faster.", $57
|
||||
text "Bug #MON evolve"
|
||||
line "young. So they get"
|
||||
|
||||
para "stronger that much"
|
||||
line "faster."
|
||||
done
|
||||
; 0x18f037
|
||||
|
||||
Bug_catcherBug_catcher_bennyBeatenText: ; 0x18f037
|
||||
db $0, "Just evolving", $4f
|
||||
db "isn't enough!", $57
|
||||
text "Just evolving"
|
||||
line "isn't enough!"
|
||||
done
|
||||
; 0x18f053
|
||||
|
||||
UnknownText_0x18f053: ; 0x18f053
|
||||
db $0, "#MON become", $4f
|
||||
db "stronger if they", $55
|
||||
db "evolve. Really!", $57
|
||||
text "#MON become"
|
||||
line "stronger if they"
|
||||
cont "evolve. Really!"
|
||||
done
|
||||
; 0x18f081
|
||||
|
||||
Bug_catcherAlSeenText: ; 0x18f081
|
||||
db $0, "Bug #MON are", $4f
|
||||
db "cool and tough!", $51
|
||||
db "I'll prove it to", $4f
|
||||
db "you!", $57
|
||||
text "Bug #MON are"
|
||||
line "cool and tough!"
|
||||
|
||||
para "I'll prove it to"
|
||||
line "you!"
|
||||
done
|
||||
; 0x18f0b4
|
||||
|
||||
Bug_catcherAlBeatenText: ; 0x18f0b4
|
||||
db $0, "You proved how", $4f
|
||||
db "tough you are…", $57
|
||||
text "You proved how"
|
||||
line "tough you are…"
|
||||
done
|
||||
; 0x18f0d3
|
||||
|
||||
UnknownText_0x18f0d3: ; 0x18f0d3
|
||||
db $0, "They're so cool,", $4f
|
||||
db "but most girls", $51
|
||||
db "don't like bug", $4f
|
||||
db "#MON.", $51
|
||||
db "I don't know why…", $57
|
||||
text "They're so cool,"
|
||||
line "but most girls"
|
||||
|
||||
para "don't like bug"
|
||||
line "#MON."
|
||||
|
||||
para "I don't know why…"
|
||||
done
|
||||
; 0x18f118
|
||||
|
||||
Bug_catcherJoshSeenText: ; 0x18f118
|
||||
db $0, "You saved all the", $4f
|
||||
db "SLOWPOKE? Whew,", $55
|
||||
db "you're mighty!", $51
|
||||
db "But my grown-up", $4f
|
||||
db "#MON are pretty", $55
|
||||
db "tough too!", $57
|
||||
text "You saved all the"
|
||||
line "SLOWPOKE? Whew,"
|
||||
cont "you're mighty!"
|
||||
|
||||
para "But my grown-up"
|
||||
line "#MON are pretty"
|
||||
cont "tough too!"
|
||||
done
|
||||
; 0x18f174
|
||||
|
||||
Bug_catcherJoshBeatenText: ; 0x18f174
|
||||
db $0, "Urrgggh!", $57
|
||||
text "Urrgggh!"
|
||||
done
|
||||
; 0x18f17e
|
||||
|
||||
UnknownText_0x18f17e: ; 0x18f17e
|
||||
db $0, "I guess I should", $4f
|
||||
db "teach them better", $55
|
||||
db "moves…", $57
|
||||
text "I guess I should"
|
||||
line "teach them better"
|
||||
cont "moves…"
|
||||
done
|
||||
; 0x18f1a9
|
||||
|
||||
TwinsAmyandmay1SeenText: ; 0x18f1a9
|
||||
db $0, "AMY: Hi! Are you", $4f
|
||||
db "challenging the", $55
|
||||
db "LEADER? No way!", $57
|
||||
text "AMY: Hi! Are you"
|
||||
line "challenging the"
|
||||
cont "LEADER? No way!"
|
||||
done
|
||||
; 0x18f1db
|
||||
|
||||
TwinsAmyandmay1BeatenText: ; 0x18f1db
|
||||
db $0, "AMY & MAY: Oh,", $4f
|
||||
db "double goodness!", $57
|
||||
text "AMY & MAY: Oh,"
|
||||
line "double goodness!"
|
||||
done
|
||||
; 0x18f1fc
|
||||
|
||||
UnknownText_0x18f1fc: ; 0x18f1fc
|
||||
db $0, "AMY: You're", $4f
|
||||
db "really strong!", $57
|
||||
text "AMY: You're"
|
||||
line "really strong!"
|
||||
done
|
||||
; 0x18f217
|
||||
|
||||
TwinsAmyandmay2SeenText: ; 0x18f217
|
||||
db $0, "MAY: You want to", $4f
|
||||
db "see the LEADER?", $55
|
||||
db "We come first!", $57
|
||||
text "MAY: You want to"
|
||||
line "see the LEADER?"
|
||||
cont "We come first!"
|
||||
done
|
||||
; 0x18f248
|
||||
|
||||
TwinsAmyandmay2BeatenText: ; 0x18f248
|
||||
db $0, "AMY & MAY: Oh,", $4f
|
||||
db "double goodness!", $57
|
||||
text "AMY & MAY: Oh,"
|
||||
line "double goodness!"
|
||||
done
|
||||
; 0x18f269
|
||||
|
||||
UnknownText_0x18f269: ; 0x18f269
|
||||
db $0, "MAY: Our bug #-", $4f
|
||||
db "MON lost! Oh, what", $55
|
||||
db "a shame.", $57
|
||||
text "MAY: Our bug #-"
|
||||
line "MON lost! Oh, what"
|
||||
cont "a shame."
|
||||
done
|
||||
; 0x18f296
|
||||
|
||||
AzaleaGymGuyText: ; 0x18f296
|
||||
db $0, "Yo, challenger!", $51
|
||||
db "BUGSY's young, but", $4f
|
||||
db "his knowledge of", $51
|
||||
db "bug #MON is for", $4f
|
||||
db "real.", $51
|
||||
db "It's going to be", $4f
|
||||
db "tough without my", $55
|
||||
db "advice.", $51
|
||||
db "Let's see… Bug", $4f
|
||||
db "#MON don't like", $55
|
||||
db "fire.", $51
|
||||
db "Flying-type moves", $4f
|
||||
db "are super-effec-", $55
|
||||
db "tive too.", $57
|
||||
text "Yo, challenger!"
|
||||
|
||||
para "BUGSY's young, but"
|
||||
line "his knowledge of"
|
||||
|
||||
para "bug #MON is for"
|
||||
line "real."
|
||||
|
||||
para "It's going to be"
|
||||
line "tough without my"
|
||||
cont "advice."
|
||||
|
||||
para "Let's see… Bug"
|
||||
line "#MON don't like"
|
||||
cont "fire."
|
||||
|
||||
para "Flying-type moves"
|
||||
line "are super-effec-"
|
||||
cont "tive too."
|
||||
done
|
||||
; 0x18f359
|
||||
|
||||
AzaleaGymGuyWinText: ; 0x18f359
|
||||
db $0, "Well done! That", $4f
|
||||
db "was a great clash", $51
|
||||
db "of talented young", $4f
|
||||
db "trainers.", $51
|
||||
db "With people like", $4f
|
||||
db "you, the future of", $55
|
||||
db "#MON is bright!", $57
|
||||
text "Well done! That"
|
||||
line "was a great clash"
|
||||
|
||||
para "of talented young"
|
||||
line "trainers."
|
||||
|
||||
para "With people like"
|
||||
line "you, the future of"
|
||||
cont "#MON is bright!"
|
||||
done
|
||||
; 0x18f3cc
|
||||
|
||||
AzaleaGym_MapEventHeader: ; 0x18f3cc
|
||||
|
@ -22,23 +22,28 @@ BugCatcherScript_0x18e04a: ; 0x18e04a
|
||||
; 0x18e04d
|
||||
|
||||
UnknownText_0x18e04d: ; 0x18e04d
|
||||
db $0, "There's no GREAT", $4f
|
||||
db "BALL here. #", $51
|
||||
db "BALLS will have", $4f
|
||||
db "to do.", $51
|
||||
db "I wish KURT would", $4f
|
||||
db "make me some of", $55
|
||||
db "his custom BALLS.", $57
|
||||
text "There's no GREAT"
|
||||
line "BALL here. #"
|
||||
|
||||
para "BALLS will have"
|
||||
line "to do."
|
||||
|
||||
para "I wish KURT would"
|
||||
line "make me some of"
|
||||
cont "his custom BALLS."
|
||||
done
|
||||
; 0x18e0b6
|
||||
|
||||
UnknownText_0x18e0b6: ; 0x18e0b6
|
||||
db $0, "A GREAT BALL is", $4f
|
||||
db "better for catch-", $55
|
||||
db "ing #MON than a", $55
|
||||
db "# BALL.", $51
|
||||
db "But KURT's might", $4f
|
||||
db "be better some-", $55
|
||||
db "times.", $57
|
||||
text "A GREAT BALL is"
|
||||
line "better for catch-"
|
||||
cont "ing #MON than a"
|
||||
cont "# BALL."
|
||||
|
||||
para "But KURT's might"
|
||||
line "be better some-"
|
||||
cont "times."
|
||||
done
|
||||
; 0x18e118
|
||||
|
||||
AzaleaMart_MapEventHeader: ; 0x18e118
|
||||
|
@ -30,43 +30,56 @@ PokefanFScript_0x18db31: ; 0x18db31
|
||||
; 0x18db34
|
||||
|
||||
UnknownText_0x18db34: ; 0x18db34
|
||||
db $0, "Do your #MON", $4f
|
||||
db "know HM moves?", $51
|
||||
db "Those moves can", $4f
|
||||
db "be used even if", $51
|
||||
db "your #MON has", $4f
|
||||
db "fainted.", $57
|
||||
text "Do your #MON"
|
||||
line "know HM moves?"
|
||||
|
||||
para "Those moves can"
|
||||
line "be used even if"
|
||||
|
||||
para "your #MON has"
|
||||
line "fainted."
|
||||
done
|
||||
; 0x18db88
|
||||
|
||||
UnknownText_0x18db88: ; 0x18db88
|
||||
db $0, "This BILL guy", $4f
|
||||
db "created the system", $51
|
||||
db "for storing", $4f
|
||||
db "#MON in a PC.", $51
|
||||
db "BILL's PC can", $4f
|
||||
db "store up to 20", $55
|
||||
db "#MON per BOX.", $57
|
||||
text "This BILL guy"
|
||||
line "created the system"
|
||||
|
||||
para "for storing"
|
||||
line "#MON in a PC."
|
||||
|
||||
para "BILL's PC can"
|
||||
line "store up to 20"
|
||||
cont "#MON per BOX."
|
||||
done
|
||||
; 0x18dbee
|
||||
|
||||
UnknownText_0x18dbee: ; 0x18dbee
|
||||
db $0, "BILL's PC can", $4f
|
||||
db "store up to 20", $55
|
||||
db "#MON per BOX.", $57
|
||||
text "BILL's PC can"
|
||||
line "store up to 20"
|
||||
cont "#MON per BOX."
|
||||
done
|
||||
; 0x18dc19
|
||||
|
||||
UnknownText_0x18dc19: ; 0x18dc19
|
||||
db $0, "Do you know about", $4f
|
||||
db "APRICORNS?", $51
|
||||
db "Crack one open,", $4f
|
||||
db "hollow it out and", $51
|
||||
db "fit it with a", $4f
|
||||
db "special device.", $51
|
||||
db "Then you can catch", $4f
|
||||
db "#MON with it.", $51
|
||||
db "Before # BALLS", $4f
|
||||
db "were invented,", $51
|
||||
db "everyone used", $4f
|
||||
db "APRICORNS.", $57
|
||||
text "Do you know about"
|
||||
line "APRICORNS?"
|
||||
|
||||
para "Crack one open,"
|
||||
line "hollow it out and"
|
||||
|
||||
para "fit it with a"
|
||||
line "special device."
|
||||
|
||||
para "Then you can catch"
|
||||
line "#MON with it."
|
||||
|
||||
para "Before # BALLS"
|
||||
line "were invented,"
|
||||
|
||||
para "everyone used"
|
||||
line "APRICORNS."
|
||||
done
|
||||
; 0x18dccf
|
||||
|
||||
AzaleaPokeCenter1F_MapEventHeader: ; 0x18dccf
|
||||
|
@ -273,181 +273,234 @@ MovementData_0x198148: ; 0x198148
|
||||
; 0x19814d
|
||||
|
||||
UnknownText_0x19814d: ; 0x19814d
|
||||
db $0, "…Tell me some-", $4f
|
||||
db "thing.", $51
|
||||
db "Is it true that", $4f
|
||||
db "TEAM ROCKET has", $55
|
||||
db "returned?", $51
|
||||
db "What? You beat", $4f
|
||||
db "them? Hah! Quit", $55
|
||||
db "lying.", $51
|
||||
db "You're not joking?", $4f
|
||||
db "Then let's see how", $55
|
||||
db "good you are.", $57
|
||||
text "…Tell me some-"
|
||||
line "thing."
|
||||
|
||||
para "Is it true that"
|
||||
line "TEAM ROCKET has"
|
||||
cont "returned?"
|
||||
|
||||
para "What? You beat"
|
||||
line "them? Hah! Quit"
|
||||
cont "lying."
|
||||
|
||||
para "You're not joking?"
|
||||
line "Then let's see how"
|
||||
cont "good you are."
|
||||
done
|
||||
; 0x1981e6
|
||||
|
||||
UnknownText_0x1981e6: ; 0x1981e6
|
||||
db $0, "… Humph! Useless", $4f
|
||||
db "#MON!", $51
|
||||
db "Listen, you. You", $4f
|
||||
db "only won because", $51
|
||||
db "my #MON were", $4f
|
||||
db "weak.", $57
|
||||
text "… Humph! Useless"
|
||||
line "#MON!"
|
||||
|
||||
para "Listen, you. You"
|
||||
line "only won because"
|
||||
|
||||
para "my #MON were"
|
||||
line "weak."
|
||||
done
|
||||
; 0x198233
|
||||
|
||||
UnknownText_0x198233: ; 0x198233
|
||||
db $0, "I hate the weak.", $51
|
||||
db "#MON, trainers.", $4f
|
||||
db "It doesn't matter", $55
|
||||
db "who or what.", $51
|
||||
db "I'm going to be", $4f
|
||||
db "strong and wipe", $55
|
||||
db "out the weak.", $51
|
||||
db "That goes for TEAM", $4f
|
||||
db "ROCKET too.", $51
|
||||
db "They act big and", $4f
|
||||
db "tough in a group.", $51
|
||||
db "But get them", $4f
|
||||
db "alone, and they're", $55
|
||||
db "weak.", $51
|
||||
db "I hate them all.", $51
|
||||
db "You stay out of my", $4f
|
||||
db "way. A weakling", $51
|
||||
db "like you is only a", $4f
|
||||
db "distraction.", $57
|
||||
text "I hate the weak."
|
||||
|
||||
para "#MON, trainers."
|
||||
line "It doesn't matter"
|
||||
cont "who or what."
|
||||
|
||||
para "I'm going to be"
|
||||
line "strong and wipe"
|
||||
cont "out the weak."
|
||||
|
||||
para "That goes for TEAM"
|
||||
line "ROCKET too."
|
||||
|
||||
para "They act big and"
|
||||
line "tough in a group."
|
||||
|
||||
para "But get them"
|
||||
line "alone, and they're"
|
||||
cont "weak."
|
||||
|
||||
para "I hate them all."
|
||||
|
||||
para "You stay out of my"
|
||||
line "way. A weakling"
|
||||
|
||||
para "like you is only a"
|
||||
line "distraction."
|
||||
done
|
||||
; 0x19835b
|
||||
|
||||
UnknownText_0x19835b: ; 0x19835b
|
||||
db $0, "…Humph! I knew", $4f
|
||||
db "you were lying.", $57
|
||||
text "…Humph! I knew"
|
||||
line "you were lying."
|
||||
done
|
||||
; 0x19837b
|
||||
|
||||
UnknownText_0x19837b: ; 0x19837b
|
||||
db $0, "It's unsafe to go", $4f
|
||||
db "in there, so I'm", $55
|
||||
db "standing guard.", $51
|
||||
db "Aren't I a good", $4f
|
||||
db "Samaritan?", $57
|
||||
text "It's unsafe to go"
|
||||
line "in there, so I'm"
|
||||
cont "standing guard."
|
||||
|
||||
para "Aren't I a good"
|
||||
line "Samaritan?"
|
||||
done
|
||||
; 0x1983c7
|
||||
|
||||
UnknownText_0x1983c7: ; 0x1983c7
|
||||
db $0, "Do you know about", $4f
|
||||
db "SLOWPOKETAIL? I", $55
|
||||
db "heard it's tasty!", $51
|
||||
db "Aren't you glad I", $4f
|
||||
db "told you that?", $57
|
||||
text "Do you know about"
|
||||
line "SLOWPOKETAIL? I"
|
||||
cont "heard it's tasty!"
|
||||
|
||||
para "Aren't you glad I"
|
||||
line "told you that?"
|
||||
done
|
||||
; 0x19841b
|
||||
|
||||
UnknownText_0x19841b: ; 0x19841b
|
||||
db $0, "The SLOWPOKE have", $4f
|
||||
db "disappeared from", $55
|
||||
db "town…", $51
|
||||
db "I heard their", $4f
|
||||
db "TAILS are being", $55
|
||||
db "sold somewhere.", $57
|
||||
text "The SLOWPOKE have"
|
||||
line "disappeared from"
|
||||
cont "town…"
|
||||
|
||||
para "I heard their"
|
||||
line "TAILS are being"
|
||||
cont "sold somewhere."
|
||||
done
|
||||
; 0x198473
|
||||
|
||||
UnknownText_0x198473: ; 0x198473
|
||||
db $0, "The SLOWPOKE have", $4f
|
||||
db "returned.", $51
|
||||
db "Knowing them, they", $4f
|
||||
db "could've just been", $51
|
||||
db "goofing off some-", $4f
|
||||
db "where.", $57
|
||||
text "The SLOWPOKE have"
|
||||
line "returned."
|
||||
|
||||
para "Knowing them, they"
|
||||
line "could've just been"
|
||||
|
||||
para "goofing off some-"
|
||||
line "where."
|
||||
done
|
||||
; 0x1984ce
|
||||
|
||||
UnknownText_0x1984ce: ; 0x1984ce
|
||||
db $0, "Did you come to", $4f
|
||||
db "get KURT to make", $55
|
||||
db "some BALLS?", $51
|
||||
db "A lot of people do", $4f
|
||||
db "just that.", $57
|
||||
text "Did you come to"
|
||||
line "get KURT to make"
|
||||
cont "some BALLS?"
|
||||
|
||||
para "A lot of people do"
|
||||
line "just that."
|
||||
done
|
||||
; 0x19851a
|
||||
|
||||
UnknownText_0x19851a: ; 0x19851a
|
||||
db $0, "Cut through AZALEA", $4f
|
||||
db "and you'll be in", $55
|
||||
db "ILEX FOREST.", $51
|
||||
db "But these skinny", $4f
|
||||
db "trees make it", $51
|
||||
db "impossible to get", $4f
|
||||
db "through.", $51
|
||||
db "The CHARCOAL MAN's", $4f
|
||||
db "#MON can CUT", $55
|
||||
db "down trees.", $57
|
||||
text "Cut through AZALEA"
|
||||
line "and you'll be in"
|
||||
cont "ILEX FOREST."
|
||||
|
||||
para "But these skinny"
|
||||
line "trees make it"
|
||||
|
||||
para "impossible to get"
|
||||
line "through."
|
||||
|
||||
para "The CHARCOAL MAN's"
|
||||
line "#MON can CUT"
|
||||
cont "down trees."
|
||||
done
|
||||
; 0x1985b0
|
||||
|
||||
UnknownText_0x1985b0: ; 0x1985b0
|
||||
db $0, "SLOWPOKE: …", $51
|
||||
db $56, " ", $56, " ", $56, $57
|
||||
text "SLOWPOKE: …"
|
||||
|
||||
para $56, " ", $56, " ", $56
|
||||
done
|
||||
; 0x1985c3
|
||||
|
||||
UnknownText_0x1985c3: ; 0x1985c3
|
||||
db $0, $56, " ", $56, "Yawn?", $57
|
||||
text $56, " ", $56, "Yawn?"
|
||||
done
|
||||
; 0x1985cd
|
||||
|
||||
UnknownText_0x1985cd: ; 0x1985cd
|
||||
db $0, "WOOSTER: Gugyoo…", $57
|
||||
text "WOOSTER: Gugyoo…"
|
||||
done
|
||||
; 0x1985df
|
||||
|
||||
UnknownText_0x1985df: ; 0x1985df
|
||||
db $0, "ILEX FOREST is", $4f
|
||||
db "restless!", $51
|
||||
db "What is going on?", $57
|
||||
text "ILEX FOREST is"
|
||||
line "restless!"
|
||||
|
||||
para "What is going on?"
|
||||
done
|
||||
; 0x19860b
|
||||
|
||||
UnknownText_0x19860b: ; 0x19860b
|
||||
db $0, $52, ", here's", $4f
|
||||
db "your GS BALL back!", $57
|
||||
text $52, ", here's"
|
||||
line "your GS BALL back!"
|
||||
done
|
||||
; 0x198628
|
||||
|
||||
UnknownText_0x198628: ; 0x198628
|
||||
db $0, "Could you go see", $4f
|
||||
db "why ILEX FOREST is", $55
|
||||
db "so restless?", $57
|
||||
text "Could you go see"
|
||||
line "why ILEX FOREST is"
|
||||
cont "so restless?"
|
||||
done
|
||||
; 0x19865a
|
||||
|
||||
UnknownText_0x19865a: ; 0x19865a
|
||||
db $0, "AZALEA TOWN", $4f
|
||||
db "Where People and", $51
|
||||
db "#MON Live in", $4f
|
||||
db "Happy Harmony", $57
|
||||
text "AZALEA TOWN"
|
||||
line "Where People and"
|
||||
|
||||
para "#MON Live in"
|
||||
line "Happy Harmony"
|
||||
done
|
||||
; 0x198693
|
||||
|
||||
UnknownText_0x198693: ; 0x198693
|
||||
db $0, "KURT'S HOUSE", $57
|
||||
text "KURT'S HOUSE"
|
||||
done
|
||||
; 0x1986a1
|
||||
|
||||
UnknownText_0x1986a1: ; 0x1986a1
|
||||
db $0, "AZALEA TOWN", $4f
|
||||
db "#MON GYM", $55
|
||||
db "LEADER: BUGSY", $51
|
||||
db "The Walking", $4f
|
||||
db "Bug #MON", $55
|
||||
db "Encyclopedia", $57
|
||||
text "AZALEA TOWN"
|
||||
line "#MON GYM"
|
||||
cont "LEADER: BUGSY"
|
||||
|
||||
para "The Walking"
|
||||
line "Bug #MON"
|
||||
cont "Encyclopedia"
|
||||
done
|
||||
; 0x1986e7
|
||||
|
||||
UnknownText_0x1986e7: ; 0x1986e7
|
||||
db $0, "SLOWPOKE WELL", $51
|
||||
db "Also known as the", $4f
|
||||
db "RAINMAKER WELL.", $51
|
||||
db "Locals believe", $4f
|
||||
db "that a SLOWPOKE's", $55
|
||||
db "yawn summons rain.", $51
|
||||
db "Records show that", $4f
|
||||
db "a SLOWPOKE's yawn", $51
|
||||
db "ended a drought", $4f
|
||||
db "400 years ago.", $57
|
||||
text "SLOWPOKE WELL"
|
||||
|
||||
para "Also known as the"
|
||||
line "RAINMAKER WELL."
|
||||
|
||||
para "Locals believe"
|
||||
line "that a SLOWPOKE's"
|
||||
cont "yawn summons rain."
|
||||
|
||||
para "Records show that"
|
||||
line "a SLOWPOKE's yawn"
|
||||
|
||||
para "ended a drought"
|
||||
line "400 years ago."
|
||||
done
|
||||
; 0x19878d
|
||||
|
||||
UnknownText_0x19878d: ; 0x19878d
|
||||
db $0, "CHARCOAL KILN", $57
|
||||
text "CHARCOAL KILN"
|
||||
done
|
||||
; 0x19879c
|
||||
|
||||
UnknownText_0x19879c: ; 0x19879c
|
||||
db $0, "ILEX FOREST", $51
|
||||
db "Enter through the", $4f
|
||||
db "gate.", $57
|
||||
text "ILEX FOREST"
|
||||
|
||||
para "Enter through the"
|
||||
line "gate."
|
||||
done
|
||||
; 0x1987c1
|
||||
|
||||
AzaleaTown_MapEventHeader: ; 0x1987c1
|
||||
|
@ -382,20 +382,24 @@ MovementData_0x9e5a9: ; 0x9e5a9
|
||||
; 0x9e5ab
|
||||
|
||||
UnknownText_0x9e5ab: ; 0x9e5ab
|
||||
db $0, "BATTLE TOWER", $4f
|
||||
db "welcomes you!", $51
|
||||
db "I could show you", $4f
|
||||
db "to a BATTLE ROOM.", $57
|
||||
text "BATTLE TOWER"
|
||||
line "welcomes you!"
|
||||
|
||||
para "I could show you"
|
||||
line "to a BATTLE ROOM."
|
||||
done
|
||||
; 0x9e5ea
|
||||
|
||||
UnknownText_0x9e5ea: ; 0x9e5ea
|
||||
db $0, "Want to go into a", $4f
|
||||
db "BATTLE ROOM?", $57
|
||||
text "Want to go into a"
|
||||
line "BATTLE ROOM?"
|
||||
done
|
||||
; 0x9e60a
|
||||
|
||||
UnknownText_0x9e60a: ; 0x9e60a
|
||||
db $0, "Right this way to", $4f
|
||||
db "your BATTLE ROOM.", $57
|
||||
text "Right this way to"
|
||||
line "your BATTLE ROOM."
|
||||
done
|
||||
; 0x9e62f
|
||||
|
||||
UnknownText_0x9e62f: ; 0x9e62f
|
||||
@ -474,8 +478,9 @@ UnknownText_0x9e9eb: ; 0x9e9eb
|
||||
; 0x9ea1b
|
||||
|
||||
UnknownText_0x9ea1b: ; 0x9ea1b
|
||||
db $0, "Please confirm on", $4f
|
||||
db "this monitor.", $57
|
||||
text "Please confirm on"
|
||||
line "this monitor."
|
||||
done
|
||||
; 0x9ea3c
|
||||
|
||||
UnknownText_0x9ea3c: ; 0x9ea3c
|
||||
@ -484,8 +489,9 @@ UnknownText_0x9ea3c: ; 0x9ea3c
|
||||
; 0x9ea49
|
||||
|
||||
UnknownText_0x9ea49: ; 0x9ea49
|
||||
db $0, "Thanks for", $4f
|
||||
db "visiting!", $57
|
||||
text "Thanks for"
|
||||
line "visiting!"
|
||||
done
|
||||
; 0x9ea5f
|
||||
|
||||
UnknownText_0x9ea5f: ; 0x9ea5f
|
||||
@ -511,10 +517,12 @@ UnknownText_0x9eaef: ; 0x9eaef
|
||||
; 0x9eb45
|
||||
|
||||
UnknownText_0x9eb45: ; 0x9eb45
|
||||
db $0, "Would you like to", $4f
|
||||
db "register your", $51
|
||||
db "record with the", $4f
|
||||
db "CENTER?", $57
|
||||
text "Would you like to"
|
||||
line "register your"
|
||||
|
||||
para "record with the"
|
||||
line "CENTER?"
|
||||
done
|
||||
; 0x9eb7e
|
||||
|
||||
UnknownText_0x9eb7e: ; 0x9eb7e
|
||||
@ -528,230 +536,292 @@ UnknownText_0x9eb7e: ; 0x9eb7e
|
||||
; 0x9eb94
|
||||
|
||||
UnknownText_0x9eb94: ; 0x9eb94
|
||||
db $0, "Oops, your PACK is", $4f
|
||||
db "stuffed full.", $51
|
||||
db "Please make room", $4f
|
||||
db "and come back.", $57
|
||||
text "Oops, your PACK is"
|
||||
line "stuffed full."
|
||||
|
||||
para "Please make room"
|
||||
line "and come back."
|
||||
done
|
||||
; 0x9ebd6
|
||||
|
||||
UnknownText_0x9ebd6: ; 0x9ebd6
|
||||
db $0, "Your registration", $4f
|
||||
db "is complete.", $51
|
||||
db "Please come again!", $57
|
||||
text "Your registration"
|
||||
line "is complete."
|
||||
|
||||
para "Please come again!"
|
||||
done
|
||||
; 0x9ec09
|
||||
|
||||
UnknownText_0x9ec09: ; 0x9ec09
|
||||
db $0, "We hope to serve", $4f
|
||||
db "you again.", $57
|
||||
text "We hope to serve"
|
||||
line "you again."
|
||||
done
|
||||
; 0x9ec26
|
||||
|
||||
UnknownText_0x9ec26: ; 0x9ec26
|
||||
db $0, "Please step this", $4f
|
||||
db "way.", $57
|
||||
text "Please step this"
|
||||
line "way."
|
||||
done
|
||||
; 0x9ec3d
|
||||
|
||||
UnknownText_0x9ec3d: ; 0x9ec3d
|
||||
db $0, "Would you like to", $4f
|
||||
db "hear about the", $55
|
||||
db "BATTLE TOWER?", $57
|
||||
text "Would you like to"
|
||||
line "hear about the"
|
||||
cont "BATTLE TOWER?"
|
||||
done
|
||||
; 0x9ec6d
|
||||
|
||||
UnknownText_0x9ec6d: ; 0x9ec6d
|
||||
db $0, "Your record from", $4f
|
||||
db "the previous", $51
|
||||
db "BATTLE ROOM can't", $4f
|
||||
db "be registered. OK?", $57
|
||||
text "Your record from"
|
||||
line "the previous"
|
||||
|
||||
para "BATTLE ROOM can't"
|
||||
line "be registered. OK?"
|
||||
done
|
||||
; 0x9ecb0
|
||||
|
||||
UnknownText_0x9ecb0: ; 0x9ecb0
|
||||
db $0, "Your record from", $4f
|
||||
db "the previous", $51
|
||||
db "BATTLE ROOM can't", $4f
|
||||
db "be registered.", $51
|
||||
db "Also, the existing", $4f
|
||||
db "record will be", $55
|
||||
db "deleted. OK?", $57
|
||||
text "Your record from"
|
||||
line "the previous"
|
||||
|
||||
para "BATTLE ROOM can't"
|
||||
line "be registered."
|
||||
|
||||
para "Also, the existing"
|
||||
line "record will be"
|
||||
cont "deleted. OK?"
|
||||
done
|
||||
; 0x9ed1e
|
||||
|
||||
UnknownText_0x9ed1e: ; 0x9ed1e
|
||||
db $0, "Check the LEADER", $4f
|
||||
db "HONOR ROLL?", $57
|
||||
text "Check the LEADER"
|
||||
line "HONOR ROLL?"
|
||||
done
|
||||
; 0x9ed3c
|
||||
|
||||
UnknownText_0x9ed3c: ; 0x9ed3c
|
||||
db $0, "BATTLE TOWER rules", $4f
|
||||
db "are written here.", $51
|
||||
db "Read the rules?", $57
|
||||
text "BATTLE TOWER rules"
|
||||
line "are written here."
|
||||
|
||||
para "Read the rules?"
|
||||
done
|
||||
; 0x9ed72
|
||||
|
||||
UnknownText_0x9ed72: ; 0x9ed72
|
||||
db $0, "Three #MON may", $4f
|
||||
db "enter battles.", $51
|
||||
db "All three must be", $4f
|
||||
db "different.", $51
|
||||
db "The items they", $4f
|
||||
db "hold must also be", $55
|
||||
db "different.", $51
|
||||
db "Certain #MON", $4f
|
||||
db "may also have", $51
|
||||
db "level restrictions", $4f
|
||||
db "placed on them.", $57
|
||||
text "Three #MON may"
|
||||
line "enter battles."
|
||||
|
||||
para "All three must be"
|
||||
line "different."
|
||||
|
||||
para "The items they"
|
||||
line "hold must also be"
|
||||
cont "different."
|
||||
|
||||
para "Certain #MON"
|
||||
line "may also have"
|
||||
|
||||
para "level restrictions"
|
||||
line "placed on them."
|
||||
done
|
||||
; 0x9ee18
|
||||
|
||||
UnknownText_0x9ee18: ; 0x9ee18
|
||||
db $0, "Excuse me!", $4f
|
||||
db "You didn't SAVE", $51
|
||||
db "before exiting", $4f
|
||||
db "the BATTLE ROOM.", $51
|
||||
db "I'm awfully sorry,", $4f
|
||||
db "but your challenge", $51
|
||||
db "will be declared", $4f
|
||||
db "invalid.", $57
|
||||
text "Excuse me!"
|
||||
line "You didn't SAVE"
|
||||
|
||||
para "before exiting"
|
||||
line "the BATTLE ROOM."
|
||||
|
||||
para "I'm awfully sorry,"
|
||||
line "but your challenge"
|
||||
|
||||
para "will be declared"
|
||||
line "invalid."
|
||||
done
|
||||
; 0x9ee92
|
||||
|
||||
UnknownText_0x9ee92: ; 0x9ee92
|
||||
db $0, "Your #MON will", $4f
|
||||
db "be healed to full", $55
|
||||
db "health.", $57
|
||||
text "Your #MON will"
|
||||
line "be healed to full"
|
||||
cont "health."
|
||||
done
|
||||
; 0x9eebc
|
||||
|
||||
UnknownText_0x9eebc: ; 0x9eebc
|
||||
db $0, "Next up, opponent", $4f
|
||||
db "no.@"
|
||||
text "Next up, opponent"
|
||||
line "no.@"
|
||||
text_from_ram $d099
|
||||
db $0, ". Ready?", $57
|
||||
text ". Ready?"
|
||||
done
|
||||
; 0x9eee0
|
||||
|
||||
UnknownText_0x9eee0: ; 0x9eee0
|
||||
db $0, "Your session will", $4f
|
||||
db "be SAVED before", $51
|
||||
db "connecting with", $4f
|
||||
db "the CENTER.", $57
|
||||
text "Your session will"
|
||||
line "be SAVED before"
|
||||
|
||||
para "connecting with"
|
||||
line "the CENTER."
|
||||
done
|
||||
; 0x9ef1f
|
||||
|
||||
UnknownText_0x9ef1f: ; 0x9ef1f
|
||||
db $0, "Before entering", $4f
|
||||
db "the BATTLE ROOM,", $51
|
||||
db "your progress will", $4f
|
||||
db "be saved.", $57
|
||||
text "Before entering"
|
||||
line "the BATTLE ROOM,"
|
||||
|
||||
para "your progress will"
|
||||
line "be saved."
|
||||
done
|
||||
; 0x9ef5e
|
||||
|
||||
UnknownText_0x9ef5e: ; 0x9ef5e
|
||||
db $0, "SAVE and end the", $4f
|
||||
db "session?", $57
|
||||
text "SAVE and end the"
|
||||
line "session?"
|
||||
done
|
||||
; 0x9ef79
|
||||
|
||||
UnknownText_0x9ef79: ; 0x9ef79
|
||||
db $0, "Your record will", $4f
|
||||
db "be SAVED before", $51
|
||||
db "you go back into", $4f
|
||||
db "the previous ROOM.", $57
|
||||
text "Your record will"
|
||||
line "be SAVED before"
|
||||
|
||||
para "you go back into"
|
||||
line "the previous ROOM."
|
||||
done
|
||||
; 0x9efbf
|
||||
|
||||
UnknownText_0x9efbf: ; 0x9efbf
|
||||
db $0, "Cancel your BATTLE", $4f
|
||||
db "ROOM challenge?", $57
|
||||
text "Cancel your BATTLE"
|
||||
line "ROOM challenge?"
|
||||
done
|
||||
; 0x9efe3
|
||||
|
||||
UnknownText_0x9efe3: ; 0x9efe3
|
||||
db $0, "We have your", $4f
|
||||
db "previous record on", $51
|
||||
db "file. Would you", $4f
|
||||
db "like to register", $55
|
||||
db "it at the CENTER?", $57
|
||||
text "We have your"
|
||||
line "previous record on"
|
||||
|
||||
para "file. Would you"
|
||||
line "like to register"
|
||||
cont "it at the CENTER?"
|
||||
done
|
||||
; 0x9f037
|
||||
|
||||
UnknownText_0x9f037: ; 0x9f037
|
||||
db $0, "We've been waiting", $4f
|
||||
db "for you. This way", $51
|
||||
db "to a BATTLE ROOM,", $4f
|
||||
db "please.", $57
|
||||
text "We've been waiting"
|
||||
line "for you. This way"
|
||||
|
||||
para "to a BATTLE ROOM,"
|
||||
line "please."
|
||||
done
|
||||
; 0x9f076
|
||||
|
||||
UnknownText_0x9f076: ; 0x9f076
|
||||
db $0, "You may enter only", $4f
|
||||
db "five BATTLE ROOMS", $55
|
||||
db "each day.", $51
|
||||
db "Please come back", $4f
|
||||
db "tomorrow.", $57
|
||||
text "You may enter only"
|
||||
line "five BATTLE ROOMS"
|
||||
cont "each day."
|
||||
|
||||
para "Please come back"
|
||||
line "tomorrow."
|
||||
done
|
||||
; 0x9f0c1
|
||||
|
||||
UnknownText_0x9f0c1: ; 0x9f0c1
|
||||
db $0, "Sorry, but it's", $4f
|
||||
db "not possible to", $51
|
||||
db "register your", $4f
|
||||
db "current record at", $51
|
||||
db "the CENTER because", $4f
|
||||
db "too much time has", $51
|
||||
db "elapsed since the", $4f
|
||||
db "start of your", $55
|
||||
db "challenge.", $57
|
||||
text "Sorry, but it's"
|
||||
line "not possible to"
|
||||
|
||||
para "register your"
|
||||
line "current record at"
|
||||
|
||||
para "the CENTER because"
|
||||
line "too much time has"
|
||||
|
||||
para "elapsed since the"
|
||||
line "start of your"
|
||||
cont "challenge."
|
||||
done
|
||||
; 0x9f151
|
||||
|
||||
; a dupe?
|
||||
UnknownText_0x9f151: ; 0x9f151
|
||||
db $0, "Sorry, but it's", $4f
|
||||
db "not possible to", $51
|
||||
db "register your most", $4f
|
||||
db "recent record at", $51
|
||||
db "the CENTER because", $4f
|
||||
db "too much time has", $51
|
||||
db "elapsed since the", $4f
|
||||
db "start of your", $55
|
||||
db "challenge.", $57
|
||||
text "Sorry, but it's"
|
||||
line "not possible to"
|
||||
|
||||
para "register your most"
|
||||
line "recent record at"
|
||||
|
||||
para "the CENTER because"
|
||||
line "too much time has"
|
||||
|
||||
para "elapsed since the"
|
||||
line "start of your"
|
||||
cont "challenge."
|
||||
done
|
||||
; 0x9f1e5
|
||||
|
||||
UnknownText_0x9f1e5: ; 0x9f1e5
|
||||
db $0, "One or more of", $4f
|
||||
db "your #MON's", $55
|
||||
db "levels exceeds @"
|
||||
text "One or more of"
|
||||
line "your #MON's"
|
||||
cont "levels exceeds @"
|
||||
deciram ScriptVar, $13
|
||||
db $0, ".", $57
|
||||
text "."
|
||||
done
|
||||
; 0x9f217
|
||||
|
||||
UnknownText_0x9f217: ; 0x9f217
|
||||
text_from_ram $cd49
|
||||
db $0, " may not", $4f
|
||||
db "enter a BATTLE", $55
|
||||
db "ROOM under L70.", $51
|
||||
db "This BATTLE ROOM", $4f
|
||||
db "is for L@"
|
||||
text " may not"
|
||||
line "enter a BATTLE"
|
||||
cont "ROOM under L70."
|
||||
|
||||
para "This BATTLE ROOM"
|
||||
line "is for L@"
|
||||
deciram ScriptVar, $13
|
||||
db $0, ".", $57
|
||||
text "."
|
||||
done
|
||||
; 0x9f264
|
||||
|
||||
UnknownText_0x9f264: ; 0x9f264
|
||||
db $0, "Destroyed by the", $4f
|
||||
db "first opponent in", $51
|
||||
db "no time at all…", $4f
|
||||
db "I'm no good…", $57
|
||||
text "Destroyed by the"
|
||||
line "first opponent in"
|
||||
|
||||
para "no time at all…"
|
||||
line "I'm no good…"
|
||||
done
|
||||
; 0x9f2a4
|
||||
|
||||
UnknownText_0x9f2a4: ; 0x9f2a4
|
||||
db $0, "There are lots of", $4f
|
||||
db "BATTLE ROOMS, but", $51
|
||||
db "I'm going to win", $4f
|
||||
db "them all!", $57
|
||||
text "There are lots of"
|
||||
line "BATTLE ROOMS, but"
|
||||
|
||||
para "I'm going to win"
|
||||
line "them all!"
|
||||
done
|
||||
; 0x9f2e3
|
||||
|
||||
UnknownText_0x9f2e3: ; 0x9f2e3
|
||||
db $0, "It's a grueling", $4f
|
||||
db "task, not being", $51
|
||||
db "able to use items", $4f
|
||||
db "in battle.", $51
|
||||
db "Making your", $4f
|
||||
db "#MON hold items", $51
|
||||
db "is the key to", $4f
|
||||
db "winning battles.", $57
|
||||
text "It's a grueling"
|
||||
line "task, not being"
|
||||
|
||||
para "able to use items"
|
||||
line "in battle."
|
||||
|
||||
para "Making your"
|
||||
line "#MON hold items"
|
||||
|
||||
para "is the key to"
|
||||
line "winning battles."
|
||||
done
|
||||
; 0x9f35b
|
||||
|
||||
UnknownText_0x9f35b: ; 0x9f35b
|
||||
db $0, "I'm trying to see", $4f
|
||||
db "how far I can go", $51
|
||||
db "using just bug", $4f
|
||||
db "#MON.", $51
|
||||
db "Don't let there be", $4f
|
||||
db "any fire #MON…", $57
|
||||
text "I'm trying to see"
|
||||
line "how far I can go"
|
||||
|
||||
para "using just bug"
|
||||
line "#MON."
|
||||
|
||||
para "Don't let there be"
|
||||
line "any fire #MON…"
|
||||
done
|
||||
; 0x9f3b4
|
||||
|
||||
BattleTower1F_MapEventHeader: ; 0x9f3b4
|
||||
|
@ -142,8 +142,9 @@ UnknownScript_0x9f4f7: ; 0x9f4f7
|
||||
|
||||
|
||||
UnknownText_0x9f50b: ; 0x9f50b
|
||||
db $0, "You'll be returned", $4f
|
||||
db "after you SAVE.", $57
|
||||
text "You'll be returned"
|
||||
line "after you SAVE."
|
||||
done
|
||||
; 0x9f52e
|
||||
|
||||
|
||||
|
@ -38,84 +38,108 @@ MapBattleTowerOutsideSignpost0Script: ; 0x9f868
|
||||
; 0x9f86b
|
||||
|
||||
UnknownText_0x9f86b: ; 0x9f86b
|
||||
db $0, "Wow, the BATTLE", $4f
|
||||
db "TOWER is huge! My", $51
|
||||
db "neck is tired from", $4f
|
||||
db "looking up at it.", $57
|
||||
text "Wow, the BATTLE"
|
||||
line "TOWER is huge! My"
|
||||
|
||||
para "neck is tired from"
|
||||
line "looking up at it."
|
||||
done
|
||||
; 0x9f8b3
|
||||
|
||||
UnknownText_0x9f8b3: ; 0x9f8b3
|
||||
db $0, "Wow, the BATTLE", $4f
|
||||
db "TOWER is huge!", $51
|
||||
db "Since there are a", $4f
|
||||
db "whole bunch of", $51
|
||||
db "trainers inside,", $4f
|
||||
db "there must also be", $51
|
||||
db "a wide variety of", $4f
|
||||
db "#MON.", $57
|
||||
text "Wow, the BATTLE"
|
||||
line "TOWER is huge!"
|
||||
|
||||
para "Since there are a"
|
||||
line "whole bunch of"
|
||||
|
||||
para "trainers inside,"
|
||||
line "there must also be"
|
||||
|
||||
para "a wide variety of"
|
||||
line "#MON."
|
||||
done
|
||||
; 0x9f930
|
||||
|
||||
UnknownText_0x9f930: ; 0x9f930
|
||||
db $0, "Wow, the BATTLE", $4f
|
||||
db "TOWER is huge!", $51
|
||||
db "There must be many", $4f
|
||||
db "kinds of #MON", $55
|
||||
db "in there!", $57
|
||||
text "Wow, the BATTLE"
|
||||
line "TOWER is huge!"
|
||||
|
||||
para "There must be many"
|
||||
line "kinds of #MON"
|
||||
cont "in there!"
|
||||
done
|
||||
; 0x9f97b
|
||||
|
||||
UnknownText_0x9f97b: ; 0x9f97b
|
||||
db $0, "What on earth do", $4f
|
||||
db "they do here?", $51
|
||||
db "If the name says", $4f
|
||||
db "anything, I guess", $51
|
||||
db "it must be for", $4f
|
||||
db "#MON battles.", $57
|
||||
text "What on earth do"
|
||||
line "they do here?"
|
||||
|
||||
para "If the name says"
|
||||
line "anything, I guess"
|
||||
|
||||
para "it must be for"
|
||||
line "#MON battles."
|
||||
done
|
||||
; 0x9f9db
|
||||
|
||||
UnknownText_0x9f9db: ; 0x9f9db
|
||||
db $0, "You can use only", $4f
|
||||
db "three #MON.", $51
|
||||
db "It's so hard to", $4f
|
||||
db "decide which three", $51
|
||||
db "should go into", $4f
|
||||
db "battle…", $57
|
||||
text "You can use only"
|
||||
line "three #MON."
|
||||
|
||||
para "It's so hard to"
|
||||
line "decide which three"
|
||||
|
||||
para "should go into"
|
||||
line "battle…"
|
||||
done
|
||||
; 0x9fa32
|
||||
|
||||
UnknownText_0x9fa32: ; 0x9fa32
|
||||
db $0, "Ehehehe…", $4f
|
||||
db "I sneaked out of", $55
|
||||
db "work to come here.", $51
|
||||
db "I'm never giving", $4f
|
||||
db "up until I become", $55
|
||||
db "a LEADER!", $57
|
||||
text "Ehehehe…"
|
||||
line "I sneaked out of"
|
||||
cont "work to come here."
|
||||
|
||||
para "I'm never giving"
|
||||
line "up until I become"
|
||||
cont "a LEADER!"
|
||||
done
|
||||
; 0x9fa8c
|
||||
|
||||
UnknownText_0x9fa8c: ; 0x9fa8c
|
||||
db $0, "Hehehe, I snuck", $4f
|
||||
db "out from work.", $51
|
||||
db "I can't bail out", $4f
|
||||
db "until I've won!", $51
|
||||
db "I have to win it", $4f
|
||||
db "all. That I must!", $57
|
||||
text "Hehehe, I snuck"
|
||||
line "out from work."
|
||||
|
||||
para "I can't bail out"
|
||||
line "until I've won!"
|
||||
|
||||
para "I have to win it"
|
||||
line "all. That I must!"
|
||||
done
|
||||
; 0x9faee
|
||||
|
||||
UnknownText_0x9faee: ; 0x9faee
|
||||
db $0, "BATTLE TOWER", $57
|
||||
text "BATTLE TOWER"
|
||||
done
|
||||
; 0x9fafc
|
||||
|
||||
UnknownText_0x9fafc: ; 0x9fafc
|
||||
db $0, "BATTLE TOWER", $51
|
||||
db "Take the Ultimate", $4f
|
||||
db "Trainer Challenge!", $57
|
||||
text "BATTLE TOWER"
|
||||
|
||||
para "Take the Ultimate"
|
||||
line "Trainer Challenge!"
|
||||
done
|
||||
; 0x9fb2f
|
||||
|
||||
UnknownText_0x9fb2f: ; 0x9fb2f
|
||||
db $0, "The BATTLE TOWER's", $4f
|
||||
db "doors are closed…", $57
|
||||
text "The BATTLE TOWER's"
|
||||
line "doors are closed…"
|
||||
done
|
||||
; 0x9fb54
|
||||
|
||||
UnknownText_0x9fb54: ; 0x9fb54
|
||||
db $0, "It's open!", $57
|
||||
text "It's open!"
|
||||
done
|
||||
; 0x9fb5f
|
||||
|
||||
BattleTowerOutside_MapEventHeader: ; 0x9fb5f
|
||||
|
@ -229,126 +229,160 @@ UnknownScript_0x1896cc: ; 0x1896cc
|
||||
; 0x1896ce
|
||||
|
||||
UnknownText_0x1896ce: ; 0x1896ce
|
||||
db $0, "Hm? You know BILL?", $4f
|
||||
db "He's my grandson.", $51
|
||||
db "He's in JOHTO. He", $4f
|
||||
db "does something", $51
|
||||
db "with PCs, so I'm", $4f
|
||||
db "house-sitting.", $57
|
||||
text "Hm? You know BILL?"
|
||||
line "He's my grandson."
|
||||
|
||||
para "He's in JOHTO. He"
|
||||
line "does something"
|
||||
|
||||
para "with PCs, so I'm"
|
||||
line "house-sitting."
|
||||
done
|
||||
; 0x189732
|
||||
|
||||
UnknownText_0x189732: ; 0x189732
|
||||
db $0, "If you have that", $4f
|
||||
db "#MON, may I see", $55
|
||||
db "it, please?", $57
|
||||
text "If you have that"
|
||||
line "#MON, may I see"
|
||||
cont "it, please?"
|
||||
done
|
||||
; 0x189760
|
||||
|
||||
UnknownText_0x189760: ; 0x189760
|
||||
db $0, "You will show me?", $4f
|
||||
db "How good of you!", $57
|
||||
text "You will show me?"
|
||||
line "How good of you!"
|
||||
done
|
||||
; 0x189784
|
||||
|
||||
UnknownText_0x189784: ; 0x189784
|
||||
db $0, "You don't have it?", $4f
|
||||
db "That's too bad…", $57
|
||||
text "You don't have it?"
|
||||
line "That's too bad…"
|
||||
done
|
||||
; 0x1897a6
|
||||
|
||||
UnknownText_0x1897a6: ; 0x1897a6
|
||||
db $0, "Ah, so that is", $4f
|
||||
db "@"
|
||||
text "Ah, so that is"
|
||||
line "@"
|
||||
text_from_ram $d099
|
||||
db $0, "?", $51
|
||||
db "Isn't it cute!", $4f
|
||||
db "That's so kind of", $55
|
||||
db "you.", $57
|
||||
text "?"
|
||||
|
||||
para "Isn't it cute!"
|
||||
line "That's so kind of"
|
||||
cont "you."
|
||||
done
|
||||
; 0x1897e1
|
||||
|
||||
UnknownText_0x1897e1: ; 0x1897e1
|
||||
db $0, "Thanks!", $51
|
||||
db "This is a token of", $4f
|
||||
db "my appreciation.", $57
|
||||
text "Thanks!"
|
||||
|
||||
para "This is a token of"
|
||||
line "my appreciation."
|
||||
done
|
||||
; 0x18980e
|
||||
|
||||
UnknownText_0x18980e: ; 0x18980e
|
||||
db $0, "Come visit again", $4f
|
||||
db "sometime.", $57
|
||||
text "Come visit again"
|
||||
line "sometime."
|
||||
done
|
||||
; 0x18982a
|
||||
|
||||
UnknownText_0x18982a: ; 0x18982a
|
||||
db $0, "Thanks for showing", $4f
|
||||
db "me so many cute", $55
|
||||
db "#MON.", $51
|
||||
db "I really enjoyed", $4f
|
||||
db "myself. I'm glad", $51
|
||||
db "I've lived such a", $4f
|
||||
db "long life.", $57
|
||||
text "Thanks for showing"
|
||||
line "me so many cute"
|
||||
cont "#MON."
|
||||
|
||||
para "I really enjoyed"
|
||||
line "myself. I'm glad"
|
||||
|
||||
para "I've lived such a"
|
||||
line "long life."
|
||||
done
|
||||
; 0x189891
|
||||
|
||||
UnknownText_0x189891: ; 0x189891
|
||||
db $0, "Hm?", $51
|
||||
db "That's not the", $4f
|
||||
db "#MON that I was", $55
|
||||
db "told about.", $57
|
||||
text "Hm?"
|
||||
|
||||
para "That's not the"
|
||||
line "#MON that I was"
|
||||
cont "told about."
|
||||
done
|
||||
; 0x1898c0
|
||||
|
||||
UnknownText_0x1898c0: ; 0x1898c0
|
||||
db $0, "My grandson BILL", $4f
|
||||
db "told me about a", $51
|
||||
db "#MON that has a", $4f
|
||||
db "long tongue.", $57
|
||||
text "My grandson BILL"
|
||||
line "told me about a"
|
||||
|
||||
para "#MON that has a"
|
||||
line "long tongue."
|
||||
done
|
||||
; 0x1898ff
|
||||
|
||||
UnknownText_0x1898ff: ; 0x1898ff
|
||||
db $0, "Ah, my grandson", $4f
|
||||
db "mentioned a round,", $51
|
||||
db "green #MON that", $4f
|
||||
db "has leaves growing", $55
|
||||
db "on its head.", $57
|
||||
text "Ah, my grandson"
|
||||
line "mentioned a round,"
|
||||
|
||||
para "green #MON that"
|
||||
line "has leaves growing"
|
||||
cont "on its head."
|
||||
done
|
||||
; 0x189953
|
||||
|
||||
UnknownText_0x189953: ; 0x189953
|
||||
db $0, "Do you know of a", $4f
|
||||
db "sea #MON that", $51
|
||||
db "has a red sphere", $4f
|
||||
db "in its body?", $51
|
||||
db "You know, the one", $4f
|
||||
db "that's shaped like", $55
|
||||
db "a star?", $51
|
||||
db "I heard that it", $4f
|
||||
db "appears at night.", $51
|
||||
db "I would surely", $4f
|
||||
db "like to see it.", $57
|
||||
text "Do you know of a"
|
||||
line "sea #MON that"
|
||||
|
||||
para "has a red sphere"
|
||||
line "in its body?"
|
||||
|
||||
para "You know, the one"
|
||||
line "that's shaped like"
|
||||
cont "a star?"
|
||||
|
||||
para "I heard that it"
|
||||
line "appears at night."
|
||||
|
||||
para "I would surely"
|
||||
line "like to see it."
|
||||
done
|
||||
; 0x1899fe
|
||||
|
||||
UnknownText_0x1899fe: ; 0x1899fe
|
||||
db $0, "BILL told me about", $4f
|
||||
db "a #MON that is", $51
|
||||
db "very loyal to its", $4f
|
||||
db "trainer.", $51
|
||||
db "It's supposed to", $4f
|
||||
db "ROAR well.", $57
|
||||
text "BILL told me about"
|
||||
line "a #MON that is"
|
||||
|
||||
para "very loyal to its"
|
||||
line "trainer."
|
||||
|
||||
para "It's supposed to"
|
||||
line "ROAR well."
|
||||
done
|
||||
; 0x189a57
|
||||
|
||||
UnknownText_0x189a57: ; 0x189a57
|
||||
db $0, "I heard about a", $4f
|
||||
db "cute #MON that", $55
|
||||
db "has six tails.", $51
|
||||
db "I would love to", $4f
|
||||
db "hug a cute #MON", $55
|
||||
db "like that.", $57
|
||||
text "I heard about a"
|
||||
line "cute #MON that"
|
||||
cont "has six tails."
|
||||
|
||||
para "I would love to"
|
||||
line "hug a cute #MON"
|
||||
cont "like that."
|
||||
done
|
||||
; 0x189ab1
|
||||
|
||||
UnknownText_0x189ab1: ; 0x189ab1
|
||||
db $0, "Do you know that", $4f
|
||||
db "hugely popular", $55
|
||||
db "#MON?", $51
|
||||
db "The #MON that", $4f
|
||||
db "has a yellow body", $55
|
||||
db "and red cheeks.", $51
|
||||
db "I would love to", $4f
|
||||
db "see what it looks", $51
|
||||
db "like before it", $4f
|
||||
db "evolves.", $57
|
||||
text "Do you know that"
|
||||
line "hugely popular"
|
||||
cont "#MON?"
|
||||
|
||||
para "The #MON that"
|
||||
line "has a yellow body"
|
||||
cont "and red cheeks."
|
||||
|
||||
para "I would love to"
|
||||
line "see what it looks"
|
||||
|
||||
para "like before it"
|
||||
line "evolves."
|
||||
done
|
||||
; 0x189b42
|
||||
|
||||
BillsHouse_MapEventHeader: ; 0x189b42
|
||||
|
@ -162,148 +162,191 @@ MapBlackthornCitySignpost5Script: ; 0x1a4777
|
||||
; 0x1a477a
|
||||
|
||||
UnknownText_0x1a477a: ; 0x1a477a
|
||||
db $0, "I am sorry.", $51
|
||||
db "CLAIR, our GYM", $4f
|
||||
db "LEADER, entered", $51
|
||||
db "the DRAGON'S DEN", $4f
|
||||
db "behind the GYM.", $51
|
||||
db "I have no idea", $4f
|
||||
db "when our LEADER", $55
|
||||
db "will return.", $57
|
||||
text "I am sorry."
|
||||
|
||||
para "CLAIR, our GYM"
|
||||
line "LEADER, entered"
|
||||
|
||||
para "the DRAGON'S DEN"
|
||||
line "behind the GYM."
|
||||
|
||||
para "I have no idea"
|
||||
line "when our LEADER"
|
||||
cont "will return."
|
||||
done
|
||||
; 0x1a47f3
|
||||
|
||||
UnknownText_0x1a47f3: ; 0x1a47f3
|
||||
db $0, "CLAIR, our GYM", $4f
|
||||
db "LEADER, is waiting", $55
|
||||
db "for you.", $51
|
||||
db "However, it would", $4f
|
||||
db "be impossible for", $51
|
||||
db "a run-of-the-mill", $4f
|
||||
db "trainer to win.", $57
|
||||
text "CLAIR, our GYM"
|
||||
line "LEADER, is waiting"
|
||||
cont "for you."
|
||||
|
||||
para "However, it would"
|
||||
line "be impossible for"
|
||||
|
||||
para "a run-of-the-mill"
|
||||
line "trainer to win."
|
||||
done
|
||||
; 0x1a4865
|
||||
|
||||
UnknownText_0x1a4865: ; 0x1a4865
|
||||
db $0, "You defeated", $4f
|
||||
db "CLAIR?", $51
|
||||
db "That's amazing!", $51
|
||||
db "I've never heard", $4f
|
||||
db "of her losing to", $51
|
||||
db "anyone other than", $4f
|
||||
db "LANCE.", $57
|
||||
text "You defeated"
|
||||
line "CLAIR?"
|
||||
|
||||
para "That's amazing!"
|
||||
|
||||
para "I've never heard"
|
||||
line "of her losing to"
|
||||
|
||||
para "anyone other than"
|
||||
line "LANCE."
|
||||
done
|
||||
; 0x1a48c3
|
||||
|
||||
UnknownText_0x1a48c3: ; 0x1a48c3
|
||||
db $0, "No. Only chosen", $4f
|
||||
db "trainers may train", $51
|
||||
db "here.", $4f
|
||||
db "Please leave.", $57
|
||||
text "No. Only chosen"
|
||||
line "trainers may train"
|
||||
|
||||
para "here."
|
||||
line "Please leave."
|
||||
done
|
||||
; 0x1a48fb
|
||||
|
||||
UnknownText_0x1a48fb: ; 0x1a48fb
|
||||
db $0, "If CLAIR allows", $4f
|
||||
db "it, her grand-", $55
|
||||
db "father--our MASTER", $55
|
||||
db "--will also.", $51
|
||||
db "You may enter.", $57
|
||||
text "If CLAIR allows"
|
||||
line "it, her grand-"
|
||||
cont "father--our MASTER"
|
||||
cont "--will also."
|
||||
|
||||
para "You may enter."
|
||||
done
|
||||
; 0x1a494a
|
||||
|
||||
UnknownText_0x1a494a: ; 0x1a494a
|
||||
db $0, "My radio's busted?", $4f
|
||||
db "Lately, I only get", $55
|
||||
db "this weird signal.", $57
|
||||
text "My radio's busted?"
|
||||
line "Lately, I only get"
|
||||
cont "this weird signal."
|
||||
done
|
||||
; 0x1a4983
|
||||
|
||||
UnknownText_0x1a4983: ; 0x1a4983
|
||||
db $0, "Arooo! Voices in", $4f
|
||||
db "my head!", $51
|
||||
db "Huh? I'm listening", $4f
|
||||
db "to my radio!", $57
|
||||
text "Arooo! Voices in"
|
||||
line "my head!"
|
||||
|
||||
para "Huh? I'm listening"
|
||||
line "to my radio!"
|
||||
done
|
||||
; 0x1a49bd
|
||||
|
||||
UnknownText_0x1a49bd: ; 0x1a49bd
|
||||
db $0, "Are you going to", $4f
|
||||
db "make your #MON", $55
|
||||
db "forget some moves?", $57
|
||||
text "Are you going to"
|
||||
line "make your #MON"
|
||||
cont "forget some moves?"
|
||||
done
|
||||
; 0x1a49f1
|
||||
|
||||
UnknownText_0x1a49f1: ; 0x1a49f1
|
||||
db $0, "Dragon masters all", $4f
|
||||
db "come from the city", $55
|
||||
db "of BLACKTHORN.", $57
|
||||
text "Dragon masters all"
|
||||
line "come from the city"
|
||||
cont "of BLACKTHORN."
|
||||
done
|
||||
; 0x1a4a27
|
||||
|
||||
UnknownText_0x1a4a27: ; 0x1a4a27
|
||||
db $0, "SANTOS: …", $51
|
||||
db "It's Saturday…", $51
|
||||
db "I'm SANTOS of", $4f
|
||||
db "Saturday…", $57
|
||||
text "SANTOS: …"
|
||||
|
||||
para "It's Saturday…"
|
||||
|
||||
para "I'm SANTOS of"
|
||||
line "Saturday…"
|
||||
done
|
||||
; 0x1a4a57
|
||||
|
||||
UnknownText_0x1a4a57: ; 0x1a4a57
|
||||
db $0, "You can have this…", $57
|
||||
text "You can have this…"
|
||||
done
|
||||
; 0x1a4a6b
|
||||
|
||||
UnknownText_0x1a4a6b: ; 0x1a4a6b
|
||||
db $0, "SANTOS: …", $51
|
||||
db "SPELL TAG…", $51
|
||||
db "Ghost-type moves", $4f
|
||||
db "get stronger…", $51
|
||||
db "It will frighten", $4f
|
||||
db "you…", $57
|
||||
text "SANTOS: …"
|
||||
|
||||
para "SPELL TAG…"
|
||||
|
||||
para "Ghost-type moves"
|
||||
line "get stronger…"
|
||||
|
||||
para "It will frighten"
|
||||
line "you…"
|
||||
done
|
||||
; 0x1a4ab6
|
||||
|
||||
UnknownText_0x1a4ab6: ; 0x1a4ab6
|
||||
db $0, "SANTOS: …", $51
|
||||
db "See you again on", $4f
|
||||
db "another Saturday…", $51
|
||||
db "I won't have any", $4f
|
||||
db "more gifts…", $57
|
||||
text "SANTOS: …"
|
||||
|
||||
para "See you again on"
|
||||
line "another Saturday…"
|
||||
|
||||
para "I won't have any"
|
||||
line "more gifts…"
|
||||
done
|
||||
; 0x1a4b00
|
||||
|
||||
UnknownText_0x1a4b00: ; 0x1a4b00
|
||||
db $0, "SANTOS: Today's", $4f
|
||||
db "not Saturday…", $57
|
||||
text "SANTOS: Today's"
|
||||
line "not Saturday…"
|
||||
done
|
||||
; 0x1a4b1e
|
||||
|
||||
UnknownText_0x1a4b1e: ; 0x1a4b1e
|
||||
db $0, "Wow, you came", $4f
|
||||
db "through the ICE", $55
|
||||
db "PATH?", $51
|
||||
db "You must be a real", $4f
|
||||
db "hotshot trainer!", $57
|
||||
text "Wow, you came"
|
||||
line "through the ICE"
|
||||
cont "PATH?"
|
||||
|
||||
para "You must be a real"
|
||||
line "hotshot trainer!"
|
||||
done
|
||||
; 0x1a4b67
|
||||
|
||||
UnknownText_0x1a4b67: ; 0x1a4b67
|
||||
db $0, "BLACKTHORN CITY", $51
|
||||
db "A Quiet Mountain", $4f
|
||||
db "Retreat", $57
|
||||
text "BLACKTHORN CITY"
|
||||
|
||||
para "A Quiet Mountain"
|
||||
line "Retreat"
|
||||
done
|
||||
; 0x1a4b91
|
||||
|
||||
UnknownText_0x1a4b91: ; 0x1a4b91
|
||||
db $0, "BLACKTHORN CITY", $4f
|
||||
db "#MON GYM", $55
|
||||
db "LEADER: CLAIR", $51
|
||||
db "The Blessed User", $4f
|
||||
db "of Dragon #MON", $57
|
||||
text "BLACKTHORN CITY"
|
||||
line "#MON GYM"
|
||||
cont "LEADER: CLAIR"
|
||||
|
||||
para "The Blessed User"
|
||||
line "of Dragon #MON"
|
||||
done
|
||||
; 0x1a4bd9
|
||||
|
||||
UnknownText_0x1a4bd9: ; 0x1a4bd9
|
||||
db $0, "MOVE DELETER'S", $4f
|
||||
db "HOUSE", $57
|
||||
text "MOVE DELETER'S"
|
||||
line "HOUSE"
|
||||
done
|
||||
; 0x1a4bef
|
||||
|
||||
UnknownText_0x1a4bef: ; 0x1a4bef
|
||||
db $0, "DRAGON'S DEN", $4f
|
||||
db "AHEAD", $57
|
||||
text "DRAGON'S DEN"
|
||||
line "AHEAD"
|
||||
done
|
||||
; 0x1a4c03
|
||||
|
||||
UnknownText_0x1a4c03: ; 0x1a4c03
|
||||
db $0, "TRAINER TIPS", $51
|
||||
db "A #MON holding", $4f
|
||||
db "a MIRACLEBERRY", $51
|
||||
db "will cure itself", $4f
|
||||
db "of any status", $55
|
||||
db "problem.", $57
|
||||
text "TRAINER TIPS"
|
||||
|
||||
para "A #MON holding"
|
||||
line "a MIRACLEBERRY"
|
||||
|
||||
para "will cure itself"
|
||||
line "of any status"
|
||||
cont "problem."
|
||||
done
|
||||
; 0x1a4c57
|
||||
|
||||
BlackthornCity_MapEventHeader: ; 0x1a4c57
|
||||
|
@ -24,19 +24,24 @@ UnknownText_0x195956: ; 0x195956
|
||||
db $0, "ズ", $03, $00
|
||||
|
||||
UnknownText_0x19595c: ; 0x19595c
|
||||
db $0, "A clan of trainers", $4f
|
||||
db "who can freely", $51
|
||||
db "command dragons", $4f
|
||||
db "live right here in", $55
|
||||
db "BLACKTHORN.", $51
|
||||
db "As a result, there", $4f
|
||||
db "are many legends", $51
|
||||
db "about dragons in", $4f
|
||||
db "this town.", $57
|
||||
text "A clan of trainers"
|
||||
line "who can freely"
|
||||
|
||||
para "command dragons"
|
||||
line "live right here in"
|
||||
cont "BLACKTHORN."
|
||||
|
||||
para "As a result, there"
|
||||
line "are many legends"
|
||||
|
||||
para "about dragons in"
|
||||
line "this town."
|
||||
done
|
||||
; 0x1959ee
|
||||
|
||||
UnknownText_0x1959ee: ; 0x1959ee
|
||||
db $0, "DRATINI: Draa!", $57
|
||||
text "DRATINI: Draa!"
|
||||
done
|
||||
; 0x1959fe
|
||||
|
||||
BlackthornDragonSpeechHouse_MapEventHeader: ; 0x1959fe
|
||||
|
@ -211,197 +211,260 @@ UnknownScript_0x194ef3: ; 0x194ef3
|
||||
; 0x194efa
|
||||
|
||||
UnknownText_0x194efa: ; 0x194efa
|
||||
db $0, "I am CLAIR.", $51
|
||||
db "The world's best", $4f
|
||||
db "dragon master.", $51
|
||||
db "I can hold my own", $4f
|
||||
db "against even the", $51
|
||||
db "#MON LEAGUE's", $4f
|
||||
db "ELITE FOUR.", $51
|
||||
db "Do you still want", $4f
|
||||
db "to take me on?", $51
|
||||
db "…Fine.", $4f
|
||||
db "Let's do it!", $51
|
||||
db "As a GYM LEADER,", $4f
|
||||
db "I will use my full", $51
|
||||
db "power against any", $4f
|
||||
db "opponent!", $57
|
||||
text "I am CLAIR."
|
||||
|
||||
para "The world's best"
|
||||
line "dragon master."
|
||||
|
||||
para "I can hold my own"
|
||||
line "against even the"
|
||||
|
||||
para "#MON LEAGUE's"
|
||||
line "ELITE FOUR."
|
||||
|
||||
para "Do you still want"
|
||||
line "to take me on?"
|
||||
|
||||
para "…Fine."
|
||||
line "Let's do it!"
|
||||
|
||||
para "As a GYM LEADER,"
|
||||
line "I will use my full"
|
||||
|
||||
para "power against any"
|
||||
line "opponent!"
|
||||
done
|
||||
; 0x194fd6
|
||||
|
||||
UnknownText_0x194fd6: ; 0x194fd6
|
||||
db $0, "I lost?", $51
|
||||
db "I don't believe", $4f
|
||||
db "it. There must be", $55
|
||||
db "some mistake…", $57
|
||||
text "I lost?"
|
||||
|
||||
para "I don't believe"
|
||||
line "it. There must be"
|
||||
cont "some mistake…"
|
||||
done
|
||||
; 0x19500e
|
||||
|
||||
UnknownText_0x19500e: ; 0x19500e
|
||||
db $0, "I won't admit", $4f
|
||||
db "this.", $51
|
||||
db "I may have lost,", $4f
|
||||
db "but you're still", $51
|
||||
db "not ready for the", $4f
|
||||
db "#MON LEAGUE.", $51
|
||||
db "I know. You should", $4f
|
||||
db "take the dragon", $55
|
||||
db "user challenge.", $51
|
||||
db "Behind this GYM is", $4f
|
||||
db "a place called", $55
|
||||
db "DRAGON'S DEN.", $51
|
||||
db "There is a small", $4f
|
||||
db "shrine at its", $51
|
||||
db "center.", $4f
|
||||
db "Go there.", $51
|
||||
db "If you can prove", $4f
|
||||
db "that you've lost", $51
|
||||
db "your lazy ideals,", $4f
|
||||
db "I will recognize", $51
|
||||
db "you as a trainer", $4f
|
||||
db "worthy of a GYM", $55
|
||||
db "BADGE!", $57
|
||||
text "I won't admit"
|
||||
line "this."
|
||||
|
||||
para "I may have lost,"
|
||||
line "but you're still"
|
||||
|
||||
para "not ready for the"
|
||||
line "#MON LEAGUE."
|
||||
|
||||
para "I know. You should"
|
||||
line "take the dragon"
|
||||
cont "user challenge."
|
||||
|
||||
para "Behind this GYM is"
|
||||
line "a place called"
|
||||
cont "DRAGON'S DEN."
|
||||
|
||||
para "There is a small"
|
||||
line "shrine at its"
|
||||
|
||||
para "center."
|
||||
line "Go there."
|
||||
|
||||
para "If you can prove"
|
||||
line "that you've lost"
|
||||
|
||||
para "your lazy ideals,"
|
||||
line "I will recognize"
|
||||
|
||||
para "you as a trainer"
|
||||
line "worthy of a GYM"
|
||||
cont "BADGE!"
|
||||
done
|
||||
; 0x195162
|
||||
|
||||
UnknownText_0x195162: ; 0x195162
|
||||
db $0, "What's the matter?", $51
|
||||
db "Is it too much to", $4f
|
||||
db "expect of you?", $57
|
||||
text "What's the matter?"
|
||||
|
||||
para "Is it too much to"
|
||||
line "expect of you?"
|
||||
done
|
||||
; 0x195196
|
||||
|
||||
UnknownText_0x195196: ; 0x195196
|
||||
db $0, "You've kept me", $4f
|
||||
db "waiting!", $51
|
||||
db "Here! Take this!", $57
|
||||
text "You've kept me"
|
||||
line "waiting!"
|
||||
|
||||
para "Here! Take this!"
|
||||
done
|
||||
; 0x1951bf
|
||||
|
||||
UnknownText_0x1951bf: ; 0x1951bf
|
||||
db $0, $52, " received", $4f
|
||||
db "TM24.", $57
|
||||
text $52, " received"
|
||||
line "TM24."
|
||||
done
|
||||
; 0x1951d1
|
||||
|
||||
UnknownText_0x1951d1: ; 0x1951d1
|
||||
db $0, "That contains", $4f
|
||||
db "DRAGONBREATH.", $51
|
||||
db "No, it doesn't", $4f
|
||||
db "have anything to", $55
|
||||
db "do with my breath.", $51
|
||||
db "If you don't want", $4f
|
||||
db "it, you don't have", $55
|
||||
db "to take it.", $57
|
||||
text "That contains"
|
||||
line "DRAGONBREATH."
|
||||
|
||||
para "No, it doesn't"
|
||||
line "have anything to"
|
||||
cont "do with my breath."
|
||||
|
||||
para "If you don't want"
|
||||
line "it, you don't have"
|
||||
cont "to take it."
|
||||
done
|
||||
; 0x19524f
|
||||
|
||||
UnknownText_0x19524f: ; 0x19524f
|
||||
db $0, "What is this? You", $4f
|
||||
db "don't have room?", $57
|
||||
text "What is this? You"
|
||||
line "don't have room?"
|
||||
done
|
||||
; 0x195272
|
||||
|
||||
UnknownText_0x195272: ; 0x195272
|
||||
db $0, "What's the matter?", $51
|
||||
db "Aren't you headed", $4f
|
||||
db "to the #MON", $55
|
||||
db "LEAGUE?", $51
|
||||
db "Don't you know", $4f
|
||||
db "where it is?", $51
|
||||
db "From here, go to", $4f
|
||||
db "NEW BARK TOWN.", $51
|
||||
db "Then SURF east.", $4f
|
||||
db "The route there is", $55
|
||||
db "very tough.", $51
|
||||
db "Don't you dare", $4f
|
||||
db "lose at the #-", $55
|
||||
db "MON LEAGUE!", $51
|
||||
db "If you do, I'll", $4f
|
||||
db "feel even worse", $51
|
||||
db "about having lost", $4f
|
||||
db "to you!", $51
|
||||
db "Give it every-", $4f
|
||||
db "thing you've got.", $57
|
||||
text "What's the matter?"
|
||||
|
||||
para "Aren't you headed"
|
||||
line "to the #MON"
|
||||
cont "LEAGUE?"
|
||||
|
||||
para "Don't you know"
|
||||
line "where it is?"
|
||||
|
||||
para "From here, go to"
|
||||
line "NEW BARK TOWN."
|
||||
|
||||
para "Then SURF east."
|
||||
line "The route there is"
|
||||
cont "very tough."
|
||||
|
||||
para "Don't you dare"
|
||||
line "lose at the #-"
|
||||
cont "MON LEAGUE!"
|
||||
|
||||
para "If you do, I'll"
|
||||
line "feel even worse"
|
||||
|
||||
para "about having lost"
|
||||
line "to you!"
|
||||
|
||||
para "Give it every-"
|
||||
line "thing you've got."
|
||||
done
|
||||
; 0x195396
|
||||
|
||||
CooltrainermPaulSeenText: ; 0x195396
|
||||
db $0, "Your first battle", $4f
|
||||
db "against dragons?", $51
|
||||
db "I'll show you how", $4f
|
||||
db "tough they are!", $57
|
||||
text "Your first battle"
|
||||
line "against dragons?"
|
||||
|
||||
para "I'll show you how"
|
||||
line "tough they are!"
|
||||
done
|
||||
; 0x1953db
|
||||
|
||||
CooltrainermPaulBeatenText: ; 0x1953db
|
||||
db $0, "My dragon #MON", $4f
|
||||
db "lost?", $57
|
||||
text "My dragon #MON"
|
||||
line "lost?"
|
||||
done
|
||||
; 0x1953f1
|
||||
|
||||
UnknownText_0x1953f1: ; 0x1953f1
|
||||
db $0, "LANCE told you", $4f
|
||||
db "that he'd like to", $51
|
||||
db "see you again?", $4f
|
||||
db "Not a chance!", $57
|
||||
text "LANCE told you"
|
||||
line "that he'd like to"
|
||||
|
||||
para "see you again?"
|
||||
line "Not a chance!"
|
||||
done
|
||||
; 0x19542f
|
||||
|
||||
CooltrainermMikeSeenText: ; 0x19542f
|
||||
db $0, "My chance of", $4f
|
||||
db "losing? Not even", $55
|
||||
db "one percent!", $57
|
||||
text "My chance of"
|
||||
line "losing? Not even"
|
||||
cont "one percent!"
|
||||
done
|
||||
; 0x19545b
|
||||
|
||||
CooltrainermMikeBeatenText: ; 0x19545b
|
||||
db $0, "That's odd.", $57
|
||||
text "That's odd."
|
||||
done
|
||||
; 0x195467
|
||||
|
||||
UnknownText_0x195467: ; 0x195467
|
||||
db $0, "I know my short-", $4f
|
||||
db "comings now.", $51
|
||||
db "Thanks for showing", $4f
|
||||
db "me!", $57
|
||||
text "I know my short-"
|
||||
line "comings now."
|
||||
|
||||
para "Thanks for showing"
|
||||
line "me!"
|
||||
done
|
||||
; 0x19549d
|
||||
|
||||
CooltrainerfLolaSeenText: ; 0x19549d
|
||||
db $0, "Dragons are sacred", $4f
|
||||
db "#MON.", $51
|
||||
db "They are full of", $4f
|
||||
db "life energy.", $51
|
||||
db "If you're not", $4f
|
||||
db "serious, you won't", $51
|
||||
db "be able to beat", $4f
|
||||
db "them.", $57
|
||||
text "Dragons are sacred"
|
||||
line "#MON."
|
||||
|
||||
para "They are full of"
|
||||
line "life energy."
|
||||
|
||||
para "If you're not"
|
||||
line "serious, you won't"
|
||||
|
||||
para "be able to beat"
|
||||
line "them."
|
||||
done
|
||||
; 0x19550a
|
||||
|
||||
CooltrainerfLolaBeatenText: ; 0x19550a
|
||||
db $0, "Way to go!", $57
|
||||
text "Way to go!"
|
||||
done
|
||||
; 0x195516
|
||||
|
||||
UnknownText_0x195516: ; 0x195516
|
||||
db $0, "Dragons are weak", $4f
|
||||
db "against dragon-", $55
|
||||
db "type moves.", $57
|
||||
text "Dragons are weak"
|
||||
line "against dragon-"
|
||||
cont "type moves."
|
||||
done
|
||||
; 0x195544
|
||||
|
||||
BlackthornGymGuyText: ; 0x195544
|
||||
db $0, "Yo! CHAMP in", $4f
|
||||
db "making!", $51
|
||||
db "It's been a long", $4f
|
||||
db "journey, but we", $51
|
||||
db "are almost done!", $4f
|
||||
db "Count on me!", $51
|
||||
db "CLAIR uses the", $4f
|
||||
db "mythical and sac-", $55
|
||||
db "red dragon-type", $55
|
||||
db "#MON.", $51
|
||||
db "You can't damage", $4f
|
||||
db "them very easily.", $51
|
||||
db "But you know,", $4f
|
||||
db "they're supposed", $51
|
||||
db "to be weak against", $4f
|
||||
db "ice-type moves.", $57
|
||||
text "Yo! CHAMP in"
|
||||
line "making!"
|
||||
|
||||
para "It's been a long"
|
||||
line "journey, but we"
|
||||
|
||||
para "are almost done!"
|
||||
line "Count on me!"
|
||||
|
||||
para "CLAIR uses the"
|
||||
line "mythical and sac-"
|
||||
cont "red dragon-type"
|
||||
cont "#MON."
|
||||
|
||||
para "You can't damage"
|
||||
line "them very easily."
|
||||
|
||||
para "But you know,"
|
||||
line "they're supposed"
|
||||
|
||||
para "to be weak against"
|
||||
line "ice-type moves."
|
||||
done
|
||||
; 0x195632
|
||||
|
||||
BlackthornGymGuyWinText: ; 0x195632
|
||||
db $0, "You were great to", $4f
|
||||
db "beat CLAIR!", $51
|
||||
db "All that's left is", $4f
|
||||
db "the #MON LEAGUE", $55
|
||||
db "challenge.", $51
|
||||
db "You're on the way", $4f
|
||||
db "to becoming the", $55
|
||||
db "#MON CHAMPION!", $57
|
||||
text "You were great to"
|
||||
line "beat CLAIR!"
|
||||
|
||||
para "All that's left is"
|
||||
line "the #MON LEAGUE"
|
||||
cont "challenge."
|
||||
|
||||
para "You're on the way"
|
||||
line "to becoming the"
|
||||
cont "#MON CHAMPION!"
|
||||
done
|
||||
; 0x1956ae
|
||||
|
||||
BlackthornGym1F_MapEventHeader: ; 0x1956ae
|
||||
|
@ -128,45 +128,55 @@ CooltrainerfFranScript: ; 0x195781
|
||||
; 0x195789
|
||||
|
||||
CooltrainermCodySeenText: ; 0x195789
|
||||
db $0, "It's not as if we", $4f
|
||||
db "all use dragon-", $55
|
||||
db "type #MON.", $57
|
||||
text "It's not as if we"
|
||||
line "all use dragon-"
|
||||
cont "type #MON."
|
||||
done
|
||||
; 0x1957b6
|
||||
|
||||
CooltrainermCodyBeatenText: ; 0x1957b6
|
||||
db $0, "Rats! If only I", $4f
|
||||
db "had a dragon!", $57
|
||||
text "Rats! If only I"
|
||||
line "had a dragon!"
|
||||
done
|
||||
; 0x1957d5
|
||||
|
||||
UnknownText_0x1957d5: ; 0x1957d5
|
||||
db $0, "Members of our", $4f
|
||||
db "dragon-user clan", $51
|
||||
db "can use dragon", $4f
|
||||
db "#MON only after", $51
|
||||
db "our MASTER allows", $4f
|
||||
db "it.", $57
|
||||
text "Members of our"
|
||||
line "dragon-user clan"
|
||||
|
||||
para "can use dragon"
|
||||
line "#MON only after"
|
||||
|
||||
para "our MASTER allows"
|
||||
line "it."
|
||||
done
|
||||
; 0x19582b
|
||||
|
||||
CooltrainerfFranSeenText: ; 0x19582b
|
||||
db $0, "I can't allow a", $4f
|
||||
db "nameless trainer", $55
|
||||
db "past me!", $51
|
||||
db "CLAIR would be", $4f
|
||||
db "livid if I did!", $57
|
||||
text "I can't allow a"
|
||||
line "nameless trainer"
|
||||
cont "past me!"
|
||||
|
||||
para "CLAIR would be"
|
||||
line "livid if I did!"
|
||||
done
|
||||
; 0x195874
|
||||
|
||||
CooltrainerfFranBeatenText: ; 0x195874
|
||||
db $0, "Awww… I lost…", $57
|
||||
text "Awww… I lost…"
|
||||
done
|
||||
; 0x195883
|
||||
|
||||
UnknownText_0x195883: ; 0x195883
|
||||
db $0, "Uh-oh… CLAIR is", $4f
|
||||
db "going to be mad…", $57
|
||||
text "Uh-oh… CLAIR is"
|
||||
line "going to be mad…"
|
||||
done
|
||||
; 0x1958a5
|
||||
|
||||
UnknownText_0x1958a5: ; 0x1958a5
|
||||
db $0, "The boulder fell", $4f
|
||||
db "through!", $57
|
||||
text "The boulder fell"
|
||||
line "through!"
|
||||
done
|
||||
; 0x1958c0
|
||||
|
||||
BlackthornGym2F_MapEventHeader: ; 0x1958c0
|
||||
|
@ -22,23 +22,29 @@ BlackBeltScript_0x195a67: ; 0x195a67
|
||||
; 0x195a6a
|
||||
|
||||
UnknownText_0x195a6a: ; 0x195a6a
|
||||
db $0, "You can't buy MAX", $4f
|
||||
db "REVIVE, but it", $51
|
||||
db "fully restores a", $4f
|
||||
db "fainted #MON.", $51
|
||||
db "Beware--it won't", $4f
|
||||
db "restore PP, the", $51
|
||||
db "POWER POINTS", $4f
|
||||
db "needed for moves.", $57
|
||||
text "You can't buy MAX"
|
||||
line "REVIVE, but it"
|
||||
|
||||
para "fully restores a"
|
||||
line "fainted #MON."
|
||||
|
||||
para "Beware--it won't"
|
||||
line "restore PP, the"
|
||||
|
||||
para "POWER POINTS"
|
||||
line "needed for moves."
|
||||
done
|
||||
; 0x195ae9
|
||||
|
||||
UnknownText_0x195ae9: ; 0x195ae9
|
||||
db $0, "MAX REPEL keeps", $4f
|
||||
db "weak #MON away", $55
|
||||
db "from you.", $51
|
||||
db "It's the longest", $4f
|
||||
db "lasting of the", $55
|
||||
db "REPEL sprays.", $57
|
||||
text "MAX REPEL keeps"
|
||||
line "weak #MON away"
|
||||
cont "from you."
|
||||
|
||||
para "It's the longest"
|
||||
line "lasting of the"
|
||||
cont "REPEL sprays."
|
||||
done
|
||||
; 0x195b40
|
||||
|
||||
BlackthornMart_MapEventHeader: ; 0x195b40
|
||||
|
@ -23,24 +23,31 @@ CooltrainerMScript_0x195b82: ; 0x195b82
|
||||
; 0x195b85
|
||||
|
||||
UnknownText_0x195b85: ; 0x195b85
|
||||
db $0, "Deep inside far-", $4f
|
||||
db "off INDIGO PLATEAU", $51
|
||||
db "is the #MON", $4f
|
||||
db "LEAGUE.", $51
|
||||
db "I hear the best", $4f
|
||||
db "trainers gather", $51
|
||||
db "there from around", $4f
|
||||
db "the country.", $57
|
||||
text "Deep inside far-"
|
||||
line "off INDIGO PLATEAU"
|
||||
|
||||
para "is the #MON"
|
||||
line "LEAGUE."
|
||||
|
||||
para "I hear the best"
|
||||
line "trainers gather"
|
||||
|
||||
para "there from around"
|
||||
line "the country."
|
||||
done
|
||||
; 0x195bfd
|
||||
|
||||
UnknownText_0x195bfd: ; 0x195bfd
|
||||
db $0, "There was this", $4f
|
||||
db "move I just had", $51
|
||||
db "to teach my #-", $4f
|
||||
db "MON.", $51
|
||||
db "So I got the MOVE", $4f
|
||||
db "DELETER to make it", $55
|
||||
db "forget an HM move.", $57
|
||||
text "There was this"
|
||||
line "move I just had"
|
||||
|
||||
para "to teach my #-"
|
||||
line "MON."
|
||||
|
||||
para "So I got the MOVE"
|
||||
line "DELETER to make it"
|
||||
cont "forget an HM move."
|
||||
done
|
||||
; 0x195c69
|
||||
|
||||
BlackthornPokeCenter1F_MapEventHeader: ; 0x195c69
|
||||
|
@ -69,72 +69,91 @@ UnknownScript_0x19b12a: ; 0x19b12a
|
||||
; 0x19b130
|
||||
|
||||
UnknownText_0x19b130: ; 0x19b130
|
||||
db $0, "DAISY: Hi! My kid", $4f
|
||||
db "brother is the GYM", $51
|
||||
db "LEADER in VIRIDIAN", $4f
|
||||
db "CITY.", $51
|
||||
db "But he goes out", $4f
|
||||
db "of town so often,", $51
|
||||
db "it causes problems", $4f
|
||||
db "for the trainers.", $57
|
||||
text "DAISY: Hi! My kid"
|
||||
line "brother is the GYM"
|
||||
|
||||
para "LEADER in VIRIDIAN"
|
||||
line "CITY."
|
||||
|
||||
para "But he goes out"
|
||||
line "of town so often,"
|
||||
|
||||
para "it causes problems"
|
||||
line "for the trainers."
|
||||
done
|
||||
; 0x19b1b6
|
||||
|
||||
UnknownText_0x19b1b6: ; 0x19b1b6
|
||||
db $0, "DAISY: Hi! Good", $4f
|
||||
db "timing. I'm about", $55
|
||||
db "to have some tea.", $51
|
||||
db "Would you like to", $4f
|
||||
db "join me?", $51
|
||||
db "Oh, your #MON", $4f
|
||||
db "are a bit dirty.", $51
|
||||
db "Would you like me", $4f
|
||||
db "to groom one?", $57
|
||||
text "DAISY: Hi! Good"
|
||||
line "timing. I'm about"
|
||||
cont "to have some tea."
|
||||
|
||||
para "Would you like to"
|
||||
line "join me?"
|
||||
|
||||
para "Oh, your #MON"
|
||||
line "are a bit dirty."
|
||||
|
||||
para "Would you like me"
|
||||
line "to groom one?"
|
||||
done
|
||||
; 0x19b244
|
||||
|
||||
UnknownText_0x19b244: ; 0x19b244
|
||||
db $0, "DAISY: Which one", $4f
|
||||
db "should I groom?", $57
|
||||
text "DAISY: Which one"
|
||||
line "should I groom?"
|
||||
done
|
||||
; 0x19b266
|
||||
|
||||
UnknownText_0x19b266: ; 0x19b266
|
||||
db $0, "DAISY: OK, I'll", $4f
|
||||
db "get it looking", $55
|
||||
db "nice in no time.", $57
|
||||
text "DAISY: OK, I'll"
|
||||
line "get it looking"
|
||||
cont "nice in no time."
|
||||
done
|
||||
; 0x19b296
|
||||
|
||||
UnknownText_0x19b296: ; 0x19b296
|
||||
text_from_ram $d099
|
||||
db $0, " looks", $4f
|
||||
db "content.", $57
|
||||
text " looks"
|
||||
line "content."
|
||||
done
|
||||
; 0x19b2aa
|
||||
|
||||
UnknownText_0x19b2aa: ; 0x19b2aa
|
||||
db $0, "DAISY: There you", $4f
|
||||
db "go! All done.", $51
|
||||
db "See? Doesn't it", $4f
|
||||
db "look nice?", $51
|
||||
db "It's such a cute", $4f
|
||||
db "#MON.", $57
|
||||
text "DAISY: There you"
|
||||
line "go! All done."
|
||||
|
||||
para "See? Doesn't it"
|
||||
line "look nice?"
|
||||
|
||||
para "It's such a cute"
|
||||
line "#MON."
|
||||
done
|
||||
; 0x19b2fa
|
||||
|
||||
UnknownText_0x19b2fa: ; 0x19b2fa
|
||||
db $0, "DAISY: I always", $4f
|
||||
db "have tea around", $51
|
||||
db "this time. Come", $4f
|
||||
db "join me.", $57
|
||||
text "DAISY: I always"
|
||||
line "have tea around"
|
||||
|
||||
para "this time. Come"
|
||||
line "join me."
|
||||
done
|
||||
; 0x19b334
|
||||
|
||||
UnknownText_0x19b334: ; 0x19b334
|
||||
db $0, "DAISY: You don't", $4f
|
||||
db "want to have one", $51
|
||||
db "groomed? OK, we'll", $4f
|
||||
db "just have tea.", $57
|
||||
text "DAISY: You don't"
|
||||
line "want to have one"
|
||||
|
||||
para "groomed? OK, we'll"
|
||||
line "just have tea."
|
||||
done
|
||||
; 0x19b377
|
||||
|
||||
UnknownText_0x19b377: ; 0x19b377
|
||||
db $0, "DAISY: Oh, sorry.", $4f
|
||||
db "I honestly can't", $55
|
||||
db "groom an EGG.", $57
|
||||
text "DAISY: Oh, sorry."
|
||||
line "I honestly can't"
|
||||
cont "groom an EGG."
|
||||
done
|
||||
; 0x19b3a8
|
||||
|
||||
BluesHouse_MapEventHeader: ; 0x19b3a8
|
||||
|
@ -91,38 +91,50 @@ MovementData_0x1809f9: ; 0x1809f9
|
||||
; 0x1809fe
|
||||
|
||||
UnknownText_0x1809fe: ; 0x1809fe
|
||||
db $0, "I am BRUNO of the", $4f
|
||||
db "ELITE FOUR.", $51
|
||||
db "I always train to", $4f
|
||||
db "the extreme be-", $55
|
||||
db "cause I believe in", $55
|
||||
db "our potential.", $51
|
||||
db "That is how we", $4f
|
||||
db "became strong.", $51
|
||||
db "Can you withstand", $4f
|
||||
db "our power?", $51
|
||||
db "Hm? I see no fear", $4f
|
||||
db "in you. You look", $51
|
||||
db "determined. Per-", $4f
|
||||
db "fect for battle!", $51
|
||||
db "Ready, ", $52, "?", $4f
|
||||
db "You will bow down", $51
|
||||
db "to our overwhelm-", $4f
|
||||
db "ing power!", $51
|
||||
db "Hoo hah!", $57
|
||||
text "I am BRUNO of the"
|
||||
line "ELITE FOUR."
|
||||
|
||||
para "I always train to"
|
||||
line "the extreme be-"
|
||||
cont "cause I believe in"
|
||||
cont "our potential."
|
||||
|
||||
para "That is how we"
|
||||
line "became strong."
|
||||
|
||||
para "Can you withstand"
|
||||
line "our power?"
|
||||
|
||||
para "Hm? I see no fear"
|
||||
line "in you. You look"
|
||||
|
||||
para "determined. Per-"
|
||||
line "fect for battle!"
|
||||
|
||||
para "Ready, ", $52, "?"
|
||||
line "You will bow down"
|
||||
|
||||
para "to our overwhelm-"
|
||||
line "ing power!"
|
||||
|
||||
para "Hoo hah!"
|
||||
done
|
||||
; 0x180b23
|
||||
|
||||
UnknownText_0x180b23: ; 0x180b23
|
||||
db $0, "Why? How could we", $4f
|
||||
db "lose?", $57
|
||||
text "Why? How could we"
|
||||
line "lose?"
|
||||
done
|
||||
; 0x180b3c
|
||||
|
||||
UnknownText_0x180b3c: ; 0x180b3c
|
||||
db $0, "Having lost, I", $4f
|
||||
db "have no right to", $55
|
||||
db "say anything…", $51
|
||||
db "Go face your next", $4f
|
||||
db "challenge!", $57
|
||||
text "Having lost, I"
|
||||
line "have no right to"
|
||||
cont "say anything…"
|
||||
|
||||
para "Go face your next"
|
||||
line "challenge!"
|
||||
done
|
||||
; 0x180b88
|
||||
|
||||
BrunosRoom_MapEventHeader: ; 0x180b88
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user