2017-11-10 02:21:31 +01:00
|
|
|
LilycoveCity_Harbor_MapScripts:: @ 821E000
|
2019-04-22 22:31:51 +02:00
|
|
|
map_script MAP_SCRIPT_ON_TRANSITION, LilycoveCity_Harbor_OnTransition
|
2017-11-10 02:21:31 +01:00
|
|
|
.byte 0
|
|
|
|
|
2019-04-22 22:31:51 +02:00
|
|
|
LilycoveCity_Harbor_OnTransition: @ 821E006
|
2018-06-15 05:00:09 +02:00
|
|
|
setescapewarp MAP_LILYCOVE_CITY, 255, 12, 33
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_FerryAttendant:: @ 821E00F
|
2017-11-10 02:21:31 +01:00
|
|
|
lock
|
|
|
|
faceplayer
|
2019-09-19 23:26:25 +02:00
|
|
|
goto_if_unset FLAG_SYS_GAME_CLEAR, LilycoveCity_Harbor_EventScript_FerryUnavailable
|
|
|
|
call LilycoveCity_Harbor_EventScript_GetEonTicketState
|
|
|
|
call LilycoveCity_Harbor_EventScript_GetAuroraTicketState
|
|
|
|
call LilycoveCity_Harbor_EventScript_GetOldSeaMapState
|
|
|
|
call LilycoveCity_Harbor_EventScript_GetMysticTicketState
|
|
|
|
call LilycoveCity_Harbor_EventScript_GetFirstTimeShowingTicket
|
|
|
|
call LilycoveCity_Harbor_EventScript_GetHasTicketsState
|
2018-05-19 18:02:43 +02:00
|
|
|
compare VAR_TEMP_C, 2
|
2019-09-19 23:26:25 +02:00
|
|
|
goto_if_eq LilycoveCity_Harbor_EventScript_OldSeaMapFirstTime
|
2018-05-19 18:02:43 +02:00
|
|
|
compare VAR_TEMP_B, 1
|
2019-09-19 23:26:25 +02:00
|
|
|
goto_if_eq LilycoveCity_Harbor_EventScript_EonTicketFirstTime
|
2018-05-19 18:02:43 +02:00
|
|
|
compare VAR_TEMP_B, 2
|
2019-09-19 23:26:25 +02:00
|
|
|
goto_if_eq LilycoveCity_Harbor_EventScript_AuroraTicketFirstTime
|
2018-05-19 18:02:43 +02:00
|
|
|
compare VAR_TEMP_B, 4
|
2019-09-19 23:26:25 +02:00
|
|
|
goto_if_eq LilycoveCity_Harbor_EventScript_OldSeaMapFirstTime
|
|
|
|
compare VAR_TEMP_B, 8
|
|
|
|
goto_if_eq LilycoveCity_Harbor_EventScript_MysticTicketFirstTime
|
2018-05-19 18:02:43 +02:00
|
|
|
compare VAR_TEMP_B, 0
|
2019-09-19 23:26:25 +02:00
|
|
|
goto_if_ne LilycoveCity_Harbor_EventScript_MultipleEventTicketsFirstTime
|
|
|
|
goto LilycoveCity_Harbor_EventScript_NoFirstTimeEventTickets
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
@ First goto_if_eq is unnecessary; identical scripts
|
|
|
|
LilycoveCity_Harbor_EventScript_NoFirstTimeEventTickets:: @ 821E080
|
2018-05-19 18:02:43 +02:00
|
|
|
compare VAR_TEMP_A, 0
|
2019-09-19 23:26:25 +02:00
|
|
|
goto_if_eq LilycoveCity_Harbor_EventScript_NoEventTickets
|
|
|
|
msgbox LilycoveCity_Harbor_Text_MayISeeYourTicket, MSGBOX_DEFAULT
|
|
|
|
message LilycoveCity_Harbor_Text_FlashTicketWhereTo
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmessage
|
2019-09-19 23:26:25 +02:00
|
|
|
goto LilycoveCity_Harbor_EventScript_FerryRegularLocationSelect
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_FerryRegularLocationSelect:: @ 821E09F
|
2017-11-10 02:21:31 +01:00
|
|
|
setvar VAR_0x8004, 0
|
2019-09-19 23:26:25 +02:00
|
|
|
special ScriptMenu_CreateLilycoveSSTidalMultichoice
|
2017-11-10 02:21:31 +01:00
|
|
|
waitstate
|
2019-09-19 23:26:25 +02:00
|
|
|
special GetLilycoveSSTidalSelection
|
2017-11-10 02:21:31 +01:00
|
|
|
switch VAR_RESULT
|
2019-09-19 23:26:25 +02:00
|
|
|
case 0, LilycoveCity_Harbor_EventScript_GoToSlateport
|
|
|
|
case 1, LilycoveCity_Harbor_EventScript_GoToBattleFrontier
|
|
|
|
case 2, LilycoveCity_Harbor_EventScript_GoToSouthernIsland
|
|
|
|
case 3, LilycoveCity_Harbor_EventScript_GoToNavelRock
|
|
|
|
case 4, LilycoveCity_Harbor_EventScript_GoToBirthIsland
|
|
|
|
case 5, LilycoveCity_Harbor_EventScript_GoToFarawayIsland
|
|
|
|
case 6, LilycoveCity_Harbor_EventScript_ExitSailSelect
|
|
|
|
case MULTI_B_PRESSED, LilycoveCity_Harbor_EventScript_ExitSailSelect
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_GoToSouthernIsland:: @ 821E109
|
|
|
|
call LilycoveCity_Harbor_EventScript_BoardFerry
|
2018-06-15 05:00:09 +02:00
|
|
|
warp MAP_SOUTHERN_ISLAND_EXTERIOR, 255, 13, 22
|
2017-11-10 02:21:31 +01:00
|
|
|
waitstate
|
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_GoToNavelRock:: @ 821E119
|
|
|
|
call LilycoveCity_Harbor_EventScript_BoardFerry
|
2018-06-15 05:00:09 +02:00
|
|
|
warp MAP_NAVEL_ROCK_HARBOR, 255, 8, 4
|
2017-11-10 02:21:31 +01:00
|
|
|
waitstate
|
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_GoToBirthIsland:: @ 821E129
|
|
|
|
call LilycoveCity_Harbor_EventScript_BoardFerry
|
2018-06-15 05:00:09 +02:00
|
|
|
warp MAP_BIRTH_ISLAND_HARBOR, 255, 8, 4
|
2017-11-10 02:21:31 +01:00
|
|
|
waitstate
|
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_GoToFarawayIsland:: @ 821E139
|
|
|
|
call LilycoveCity_Harbor_EventScript_BoardFerry
|
2018-06-15 05:00:09 +02:00
|
|
|
warp MAP_FARAWAY_ISLAND_ENTRANCE, 255, 13, 38
|
2017-11-10 02:21:31 +01:00
|
|
|
waitstate
|
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_GoToSlateport:: @ 821E149
|
|
|
|
msgbox LilycoveCity_Harbor_Text_SlateportItIs, MSGBOX_YESNO
|
2019-11-02 17:34:53 +01:00
|
|
|
compare VAR_RESULT, NO
|
2019-09-19 23:26:25 +02:00
|
|
|
goto_if_eq LilycoveCity_Harbor_EventScript_FerryDestinationChangeMind
|
2018-08-08 10:37:12 +02:00
|
|
|
setvar VAR_PORTHOLE_STATE, 5
|
2019-09-19 23:26:25 +02:00
|
|
|
call LilycoveCity_Harbor_EventScript_BoardFerry
|
2018-06-15 05:00:09 +02:00
|
|
|
warp MAP_SS_TIDAL_CORRIDOR, 255, 1, 10
|
2017-11-10 02:21:31 +01:00
|
|
|
waitstate
|
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_GoToBattleFrontier:: @ 821E171
|
|
|
|
msgbox LilycoveCity_Harbor_Text_BattleFrontierItIs, MSGBOX_YESNO
|
2019-11-02 17:34:53 +01:00
|
|
|
compare VAR_RESULT, NO
|
2019-09-19 23:26:25 +02:00
|
|
|
goto_if_eq LilycoveCity_Harbor_EventScript_FerryDestinationChangeMind
|
|
|
|
call LilycoveCity_Harbor_EventScript_BoardFerry
|
2018-06-15 05:00:09 +02:00
|
|
|
warp MAP_BATTLE_FRONTIER_OUTSIDE_WEST, 255, 19, 67
|
2017-11-10 02:21:31 +01:00
|
|
|
waitstate
|
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_GetEonTicketState:: @ 821E194
|
2018-05-19 18:02:43 +02:00
|
|
|
setvar VAR_TEMP_E, 0
|
2019-02-23 02:21:26 +01:00
|
|
|
goto_if_unset FLAG_SYS_HAS_EON_TICKET, Common_EventScript_NopReturn
|
2017-11-10 02:21:31 +01:00
|
|
|
checkitem ITEM_EON_TICKET, 1
|
2017-12-21 20:47:52 +01:00
|
|
|
compare VAR_RESULT, 0
|
2019-02-23 02:21:26 +01:00
|
|
|
goto_if_eq Common_EventScript_NopReturn
|
2018-05-19 18:02:43 +02:00
|
|
|
setvar VAR_TEMP_E, 1
|
2019-02-23 02:21:26 +01:00
|
|
|
goto_if_set FLAG_HAS_EON_TICKET, Common_EventScript_NopReturn
|
2018-05-19 18:02:43 +02:00
|
|
|
setvar VAR_TEMP_E, 2
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_GetAuroraTicketState:: @ 821E1C6
|
2018-05-19 18:02:43 +02:00
|
|
|
setvar VAR_TEMP_D, 0
|
2019-02-23 02:21:26 +01:00
|
|
|
goto_if_unset FLAG_ENABLE_SHIP_BIRTH_ISLAND, Common_EventScript_NopReturn
|
2017-11-10 02:21:31 +01:00
|
|
|
checkitem ITEM_AURORA_TICKET, 1
|
2017-12-21 20:47:52 +01:00
|
|
|
compare VAR_RESULT, 0
|
2019-02-23 02:21:26 +01:00
|
|
|
goto_if_eq Common_EventScript_NopReturn
|
2018-05-19 18:02:43 +02:00
|
|
|
setvar VAR_TEMP_D, 1
|
2019-02-23 02:21:26 +01:00
|
|
|
goto_if_set FLAG_HAS_AURORA_TICKET, Common_EventScript_NopReturn
|
2018-05-19 18:02:43 +02:00
|
|
|
setvar VAR_TEMP_D, 2
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_GetOldSeaMapState:: @ 821E1F8
|
2018-05-19 18:02:43 +02:00
|
|
|
setvar VAR_TEMP_C, 0
|
2019-02-23 02:21:26 +01:00
|
|
|
goto_if_unset FLAG_ENABLE_SHIP_FARAWAY_ISLAND, Common_EventScript_NopReturn
|
2017-11-10 02:21:31 +01:00
|
|
|
checkitem ITEM_OLD_SEA_MAP, 1
|
2017-12-21 20:47:52 +01:00
|
|
|
compare VAR_RESULT, 0
|
2019-02-23 02:21:26 +01:00
|
|
|
goto_if_eq Common_EventScript_NopReturn
|
2018-05-19 18:02:43 +02:00
|
|
|
setvar VAR_TEMP_C, 1
|
2019-02-23 02:21:26 +01:00
|
|
|
goto_if_set FLAG_HAS_OLD_SEA_MAP, Common_EventScript_NopReturn
|
2018-05-19 18:02:43 +02:00
|
|
|
setvar VAR_TEMP_C, 2
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_GetMysticTicketState:: @ 821E22A
|
2018-05-19 18:02:43 +02:00
|
|
|
setvar VAR_TEMP_9, 0
|
2019-02-23 02:21:26 +01:00
|
|
|
goto_if_unset FLAG_ENABLE_SHIP_NAVEL_ROCK, Common_EventScript_NopReturn
|
2017-11-10 02:21:31 +01:00
|
|
|
checkitem ITEM_MYSTIC_TICKET, 1
|
2017-12-21 20:47:52 +01:00
|
|
|
compare VAR_RESULT, 0
|
2019-02-23 02:21:26 +01:00
|
|
|
goto_if_eq Common_EventScript_NopReturn
|
2018-05-19 18:02:43 +02:00
|
|
|
setvar VAR_TEMP_9, 1
|
2019-02-23 02:21:26 +01:00
|
|
|
goto_if_set FLAG_HAS_MYSTIC_TICKET, Common_EventScript_NopReturn
|
2018-05-19 18:02:43 +02:00
|
|
|
setvar VAR_TEMP_9, 2
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_GetFirstTimeShowingTicket:: @ 821E25C
|
2018-05-19 18:02:43 +02:00
|
|
|
setvar VAR_TEMP_B, 0
|
|
|
|
compare VAR_TEMP_E, 2
|
2019-09-19 23:26:25 +02:00
|
|
|
call_if_eq LilycoveCity_Harbor_EventScript_SetFirstTimeShowingEonTicket
|
2018-05-19 18:02:43 +02:00
|
|
|
compare VAR_TEMP_D, 2
|
2019-09-19 23:26:25 +02:00
|
|
|
call_if_eq LilycoveCity_Harbor_EventScript_SetFirstTimeShowingAuroraTicket
|
2018-05-19 18:02:43 +02:00
|
|
|
compare VAR_TEMP_C, 2
|
2019-09-19 23:26:25 +02:00
|
|
|
call_if_eq LilycoveCity_Harbor_EventScript_SetFirstTimeShowingOldSeaMap
|
2018-05-19 18:02:43 +02:00
|
|
|
compare VAR_TEMP_9, 2
|
2019-09-19 23:26:25 +02:00
|
|
|
call_if_eq LilycoveCity_Harbor_EventScript_SetFirstTimeShowingMysticTicket
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_SetFirstTimeShowingEonTicket:: @ 821E28E
|
2018-05-19 18:02:43 +02:00
|
|
|
addvar VAR_TEMP_B, 1
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_SetFirstTimeShowingAuroraTicket:: @ 821E294
|
2018-05-19 18:02:43 +02:00
|
|
|
addvar VAR_TEMP_B, 2
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_SetFirstTimeShowingOldSeaMap:: @ 821E29A
|
2018-05-19 18:02:43 +02:00
|
|
|
addvar VAR_TEMP_B, 4
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_SetFirstTimeShowingMysticTicket:: @ 821E2A0
|
2018-05-19 18:02:43 +02:00
|
|
|
addvar VAR_TEMP_B, 8
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_GetHasTicketsState:: @ 821E2A6
|
2018-05-19 18:02:43 +02:00
|
|
|
setvar VAR_TEMP_A, 0
|
|
|
|
compare VAR_TEMP_E, 1
|
2019-09-19 23:26:25 +02:00
|
|
|
call_if_eq LilycoveCity_Harbor_EventScript_SetHasEonTicket
|
2018-05-19 18:02:43 +02:00
|
|
|
compare VAR_TEMP_D, 1
|
2019-09-19 23:26:25 +02:00
|
|
|
call_if_eq LilycoveCity_Harbor_EventScript_SetHasAuroraTicket
|
2018-05-19 18:02:43 +02:00
|
|
|
compare VAR_TEMP_C, 1
|
2019-09-19 23:26:25 +02:00
|
|
|
call_if_eq LilycoveCity_Harbor_EventScript_SetHasOldSeaMap
|
2018-05-19 18:02:43 +02:00
|
|
|
compare VAR_TEMP_9, 1
|
2019-09-19 23:26:25 +02:00
|
|
|
call_if_eq LilycoveCity_Harbor_EventScript_SetHasMysticTicket
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_SetHasEonTicket:: @ 821E2D8
|
2018-05-19 18:02:43 +02:00
|
|
|
addvar VAR_TEMP_A, 1
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_SetHasAuroraTicket:: @ 821E2DE
|
2018-05-19 18:02:43 +02:00
|
|
|
addvar VAR_TEMP_A, 2
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_SetHasOldSeaMap:: @ 821E2E4
|
2018-05-19 18:02:43 +02:00
|
|
|
addvar VAR_TEMP_A, 4
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_SetHasMysticTicket:: @ 821E2EA
|
2018-05-19 18:02:43 +02:00
|
|
|
addvar VAR_TEMP_A, 8
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_EonTicketFirstTime:: @ 821E2F0
|
2019-01-02 22:12:43 +01:00
|
|
|
setflag FLAG_HAS_EON_TICKET
|
2019-09-19 23:26:25 +02:00
|
|
|
msgbox EventTicket_Text_ThatPass, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
closemessage
|
2019-09-19 23:26:25 +02:00
|
|
|
call LilycoveCity_Harbor_EventScript_GetEventTicketSailor
|
|
|
|
msgbox EventTicket_Text_ShowEonTicket, MSGBOX_DEFAULT
|
|
|
|
goto LilycoveCity_Harbor_EventScript_GoToSouthernIslandFirstTime
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_GoToSouthernIslandFirstTime:: @ 821E30F
|
2017-11-10 02:21:31 +01:00
|
|
|
closemessage
|
2019-09-19 23:26:25 +02:00
|
|
|
call LilycoveCity_Harbor_EventScript_BoardFerryWithSailor
|
2018-06-15 05:00:09 +02:00
|
|
|
warp MAP_SOUTHERN_ISLAND_EXTERIOR, 255, 13, 22
|
2017-11-10 02:21:31 +01:00
|
|
|
waitstate
|
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_AuroraTicketFirstTime:: @ 821E320
|
2019-01-02 22:12:43 +01:00
|
|
|
setflag FLAG_HAS_AURORA_TICKET
|
2019-09-19 23:26:25 +02:00
|
|
|
msgbox EventTicket_Text_ThatPass, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
closemessage
|
2019-09-19 23:26:25 +02:00
|
|
|
call LilycoveCity_Harbor_EventScript_GetEventTicketSailor
|
|
|
|
msgbox EventTicket_Text_OddTicketGetOnBoard, MSGBOX_DEFAULT
|
|
|
|
goto LilycoveCity_Harbor_EventScript_GoToBirthIslandFirstTime
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_GoToBirthIslandFirstTime:: @ 821E33F
|
2017-11-10 02:21:31 +01:00
|
|
|
closemessage
|
2019-09-19 23:26:25 +02:00
|
|
|
call LilycoveCity_Harbor_EventScript_BoardFerryWithSailor
|
2018-06-15 05:00:09 +02:00
|
|
|
warp MAP_BIRTH_ISLAND_HARBOR, 255, 8, 4
|
2017-11-10 02:21:31 +01:00
|
|
|
waitstate
|
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_OldSeaMapFirstTime:: @ 821E350
|
2019-01-02 22:12:43 +01:00
|
|
|
setflag FLAG_HAS_OLD_SEA_MAP
|
2019-09-19 23:26:25 +02:00
|
|
|
msgbox EventTicket_Text_ShowOldSeaMap, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
closemessage
|
2019-09-19 23:26:25 +02:00
|
|
|
call LilycoveCity_Harbor_EventScript_GetEventTicketSailor
|
|
|
|
msgbox EventTicket_Text_OldSeaMapTooFar, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
closemessage
|
2019-10-06 19:55:30 +02:00
|
|
|
applymovement 4, Common_Movement_WalkInPlaceFastestUp
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
|
|
|
playse SE_PIN
|
2019-02-23 02:09:14 +01:00
|
|
|
applymovement 4, Common_Movement_ExclamationMark
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
2019-02-23 02:09:14 +01:00
|
|
|
applymovement 4, Common_Movement_Delay48
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
2019-09-19 23:26:25 +02:00
|
|
|
compare VAR_FACING, DIR_NORTH
|
|
|
|
call_if_eq LilycoveCity_Harbor_EventScript_MoveSailorOutOfWayNorth
|
|
|
|
compare VAR_FACING, DIR_EAST
|
|
|
|
call_if_eq LilycoveCity_Harbor_EventScript_MoveSailorOutOfWayEast
|
2017-11-10 02:21:31 +01:00
|
|
|
addobject 5
|
2019-09-19 23:26:25 +02:00
|
|
|
compare VAR_FACING, DIR_NORTH
|
|
|
|
call_if_eq LilycoveCity_Harbor_EventScript_BrineyFaceSailorNorth
|
|
|
|
compare VAR_FACING, DIR_EAST
|
|
|
|
call_if_eq LilycoveCity_Harbor_EventScript_BrineyFaceSailorEast
|
|
|
|
msgbox EventTicket_Text_BrineyHoldOnASecond, MSGBOX_DEFAULT
|
|
|
|
compare VAR_FACING, DIR_NORTH
|
|
|
|
call_if_eq LilycoveCity_Harbor_EventScript_BrineyFacePlayerNorth
|
|
|
|
compare VAR_FACING, DIR_EAST
|
|
|
|
call_if_eq LilycoveCity_Harbor_EventScript_BrineyFacePlayerEast
|
|
|
|
msgbox EventTicket_Text_BrineyLetsSail, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
closemessage
|
2019-09-19 23:26:25 +02:00
|
|
|
compare VAR_FACING, DIR_NORTH
|
|
|
|
call_if_eq LilycoveCity_Harbor_EventScript_BoardFerryWithBrineyAndSailorNorth
|
|
|
|
compare VAR_FACING, DIR_EAST
|
|
|
|
call_if_eq LilycoveCity_Harbor_EventScript_BoardFerryWithBrineyAndSailorEast
|
2017-11-10 02:21:31 +01:00
|
|
|
setvar VAR_0x8004, 2
|
2019-09-19 23:26:25 +02:00
|
|
|
call Common_EventScript_FerryDepart
|
2018-06-15 05:00:09 +02:00
|
|
|
warp MAP_FARAWAY_ISLAND_ENTRANCE, 255, 13, 38
|
2017-11-10 02:21:31 +01:00
|
|
|
waitstate
|
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_GoToFarawayIslandFirstTime:: @ 821E40C
|
2017-11-10 02:21:31 +01:00
|
|
|
closemessage
|
2019-09-19 23:26:25 +02:00
|
|
|
call LilycoveCity_Harbor_EventScript_BoardFerryWithSailor
|
2018-06-15 05:00:09 +02:00
|
|
|
warp MAP_FARAWAY_ISLAND_ENTRANCE, 255, 13, 38
|
2017-11-10 02:21:31 +01:00
|
|
|
waitstate
|
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_MysticTicketFirstTime:: @ 821E41D
|
2019-01-02 22:12:43 +01:00
|
|
|
setflag FLAG_HAS_MYSTIC_TICKET
|
2019-09-19 23:26:25 +02:00
|
|
|
msgbox EventTicket_Text_ThatPass, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
closemessage
|
2019-09-19 23:26:25 +02:00
|
|
|
call LilycoveCity_Harbor_EventScript_GetEventTicketSailor
|
|
|
|
msgbox EventTicket_Text_OddTicketGetOnBoard, MSGBOX_DEFAULT
|
|
|
|
goto LilycoveCity_Harbor_EventScript_GoToNavelRockFirstTime
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_GoToNavelRockFirstTime:: @ 821E43C
|
2017-11-10 02:21:31 +01:00
|
|
|
closemessage
|
2019-09-19 23:26:25 +02:00
|
|
|
call LilycoveCity_Harbor_EventScript_BoardFerryWithSailor
|
2018-06-15 05:00:09 +02:00
|
|
|
warp MAP_NAVEL_ROCK_HARBOR, 255, 8, 4
|
2017-11-10 02:21:31 +01:00
|
|
|
waitstate
|
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_MultipleEventTicketsFirstTime:: @ 821E44D
|
|
|
|
msgbox EventTicket_Text_ThatPass, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
closemessage
|
2019-09-19 23:26:25 +02:00
|
|
|
call LilycoveCity_Harbor_EventScript_GetEventTicketSailor
|
|
|
|
message EventTicket_Text_OddTicketsWhereTo
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmessage
|
|
|
|
setvar VAR_0x8004, 1
|
2019-09-19 23:26:25 +02:00
|
|
|
special ScriptMenu_CreateLilycoveSSTidalMultichoice
|
2017-11-10 02:21:31 +01:00
|
|
|
waitstate
|
2019-09-19 23:26:25 +02:00
|
|
|
special GetLilycoveSSTidalSelection
|
2017-11-10 02:21:31 +01:00
|
|
|
switch VAR_RESULT
|
2019-09-19 23:26:25 +02:00
|
|
|
case 2, LilycoveCity_Harbor_EventScript_GoToSouthernIslandFirstTime
|
|
|
|
case 3, LilycoveCity_Harbor_EventScript_GoToNavelRockFirstTime
|
|
|
|
case 4, LilycoveCity_Harbor_EventScript_GoToBirthIslandFirstTime
|
|
|
|
case 5, LilycoveCity_Harbor_EventScript_GoToFarawayIslandFirstTime
|
|
|
|
case 6, LilycoveCity_Harbor_EventScript_ExitFirstTimeTicketSailSelect
|
|
|
|
case MULTI_B_PRESSED, LilycoveCity_Harbor_EventScript_ExitFirstTimeTicketSailSelect
|
2017-11-10 02:21:31 +01:00
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_ExitFirstTimeTicketSailSelect:: @ 821E4B6
|
|
|
|
msgbox EventTicket_Text_AsYouLike, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
closemessage
|
2019-10-06 19:55:30 +02:00
|
|
|
applymovement 4, Common_Movement_WalkInPlaceFastestUp
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
|
|
|
delay 30
|
|
|
|
removeobject 4
|
|
|
|
delay 30
|
2019-10-06 19:55:30 +02:00
|
|
|
applymovement 1, Common_Movement_WalkInPlaceFastestDown
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
2018-06-15 05:00:09 +02:00
|
|
|
showobjectat 1, MAP_LILYCOVE_CITY_HARBOR
|
2017-11-10 02:21:31 +01:00
|
|
|
delay 30
|
2019-09-19 23:26:25 +02:00
|
|
|
msgbox LilycoveCity_Harbor_Text_SailAnotherTime, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_GetEventTicketSailor:: @ 821E4EE
|
2019-10-06 19:55:30 +02:00
|
|
|
applymovement VAR_LAST_TALKED, Common_Movement_WalkInPlaceFastestUp
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
|
|
|
delay 30
|
2018-06-15 05:00:09 +02:00
|
|
|
hideobjectat VAR_LAST_TALKED, MAP_LILYCOVE_CITY_HARBOR
|
2017-11-10 02:21:31 +01:00
|
|
|
delay 60
|
|
|
|
addobject 4
|
|
|
|
delay 30
|
2019-02-23 02:09:14 +01:00
|
|
|
applymovement 4, Common_Movement_FacePlayer
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_BoardFerryWithSailor:: @ 821E514
|
2019-10-06 19:55:30 +02:00
|
|
|
applymovement 4, Common_Movement_WalkInPlaceFastestUp
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
|
|
|
delay 30
|
|
|
|
removeobject 4
|
2019-09-19 23:26:25 +02:00
|
|
|
compare VAR_FACING, DIR_NORTH
|
|
|
|
call_if_eq LilycoveCity_Harbor_EventScript_PlayerBoardFerryNorth
|
|
|
|
compare VAR_FACING, DIR_EAST
|
|
|
|
call_if_eq LilycoveCity_Harbor_EventScript_PlayerBoardFerryEast
|
2017-11-10 02:21:31 +01:00
|
|
|
delay 30
|
2018-12-24 22:31:24 +01:00
|
|
|
hideobjectat EVENT_OBJ_ID_PLAYER, MAP_PETALBURG_CITY
|
2017-11-10 02:21:31 +01:00
|
|
|
setvar VAR_0x8004, 2
|
2019-09-19 23:26:25 +02:00
|
|
|
call Common_EventScript_FerryDepart
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_FerryUnavailable:: @ 821E54D
|
|
|
|
msgbox LilycoveCity_Harbor_Text_FerryUnavailable, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_NoEventTickets:: @ 821E557
|
|
|
|
msgbox LilycoveCity_Harbor_Text_MayISeeYourTicket, MSGBOX_DEFAULT
|
|
|
|
message LilycoveCity_Harbor_Text_FlashTicketWhereTo
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmessage
|
2019-09-19 23:26:25 +02:00
|
|
|
goto LilycoveCity_Harbor_EventScript_FerryRegularLocationSelect
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
@ Unused
|
|
|
|
LilycoveCity_Harbor_EventScript_NoTicket:: @ 821E56B
|
|
|
|
msgbox LilycoveCity_Harbor_Text_NoTicket, MSGBOX_DEFAULT
|
2017-11-10 08:36:41 +01:00
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
@ Unused
|
|
|
|
LilycoveCity_Harbor_EventScript_GoToSlateportUnused:: @ 821E575
|
|
|
|
msgbox LilycoveCity_Harbor_Text_SlateportItIs, MSGBOX_YESNO
|
2019-11-02 17:34:53 +01:00
|
|
|
compare VAR_RESULT, NO
|
2019-09-19 23:26:25 +02:00
|
|
|
goto_if_eq LilycoveCity_Harbor_EventScript_FerryDestinationChangeMind
|
2018-08-08 10:37:12 +02:00
|
|
|
setvar VAR_PORTHOLE_STATE, 5
|
2019-09-19 23:26:25 +02:00
|
|
|
call LilycoveCity_Harbor_EventScript_BoardFerry
|
2018-06-15 05:00:09 +02:00
|
|
|
warp MAP_SS_TIDAL_CORRIDOR, 255, 1, 10
|
2017-11-10 08:36:41 +01:00
|
|
|
waitstate
|
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
@ Unused
|
|
|
|
LilycoveCity_Harbor_EventScript_GoToBattleFrontierUnused:: @ 821E59D
|
|
|
|
msgbox LilycoveCity_Harbor_Text_BattleFrontierItIs, MSGBOX_YESNO
|
2019-11-02 17:34:53 +01:00
|
|
|
compare VAR_RESULT, NO
|
2019-09-19 23:26:25 +02:00
|
|
|
goto_if_eq LilycoveCity_Harbor_EventScript_FerryDestinationChangeMind
|
|
|
|
call LilycoveCity_Harbor_EventScript_BoardFerry
|
2018-06-15 05:00:09 +02:00
|
|
|
warp MAP_BATTLE_FRONTIER_OUTSIDE_WEST, 255, 19, 67
|
2017-11-10 08:36:41 +01:00
|
|
|
waitstate
|
|
|
|
release
|
|
|
|
end
|
2017-11-10 02:21:31 +01:00
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_FerryDestinationChangeMind:: @ 821E5C0
|
|
|
|
message LilycoveCity_Harbor_Text_WhereWouldYouLikeToGo
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmessage
|
2019-09-19 23:26:25 +02:00
|
|
|
goto LilycoveCity_Harbor_EventScript_FerryRegularLocationSelect
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_BoardFerry:: @ 821E5CC
|
|
|
|
msgbox LilycoveCity_Harbor_Text_PleaseBoard, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
closemessage
|
2019-10-06 19:55:30 +02:00
|
|
|
applymovement VAR_LAST_TALKED, Common_Movement_WalkInPlaceFastestUp
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
|
|
|
delay 30
|
2018-06-15 05:00:09 +02:00
|
|
|
hideobjectat VAR_LAST_TALKED, MAP_LILYCOVE_CITY_HARBOR
|
2019-09-19 23:26:25 +02:00
|
|
|
compare VAR_FACING, DIR_NORTH
|
|
|
|
call_if_eq LilycoveCity_Harbor_EventScript_PlayerBoardFerryNorth
|
|
|
|
compare VAR_FACING, DIR_EAST
|
|
|
|
call_if_eq LilycoveCity_Harbor_EventScript_PlayerBoardFerryEast
|
2017-11-10 02:21:31 +01:00
|
|
|
delay 30
|
2018-12-24 22:31:24 +01:00
|
|
|
hideobjectat EVENT_OBJ_ID_PLAYER, MAP_PETALBURG_CITY
|
2017-11-10 02:21:31 +01:00
|
|
|
setvar VAR_0x8004, 2
|
2019-09-19 23:26:25 +02:00
|
|
|
call Common_EventScript_FerryDepart
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_PlayerBoardFerryEast:: @ 821E610
|
|
|
|
applymovement EVENT_OBJ_ID_PLAYER, LilycoveCity_Harbor_Movement_PlayerBoardFerryEast
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_PlayerBoardFerryNorth:: @ 821E61B
|
|
|
|
applymovement EVENT_OBJ_ID_PLAYER, LilycoveCity_Harbor_Movement_PlayerBoardFerryNorth
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_ExitSailSelect:: @ 821E626
|
|
|
|
msgbox LilycoveCity_Harbor_Text_SailAnotherTime, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_Movement_PlayerBoardFerryEast: @ 821E630
|
2018-06-14 01:19:19 +02:00
|
|
|
walk_right
|
|
|
|
walk_in_place_fastest_up
|
2017-11-10 02:21:31 +01:00
|
|
|
step_end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_Movement_PlayerBoardFerryNorth: @ 821E633
|
2018-06-14 01:19:19 +02:00
|
|
|
walk_up
|
2017-11-10 02:21:31 +01:00
|
|
|
step_end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
@ Unused
|
2017-11-10 08:36:41 +01:00
|
|
|
LilycoveCity_Harbor_Movement_21E635: @ 821E635
|
2018-06-14 01:19:19 +02:00
|
|
|
walk_up
|
2017-11-10 08:36:41 +01:00
|
|
|
step_end
|
2017-11-10 02:21:31 +01:00
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_Sailor:: @ 821E637
|
2017-11-10 02:21:31 +01:00
|
|
|
lock
|
|
|
|
faceplayer
|
2019-09-19 23:26:25 +02:00
|
|
|
goto_if_set FLAG_SYS_GAME_CLEAR, LilycoveCity_Harbor_EventScript_SailorFerryAvailable
|
|
|
|
msgbox LilycoveCity_Harbor_Text_SailorFerryUnavailable, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_SailorFerryAvailable:: @ 821E64C
|
|
|
|
msgbox LilycoveCity_Harbor_Text_SailorFerryAvailable, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_MoveSailorOutOfWayNorth:: @ 821E656
|
|
|
|
applymovement 4, LilycoveCity_Harbor_Movement_SailorOutOfWayNorth
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_MoveSailorOutOfWayEast:: @ 821E661
|
|
|
|
applymovement 4, LilycoveCity_Harbor_Movement_SailorOutOfWayEast
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_Movement_SailorOutOfWayNorth: @ 821E66C
|
2018-06-14 01:19:19 +02:00
|
|
|
walk_in_place_fastest_right
|
|
|
|
lock_facing_direction
|
|
|
|
walk_left
|
|
|
|
unlock_facing_direction
|
2017-11-10 02:21:31 +01:00
|
|
|
step_end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_Movement_SailorOutOfWayEast: @ 821E671
|
2018-06-14 01:19:19 +02:00
|
|
|
lock_facing_direction
|
|
|
|
walk_down
|
|
|
|
unlock_facing_direction
|
2017-11-10 02:21:31 +01:00
|
|
|
step_end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_BrineyFaceSailorNorth:: @ 821E675
|
2019-10-06 19:55:30 +02:00
|
|
|
applymovement 5, Common_Movement_WalkInPlaceFastestLeft
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_BrineyFaceSailorEast:: @ 821E680
|
2019-10-06 19:55:30 +02:00
|
|
|
applymovement 5, Common_Movement_WalkInPlaceFastestDown
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_BrineyFacePlayerNorth:: @ 821E68B
|
2019-10-06 19:55:30 +02:00
|
|
|
applymovement 5, Common_Movement_WalkInPlaceFastestDown
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_BrineyFacePlayerEast:: @ 821E696
|
2019-10-06 19:55:30 +02:00
|
|
|
applymovement 5, Common_Movement_WalkInPlaceFastestLeft
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_BoardFerryWithBrineyAndSailorNorth:: @ 821E6A1
|
|
|
|
applymovement 5, LilycoveCity_Harbor_Movement_BrineyBoardFerry
|
|
|
|
applymovement EVENT_OBJ_ID_PLAYER, LilycoveCity_Harbor_Movement_PlayerBoardWithBrineyNorth
|
|
|
|
applymovement 4, LilycoveCity_Harbor_Movement_SailorBoardWithBrineyNorth
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_EventScript_BoardFerryWithBrineyAndSailorEast:: @ 821E6BA
|
|
|
|
applymovement 5, LilycoveCity_Harbor_Movement_BrineyBoardFerry
|
|
|
|
applymovement EVENT_OBJ_ID_PLAYER, LilycoveCity_Harbor_Movement_PlayerBoardWithBrineyEast
|
|
|
|
applymovement 4, LilycoveCity_Harbor_Movement_SailorBoardWithBrineyEast
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
|
|
|
return
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_Movement_BrineyBoardFerry: @ 821E6D3
|
2018-06-14 01:19:19 +02:00
|
|
|
walk_in_place_fastest_up
|
|
|
|
delay_8
|
|
|
|
set_invisible
|
2017-11-10 02:21:31 +01:00
|
|
|
step_end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_Movement_PlayerBoardWithBrineyNorth: @ 821E6D7
|
2018-06-14 01:19:19 +02:00
|
|
|
delay_16
|
|
|
|
walk_up
|
|
|
|
delay_16
|
|
|
|
set_invisible
|
2017-11-10 02:21:31 +01:00
|
|
|
step_end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_Movement_SailorBoardWithBrineyNorth: @ 821E6DC
|
2018-06-14 01:19:19 +02:00
|
|
|
delay_16
|
|
|
|
delay_16
|
|
|
|
delay_16
|
|
|
|
walk_right
|
|
|
|
walk_in_place_fastest_up
|
|
|
|
delay_16
|
|
|
|
set_invisible
|
2017-11-10 02:21:31 +01:00
|
|
|
step_end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_Movement_PlayerBoardWithBrineyEast: @ 821E6E4
|
2018-06-14 01:19:19 +02:00
|
|
|
delay_16
|
|
|
|
walk_right
|
|
|
|
walk_in_place_fastest_up
|
|
|
|
delay_16
|
|
|
|
set_invisible
|
2017-11-10 02:21:31 +01:00
|
|
|
step_end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_Movement_SailorBoardWithBrineyEast: @ 821E6EA
|
2018-06-14 01:19:19 +02:00
|
|
|
delay_16
|
|
|
|
delay_16
|
|
|
|
delay_16
|
|
|
|
walk_up
|
|
|
|
delay_16
|
|
|
|
set_invisible
|
2017-11-10 02:21:31 +01:00
|
|
|
step_end
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_Text_FerryUnavailable: @ 821E6F1
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "I beg your pardon?\n"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "You're looking for a ship?\p"
|
|
|
|
.string "I'm sorry, the ferry service isn't\n"
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "available at present…$"
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_Text_MayISeeYourTicket: @ 821E758
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "Hello, are you here for the ferry?\n"
|
|
|
|
.string "May I see your TICKET?$"
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_Text_NoTicket: @ 821E792
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "{PLAYER} doesn't have the TICKET…\p"
|
|
|
|
.string "I'm terribly sorry.\p"
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "You must have a TICKET to board\n"
|
|
|
|
.string "the ferry.$"
|
2017-11-10 02:21:31 +01:00
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_Text_FlashTicketWhereTo: @ 821E7ED
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "{PLAYER} flashed the TICKET.\p"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "Perfect! That's all you need!\p"
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "And where would you like to go?$"
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_Text_SailAnotherTime: @ 821E842
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "Please sail with us another time!$"
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_Text_SlateportItIs: @ 821E864
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "SLATEPORT CITY it is, then!$"
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_Text_BattleFrontierItIs: @ 821E880
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "BATTLE FRONTIER it is, then!$"
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_Text_PleaseBoard: @ 821E89D
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "Please board the ferry and wait for\n"
|
|
|
|
.string "departure.$"
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_Text_WhereWouldYouLikeToGo: @ 821E8CC
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "Then, where would you like to go?$"
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_Text_SailorFerryUnavailable: @ 821E8EE
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "Until they finish making the ferry,\n"
|
|
|
|
.string "we sailors have nothing to do…\p"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "I wish they'd get a move on, the folks\n"
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "at the SHIPYARD in SLATEPORT.$"
|
|
|
|
|
2019-09-19 23:26:25 +02:00
|
|
|
LilycoveCity_Harbor_Text_SailorFerryAvailable: @ 821E976
|
2017-11-10 02:21:31 +01:00
|
|
|
.string "The ferry S.S. TIDAL is finally in\n"
|
|
|
|
.string "operation.\p"
|
|
|
|
.string "The folks at the SHIPYARD in SLATEPORT\n"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "must've worked extra hard.\p"
|
|
|
|
.string "Well, it's my turn to get busy now!$"
|