You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-09-08 08:13:02 -07:00
Text macros in text/.
This commit is contained in:
1113
text/battle.asm
1113
text/battle.asm
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
784
text/buena.asm
784
text/buena.asm
File diff suppressed because it is too large
Load Diff
1355
text/common.asm
1355
text/common.asm
File diff suppressed because it is too large
Load Diff
1848
text/common_2.asm
1848
text/common_2.asm
File diff suppressed because it is too large
Load Diff
1552
text/common_3.asm
1552
text/common_3.asm
File diff suppressed because it is too large
Load Diff
1556
text/common_4.asm
1556
text/common_4.asm
File diff suppressed because it is too large
Load Diff
@@ -1,23 +1,32 @@
|
||||
BillPhoneMornGreetingText: ; 0x1b4427
|
||||
db $0, "Good morning!", $51
|
||||
db "This is the #-", $4f
|
||||
db "MON STORAGE SYSTEM", $51
|
||||
db "ADMINISTRATION", $4f
|
||||
db "SERVICE.", $57
|
||||
text "Good morning!"
|
||||
|
||||
para "This is the #-"
|
||||
line "MON STORAGE SYSTEM"
|
||||
|
||||
para "ADMINISTRATION"
|
||||
line "SERVICE."
|
||||
done
|
||||
|
||||
BillPhoneDayGreetingText: ; 0x1b4470
|
||||
db $0, "Good day!", $51
|
||||
db "This is the #-", $4f
|
||||
db "MON STORAGE SYSTEM", $51
|
||||
db "ADMINISTRATION", $4f
|
||||
db "SERVICE.", $57
|
||||
text "Good day!"
|
||||
|
||||
para "This is the #-"
|
||||
line "MON STORAGE SYSTEM"
|
||||
|
||||
para "ADMINISTRATION"
|
||||
line "SERVICE."
|
||||
done
|
||||
|
||||
BillPhoneNiteGreetingText: ; 0x1b44b5
|
||||
db $0, "Good evening!", $51
|
||||
db "This is the #-", $4f
|
||||
db "MON STORAGE SYSTEM", $51
|
||||
db "ADMINISTRATION", $4f
|
||||
db "SERVICE.", $57
|
||||
text "Good evening!"
|
||||
|
||||
para "This is the #-"
|
||||
line "MON STORAGE SYSTEM"
|
||||
|
||||
para "ADMINISTRATION"
|
||||
line "SERVICE."
|
||||
done
|
||||
|
||||
BillPhoneGeneriText: ; 0x1b44fe
|
||||
db $0, "Who's calling?", $51
|
||||
@@ -27,47 +36,63 @@ BillPhoneGeneriText: ; 0x1b44fe
|
||||
db $56, $57
|
||||
|
||||
BillPhoneNotFullText: ; 0x1b452a
|
||||
db $0, "Thanks for", $4f
|
||||
db "waiting!", $51
|
||||
db $14, ", your BOX", $4f
|
||||
db "has room for @"
|
||||
text "Thanks for"
|
||||
line "waiting!"
|
||||
|
||||
para $14, ", your BOX"
|
||||
line "has room for @"
|
||||
TX_RAM StringBuffer3
|
||||
db $0, $55
|
||||
db "more #MON.", $51
|
||||
db "Get out there and", $4f
|
||||
db "fill it up!", $57
|
||||
text $55
|
||||
db "more #MON."
|
||||
|
||||
para "Get out there and"
|
||||
line "fill it up!"
|
||||
done
|
||||
|
||||
BillPhoneNearlyFullText: ; 0x1b4587
|
||||
db $0, "Thanks for", $4f
|
||||
db "waiting!", $51
|
||||
db $14, ", your BOX", $4f
|
||||
db "has room for only", $55
|
||||
db "@"
|
||||
text "Thanks for"
|
||||
line "waiting!"
|
||||
|
||||
para $14, ", your BOX"
|
||||
line "has room for only"
|
||||
cont "@"
|
||||
TX_RAM StringBuffer3
|
||||
db $0, " more #MON.", $51
|
||||
db "Maybe you should", $4f
|
||||
db "switch your BOX.", $57
|
||||
text " more #MON."
|
||||
|
||||
para "Maybe you should"
|
||||
line "switch your BOX."
|
||||
done
|
||||
|
||||
BillPhoneFullText: ; 0x1b45ed
|
||||
db $0, "Thanks for", $4f
|
||||
db "waiting!", $51
|
||||
db $14, ", your BOX", $4f
|
||||
db "is full!", $51
|
||||
db "You'll have to", $4f
|
||||
db "switch BOXES if", $51
|
||||
db "you want to catch", $4f
|
||||
db "more #MON.", $57
|
||||
text "Thanks for"
|
||||
line "waiting!"
|
||||
|
||||
para $14, ", your BOX"
|
||||
line "is full!"
|
||||
|
||||
para "You'll have to"
|
||||
line "switch BOXES if"
|
||||
|
||||
para "you want to catch"
|
||||
line "more #MON."
|
||||
done
|
||||
|
||||
BillPhoneNewlyFullText: ; 0x1b4652
|
||||
db $0, "Hi, ", $14, "?", $4f
|
||||
db "It's me, BILL!", $51
|
||||
db "Thanks for using", $4f
|
||||
db "my STORAGE SYSTEM.", $51
|
||||
db "That last #MON", $4f
|
||||
db "you sent filled", $55
|
||||
db "your BOX up.", $51
|
||||
db "You'll have to", $4f
|
||||
db "switch BOXES if", $51
|
||||
db "you want to catch", $4f
|
||||
db "more #MON.", $51
|
||||
db "Bye now!", $57
|
||||
text "Hi, ", $14, "?"
|
||||
line "It's me, BILL!"
|
||||
|
||||
para "Thanks for using"
|
||||
line "my STORAGE SYSTEM."
|
||||
|
||||
para "That last #MON"
|
||||
line "you sent filled"
|
||||
cont "your BOX up."
|
||||
|
||||
para "You'll have to"
|
||||
line "switch BOXES if"
|
||||
|
||||
para "you want to catch"
|
||||
line "more #MON."
|
||||
|
||||
para "Bye now!"
|
||||
done
|
||||
|
@@ -1,149 +1,211 @@
|
||||
ElmPhoneStartText: ; 0x1b46fc
|
||||
db $0, "Hello, ", $14, "?", $51
|
||||
db "Try not to overdo", $4f
|
||||
db "it.", $51
|
||||
db "Be sure to heal", $4f
|
||||
db "your #MON if", $55
|
||||
db "they are hurt.", $57
|
||||
text "Hello, ", $14, "?"
|
||||
|
||||
para "Try not to overdo"
|
||||
line "it."
|
||||
|
||||
para "Be sure to heal"
|
||||
line "your #MON if"
|
||||
cont "they are hurt."
|
||||
done
|
||||
|
||||
ElmPhoneSawMrPokemonText: ; 0x1b4749
|
||||
db $0, "Hello, ", $14, "?", $51
|
||||
db "Did you meet MR.", $4f
|
||||
db "#MON? Great!", $55
|
||||
db "Come back safely!", $57
|
||||
text "Hello, ", $14, "?"
|
||||
|
||||
para "Did you meet MR."
|
||||
line "#MON? Great!"
|
||||
cont "Come back safely!"
|
||||
done
|
||||
|
||||
ElmPhonePokemonStolenText: ; 0x1b4784
|
||||
db $0, $14, "? I'm very", $4f
|
||||
db "upset now.", $51
|
||||
db "We had a #MON", $4f
|
||||
db "stolen from here.", $51
|
||||
db "How could anyone", $4f
|
||||
db "do that?", $57
|
||||
text $14, "? I'm very"
|
||||
line "upset now."
|
||||
|
||||
para "We had a #MON"
|
||||
line "stolen from here."
|
||||
|
||||
para "How could anyone"
|
||||
line "do that?"
|
||||
done
|
||||
|
||||
ElmPhoneCheckingEggText: ; 0x1b47d5
|
||||
db $0, "Hello, ", $14, "?", $51
|
||||
db "We're checking the", $4f
|
||||
db "EGG now. It does", $51
|
||||
db "appear to be a", $4f
|
||||
db "#MON EGG.", $57
|
||||
text "Hello, ", $14, "?"
|
||||
|
||||
para "We're checking the"
|
||||
line "EGG now. It does"
|
||||
|
||||
para "appear to be a"
|
||||
line "#MON EGG."
|
||||
done
|
||||
|
||||
ElmPhoneAssistantText: ; 0x1b481c
|
||||
db $0, "Hello, ", $14, "?", $51
|
||||
db "Did you see my", $4f
|
||||
db "assistant? He's at", $51
|
||||
db "the #MON CENTER", $4f
|
||||
db "in VIOLET CITY.", $57
|
||||
text "Hello, ", $14, "?"
|
||||
|
||||
para "Did you see my"
|
||||
line "assistant? He's at"
|
||||
|
||||
para "the #MON CENTER"
|
||||
line "in VIOLET CITY."
|
||||
done
|
||||
|
||||
ElmPhoneEggUnhatchedText: ; 0x1b4868
|
||||
db $0, "Hello, ", $14, "?", $51
|
||||
db "How's the EGG? Has", $4f
|
||||
db "anything changed?", $51
|
||||
db "If anything hap-", $4f
|
||||
db "pens, please call.", $57
|
||||
text "Hello, ", $14, "?"
|
||||
|
||||
para "How's the EGG? Has"
|
||||
line "anything changed?"
|
||||
|
||||
para "If anything hap-"
|
||||
line "pens, please call."
|
||||
done
|
||||
|
||||
ElmPhoneEggHatchedText: ; 0x1b48bb
|
||||
db $0, "Hello, ", $14, "?", $4f
|
||||
db "How is the EGG?", $51
|
||||
db "What? It hatched?", $4f
|
||||
db "Wow! What kind of", $55
|
||||
db "#MON is it?", $51
|
||||
db "Please come show", $4f
|
||||
db "me now!", $57
|
||||
text "Hello, ", $14, "?"
|
||||
line "How is the EGG?"
|
||||
|
||||
para "What? It hatched?"
|
||||
line "Wow! What kind of"
|
||||
cont "#MON is it?"
|
||||
|
||||
para "Please come show"
|
||||
line "me now!"
|
||||
done
|
||||
|
||||
ElmPhoneDiscovery1Text: ; 0x1b491f
|
||||
db $0, "Hello, ", $14, "?", $51
|
||||
db "I just made a new", $4f
|
||||
db "discovery.", $51
|
||||
db "The time it takes", $4f
|
||||
db "for an EGG to", $51
|
||||
db "hatch depends on", $4f
|
||||
db "the #MON.", $57
|
||||
text "Hello, ", $14, "?"
|
||||
|
||||
para "I just made a new"
|
||||
line "discovery."
|
||||
|
||||
para "The time it takes"
|
||||
line "for an EGG to"
|
||||
|
||||
para "hatch depends on"
|
||||
line "the #MON."
|
||||
done
|
||||
|
||||
ElmPhoneDiscovery2Text: ; 0x1b4982
|
||||
db $0, "Hello, ", $14, "?", $51
|
||||
db "It's still a", $4f
|
||||
db "mystery what kinds", $51
|
||||
db "of moves hatched", $4f
|
||||
db "#MON have.", $51
|
||||
db "We're investigat-", $4f
|
||||
db "ing that now.", $57
|
||||
text "Hello, ", $14, "?"
|
||||
|
||||
para "It's still a"
|
||||
line "mystery what kinds"
|
||||
|
||||
para "of moves hatched"
|
||||
line "#MON have."
|
||||
|
||||
para "We're investigat-"
|
||||
line "ing that now."
|
||||
done
|
||||
|
||||
ElmPhonePokerusText: ; 0x1b49e7
|
||||
db $0, "Hello, ", $14, "?", $51
|
||||
db "I discovered an", $4f
|
||||
db "odd thing.", $51
|
||||
db "Apparently there's", $4f
|
||||
db "something called", $51
|
||||
db "#RUS that in-", $4f
|
||||
db "fects #MON.", $51
|
||||
db "Yes, it's like a", $4f
|
||||
db "virus, so it's", $55
|
||||
db "called #RUS.", $51
|
||||
db "It multiplies fast", $4f
|
||||
db "and infects other", $51
|
||||
db "#MON too. But", $4f
|
||||
db "that's all.", $51
|
||||
db "It doesn't seem to", $4f
|
||||
db "do anything, and", $51
|
||||
db "it goes away over", $4f
|
||||
db "time.", $51
|
||||
db "I guess it's", $4f
|
||||
db "nothing to worry", $55
|
||||
db "about. Bye!", $57
|
||||
text "Hello, ", $14, "?"
|
||||
|
||||
para "I discovered an"
|
||||
line "odd thing."
|
||||
|
||||
para "Apparently there's"
|
||||
line "something called"
|
||||
|
||||
para "#RUS that in-"
|
||||
line "fects #MON."
|
||||
|
||||
para "Yes, it's like a"
|
||||
line "virus, so it's"
|
||||
cont "called #RUS."
|
||||
|
||||
para "It multiplies fast"
|
||||
line "and infects other"
|
||||
|
||||
para "#MON too. But"
|
||||
line "that's all."
|
||||
|
||||
para "It doesn't seem to"
|
||||
line "do anything, and"
|
||||
|
||||
para "it goes away over"
|
||||
line "time."
|
||||
|
||||
para "I guess it's"
|
||||
line "nothing to worry"
|
||||
cont "about. Bye!"
|
||||
done
|
||||
|
||||
ElmPhoneDisasterText: ; 0x1b4b17
|
||||
db $0, "H-hello? ", $14, "?", $4f
|
||||
db "It's a disaster!", $51
|
||||
db "Uh, um, it's just", $4f
|
||||
db "terrible!", $51
|
||||
db "What should I do?", $4f
|
||||
db "It… Oh, no…", $51
|
||||
db "Please get back", $4f
|
||||
db "here now!", $57
|
||||
text "H-hello? ", $14, "?"
|
||||
line "It's a disaster!"
|
||||
|
||||
para "Uh, um, it's just"
|
||||
line "terrible!"
|
||||
|
||||
para "What should I do?"
|
||||
line "It… Oh, no…"
|
||||
|
||||
para "Please get back"
|
||||
line "here now!"
|
||||
done
|
||||
|
||||
ElmPhoneEggAssistantText: ; 0x1b4b87
|
||||
db $0, "Hello, ", $14, "? We", $4f
|
||||
db "discovered some-", $51
|
||||
db "thing about the", $4f
|
||||
db "EGG!", $51
|
||||
db "My assistant is at", $4f
|
||||
db "the #MON CENTER", $51
|
||||
db "in VIOLET CITY. ", $4f
|
||||
db "Could you talk to", $55
|
||||
db "him?", $57
|
||||
text "Hello, ", $14, "? We"
|
||||
line "discovered some-"
|
||||
|
||||
para "thing about the"
|
||||
line "EGG!"
|
||||
|
||||
para "My assistant is at"
|
||||
line "the #MON CENTER"
|
||||
|
||||
para "in VIOLET CITY. "
|
||||
line "Could you talk to"
|
||||
cont "him?"
|
||||
done
|
||||
|
||||
ElmPhoneRocketText: ; 0x1b4c06
|
||||
db $0, $14, ", how are", $4f
|
||||
db "things going?", $51
|
||||
db "I called because", $4f
|
||||
db "something weird is", $51
|
||||
db "happening with the", $4f
|
||||
db "radio broadcasts.", $51
|
||||
db "They were talking", $4f
|
||||
db "about TEAM ROCKET.", $51
|
||||
db $14, ", do you", $4f
|
||||
db "know anything", $55
|
||||
db "about it?", $51
|
||||
db "Maybe TEAM ROCKET", $4f
|
||||
db "has returned. No,", $51
|
||||
db "that just can't", $4f
|
||||
db "be true.", $51
|
||||
db "Sorry to bug you.", $4f
|
||||
db "Take care!", $57
|
||||
text $14, ", how are"
|
||||
line "things going?"
|
||||
|
||||
para "I called because"
|
||||
line "something weird is"
|
||||
|
||||
para "happening with the"
|
||||
line "radio broadcasts."
|
||||
|
||||
para "They were talking"
|
||||
line "about TEAM ROCKET."
|
||||
|
||||
para $14, ", do you"
|
||||
line "know anything"
|
||||
cont "about it?"
|
||||
|
||||
para "Maybe TEAM ROCKET"
|
||||
line "has returned. No,"
|
||||
|
||||
para "that just can't"
|
||||
line "be true."
|
||||
|
||||
para "Sorry to bug you."
|
||||
line "Take care!"
|
||||
done
|
||||
|
||||
ElmPhoneGiftText: ; 0x1b4d09
|
||||
db $0, "Hello, ", $14, "?", $51
|
||||
db "I have something", $4f
|
||||
db "here for you.", $51
|
||||
db "Could you swing by", $4f
|
||||
db "my LAB?", $51
|
||||
db "See you later!", $57
|
||||
text "Hello, ", $14, "?"
|
||||
|
||||
para "I have something"
|
||||
line "here for you."
|
||||
|
||||
para "Could you swing by"
|
||||
line "my LAB?"
|
||||
|
||||
para "See you later!"
|
||||
done
|
||||
|
||||
ElmPhoneUnusedText: ; 0x1b4d5d
|
||||
db $0, "Hello, ", $14, "?", $4f
|
||||
db "How's it going?", $51
|
||||
db "I got ahold of", $4f
|
||||
db "something neat.", $51
|
||||
db "Swing by my LAB", $4f
|
||||
db "and pick it up!", $51
|
||||
db "See you later!", $57
|
||||
text "Hello, ", $14, "?"
|
||||
line "How's it going?"
|
||||
|
||||
para "I got ahold of"
|
||||
line "something neat."
|
||||
|
||||
para "Swing by my LAB"
|
||||
line "and pick it up!"
|
||||
|
||||
para "See you later!"
|
||||
done
|
||||
|
2322
text/phone/extra.asm
2322
text/phone/extra.asm
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -1,127 +1,165 @@
|
||||
MomPhoneGreetingText: ; 0x1b4000
|
||||
db $0, "Hello?", $51
|
||||
db "Oh, hi, ", $52, "!", $4f
|
||||
db "Working hard?", $57
|
||||
text "Hello?"
|
||||
|
||||
para "Oh, hi, ", $52, "!"
|
||||
line "Working hard?"
|
||||
done
|
||||
|
||||
UnknownText_0x1b4021: ; 0x1b4021
|
||||
db $0, "Oh, so you're in", $4f
|
||||
db "@"
|
||||
text "Oh, so you're in"
|
||||
line "@"
|
||||
TX_RAM StringBuffer3
|
||||
db $0, "…", $51
|
||||
db "Isn't that where", $4f
|
||||
db "@"
|
||||
text "…"
|
||||
|
||||
para "Isn't that where"
|
||||
line "@"
|
||||
TX_RAM StringBuffer4
|
||||
db $0, $51
|
||||
db "is? Did you go", $4f
|
||||
db "take a look?", $57
|
||||
text $51
|
||||
db "is? Did you go"
|
||||
line "take a look?"
|
||||
done
|
||||
|
||||
MomPhoneGenericAreaText: ; 0x1b406b
|
||||
db $0, "Really, you're in", $4f
|
||||
db "@"
|
||||
text "Really, you're in"
|
||||
line "@"
|
||||
TX_RAM StringBuffer3
|
||||
db $0, "?", $51
|
||||
db "I've never gone", $4f
|
||||
db "there. That's kind", $55
|
||||
db "of neat, ", $52, ".", $57
|
||||
text "?"
|
||||
|
||||
para "I've never gone"
|
||||
line "there. That's kind"
|
||||
cont "of neat, ", $52, "."
|
||||
done
|
||||
|
||||
MomPhoneNewBarkText: ; 0x1b40b1
|
||||
db $0, "What? You're in", $4f
|
||||
db "@"
|
||||
text "What? You're in"
|
||||
line "@"
|
||||
TX_RAM StringBuffer3
|
||||
db $0, "?", $51
|
||||
db "Come see your MOM", $4f
|
||||
db "sometime!", $57
|
||||
text "?"
|
||||
|
||||
para "Come see your MOM"
|
||||
line "sometime!"
|
||||
done
|
||||
|
||||
MomPhoneCherrygroveText: ; 0x1b40e4
|
||||
db $0, "You're visiting", $4f
|
||||
db "@"
|
||||
text "You're visiting"
|
||||
line "@"
|
||||
TX_RAM StringBuffer3
|
||||
db $0, "?", $51
|
||||
db "How about coming", $4f
|
||||
db "home for a bit?", $57
|
||||
text "?"
|
||||
|
||||
para "How about coming"
|
||||
line "home for a bit?"
|
||||
done
|
||||
|
||||
UnknownText_0x1b411c: ; 0x1b411c
|
||||
db $0, "Wow, you're in", $4f
|
||||
db "@"
|
||||
text "Wow, you're in"
|
||||
line "@"
|
||||
TX_RAM StringBuffer3
|
||||
db $0, "?", $51
|
||||
db "Good luck on your", $4f
|
||||
db "#MON quest!", $57
|
||||
text "?"
|
||||
|
||||
para "Good luck on your"
|
||||
line "#MON quest!"
|
||||
done
|
||||
|
||||
UnknownText_0x1b4150: ; 0x1b4150
|
||||
db $0, "That sounds really", $4f
|
||||
db "tough.", $51
|
||||
db "But, ", $52, ", I", $4f
|
||||
db "know you're really", $51
|
||||
db "determined. You'll", $4f
|
||||
db "be OK, right?", $57
|
||||
text "That sounds really"
|
||||
line "tough."
|
||||
|
||||
para "But, ", $52, ", I"
|
||||
line "know you're really"
|
||||
|
||||
para "determined. You'll"
|
||||
line "be OK, right?"
|
||||
done
|
||||
|
||||
UnknownText_0x1b41a7: ; 0x1b41a7
|
||||
db $0, "By the way, you've", $4f
|
||||
db "saved up ¥@"
|
||||
text "By the way, you've"
|
||||
line "saved up ¥@"
|
||||
TX_RAM StringBuffer3
|
||||
db $0, ".", $51
|
||||
db "Do you want to", $4f
|
||||
db "keep on saving?", $57
|
||||
text "."
|
||||
|
||||
para "Do you want to"
|
||||
line "keep on saving?"
|
||||
done
|
||||
|
||||
UnknownText_0x1b41ea: ; 0x1b41ea
|
||||
db $0, "It's important to", $4f
|
||||
db "save your money.", $57
|
||||
text "It's important to"
|
||||
line "save your money."
|
||||
done
|
||||
|
||||
UnknownText_0x1b420d: ; 0x1b420d
|
||||
db $0, "Oh, ", $52, ",", $4f
|
||||
db "you're not saving", $51
|
||||
db "any money. Would", $4f
|
||||
db "you like to save?", $57
|
||||
text "Oh, ", $52, ","
|
||||
line "you're not saving"
|
||||
|
||||
para "any money. Would"
|
||||
line "you like to save?"
|
||||
done
|
||||
|
||||
UnknownText_0x1b4249: ; 0x1b4249
|
||||
db $0, "By the way, you've", $4f
|
||||
db "saved up ¥@"
|
||||
text "By the way, you've"
|
||||
line "saved up ¥@"
|
||||
TX_RAM StringBuffer3
|
||||
db $0, ".", $51
|
||||
db "Want to start", $4f
|
||||
db "saving again?", $57
|
||||
text "."
|
||||
|
||||
para "Want to start"
|
||||
line "saving again?"
|
||||
done
|
||||
|
||||
UnknownText_0x1b4289: ; 0x1b4289
|
||||
db $0, "OK. I'll save your", $4f
|
||||
db "money.", $57
|
||||
text "OK. I'll save your"
|
||||
line "money."
|
||||
done
|
||||
|
||||
MomPhoneWontSaveMoneyText: ; 0x1b42a3
|
||||
db $0, "OK. I won't save", $4f
|
||||
db "your money.", $57
|
||||
text "OK. I won't save"
|
||||
line "your money."
|
||||
done
|
||||
|
||||
MomPhoneHangUpText: ; 0x1b42c0
|
||||
db $0, $52, ", keep it", $4f
|
||||
db "up! I'm rooting", $55
|
||||
db "for you, baby!", $57
|
||||
text $52, ", keep it"
|
||||
line "up! I'm rooting"
|
||||
cont "for you, baby!"
|
||||
done
|
||||
|
||||
MomPhoneNoPokemonText: ; 0x1b42ea
|
||||
db $0, "Hello?", $51
|
||||
db "Oh, hi, ", $52, "!", $4f
|
||||
db "Wasn't PROF.ELM", $55
|
||||
db "waiting for you?", $57
|
||||
text "Hello?"
|
||||
|
||||
para "Oh, hi, ", $52, "!"
|
||||
line "Wasn't PROF.ELM"
|
||||
cont "waiting for you?"
|
||||
done
|
||||
|
||||
MomPhoneNoPokedexText: ; 0x1b431d
|
||||
db $0, "Hello?", $51
|
||||
db "Oh, hi, ", $52, "!", $4f
|
||||
db "You're on a big", $51
|
||||
db "mission for PROF.", $4f
|
||||
db "ELM? Be good!", $57
|
||||
text "Hello?"
|
||||
|
||||
para "Oh, hi, ", $52, "!"
|
||||
line "You're on a big"
|
||||
|
||||
para "mission for PROF."
|
||||
line "ELM? Be good!"
|
||||
done
|
||||
|
||||
MomPhoneNoGymQuestText: ; 0x1b435f
|
||||
db $0, "Hello?", $51
|
||||
db "Hi, ", $52, "! If", $4f
|
||||
db "you're done with", $51
|
||||
db "your errand come", $4f
|
||||
db "on home, dear.", $57
|
||||
text "Hello?"
|
||||
|
||||
para "Hi, ", $52, "! If"
|
||||
line "you're done with"
|
||||
|
||||
para "your errand come"
|
||||
line "on home, dear."
|
||||
done
|
||||
|
||||
MomPhoneLectureText: ; 0x1b43a1
|
||||
db $0, "Hello?", $51
|
||||
db "…… ", $52, "?", $4f
|
||||
db "I heard from PROF.", $51
|
||||
db "ELM that you went", $4f
|
||||
db "on a long trip.", $51
|
||||
db "I wish you would", $4f
|
||||
db "have told me…", $51
|
||||
db "What about money?", $4f
|
||||
db "Should I save it?", $57
|
||||
text "Hello?"
|
||||
|
||||
para "…… ", $52, "?"
|
||||
line "I heard from PROF."
|
||||
|
||||
para "ELM that you went"
|
||||
line "on a long trip."
|
||||
|
||||
para "I wish you would"
|
||||
line "have told me…"
|
||||
|
||||
para "What about money?"
|
||||
line "Should I save it?"
|
||||
done
|
||||
|
File diff suppressed because it is too large
Load Diff
@@ -9,46 +9,60 @@
|
||||
; The last text is associated with a second NPC, probably a Butterfree.
|
||||
|
||||
UnusedSweetHoneyText: ; 0x5578a
|
||||
db 0, "My #MON is an", $4f
|
||||
db "expert at collect-", $55
|
||||
db "ing SWEET HONEY.", $51
|
||||
db "I'll share some", $4f
|
||||
db "with you.", $57
|
||||
text "My #MON is an"
|
||||
line "expert at collect-"
|
||||
cont "ing SWEET HONEY."
|
||||
|
||||
para "I'll share some"
|
||||
line "with you."
|
||||
done
|
||||
|
||||
UnusedSweetHoneyBagFullText: ; 0x557d6
|
||||
db 0, "I want to give you", $4f
|
||||
db "some SWEET HONEY,", $51
|
||||
db "but you have no", $4f
|
||||
db "room for it.", $57
|
||||
text "I want to give you"
|
||||
line "some SWEET HONEY,"
|
||||
|
||||
para "but you have no"
|
||||
line "room for it."
|
||||
done
|
||||
|
||||
UnusedSweetHoneyGiveText: ; 0x55819
|
||||
db 0, "Here you go! Have", $4f
|
||||
db "some SWEET HONEY!", $57
|
||||
text "Here you go! Have"
|
||||
line "some SWEET HONEY!"
|
||||
done
|
||||
|
||||
UnusedGotSweetHoneyText: ; 0x5583e
|
||||
db 0, $52, " received", $4f
|
||||
db "SWEET HONEY.", $57
|
||||
text $52, " received"
|
||||
line "SWEET HONEY."
|
||||
done
|
||||
|
||||
UnusedSweetHoneyAfterText1: ; 0x55856
|
||||
db 0, "My little brother", $4f
|
||||
db "takes SWEET HONEY", $51
|
||||
db "and goes somewhere", $4f
|
||||
db "with it.", $51
|
||||
db "I wonder what he's", $4f
|
||||
db "up to?", $57
|
||||
text "My little brother"
|
||||
line "takes SWEET HONEY"
|
||||
|
||||
para "and goes somewhere"
|
||||
line "with it."
|
||||
|
||||
para "I wonder what he's"
|
||||
line "up to?"
|
||||
done
|
||||
|
||||
UnusedSweetHoneyAfterText2: ; 0x558b1
|
||||
db 0, "Did you put SWEET", $4f
|
||||
db "HONEY on a tree?", $51
|
||||
db "What happened to", $4f
|
||||
db "it?", $57
|
||||
text "Did you put SWEET"
|
||||
line "HONEY on a tree?"
|
||||
|
||||
para "What happened to"
|
||||
line "it?"
|
||||
done
|
||||
|
||||
UnusedSweetHoneyAfterText3: ; 0x558ea
|
||||
db 0, "Did you put SWEET", $4f
|
||||
db "HONEY on a tree?", $51
|
||||
db "It takes about a", $4f
|
||||
db "day for #MON to", $55
|
||||
db "be drawn to it.", $57
|
||||
text "Did you put SWEET"
|
||||
line "HONEY on a tree?"
|
||||
|
||||
para "It takes about a"
|
||||
line "day for #MON to"
|
||||
cont "be drawn to it."
|
||||
done
|
||||
|
||||
UnusedSweetHoneyButterfreeText: ; 0x5593f
|
||||
db 0, "BUTTERFREE: Freeh!", $57
|
||||
text "BUTTERFREE: Freeh!"
|
||||
done
|
||||
|
Reference in New Issue
Block a user