1
0
mirror of https://github.com/Ninjdai1/pokeemerald.git synced 2025-02-24 13:15:28 +01:00

803 lines
20 KiB
PHP
Raw Normal View History

@ Sailing to and from Dewford uses local IDs from different maps
@ e.g. Route 104's sail to Dewford script references local IDs from Dewford's map
@ All of these local IDs are labeled here
.equ LOCALID_BRINEY_DEWFORD, 2
.equ LOCALID_BOAT_DEWFORD, 4
.equ LOCALID_BOAT_R109, 1
.equ LOCALID_BRINEY_R109, 2
.equ LOCALID_BOAT_R104, 7
.equ LOCALID_BRINEY_R104, 8
2021-07-20 15:18:31 -04:00
DewfordTown_MapScripts::
map_script MAP_SCRIPT_ON_TRANSITION, DewfordTown_OnTransition
2017-11-09 19:21:31 -06:00
.byte 0
2021-07-20 15:18:31 -04:00
DewfordTown_OnTransition:
2017-11-09 19:21:31 -06:00
setflag FLAG_VISITED_DEWFORD_TOWN
end
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_Briney::
2017-11-09 19:21:31 -06:00
lock
faceplayer
2019-11-07 16:36:48 -05:00
goto_if_unset FLAG_DELIVERED_STEVEN_LETTER, DewfordTown_EventScript_ReturnToPetalburgPrompt
message DewfordTown_Text_WhereAreWeBound
2017-11-09 19:21:31 -06:00
waitmessage
2021-03-31 00:35:56 -04:00
multichoicedefault 21, 6, MULTI_BRINEY_ON_DEWFORD, 2, FALSE
2017-11-09 19:21:31 -06:00
switch VAR_RESULT
2019-11-07 16:36:48 -05:00
case 0, DewfordTown_EventScript_ChoosePetalburg
case 1, DewfordTown_EventScript_ChooseSlateport
case 2, DewfordTown_EventScript_CancelSailSelect
case MULTI_B_PRESSED, DewfordTown_EventScript_CancelSailSelect
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_ChoosePetalburg::
2019-11-07 16:36:48 -05:00
msgbox DewfordTown_Text_PetalburgWereSettingSail, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
2019-11-07 16:36:48 -05:00
goto DewfordTown_EventScript_SailToPetalburg
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_ChooseSlateport::
2019-11-07 16:36:48 -05:00
msgbox DewfordTown_Text_SlateportWereSettingSail, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
2019-11-07 16:36:48 -05:00
goto DewfordTown_EventScript_SailToSlateport
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_CancelSailSelect::
2019-11-07 16:36:48 -05:00
msgbox DewfordTown_Text_JustTellMeWhenYouNeedToSetSail, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
release
end
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_ReturnToPetalburgPrompt::
2019-11-07 16:36:48 -05:00
msgbox DewfordTown_Text_SetSailBackToPetalburg, MSGBOX_YESNO
goto_if_eq VAR_RESULT, YES, DewfordTown_EventScript_SailBackToPetalburg
2019-11-07 16:36:48 -05:00
msgbox DewfordTown_Text_GoDeliverIllBeWaiting, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_SailBackToPetalburg::
2019-11-07 16:36:48 -05:00
msgbox DewfordTown_Text_PetalburgWereSettingSail2, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
2019-11-07 16:36:48 -05:00
goto DewfordTown_EventScript_SailToPetalburg
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_Woman::
2019-11-07 16:36:48 -05:00
msgbox DewfordTown_Text_TinyIslandCommunity, MSGBOX_NPC
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_TownSign::
2019-11-07 16:36:48 -05:00
msgbox DewfordTown_Text_TownSign, MSGBOX_SIGN
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_GymSign::
2019-11-07 16:36:48 -05:00
msgbox DewfordTown_Text_GymSign, MSGBOX_SIGN
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_HallSign::
2019-11-07 16:36:48 -05:00
msgbox DewfordTown_Text_HallSign, MSGBOX_SIGN
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_OldRodFisherman::
2017-11-09 19:21:31 -06:00
lock
faceplayer
2019-11-07 16:36:48 -05:00
goto_if_set FLAG_RECEIVED_OLD_ROD, DewfordTown_EventScript_HowsFishing
msgbox DewfordTown_Text_GettingItchToFish, MSGBOX_YESNO
goto_if_eq VAR_RESULT, YES, DewfordTown_EventScript_GiveOldRod
goto_if_eq VAR_RESULT, NO, DewfordTown_EventScript_NotGettingItchToFish
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_GiveOldRod::
2019-11-07 16:36:48 -05:00
msgbox DewfordTown_Text_GiveYouOneOfMyRods, MSGBOX_DEFAULT
giveitem ITEM_OLD_ROD
2019-01-02 21:12:43 +00:00
setflag FLAG_RECEIVED_OLD_ROD
2019-11-07 16:36:48 -05:00
msgbox DewfordTown_Text_ThrowInFishingAdvice, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_NotGettingItchToFish::
2019-11-07 16:36:48 -05:00
msgbox DewfordTown_Text_ThatsTooBadThen, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_HowsFishing::
2019-11-07 16:36:48 -05:00
message DewfordTown_Text_HowsYourFishing
2017-11-09 19:21:31 -06:00
waitmessage
2021-03-31 00:35:56 -04:00
multichoice 20, 8, MULTI_HOWS_FISHING, TRUE
goto_if_eq VAR_RESULT, 0, DewfordTown_EventScript_FishingExcellent
goto_if_eq VAR_RESULT, 1, DewfordTown_EventScript_FishingNotSoGood
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_FishingExcellent::
2019-11-07 16:36:48 -05:00
msgbox DewfordTown_Text_GreatHaulInSomeBigOnes, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_FishingNotSoGood::
2019-11-07 16:36:48 -05:00
msgbox DewfordTown_Text_FishingAdvice, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_SailToPetalburg::
2019-10-26 11:16:04 -05:00
call EventScript_BackupMrBrineyLocation
2021-11-17 17:15:45 -05:00
setobjectsubpriority LOCALID_BRINEY_DEWFORD, MAP_DEWFORD_TOWN, 0
setobjectsubpriority OBJ_EVENT_ID_PLAYER, MAP_DEWFORD_TOWN, 0
applymovement LOCALID_BRINEY_DEWFORD, DewfordTown_Movement_BrineyBoardBoat
2017-11-09 19:21:31 -06:00
waitmovement 0
removeobject LOCALID_BRINEY_DEWFORD
applymovement OBJ_EVENT_ID_PLAYER, DewfordTown_Movement_PlayerBoardBoat
2017-11-09 19:21:31 -06:00
waitmovement 0
hideobjectat OBJ_EVENT_ID_PLAYER, MAP_DEWFORD_TOWN
2019-08-14 23:38:42 -04:00
call Common_EventScript_PlayBrineysBoatMusic
applymovement LOCALID_BOAT_DEWFORD, DewfordTown_Movement_SailToPetalburg
applymovement OBJ_EVENT_ID_PLAYER, DewfordTown_Movement_SailToPetalburg
2017-11-09 19:21:31 -06:00
waitmovement 0
showobjectat OBJ_EVENT_ID_PLAYER, MAP_ROUTE104
2019-08-14 23:38:42 -04:00
call Common_EventScript_StopBrineysBoatMusic
applymovement OBJ_EVENT_ID_PLAYER, DewfordTown_Movement_ExitBoatPetalburg
2017-11-09 19:21:31 -06:00
waitmovement 0
showobjectat OBJ_EVENT_ID_PLAYER, MAP_ROUTE104
2018-10-19 13:04:47 -04:00
clearflag FLAG_HIDE_BRINEYS_HOUSE_MR_BRINEY
clearflag FLAG_HIDE_BRINEYS_HOUSE_PEEKO
clearflag FLAG_HIDE_ROUTE_104_MR_BRINEY_BOAT
setflag FLAG_HIDE_MR_BRINEY_BOAT_DEWFORD_TOWN
hideobjectat LOCALID_BOAT_DEWFORD, MAP_DEWFORD_TOWN
2019-08-03 14:12:48 -04:00
setvar VAR_BOARD_BRINEY_BOAT_STATE, 2
2021-11-17 17:15:45 -05:00
resetobjectsubpriority OBJ_EVENT_ID_PLAYER, MAP_DEWFORD_TOWN
warp MAP_ROUTE104_MR_BRINEYS_HOUSE, 5, 4
copyvar VAR_BRINEY_LOCATION, VAR_0x8008
2017-11-09 19:21:31 -06:00
waitstate
release
end
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_SailToSlateport::
2019-10-26 11:16:04 -05:00
call EventScript_BackupMrBrineyLocation
2021-11-17 17:15:45 -05:00
setobjectsubpriority LOCALID_BRINEY_DEWFORD, MAP_DEWFORD_TOWN, 0
setobjectsubpriority OBJ_EVENT_ID_PLAYER, MAP_DEWFORD_TOWN, 1
applymovement LOCALID_BRINEY_DEWFORD, DewfordTown_Movement_BrineyBoardBoat
2017-11-09 19:21:31 -06:00
waitmovement 0
removeobject LOCALID_BRINEY_DEWFORD
applymovement OBJ_EVENT_ID_PLAYER, DewfordTown_Movement_PlayerBoardBoat
2017-11-09 19:21:31 -06:00
waitmovement 0
hideobjectat OBJ_EVENT_ID_PLAYER, MAP_DEWFORD_TOWN
2019-08-14 23:38:42 -04:00
call Common_EventScript_PlayBrineysBoatMusic
applymovement LOCALID_BOAT_DEWFORD, DewfordTown_Movement_SailToSlateport
applymovement OBJ_EVENT_ID_PLAYER, DewfordTown_Movement_SailToSlateport
2017-11-09 19:21:31 -06:00
waitmovement 0
2019-08-14 23:38:42 -04:00
call Common_EventScript_StopBrineysBoatMusic
showobjectat OBJ_EVENT_ID_PLAYER, MAP_ROUTE109
applymovement OBJ_EVENT_ID_PLAYER, DewfordTown_Movement_ExitBoatSlateport
2017-11-09 19:21:31 -06:00
waitmovement 0
setobjectxyperm LOCALID_BRINEY_R109, 21, 26
addobject LOCALID_BRINEY_R109
2021-11-17 17:15:45 -05:00
setobjectsubpriority LOCALID_BRINEY_R109, MAP_ROUTE109, 0
applymovement LOCALID_BRINEY_R109, DewfordTown_Movement_BrineyExitBoat
2017-11-09 19:21:31 -06:00
waitmovement 0
2019-10-26 11:16:04 -05:00
clearflag FLAG_HIDE_ROUTE_109_MR_BRINEY
addobject LOCALID_BOAT_R109
2018-10-19 13:04:47 -04:00
clearflag FLAG_HIDE_ROUTE_109_MR_BRINEY_BOAT
setflag FLAG_HIDE_MR_BRINEY_BOAT_DEWFORD_TOWN
hideobjectat LOCALID_BOAT_DEWFORD, MAP_DEWFORD_TOWN
2019-11-07 16:36:48 -05:00
call_if_unset FLAG_DELIVERED_DEVON_GOODS, DewfordTown_EventScript_LandedSlateportDeliverGoods
call_if_set FLAG_DELIVERED_DEVON_GOODS, DewfordTown_EventScript_LandedSlateport
2017-11-09 19:21:31 -06:00
closemessage
copyvar VAR_BRINEY_LOCATION, VAR_0x8008
2021-11-17 17:15:45 -05:00
resetobjectsubpriority OBJ_EVENT_ID_PLAYER, MAP_DEWFORD_TOWN
resetobjectsubpriority LOCALID_BRINEY_R109, MAP_ROUTE109
copyobjectxytoperm LOCALID_BRINEY_R109
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_LandedSlateportDeliverGoods::
2019-10-26 11:16:04 -05:00
msgbox DewfordTown_Text_BrineyLandedInSlateportDeliverGoods, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_LandedSlateport::
2019-10-26 11:16:04 -05:00
msgbox DewfordTown_Text_BrineyLandedInSlateport, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
DewfordTown_Movement_SailToPetalburg:
walk_up
walk_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_up
walk_up
walk_left
walk_left
walk_fast_left
walk_fast_left
walk_fast_left
walk_fast_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_fast_left
walk_fast_left
walk_fast_left
walk_fast_left
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_left
walk_fast_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_faster_left
walk_fast_left
walk_fast_left
walk_fast_up
walk_fast_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_up
walk_up
walk_up
walk_up
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
DewfordTown_Movement_SailToSlateport:
walk_right
walk_fast_right
walk_fast_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_faster_right
walk_fast_right
walk_fast_right
walk_fast_up
walk_fast_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_faster_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
walk_fast_up
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
DewfordTown_Movement_PlayerBoardBoat:
walk_right
walk_up
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
DewfordTown_Movement_ExitBoatPetalburg:
walk_up
walk_up
walk_up
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
DewfordTown_Movement_ExitBoatSlateport:
walk_up
walk_up
walk_up
walk_in_place_faster_down
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
DewfordTown_Movement_BrineyBoardBoat:
walk_up
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
DewfordTown_Movement_BrineyExitBoat:
walk_up
walk_up
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_TrendyPhraseBoy::
2017-11-09 19:21:31 -06:00
lock
faceplayer
2019-11-07 16:36:48 -05:00
call Common_EventScript_BufferTrendyPhrase
msgbox DewfordTown_Text_XIsTheBiggestHappeningThingRight, MSGBOX_YESNO
goto_if_eq VAR_RESULT, YES, DewfordTown_EventScript_ConfirmTrendyPhrase
goto_if_eq VAR_RESULT, NO, DewfordTown_EventScript_RejectTrendyPhrase
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_ConfirmTrendyPhrase::
2019-11-07 16:36:48 -05:00
msgbox DewfordTown_Text_YeahDefinitionOfInRightNow, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_RejectTrendyPhrase::
2019-11-07 16:36:48 -05:00
msgbox DewfordTown_Text_TellMeWhatsNewAndIn, MSGBOX_DEFAULT
2019-02-27 12:45:31 -06:00
setvar VAR_0x8004, EASY_CHAT_TYPE_TRENDY_PHRASE
call Common_ShowEasyChatScreen
2017-11-09 19:21:31 -06:00
lock
faceplayer
goto_if_eq VAR_RESULT, TRUE, DewfordTown_EventScript_GiveNewTrendyPhrase
goto_if_eq VAR_RESULT, FALSE, DewfordTown_EventScript_CancelNewTrendyPhrase
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_GiveNewTrendyPhrase::
incrementgamestat GAME_STAT_STARTED_TRENDS
goto_if_eq VAR_0x8004, FALSE, DewfordTown_EventScript_PhraseNotTrendyEnough
2019-11-07 16:36:48 -05:00
msgbox DewfordTown_Text_OfCourseIKnowAboutThat, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_CancelNewTrendyPhrase::
2019-11-07 16:36:48 -05:00
msgbox DewfordTown_Text_HearOfAnyTrendsComeShareWithMe, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
DewfordTown_EventScript_PhraseNotTrendyEnough::
2019-11-07 16:36:48 -05:00
msgbox DewfordTown_Text_XHuhIThinkYIsCool, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
DewfordTown_Text_TinyIslandCommunity:
2017-11-09 19:21:31 -06:00
.string "DEWFORD is a tiny island community.\n"
.string "If something gets trendy here,\l"
.string "everyone picks up on it right away.$"
2021-07-20 15:18:31 -04:00
DewfordTown_Text_TownSign:
2017-11-09 19:21:31 -06:00
.string "DEWFORD TOWN\n"
.string "“A tiny island in the blue sea.”$"
2021-07-20 15:18:31 -04:00
DewfordTown_Text_GymSign:
2017-11-09 19:21:31 -06:00
.string "DEWFORD TOWN POKéMON GYM\n"
.string "LEADER: BRAWLY\l"
.string "“A big wave in fighting!”$"
2021-07-20 15:18:31 -04:00
DewfordTown_Text_HallSign:
2017-11-09 19:21:31 -06:00
.string "DEWFORD HALL\n"
2018-12-07 10:41:08 -05:00
.string "“Everyone's information exchange!”$"
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
Route104_Text_LandedInDewfordDeliverLetter:
.string "MR. BRINEY: Ahoy!\n"
2018-12-07 10:41:08 -05:00
.string "We've hit land in DEWFORD.\p"
.string "I suppose you're off to deliver that\n"
.string "LETTER to, who was it now, STEVEN!$"
2021-07-20 15:18:31 -04:00
DewfordTown_Text_SetSailBackToPetalburg:
.string "MR. BRINEY: Have you delivered your\n"
.string "LETTER?\p"
.string "Or were you meaning to sail back to\n"
.string "PETALBURG?$"
2021-07-20 15:18:31 -04:00
DewfordTown_Text_PetalburgWereSettingSail2:
.string "MR. BRINEY: PETALBURG it is, then!\p"
.string "Anchors aweigh!\n"
2018-12-07 10:41:08 -05:00
.string "PEEKO, we're setting sail, my darling!$"
2021-07-20 15:18:31 -04:00
DewfordTown_Text_GoDeliverIllBeWaiting:
.string "MR. BRINEY: Then you go on and deliver\n"
2018-12-07 10:41:08 -05:00
.string "the LETTER. I'll be waiting.$"
2021-07-20 15:18:31 -04:00
DewfordTown_Text_BrineyLandedInDewford:
.string "MR. BRINEY: Ahoy!\n"
2018-12-07 10:41:08 -05:00
.string "We've hit land in DEWFORD!\p"
.string "You just go on and tell me whenever\n"
.string "you want to set sail again!$"
2021-07-20 15:18:31 -04:00
DewfordTown_Text_WhereAreWeBound:
.string "MR. BRINEY: Ahoy!\n"
2018-12-07 10:41:08 -05:00
.string "For you, I'll go out to sea anytime!\p"
.string "Now, my friend, where are we bound?$"
2021-07-20 15:18:31 -04:00
DewfordTown_Text_PetalburgWereSettingSail:
.string "MR. BRINEY: PETALBURG, is it?\p"
.string "Anchors aweigh!\n"
2018-12-07 10:41:08 -05:00
.string "PEEKO, we're setting sail, my darling!$"
2021-07-20 15:18:31 -04:00
DewfordTown_Text_SlateportWereSettingSail:
.string "MR. BRINEY: SLATEPORT, is it?\p"
.string "Anchors aweigh!\n"
2018-12-07 10:41:08 -05:00
.string "PEEKO, we're setting sail, my darling!$"
2021-07-20 15:18:31 -04:00
DewfordTown_Text_JustTellMeWhenYouNeedToSetSail:
.string "MR. BRINEY: You just tell me whenever\n"
.string "you need to set sail again!$"
2021-07-20 15:18:31 -04:00
DewfordTown_Text_GettingItchToFish:
.string "This is a renowned fishing spot.\n"
.string "Are you getting the itch to fish?$"
2021-07-20 15:18:31 -04:00
DewfordTown_Text_GiveYouOneOfMyRods:
.string "I hear you, and I like what\n"
2018-12-07 10:41:08 -05:00
.string "you're saying!\p"
.string "I'll give you one of my fishing RODS.$"
2021-07-20 15:18:31 -04:00
DewfordTown_Text_ThrowInFishingAdvice:
2018-12-07 10:41:08 -05:00
.string "And, as an added bonus, I'll even throw\n"
.string "in a little fishing advice!\p"
.string "First, you want to face the water,\n"
.string "then use the ROD.\p"
.string "Focus your mind…\n"
.string "If you get a bite, pull on the ROD.\p"
.string "Sometimes you can snag something\n"
.string "immediately, but with bigger catches,\l"
.string "you need to time the pulls on your ROD\l"
.string "to haul them in.$"
2021-07-20 15:18:31 -04:00
DewfordTown_Text_ThatsTooBadThen:
.string "Oh, is that so?\n"
2018-12-07 10:41:08 -05:00
.string "That's too bad, then.$"
2021-07-20 15:18:31 -04:00
DewfordTown_Text_HowsYourFishing:
.string "Yo!\n"
2018-12-07 10:41:08 -05:00
.string "How's your fishing?$"
2021-07-20 15:18:31 -04:00
DewfordTown_Text_GreatHaulInSomeBigOnes:
2018-12-07 10:41:08 -05:00
.string "Is that right! That's great!\n"
.string "Haul in some big ones!$"
2021-07-20 15:18:31 -04:00
DewfordTown_Text_FishingAdvice:
2018-12-07 10:41:08 -05:00
.string "Oh, hey, don't get down on yourself!\n"
.string "I'll give you a little fishing advice.\p"
.string "First, you want to face the water,\n"
.string "then use the ROD.\p"
.string "Focus your mind…\n"
.string "If you get a bite, pull the ROD.\p"
.string "Sometimes you can snag something\n"
.string "immediately, but with bigger catches,\l"
.string "you need to time the pulls on your ROD\l"
.string "to haul them in.$"
2021-07-20 15:18:31 -04:00
DewfordTown_Text_XIsTheBiggestHappeningThingRight:
2018-12-07 10:41:08 -05:00
.string "I like what's hip, happening, and trendy.\n"
.string "I'm always checking it out.\p"
.string "Listen, have you heard about this new\n"
.string "{STR_VAR_1}”?\p"
2018-12-07 10:41:08 -05:00
.string "That's right!\n"
.string "Of course you know!\p"
.string "I mean, sheesh,\n"
.string "{STR_VAR_1}”…\l"
2018-12-07 10:41:08 -05:00
.string "It's the hottest thing in cool!\p"
.string "Wherever you're from,\n"
.string "{STR_VAR_1}”\l"
.string "is the biggest happening thing, right?$"
2021-07-20 15:18:31 -04:00
DewfordTown_Text_TellMeWhatsNewAndIn:
.string "Hunh?\n"
2018-12-07 10:41:08 -05:00
.string "It's not the hip and happening thing?\p"
.string "Well, hey, you have to tell me,\n"
2018-12-07 10:41:08 -05:00
.string "what's new and what's “in”?$"
2021-07-20 15:18:31 -04:00
DewfordTown_Text_OfCourseIKnowAboutThat:
.string "Hunh?\n"
.string "{STR_VAR_2}”?\p"
.string "… …\p"
2018-12-07 10:41:08 -05:00
.string "…Uh… Yeah! That's right!\n"
.string "Yeah, I knew that! Knew it all along!\p"
.string "Of course I know about that!\n"
.string "{STR_VAR_2},” right?\p"
2018-12-07 10:41:08 -05:00
.string "Yeah, that's it, it's there!\n"
.string "Isn't “{STR_VAR_2}”\l"
.string "the coolest, or what?\p"
2018-12-07 10:41:08 -05:00
.string "It's the hippest thing in hip.\n"
.string "You think I'd not know about it?\p"
.string "{STR_VAR_1}”…\n"
2018-12-07 10:41:08 -05:00
.string "It's, like, so five minutes ago.\p"
.string "Now, “{STR_VAR_2}” is\n"
2018-12-07 10:41:08 -05:00
.string "what's vital and in tune with the times!$"
2021-07-20 15:18:31 -04:00
DewfordTown_Text_XHuhIThinkYIsCool:
.string "Hmm…\n"
.string "{STR_VAR_2},” huh?\p"
.string "But personally, I think\n"
.string "{STR_VAR_1}”\l"
2018-12-07 10:41:08 -05:00
.string "is what's real in cool.$"
2021-07-20 15:18:31 -04:00
DewfordTown_Text_HearOfAnyTrendsComeShareWithMe:
.string "Well, if you hear of any happening new\n"
.string "trends, come share them with me, okay?$"
2021-07-20 15:18:31 -04:00
DewfordTown_Text_YeahDefinitionOfInRightNow:
.string "Yeah, absolutely right!\p"
.string "{STR_VAR_1}” is the\n"
.string "definition of “in” right now.$"