2022-05-19 19:14:13 +02:00
|
|
|
SootopolisCity_House6_MapScripts::
|
|
|
|
.byte 0
|
|
|
|
|
|
|
|
SootopolisCity_House6_EventScript_Woman::
|
|
|
|
lock
|
|
|
|
faceplayer
|
|
|
|
goto_if_set FLAG_RECEIVED_WAILMER_DOLL, SootopolisCity_House6_EventScript_ReceivedWailmerDoll
|
|
|
|
msgbox SootopolisCity_House6_Text_FirstGuestInWhileTakeDoll, MSGBOX_YESNO
|
|
|
|
call_if_eq VAR_RESULT, NO, SootopolisCity_House6_EventScript_DeclineWailmerDoll
|
|
|
|
msgbox SootopolisCity_House6_Text_TakeGoodCareOfIt, MSGBOX_DEFAULT
|
|
|
|
givedecoration DECOR_WAILMER_DOLL
|
|
|
|
goto_if_eq VAR_RESULT, FALSE, SootopolisCity_House6_EventScript_NoRoomForWailmerDoll
|
|
|
|
setflag FLAG_RECEIVED_WAILMER_DOLL
|
|
|
|
release
|
|
|
|
end
|
|
|
|
|
|
|
|
SootopolisCity_House6_EventScript_DeclineWailmerDoll::
|
|
|
|
msgbox SootopolisCity_House6_Text_DontWantThisDoll, MSGBOX_DEFAULT
|
|
|
|
release
|
|
|
|
end
|
|
|
|
|
|
|
|
SootopolisCity_House6_EventScript_ReceivedWailmerDoll::
|
|
|
|
msgbox SootopolisCity_House6_Text_LovePlushDolls, MSGBOX_DEFAULT
|
|
|
|
release
|
|
|
|
end
|
|
|
|
|
|
|
|
SootopolisCity_House6_EventScript_NoRoomForWailmerDoll::
|
|
|
|
bufferdecorationname STR_VAR_2, DECOR_WAILMER_DOLL
|
|
|
|
msgbox gText_NoRoomLeftForAnother, MSGBOX_DEFAULT
|
|
|
|
msgbox SootopolisCity_House6_Text_IllHoldItForYou, MSGBOX_DEFAULT
|
|
|
|
release
|
|
|
|
end
|
|
|
|
|
|
|
|
SootopolisCity_House6_Text_FirstGuestInWhileTakeDoll:
|
|
|
|
.string "Hello! You're our first guest in\n"
|
|
|
|
.string "a good while.\p"
|
|
|
|
.string "You've brightened up my day, so I'll\n"
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "give you a big Wailmer Doll.$"
|
2022-05-19 19:14:13 +02:00
|
|
|
|
|
|
|
SootopolisCity_House6_Text_TakeGoodCareOfIt:
|
|
|
|
.string "Take good care of it!$"
|
|
|
|
|
|
|
|
SootopolisCity_House6_Text_IllHoldItForYou:
|
|
|
|
.string "Oh, you want it, but not right now?\n"
|
|
|
|
.string "Okay, then I'll hold it for you.$"
|
|
|
|
|
|
|
|
SootopolisCity_House6_Text_DontWantThisDoll:
|
|
|
|
.string "Are you sure?\n"
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "You don't want this Doll?$"
|
2022-05-19 19:14:13 +02:00
|
|
|
|
|
|
|
SootopolisCity_House6_Text_LovePlushDolls:
|
2022-08-21 22:56:26 +02:00
|
|
|
.string "I love plush Dolls!$"
|
2022-05-19 19:14:13 +02:00
|
|
|
|