pokeemerald/data/maps/LilycoveCity_LilycoveMuseum_1F/scripts.inc

296 lines
11 KiB
PHP
Raw Normal View History

2017-11-10 02:21:31 +01:00
LilycoveCity_LilycoveMuseum_1F_MapScripts:: @ 8218CB8
.byte 0
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_EventScript_Greeter:: @ 8218CB9
msgbox LilycoveCity_LilycoveMuseum_1F_Text_WelcomeToLilycoveMuseum, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_EventScript_Curator:: @ 8218CC2
2017-11-10 02:21:31 +01:00
lockall
applymovement 2, Common_Movement_FacePlayer
2019-11-10 16:56:35 +01:00
message LilycoveCity_LilycoveMuseum_1F_Text_ImCuratorHaveYouViewedOurPaintings
2017-11-10 02:21:31 +01:00
waitmessage
2019-09-19 06:56:51 +02:00
multichoice 20, 8, MULTI_VIEWED_PAINTINGS, 1
compare VAR_RESULT, 0
2019-11-10 16:56:35 +01:00
goto_if_eq LilycoveCity_LilycoveMuseum_1F_EventScript_SawPaintings
compare VAR_RESULT, 1
2019-11-10 16:56:35 +01:00
goto_if_eq LilycoveCity_LilycoveMuseum_1F_EventScript_NotYet
2017-11-10 02:21:31 +01:00
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_EventScript_NotYet:: @ 8218CEC
msgbox LilycoveCity_LilycoveMuseum_1F_Text_NotDisturbYouTakeYourTime, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_EventScript_SawPaintings:: @ 8218CF5
msgbox LilycoveCity_LilycoveMuseum_1F_Text_HaveYouAnInterestInPaintings, MSGBOX_YESNO
2019-11-02 17:34:53 +01:00
compare VAR_RESULT, NO
2019-11-10 16:56:35 +01:00
goto_if_eq LilycoveCity_LilycoveMuseum_1F_EventScript_NotInterested
2019-11-02 17:34:53 +01:00
compare VAR_RESULT, YES
2019-11-10 16:56:35 +01:00
goto_if_eq LilycoveCity_LilycoveMuseum_1F_EventScript_InterestedInPaintings
2017-11-10 02:21:31 +01:00
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_EventScript_NotInterested:: @ 8218D14
msgbox LilycoveCity_LilycoveMuseum_1F_Text_HonoredYoudVisitInSpiteOfThat, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
releaseall
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_EventScript_InterestedInPaintings:: @ 8218D1E
msgbox LilycoveCity_LilycoveMuseum_1F_Text_ExcellentCanYouComeWithMe, MSGBOX_SIGN
applymovement 2, LilycoveCity_LilycoveMuseum_1F_Movement_CuratorEnterStairs
2017-11-10 02:21:31 +01:00
waitmovement 0
removeobject 2
switch VAR_FACING
2019-11-10 16:56:35 +01:00
case DIR_NORTH, LilycoveCity_LilycoveMuseum_1F_EventScript_FollowCuratorNorth
case DIR_WEST, LilycoveCity_LilycoveMuseum_1F_EventScript_FollowCuratorWest
case DIR_EAST, LilycoveCity_LilycoveMuseum_1F_EventScript_FollowCuratorEast
2017-11-10 02:21:31 +01:00
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_EventScript_FollowCuratorNorth:: @ 8218D5A
2017-11-10 02:21:31 +01:00
lockall
2019-11-10 16:56:35 +01:00
applymovement EVENT_OBJ_ID_PLAYER, LilycoveCity_LilycoveMuseum_1F_Movement_FollowCuratorNorth
2017-11-10 02:21:31 +01:00
waitmovement 0
warp MAP_LILYCOVE_CITY_LILYCOVE_MUSEUM_2F, 255, 11, 8
2017-11-10 02:21:31 +01:00
waitstate
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_EventScript_FollowCuratorWest:: @ 8218D6F
2017-11-10 02:21:31 +01:00
lockall
2019-11-10 16:56:35 +01:00
applymovement EVENT_OBJ_ID_PLAYER, LilycoveCity_LilycoveMuseum_1F_Movement_FollowCuratorWest
2017-11-10 02:21:31 +01:00
waitmovement 0
warp MAP_LILYCOVE_CITY_LILYCOVE_MUSEUM_2F, 255, 11, 8
2017-11-10 02:21:31 +01:00
waitstate
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_EventScript_FollowCuratorEast:: @ 8218D84
2017-11-10 02:21:31 +01:00
lockall
2019-11-10 16:56:35 +01:00
applymovement EVENT_OBJ_ID_PLAYER, LilycoveCity_LilycoveMuseum_1F_Movement_FollowCuratorEast
2017-11-10 02:21:31 +01:00
waitmovement 0
warp MAP_LILYCOVE_CITY_LILYCOVE_MUSEUM_2F, 255, 11, 8
2017-11-10 02:21:31 +01:00
waitstate
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Movement_CuratorEnterStairs: @ 8218D99
walk_up
2017-11-10 02:21:31 +01:00
step_end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Movement_FollowCuratorWest: @ 8218D9B
walk_left
walk_up
2017-11-10 02:21:31 +01:00
step_end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Movement_FollowCuratorEast: @ 8218D9E
walk_right
walk_up
2017-11-10 02:21:31 +01:00
step_end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Movement_FollowCuratorNorth: @ 8218DA1
walk_up
walk_up
2017-11-10 02:21:31 +01:00
step_end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_EventScript_OldPainting:: @ 8218DA4
msgbox LilycoveCity_LilycoveMuseum_1F_Text_VeryOldPainting, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_EventScript_FantasyPainting:: @ 8218DAD
msgbox LilycoveCity_LilycoveMuseum_1F_Text_OddLandscapeFantasticScenery, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_EventScript_WomanPainting:: @ 8218DB6
msgbox LilycoveCity_LilycoveMuseum_1F_Text_PaintingOfBeautifulWoman, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_EventScript_LegendaryPokemonPainting:: @ 8218DBF
msgbox LilycoveCity_LilycoveMuseum_1F_Text_PaintingOfLegendaryPokemon, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_EventScript_GrassPokemonPainting:: @ 8218DC8
msgbox LilycoveCity_LilycoveMuseum_1F_Text_PaintingOfGrassPokemon, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_EventScript_BerryPainting:: @ 8218DD1
msgbox LilycoveCity_LilycoveMuseum_1F_Text_PaintingOfBerries, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_EventScript_BirdSculpture:: @ 8218DDA
msgbox LilycoveCity_LilycoveMuseum_Text_BirdPokemonSculptureReplica, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_EventScript_PokeBallSculpture:: @ 8218DE3
msgbox LilycoveCity_LilycoveMuseum_1F_Text_BigPokeBallCarvedFromStone, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_EventScript_StoneTablet:: @ 8218DEC
msgbox LilycoveCity_LilycoveMuseum_1F_Text_StoneTabletWithAncientText, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_EventScript_SchoolKidM:: @ 8218DF5
msgbox LilycoveCity_LilycoveMuseum_1F_Text_MustntForgetLoveForFineArts, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_EventScript_Artist1:: @ 8218DFE
msgbox LilycoveCity_LilycoveMuseum_1F_Text_ThisMuseumIsInspiration, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_EventScript_NinjaBoy:: @ 8218E07
msgbox LilycoveCity_LilycoveMuseum_1F_Text_ThisLadyIsPretty, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_EventScript_Woman1:: @ 8218E10
msgbox LilycoveCity_LilycoveMuseum_1F_Text_ThisPokemonIsAdorable, MSGBOX_SIGN
2017-11-10 02:21:31 +01:00
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_EventScript_Woman2:: @ 8218E19
msgbox LilycoveCity_LilycoveMuseum_1F_Text_HeardMuseumGotNewPaintings, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_EventScript_PsychicM:: @ 8218E22
msgbox LilycoveCity_LilycoveMuseum_1F_Text_CuratorHasBeenCheerful, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_EventScript_Artist2:: @ 8218E2B
2017-11-10 02:21:31 +01:00
lock
faceplayer
2019-11-10 16:56:35 +01:00
msgbox LilycoveCity_LilycoveMuseum_1F_Text_AimToSeeGreatPaintings, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
applymovement 8, Common_Movement_FaceOriginalDirection
2017-11-10 02:21:31 +01:00
waitmovement 0
release
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_EventScript_FatMan:: @ 8218E42
msgbox LilycoveCity_LilycoveMuseum_1F_Text_MuseumTouristDestination, MSGBOX_NPC
2017-11-10 02:21:31 +01:00
end
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Text_WelcomeToLilycoveMuseum: @ 8218E4B
2017-11-10 02:21:31 +01:00
.string "Welcome to LILYCOVE MUSEUM.\p"
.string "Please take the time to enjoy our\n"
.string "collection of fantastic artwork\l"
.string "featuring POKéMON.$"
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Text_ImCuratorHaveYouViewedOurPaintings: @ 8218EBC
2018-12-07 16:41:08 +01:00
.string "I'm the CURATOR of this MUSEUM of\n"
2017-11-10 02:21:31 +01:00
.string "fine arts.\p"
2018-12-07 16:41:08 +01:00
.string "It's heartening to see someone so\n"
2017-11-10 02:21:31 +01:00
.string "young as you in our MUSEUM.\p"
.string "Have you viewed our collection of\n"
.string "paintings already?$"
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Text_NotDisturbYouTakeYourTime: @ 8218F5C
2017-11-10 02:21:31 +01:00
.string "Ah, then let me not disturb you.\n"
.string "Please, do take your time.$"
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Text_HaveYouAnInterestInPaintings: @ 8218F98
2017-11-10 02:21:31 +01:00
.string "Oh? I do believe that you seem to\n"
.string "be a POKéMON TRAINER.\p"
.string "Have you an interest in paintings,\n"
.string "too?$"
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Text_HonoredYoudVisitInSpiteOfThat: @ 8218FF8
2017-11-10 02:21:31 +01:00
.string "I see…\p"
2018-12-07 16:41:08 +01:00
.string "I'm honored that you would visit\n"
2017-11-10 02:21:31 +01:00
.string "us in spite of that.$"
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Text_ExcellentCanYouComeWithMe: @ 8219035
2017-11-10 02:21:31 +01:00
.string "Ah, excellent!\n"
.string "You do like paintings!\p"
.string "Then, may I ask you to come with me?$"
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Text_VeryOldPainting: @ 8219080
2018-12-07 16:41:08 +01:00
.string "It's a very old painting.\n"
2017-11-10 02:21:31 +01:00
.string "The paint is peeling here and there.$"
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Text_OddLandscapeFantasticScenery: @ 82190BF
2018-12-07 16:41:08 +01:00
.string "It's an odd landscape with bizarre\n"
2017-11-10 02:21:31 +01:00
.string "and fantastic scenery.$"
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Text_PaintingOfBeautifulWoman: @ 82190F9
2018-12-07 16:41:08 +01:00
.string "It's a painting of a beautiful, smiling\n"
2017-11-10 02:21:31 +01:00
.string "woman with a POKéMON on her lap.$"
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Text_PaintingOfLegendaryPokemon: @ 8219142
2018-12-07 16:41:08 +01:00
.string "It's a painting of a legendary POKéMON\n"
2017-11-10 02:21:31 +01:00
.string "from long ago.\p"
.string "The artist painted this from\n"
.string "imagination.$"
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Text_PaintingOfGrassPokemon: @ 82191A2
2018-12-07 16:41:08 +01:00
.string "It's a painting of GRASS POKéMON\n"
2017-11-10 02:21:31 +01:00
.string "swaying in a breeze.\p"
2018-12-07 16:41:08 +01:00
.string "They appear to be enjoying the wind's\n"
2017-11-10 02:21:31 +01:00
.string "gentle caress.$"
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Text_PaintingOfBerries: @ 821920D
2018-12-07 16:41:08 +01:00
.string "It's a delicious-looking painting\n"
2017-11-10 02:21:31 +01:00
.string "of BERRIES.\p"
.string "This painting could make you hungry!$"
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_Text_BirdPokemonSculptureReplica: @ 8219260
2018-12-07 16:41:08 +01:00
.string "It's a replica of a famous sculpture.\p"
2017-11-10 02:21:31 +01:00
.string "It depicts an ancient BIRD POKéMON.$"
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Text_BigPokeBallCarvedFromStone: @ 82192AA
2018-12-07 16:41:08 +01:00
.string "It's a big POKé BALL carved from\n"
2017-11-10 02:21:31 +01:00
.string "a black stone.\p"
.string "It was apparently used in festivals\n"
.string "in the olden days.$"
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Text_StoneTabletWithAncientText: @ 8219311
2018-12-07 16:41:08 +01:00
.string "It's a huge stone tablet inscribed\n"
2017-11-10 02:21:31 +01:00
.string "with POKéMON and dense text in the\l"
.string "small characters of an ancient,\l"
.string "unreadable language.$"
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Text_WorksOfMagnificence: @ 821938C
.string "Hmmm…\n"
.string "What works of great magnificence…$"
2017-11-10 02:21:31 +01:00
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Text_MustntForgetLoveForFineArts: @ 82193B4
2017-11-10 02:21:31 +01:00
.string "Battling with POKéMON is fun,\n"
2018-12-07 16:41:08 +01:00
.string "I'll grant you that.\p"
.string "But one mustn't forget our love for\n"
2017-11-10 02:21:31 +01:00
.string "the fine arts.$"
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Text_ThisMuseumIsInspiration: @ 821941A
2017-11-10 02:21:31 +01:00
.string "This ART MUSEUM… Well, you could\n"
.string "see many fantastic paintings.\p"
.string "And the CURATOR is a wonderful person.\p"
.string "Among artists like myself, this MUSEUM\n"
.string "is an inspiration.$"
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Text_ThisLadyIsPretty: @ 82194BA
2017-11-10 02:21:31 +01:00
.string "This lady is pretty!\n"
2018-12-07 16:41:08 +01:00
.string "She's like Mommy!$"
2017-11-10 02:21:31 +01:00
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Text_ThisPokemonIsAdorable: @ 82194E1
2017-11-10 02:21:31 +01:00
.string "This POKéMON is adorable!\n"
.string "Just like our little boy!$"
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Text_HeardMuseumGotNewPaintings: @ 8219515
2018-12-07 16:41:08 +01:00
.string "I'd heard that this ART MUSEUM got\n"
2017-11-10 02:21:31 +01:00
.string "in some new paintings.\p"
.string "So, naturally I hurried over.\p"
.string "Are the new paintings up on\n"
.string "the second floor?$"
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Text_CuratorHasBeenCheerful: @ 821959B
2017-11-10 02:21:31 +01:00
.string "Lately, the CURATOR has been\n"
.string "unusually cheerful.\p"
.string "I bet something good happened for him.\n"
.string "Definitely.$"
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Text_AimToSeeGreatPaintings: @ 82195FF
2017-11-10 02:21:31 +01:00
.string "I aim to see many great paintings\n"
.string "here and learn from them.\p"
.string "I have this dream of one day having\n"
.string "my artwork exhibited here.$"
2019-11-10 16:56:35 +01:00
LilycoveCity_LilycoveMuseum_1F_Text_MuseumTouristDestination: @ 821967A
2017-11-10 02:21:31 +01:00
.string "The ART MUSEUM has become a favorite\n"
.string "tourist destination.\p"
2018-12-07 16:41:08 +01:00
.string "It's great for LILYCOVE…\n"
2017-11-10 02:21:31 +01:00
.string "No, great for the HOENN region!\p"
2018-12-07 16:41:08 +01:00
.string "This is what I've heard--a lone TRAINER\n"
2017-11-10 02:21:31 +01:00
.string "procured all the paintings upstairs.$"