pokeemerald/data/scripts/mystery_event_club.inc

171 lines
5.5 KiB
PHP
Raw Normal View History

2021-07-20 21:18:31 +02:00
MysteryEventClub_EventScript_Man::
lock
faceplayer
2019-11-08 09:53:55 +01:00
goto_if_set FLAG_SYS_CHAT_USED, MysteryEventClub_EventScript_GivenProfileBefore
2019-10-20 19:27:23 +02:00
msgbox MysteryEventClub_Text_CollectTrainerProfiles, MSGBOX_DEFAULT
2019-11-08 09:53:55 +01:00
goto MysteryEventClub_EventScript_AskToSeeProfile
end
2021-07-20 21:18:31 +02:00
MysteryEventClub_EventScript_AskToSeeProfile::
2019-11-08 09:53:55 +01:00
msgbox MysteryEventClub_Text_MayISeeYourProfile, MSGBOX_DEFAULT
2021-03-31 06:35:56 +02:00
multichoice 17, 6, MULTI_YESNOINFO_2, FALSE
switch VAR_RESULT
2019-11-08 09:53:55 +01:00
case 0, MysteryEventClub_EventScript_CreateProfile
case 1, MysteryEventClub_EventScript_DeclineShowProfile
case 2, MysteryEventClub_EventScript_Info
case MULTI_B_PRESSED, MysteryEventClub_EventScript_DeclineShowProfile
end
2021-07-20 21:18:31 +02:00
MysteryEventClub_EventScript_Info::
2019-10-20 19:27:23 +02:00
msgbox MysteryEventClub_Text_EasyChatExplanation, MSGBOX_DEFAULT
2019-11-08 09:53:55 +01:00
goto MysteryEventClub_EventScript_AskToSeeProfile
end
2021-07-20 21:18:31 +02:00
MysteryEventClub_EventScript_CreateProfile::
2019-11-08 09:53:55 +01:00
msgbox MysteryEventClub_Text_LetsSeeItThen, MSGBOX_DEFAULT
closemessage
2019-02-27 19:45:31 +01:00
setvar VAR_0x8004, EASY_CHAT_TYPE_PROFILE
call Common_ShowEasyChatScreen
lock
faceplayer
compare VAR_RESULT, 0
2019-11-08 09:53:55 +01:00
goto_if_eq MysteryEventClub_EventScript_CancelShowProfile
compare VAR_RESULT, 1
2019-11-08 09:53:55 +01:00
goto_if_eq MysteryEventClub_EventScript_ShowProfile
end
2021-07-20 21:18:31 +02:00
MysteryEventClub_EventScript_CancelShowProfile::
2019-11-08 09:53:55 +01:00
msgbox MysteryEventClub_Text_NotIntoItRightNow, MSGBOX_DEFAULT
release
end
2021-07-20 21:18:31 +02:00
MysteryEventClub_EventScript_ShowProfile::
setvar VAR_0x8004, 0
2020-01-08 21:26:14 +01:00
special ShowEasyChatProfile
waitmessage
delay 80
2019-11-08 09:53:55 +01:00
msgbox MysteryEventClub_Text_FantasticProfile, MSGBOX_DEFAULT
release
end
2021-07-20 21:18:31 +02:00
MysteryEventClub_EventScript_DeclineShowProfile::
2019-11-08 09:53:55 +01:00
msgbox MysteryEventClub_Text_ImagineYouWouldHaveWonderfulProfile, MSGBOX_DEFAULT
release
end
2021-07-20 21:18:31 +02:00
MysteryEventClub_EventScript_GivenProfileBefore::
2019-10-20 19:27:23 +02:00
msgbox MysteryEventClub_Text_YouHaveWonderfulSmile, MSGBOX_DEFAULT
2019-11-08 09:53:55 +01:00
goto MysteryEventClub_EventScript_AskToSeeNewProfile
end
2021-07-20 21:18:31 +02:00
MysteryEventClub_EventScript_AskToSeeNewProfile::
2019-10-20 19:27:23 +02:00
msgbox MysteryEventClub_Text_MayISeeYourNewProfile, MSGBOX_DEFAULT
2021-03-31 06:35:56 +02:00
multichoice 17, 6, MULTI_YESNOINFO_2, FALSE
switch VAR_RESULT
2019-11-08 09:53:55 +01:00
case 0, MysteryEventClub_EventScript_CreateNewProfile
case 1, MysteryEventClub_EventScript_DeclineNewProfile
case 2, MysteryEventClub_EventScript_InfoNewProfile
case MULTI_B_PRESSED, MysteryEventClub_EventScript_DeclineNewProfile
end
2021-07-20 21:18:31 +02:00
MysteryEventClub_EventScript_InfoNewProfile::
2019-10-20 19:27:23 +02:00
msgbox MysteryEventClub_Text_EasyChatExplanation, MSGBOX_DEFAULT
2019-11-08 09:53:55 +01:00
goto MysteryEventClub_EventScript_AskToSeeNewProfile
end
2021-07-20 21:18:31 +02:00
MysteryEventClub_EventScript_CreateNewProfile::
2019-11-08 09:53:55 +01:00
msgbox MysteryEventClub_Text_EvenBetterThanLastProfile, MSGBOX_DEFAULT
closemessage
2019-02-27 19:45:31 +01:00
setvar VAR_0x8004, EASY_CHAT_TYPE_PROFILE
call Common_ShowEasyChatScreen
lock
faceplayer
compare VAR_RESULT, 0
2019-11-08 09:53:55 +01:00
goto_if_eq MysteryEventClub_EventScript_CancelShowProfile
compare VAR_RESULT, 1
2019-11-08 09:53:55 +01:00
goto_if_eq MysteryEventClub_EventScript_ShowProfile
end
2021-07-20 21:18:31 +02:00
MysteryEventClub_EventScript_DeclineNewProfile::
2019-11-08 09:53:55 +01:00
msgbox MysteryEventClub_Text_LikeProfileWayItIs, MSGBOX_DEFAULT
release
end
2019-11-08 09:53:55 +01:00
@ Unused
2021-07-20 21:18:31 +02:00
MysteryEventClub_EventScript_Ret::
return
2021-07-20 21:18:31 +02:00
MysteryEventClub_Text_CollectTrainerProfiles:
.string "Hello there, TRAINER!\n"
2018-12-07 16:41:08 +01:00
.string "You've got a wonderful smile, there.\p"
.string "I have a hobby--collecting the profiles\n"
.string "of POKéMON TRAINERS.$"
2021-07-20 21:18:31 +02:00
MysteryEventClub_Text_MayISeeYourProfile:
.string "So, how about it?\n"
.string "May I see your profile?$"
2021-07-20 21:18:31 +02:00
MysteryEventClub_Text_EasyChatExplanation:
.string "You make your own profile by putting\n"
.string "together four words or phrases.\p"
2018-12-07 16:41:08 +01:00
.string "Here, I'll show you an example of a\n"
.string "profile using four pieces of text.\p"
.string "You can switch those four pieces with\n"
.string "other text pieces any which way you\l"
.string "like to make your own profile.\p"
.string "There are a lot of text pieces that\n"
.string "you can use.\p"
.string "They are arranged in groups like\n"
.string "POKéMON, lifestyles, and hobbies so\l"
.string "it is easier to look them up.\p"
.string "So, first, choose the group of text\n"
.string "pieces to display a list of choices.\p"
.string "Then, pick the choice you want.\p"
.string "Repeat for the remaining text choices,\n"
2018-12-07 16:41:08 +01:00
.string "and you'll have your very own profile.$"
2021-07-20 21:18:31 +02:00
MysteryEventClub_Text_LetsSeeItThen:
.string "Yes! Thank you!\n"
2018-12-07 16:41:08 +01:00
.string "So, let's see it, then.$"
2021-07-20 21:18:31 +02:00
MysteryEventClub_Text_ImagineYouWouldHaveWonderfulProfile:
.string "Oh, no, really?\p"
.string "I imagine someone like you would have\n"
.string "a wonderful profile…$"
2021-07-20 21:18:31 +02:00
MysteryEventClub_Text_NotIntoItRightNow:
2018-12-07 16:41:08 +01:00
.string "Oh? You're not into it right now?\p"
.string "Well, anytime is good by me!$"
2021-07-20 21:18:31 +02:00
MysteryEventClub_Text_YouHaveWonderfulSmile:
.string "Hello there, TRAINER!\n"
2018-12-07 16:41:08 +01:00
.string "You've got a wonderful smile.$"
2021-07-20 21:18:31 +02:00
MysteryEventClub_Text_MayISeeYourNewProfile:
.string "May I see your new profile?$"
2021-07-20 21:18:31 +02:00
MysteryEventClub_Text_EvenBetterThanLastProfile:
.string "Yes! Thank you!\p"
2018-12-07 16:41:08 +01:00
.string "I hope it's even better than the profile\n"
.string "you showed me before.$"
2021-07-20 21:18:31 +02:00
MysteryEventClub_Text_LikeProfileWayItIs:
.string "Oh, you like your profile the way it is.\p"
2018-12-07 16:41:08 +01:00
.string "I don't blame you--it's a wonderful\n"
.string "profile the way it is now.$"
2021-07-20 21:18:31 +02:00
MysteryEventClub_Text_FantasticProfile:
.string "F-fantastic!\p"
2018-12-07 16:41:08 +01:00
.string "Your profile, it's wonderful!\n"
.string "It really says what you're about.\p"
.string "Why, anyone hearing this profile would\n"
.string "be captivated by you!\p"
.string "Thank you!$"
2019-11-08 09:53:55 +01:00
@ Unused
2021-07-20 21:18:31 +02:00
MysteryEventClub_Text_YouKnowSecretSaying:
.string "Oh?\n"
.string "You know the secret saying!\p"
2018-12-07 16:41:08 +01:00
.string "That means you're now a fellow member\n"
.string "of the MYSTERY EVENT CLUB!$"