pokeemerald/data/maps/RustboroCity_Flat1_2F/scripts.inc

187 lines
6.7 KiB
PHP
Raw Normal View History

.set LOCALID_WALDAS_DAD, 6
2017-11-10 02:21:31 +01:00
RustboroCity_Flat1_2F_MapScripts:: @ 8215139
.byte 0
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_EventScript_WaldasDad:: @ 821513A
2017-11-10 02:21:31 +01:00
lock
faceplayer
specialvar VAR_RESULT, TryBufferWaldaPhrase
2019-11-05 20:05:29 +01:00
compare VAR_RESULT, FALSE
goto_if_eq RustboroCity_Flat1_2F_EventScript_WaldasDadFirstPhrase
compare VAR_RESULT, TRUE
goto_if_eq RustboroCity_Flat1_2F_EventScript_WaldasDadNewPhrase
2017-11-10 02:21:31 +01:00
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_EventScript_GivePhrase:: @ 8215157
2017-11-10 02:21:31 +01:00
special DoWaldaNamingScreen
waitstate
compare VAR_0x8004, 1
2019-11-05 20:05:29 +01:00
goto_if_eq RustboroCity_Flat1_2F_EventScript_CancelGivePhrase
compare VAR_0x8004, 2
2019-11-05 20:05:29 +01:00
goto_if_eq RustboroCity_Flat1_2F_EventScript_CancelGiveFirstPhrase
2017-11-10 02:21:31 +01:00
specialvar VAR_RESULT, TryGetWallpaperWithWaldaPhrase
2019-11-05 20:05:29 +01:00
compare VAR_RESULT, TRUE
goto_if_eq RustboroCity_Flat1_2F_EventScript_WaldaLikesPhrase
compare VAR_RESULT, FALSE
goto_if_eq RustboroCity_Flat1_2F_EventScript_WaldaDoesntLikePhrase
2017-11-10 02:21:31 +01:00
end
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_EventScript_WaldasDadFirstPhrase:: @ 821518D
msgbox RustboroCity_Flat1_2F_Text_HelloDoYouKnowFunnyPhrase, MSGBOX_YESNO
2019-11-02 17:34:53 +01:00
compare VAR_RESULT, NO
2019-11-05 20:05:29 +01:00
goto_if_eq RustboroCity_Flat1_2F_EventScript_DeclineGivePhrase
msgbox RustboroCity_Flat1_2F_Text_WonderfulLetsHearSuggestion, MSGBOX_DEFAULT
goto RustboroCity_Flat1_2F_EventScript_GivePhrase
2017-11-10 02:21:31 +01:00
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_EventScript_WaldasDadNewPhrase:: @ 82151AD
msgbox RustboroCity_Flat1_2F_Text_BeenSayingXDoYouKnowBetterPhrase, MSGBOX_YESNO
2019-11-02 17:34:53 +01:00
compare VAR_RESULT, NO
2019-11-05 20:05:29 +01:00
goto_if_eq RustboroCity_Flat1_2F_EventScript_DeclineGivePhrase
msgbox RustboroCity_Flat1_2F_Text_WonderfulLetsHearSuggestion, MSGBOX_DEFAULT
goto RustboroCity_Flat1_2F_EventScript_GivePhrase
2017-11-10 02:21:31 +01:00
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_EventScript_DeclineGivePhrase:: @ 82151CD
msgbox RustboroCity_Flat1_2F_Text_OhIsThatRight, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_EventScript_CancelGivePhrase:: @ 82151D7
msgbox RustboroCity_Flat1_2F_Text_OhYouDontKnowAny, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_EventScript_CancelGiveFirstPhrase:: @ 82151E1
msgbox RustboroCity_Flat1_2F_Text_ThinkOfMyOwnPhrase, MSGBOX_DEFAULT
call RustboroCity_Flat1_2F_EventScript_WaldasDadFaceWalda
msgbox RustboroCity_Flat1_2F_Text_ShesNotSmilingAtAll2, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_EventScript_WaldaLikesPhrase:: @ 82151F8
msgbox RustboroCity_Flat1_2F_Text_LetsGiveItATry2, MSGBOX_DEFAULT
call RustboroCity_Flat1_2F_EventScript_WaldasDadFaceWalda
msgbox RustboroCity_Flat1_2F_Text_OhShesLaughing, MSGBOX_DEFAULT
applymovement LOCALID_WALDAS_DAD, Common_Movement_FacePlayer
2017-11-10 02:21:31 +01:00
waitmovement 0
2019-11-05 20:05:29 +01:00
msgbox RustboroCity_Flat1_2F_Text_ThankYouIllGiveYouWallpaper, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_EventScript_WaldaDoesntLikePhrase:: @ 8215221
msgbox RustboroCity_Flat1_2F_Text_LetsGiveItATry, MSGBOX_DEFAULT
call RustboroCity_Flat1_2F_EventScript_WaldasDadFaceWalda
msgbox RustboroCity_Flat1_2F_Text_ShesNotSmilingAtAll, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_EventScript_WaldasDadFaceWalda:: @ 8215238
turnobject LOCALID_WALDAS_DAD, DIR_EAST
2017-11-10 02:21:31 +01:00
return
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_EventScript_WaldasMom:: @ 821523D
msgbox RustboroCity_Flat1_2F_Text_ComingUpWithMealsIsHard, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_EventScript_PokeDoll:: @ 8215246
msgbox RustboroCity_Flat1_2F_Text_ItsAPokemonPlushDoll, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_Text_ComingUpWithMealsIsHard: @ 821524F
2018-12-07 16:41:08 +01:00
.string "Oh, it's so hard every day…\p"
.string "What's hard?\n"
2017-11-10 02:21:31 +01:00
.string "You need to ask?\p"
2018-12-07 16:41:08 +01:00
.string "It's trying to figure out what to\n"
2017-11-10 02:21:31 +01:00
.string "make for meals every day.\p"
2018-12-07 16:41:08 +01:00
.string "It really isn't easy coming up with\n"
2017-11-10 02:21:31 +01:00
.string "meals every day.$"
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_Text_HelloDoYouKnowFunnyPhrase: @ 82152FA
2017-11-10 02:21:31 +01:00
.string "Oh, hello!\n"
.string "Welcome to the PEPPER household.\p"
.string "I have a question for you.\n"
.string "Have you ever baby-sat?\p"
2018-12-07 16:41:08 +01:00
.string "You see, I'm a new father, so raising\n"
2017-11-10 02:21:31 +01:00
.string "a child is all new to me.\p"
.string "And I have a problem. My daughter\n"
2018-12-07 16:41:08 +01:00
.string "WALDA doesn't laugh enough.\p"
.string "I think she'd laugh for me if I told\n"
2017-11-10 02:21:31 +01:00
.string "her something funny.\p"
.string "Do you know of a funny word or\n"
.string "phrase you can tell me?$"
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_Text_BeenSayingXDoYouKnowBetterPhrase: @ 8215448
2018-12-07 16:41:08 +01:00
.string "I've been saying “{STR_VAR_1}”\n"
2017-11-10 02:21:31 +01:00
.string "to amuse her lately.\p"
.string "Do you know of a better word or\n"
.string "a phrase that might work?$"
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_Text_WonderfulLetsHearSuggestion: @ 82154AD
2018-12-07 16:41:08 +01:00
.string "Oh, that's wonderful.\n"
.string "So, let's hear it, your suggestion.$"
2017-11-10 02:21:31 +01:00
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_Text_OhIsThatRight: @ 82154E7
2017-11-10 02:21:31 +01:00
.string "Oh, is that right?\p"
.string "Well, if you come up with a good\n"
2018-12-07 16:41:08 +01:00
.string "suggestion, I'm all ears.$"
2017-11-10 02:21:31 +01:00
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_Text_LetsGiveItATry2: @ 8215535
2017-11-10 02:21:31 +01:00
.string "Ah, I see.\n"
2018-12-07 16:41:08 +01:00
.string "Well, let's give it a try, shall we?$"
2017-11-10 02:21:31 +01:00
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_Text_OhShesLaughing: @ 8215565
2017-11-10 02:21:31 +01:00
.string "{STR_VAR_1}.\n"
.string "{STR_VAR_1}.\p"
2018-12-07 16:41:08 +01:00
.string "Oh, yes! She's laughing!\n"
2017-11-10 02:21:31 +01:00
.string "Oh, I am as delighted as she!$"
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_Text_LetsGiveItATry: @ 82155A4
2017-11-10 02:21:31 +01:00
.string "Ah, I see.\n"
2018-12-07 16:41:08 +01:00
.string "Well, let's give it a try, shall we?$"
2017-11-10 02:21:31 +01:00
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_Text_ShesNotSmilingAtAll: @ 82155D4
2017-11-10 02:21:31 +01:00
.string "{STR_VAR_1}.\n"
.string "{STR_VAR_1}.\p"
2018-12-07 16:41:08 +01:00
.string "Hmmm… She's not smiling at all.\n"
2017-11-10 02:21:31 +01:00
.string "Maybe WALDA is one serious child…$"
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_Text_ThinkOfMyOwnPhrase: @ 821561E
2018-12-07 16:41:08 +01:00
.string "Oh, so you don't know any good words.\n"
.string "I'd better think for myself, then.\p"
2017-11-10 02:21:31 +01:00
.string "Hmm…\n"
.string "How about “{STR_VAR_1}”?\l"
2018-12-07 16:41:08 +01:00
.string "Let's see if that will work.$"
2017-11-10 02:21:31 +01:00
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_Text_ShesNotSmilingAtAll2: @ 8215699
2017-11-10 02:21:31 +01:00
.string "{STR_VAR_1}.\n"
.string "{STR_VAR_1}.\p"
2018-12-07 16:41:08 +01:00
.string "Hmmm… She's not smiling at all.\n"
2017-11-10 02:21:31 +01:00
.string "Maybe WALDA is one serious child…$"
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_Text_OhYouDontKnowAny: @ 82156E3
2018-12-07 16:41:08 +01:00
.string "Oh, so you don't know any good words.\n"
.string "I guess I'll try to amuse her with\l"
2017-11-10 02:21:31 +01:00
.string "the saying I used before.\p"
.string "Anyways, if you have a good suggestion,\n"
2018-12-07 16:41:08 +01:00
.string "don't hesitate in telling me, okay?$"
2017-11-10 02:21:31 +01:00
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_Text_ThankYouIllGiveYouWallpaper: @ 8215792
2017-11-10 02:21:31 +01:00
.string "Thank you!\p"
.string "Thanks to you, my darling WALDA\n"
.string "laughed for me!\p"
.string "Actually, I may not look all that\n"
2018-12-07 16:41:08 +01:00
.string "special, but I'm one of DEVON\l"
.string "CORPORATION's top researchers.\p"
2017-11-10 02:21:31 +01:00
.string "So, how about I do something in return\n"
.string "for you?\p"
2018-12-07 16:41:08 +01:00
.string "I know, I'll add some new wallpaper\n"
2017-11-10 02:21:31 +01:00
.string "patterns for the BOXES in the PC\l"
.string "POKéMON Storage System.\p"
.string "In the wallpaper pattern menu,\n"
.string "select “FRIENDS.”\p"
.string "That will give you access to the new\n"
.string "wallpaper patterns.$"
2019-11-05 20:05:29 +01:00
RustboroCity_Flat1_2F_Text_ItsAPokemonPlushDoll: @ 8215923
2018-12-07 16:41:08 +01:00
.string "It's a POKéMON plush DOLL!$"
2017-11-10 02:21:31 +01:00