pokeemerald/data/maps/Route111_OldLadysRestStop/scripts.inc

51 lines
1.7 KiB
PHP
Raw Normal View History

2021-07-20 21:18:31 +02:00
Route111_OldLadysRestStop_MapScripts::
2019-04-05 01:28:37 +02:00
map_script MAP_SCRIPT_ON_TRANSITION, Route111_OldLadysRestStop_OnTransition
2017-11-10 02:21:31 +01:00
.byte 0
2021-07-20 21:18:31 +02:00
Route111_OldLadysRestStop_OnTransition:
2017-12-27 04:20:29 +01:00
setflag FLAG_LANDMARK_OLD_LADY_REST_SHOP
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
Route111_OldLadysRestStop_EventScript_OldLady::
2017-11-10 02:21:31 +01:00
lock
faceplayer
msgbox Route111_OldLadysRestStop_Text_RestUpHere, MSGBOX_YESNO
goto_if_eq VAR_RESULT, YES, Route111_OldLadysRestStop_EventScript_Rest
goto_if_eq VAR_RESULT, NO, Route111_OldLadysRestStop_EventScript_DeclineRest
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
Route111_OldLadysRestStop_EventScript_Rest::
msgbox Route111_OldLadysRestStop_Text_TakeYourTimeRestUp, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
closemessage
call Common_EventScript_OutOfCenterPartyHeal
msgbox Route111_OldLadysRestStop_Text_StillTiredTakeAnotherRest, MSGBOX_YESNO
goto_if_eq VAR_RESULT, YES, Route111_OldLadysRestStop_EventScript_Rest
goto_if_eq VAR_RESULT, NO, Route111_OldLadysRestStop_EventScript_DeclineRest
2017-11-10 02:21:31 +01:00
end
2021-07-20 21:18:31 +02:00
Route111_OldLadysRestStop_EventScript_DeclineRest::
msgbox Route111_OldLadysRestStop_Text_DontNeedToBeShy, MSGBOX_DEFAULT
2017-11-10 02:21:31 +01:00
release
end
2021-07-20 21:18:31 +02:00
Route111_OldLadysRestStop_Text_RestUpHere:
2017-11-10 02:21:31 +01:00
.string "Oh, dear, dear.\n"
2018-12-07 16:41:08 +01:00
.string "Aren't your POKéMON exhausted?\p"
.string "If you'd like, rest up here.\n"
.string "That's a fine idea! You should do that.$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
Route111_OldLadysRestStop_Text_TakeYourTimeRestUp:
2018-12-07 16:41:08 +01:00
.string "That's right.\n"
2017-11-10 02:21:31 +01:00
.string "Take your time and rest up!$"
2021-07-20 21:18:31 +02:00
Route111_OldLadysRestStop_Text_StillTiredTakeAnotherRest:
2017-11-10 02:21:31 +01:00
.string "Oh, dear, dear.\n"
.string "Are your POKéMON still tired?\p"
.string "You should take another rest here.\n"
2018-12-07 16:41:08 +01:00
.string "That's a fine idea. You should do that.$"
2017-11-10 02:21:31 +01:00
2021-07-20 21:18:31 +02:00
Route111_OldLadysRestStop_Text_DontNeedToBeShy:
2017-11-10 02:21:31 +01:00
.string "Is that so?\n"
2018-12-07 16:41:08 +01:00
.string "You don't need to be shy about it.$"
2017-11-10 02:21:31 +01:00