1
0
mirror of https://github.com/Ninjdai1/pokeemerald.git synced 2025-03-24 14:38:33 +01:00

1173 lines
31 KiB
PHP
Raw Normal View History

@ NOTE: Route 104's sail to Dewford script references local IDs from Dewford's map.
@ These are labeled in DewfordTown/scripts.inc
.set LOCALID_RIVAL, 34
2021-07-20 15:18:31 -04:00
Route104_MapScripts::
2019-10-22 15:53:49 -05:00
map_script MAP_SCRIPT_ON_FRAME_TABLE, Route104_OnFrame
map_script MAP_SCRIPT_ON_TRANSITION, Route104_OnTransition
2017-11-09 19:21:31 -06:00
.byte 0
2021-07-20 15:18:31 -04:00
Route104_OnFrame:
2019-10-22 15:53:49 -05:00
map_script_2 VAR_BOARD_BRINEY_BOAT_STATE, 1, Route104_EventScript_StartSailToDewford
2017-11-09 19:21:31 -06:00
.2byte 0
2021-07-20 15:18:31 -04:00
Route104_EventScript_StartSailToDewford::
2017-11-09 19:21:31 -06:00
lockall
2019-10-22 15:53:49 -05:00
goto Route104_EventScript_SailToDewford
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_OnTransition:
call Common_EventScript_SetupRivalGfxId
call Route104_EventScript_TrySetRivalPos
call Route104_EventScript_ShowOrHideWhiteHerbFlorist
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_ShowOrHideWhiteHerbFlorist::
goto_if_unset FLAG_MET_PRETTY_PETAL_SHOP_OWNER, Route104_EventScript_HideWhiteHerbFlorist
goto_if_unset FLAG_BADGE03_GET, Route104_EventScript_HideWhiteHerbFlorist
2018-10-19 13:04:47 -04:00
clearflag FLAG_HIDE_ROUTE_104_WHITE_HERB_FLORIST
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
Route104_EventScript_HideWhiteHerbFlorist::
2018-10-19 13:04:47 -04:00
setflag FLAG_HIDE_ROUTE_104_WHITE_HERB_FLORIST
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
Route104_EventScript_TrySetRivalPos::
goto_if_ge VAR_BOARD_BRINEY_BOAT_STATE, 1, Route104_EventScript_DontSetRivalPos
goto_if_set FLAG_MET_RIVAL_RUSTBORO, Route104_EventScript_DontSetRivalPos
goto_if_unset FLAG_REGISTER_RIVAL_POKENAV, Route104_EventScript_DontSetRivalPos
setobjectxyperm LOCALID_RIVAL, 17, 52
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
Route104_EventScript_DontSetRivalPos::
2017-11-09 19:21:31 -06:00
return
2021-07-20 15:18:31 -04:00
Route104_EventScript_Rival::
2017-11-09 19:21:31 -06:00
lockall
setvar VAR_0x8008, 1
applymovement LOCALID_RIVAL, Common_Movement_FacePlayer
2017-11-09 19:21:31 -06:00
waitmovement 0
goto Route104_EventScript_RivalEncounter
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
Route104_EventScript_RivalTrigger::
2017-11-09 19:21:31 -06:00
lockall
2019-11-05 14:05:29 -05:00
setflag FLAG_HIDE_RUSTBORO_CITY_RIVAL
2019-08-05 11:23:45 -04:00
setvar VAR_RUSTBORO_CITY_STATE, 8
2019-08-03 14:12:48 -04:00
setvar VAR_ROUTE104_STATE, 2
applymovement OBJ_EVENT_ID_PLAYER, Common_Movement_WalkInPlaceFasterUp
2017-11-09 19:21:31 -06:00
waitmovement 0
delay 10
addobject LOCALID_RIVAL
2018-10-19 13:04:47 -04:00
clearflag FLAG_HIDE_ROUTE_104_RIVAL
applymovement OBJ_EVENT_ID_PLAYER, Route104_Movement_PlayerBackUp
2017-11-09 19:21:31 -06:00
waitmovement 0
applymovement LOCALID_RIVAL, Route104_Movement_RivalExitBrineysCottage
2017-11-09 19:21:31 -06:00
waitmovement 0
delay 20
setvar VAR_0x8008, 0
2019-11-05 14:05:29 -05:00
call RustboroCity_EventScript_PlayRivalMusic
2017-11-09 19:21:31 -06:00
playse SE_PIN
applymovement LOCALID_RIVAL, Common_Movement_ExclamationMark
2017-11-09 19:21:31 -06:00
waitmovement 0
applymovement LOCALID_RIVAL, Common_Movement_Delay48
2017-11-09 19:21:31 -06:00
waitmovement 0
goto Route104_EventScript_RivalEncounter
2017-11-09 19:21:31 -06:00
@ Unused, shares script with Rustboro encounter instead
2021-07-20 15:18:31 -04:00
Route104_EventScript_PlayRivalMusic::
checkplayergender
goto_if_eq VAR_RESULT, MALE, Route104_EventScript_PlayMayMusic
goto_if_eq VAR_RESULT, FEMALE, Route104_EventScript_PlayBrendanMusic
return
2021-07-20 15:18:31 -04:00
Route104_EventScript_PlayMayMusic::
2021-05-21 15:08:00 -05:00
playbgm MUS_ENCOUNTER_MAY, TRUE
return
2021-07-20 15:18:31 -04:00
Route104_EventScript_PlayBrendanMusic::
2021-05-21 15:08:00 -05:00
playbgm MUS_ENCOUNTER_BRENDAN, TRUE
return
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
Route104_EventScript_RivalEncounter::
2017-11-09 19:21:31 -06:00
checkplayergender
goto_if_eq VAR_RESULT, MALE, Route104_EventScript_MayEncounter
goto_if_eq VAR_RESULT, FEMALE, Route104_EventScript_BrendanEncounter
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_MayEncounter::
goto_if_set FLAG_DEFEATED_RIVAL_ROUTE_104, Route104_EventScript_MayDefeated
goto_if_set FLAG_REGISTER_RIVAL_POKENAV, Route104_EventScript_MayAskToBattle
2019-01-02 21:12:43 +00:00
setflag FLAG_REGISTER_RIVAL_POKENAV
msgbox Route104_Text_MayWeShouldRegister, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
delay 30
2020-08-20 18:02:00 -04:00
playfanfare MUS_REGISTER_MATCH_CALL
msgbox Route104_Text_RegisteredMay, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
waitfanfare
closemessage
delay 30
2019-01-02 21:12:43 +00:00
setflag FLAG_ENABLE_RIVAL_MATCH_CALL
applymovement OBJ_EVENT_ID_PLAYER, Route104_Movement_PlayerFaceRival
applymovement LOCALID_RIVAL, Route104_Movement_RivalWalkSlowLeft
msgbox Route104_Text_MayHowsYourPokedex, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
waitmovement 0
applymovement LOCALID_RIVAL, Route104_Movement_RivalApproachPlayer
2017-11-09 19:21:31 -06:00
waitmovement 0
copyobjectxytoperm LOCALID_RIVAL
msgbox Route104_Text_MayMinesDecentLetsBattle, MSGBOX_YESNO
goto_if_eq VAR_RESULT, YES, Route104_EventScript_BattleMay
msgbox Route104_Text_MayHaventRaisedPokemon, MSGBOX_DEFAULT
call Route104_EventScript_RestoreMusic
2017-11-09 19:21:31 -06:00
releaseall
end
2021-07-20 15:18:31 -04:00
Route104_Movement_RivalWalkSlowLeft:
walk_slow_left
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
Route104_Movement_RivalApproachPlayer:
walk_down
face_right
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
Route104_Movement_PlayerFaceRival:
delay_4
walk_in_place_faster_left
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
Route104_EventScript_MayAskToBattle::
msgbox Route104_Text_MayLetsBattle, MSGBOX_YESNO
goto_if_eq VAR_RESULT, YES, Route104_EventScript_BattleMay
msgbox Route104_Text_MayHaventRaisedPokemon, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
releaseall
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_BattleMay::
msgbox Route104_Text_MayIntro, MSGBOX_DEFAULT
switch VAR_STARTER_MON
case 0, Route104_EventScript_BattleMayTreecko
case 1, Route104_EventScript_BattleMayTorchic
case 2, Route104_EventScript_BattleMayMudkip
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_MayDefeated::
msgbox Route104_Text_MayPostBattle, MSGBOX_DEFAULT
call_if_eq VAR_0x8008, 0, Route104_EventScript_RestoreMusic
2017-11-09 19:21:31 -06:00
releaseall
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_RestoreMusic::
2017-12-21 23:46:19 -08:00
savebgm MUS_DUMMY
2017-11-09 19:21:31 -06:00
fadedefaultbgm
return
2021-07-20 15:18:31 -04:00
Route104_EventScript_BattleMayTreecko::
2019-12-25 22:39:06 -05:00
trainerbattle_no_intro TRAINER_MAY_RUSTBORO_TREECKO, Route104_Text_MayDefeat
2019-01-02 21:12:43 +00:00
setflag FLAG_DEFEATED_RIVAL_ROUTE_104
goto Route104_EventScript_MayDefeated
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_BattleMayTorchic::
2019-12-25 22:39:06 -05:00
trainerbattle_no_intro TRAINER_MAY_RUSTBORO_TORCHIC, Route104_Text_MayDefeat
2019-01-02 21:12:43 +00:00
setflag FLAG_DEFEATED_RIVAL_ROUTE_104
goto Route104_EventScript_MayDefeated
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_BattleMayMudkip::
2019-12-25 22:39:06 -05:00
trainerbattle_no_intro TRAINER_MAY_RUSTBORO_MUDKIP, Route104_Text_MayDefeat
2019-01-02 21:12:43 +00:00
setflag FLAG_DEFEATED_RIVAL_ROUTE_104
goto Route104_EventScript_MayDefeated
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_BrendanEncounter::
goto_if_set FLAG_DEFEATED_RIVAL_ROUTE_104, Route104_EventScript_BrendanDefeated
goto_if_set FLAG_REGISTER_RIVAL_POKENAV, Route104_EventScript_BrendanAskToBattle
2019-01-02 21:12:43 +00:00
setflag FLAG_REGISTER_RIVAL_POKENAV
msgbox Route104_Text_BrendanWeShouldRegister, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
delay 30
2020-08-20 18:02:00 -04:00
playfanfare MUS_REGISTER_MATCH_CALL
msgbox Route104_Text_RegisteredBrendan, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
waitfanfare
closemessage
delay 30
2019-01-02 21:12:43 +00:00
setflag FLAG_ENABLE_RIVAL_MATCH_CALL
applymovement OBJ_EVENT_ID_PLAYER, Route104_Movement_PlayerFaceRival
applymovement LOCALID_RIVAL, Route104_Movement_RivalWalkSlowLeft
msgbox Route104_Text_BrendanHowsYourPokedex, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
closemessage
waitmovement 0
applymovement LOCALID_RIVAL, Route104_Movement_RivalApproachPlayer
2017-11-09 19:21:31 -06:00
waitmovement 0
copyobjectxytoperm LOCALID_RIVAL
msgbox Route104_Text_BrendanDoingGreatLetsBattle, MSGBOX_YESNO
goto_if_eq VAR_RESULT, YES, Route104_EventScript_BattleBrendan
msgbox Route104_Text_BrendanNoConfidence, MSGBOX_DEFAULT
call Route104_EventScript_RestoreMusic
2017-11-09 19:21:31 -06:00
releaseall
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_BrendanAskToBattle::
msgbox Route104_Text_BrendanLetsBattle, MSGBOX_YESNO
goto_if_eq VAR_RESULT, YES, Route104_EventScript_BattleBrendan
msgbox Route104_Text_BrendanNoConfidence, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
releaseall
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_BattleBrendan::
msgbox Route104_Text_BrendanIntro, MSGBOX_DEFAULT
switch VAR_STARTER_MON
case 0, Route104_EventScript_BattleBrendanTreecko
case 1, Route104_EventScript_BattleBrendanTorchic
case 2, Route104_EventScript_BattleBrendanMudkip
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_BrendanDefeated::
msgbox Route104_Text_BrendanPostBattle, MSGBOX_DEFAULT
call_if_eq VAR_0x8008, 0, Route104_EventScript_RestoreMusic
2017-11-09 19:21:31 -06:00
releaseall
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_BattleBrendanTreecko::
2019-12-25 22:39:06 -05:00
trainerbattle_no_intro TRAINER_BRENDAN_RUSTBORO_TREECKO, Route104_Text_BrendanDefeat
2019-01-02 21:12:43 +00:00
setflag FLAG_DEFEATED_RIVAL_ROUTE_104
goto Route104_EventScript_BrendanDefeated
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_BattleBrendanTorchic::
2019-12-25 22:39:06 -05:00
trainerbattle_no_intro TRAINER_BRENDAN_RUSTBORO_TORCHIC, Route104_Text_BrendanDefeat
2019-01-02 21:12:43 +00:00
setflag FLAG_DEFEATED_RIVAL_ROUTE_104
goto Route104_EventScript_BrendanDefeated
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_BattleBrendanMudkip::
2019-12-25 22:39:06 -05:00
trainerbattle_no_intro TRAINER_BRENDAN_RUSTBORO_MUDKIP, Route104_Text_BrendanDefeat
2019-01-02 21:12:43 +00:00
setflag FLAG_DEFEATED_RIVAL_ROUTE_104
goto Route104_EventScript_BrendanDefeated
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_Movement_PlayerBackUp:
lock_facing_direction
walk_down
unlock_facing_direction
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
Route104_Movement_RivalExitBrineysCottage:
walk_down
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
Route104_EventScript_ExpertF::
2017-11-09 19:21:31 -06:00
lock
faceplayer
goto_if_set FLAG_RECEIVED_CHESTO_BERRY_ROUTE_104, Route104_EventScript_ReceivedBerry
msgbox Route104_Text_PlantBerriesInSoilTakeThis, MSGBOX_DEFAULT
giveitem ITEM_CHESTO_BERRY
goto_if_eq VAR_RESULT, FALSE, Common_EventScript_ShowBagIsFull
2019-01-02 21:12:43 +00:00
setflag FLAG_RECEIVED_CHESTO_BERRY_ROUTE_104
msgbox Route104_Text_TrainersOftenMakeMonHoldBerries, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_ReceivedBerry::
msgbox Route104_Text_TrainersOftenMakeMonHoldBerries, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_WhiteHerbFlorist::
2017-11-09 19:21:31 -06:00
lock
faceplayer
goto_if_set FLAG_RECEIVED_WHITE_HERB, Route104_EventScript_ReceivedWhiteHerb
msgbox Route104_Text_DontNeedThisTakeIt, MSGBOX_DEFAULT
giveitem ITEM_WHITE_HERB
goto_if_eq VAR_RESULT, FALSE, Common_EventScript_ShowBagIsFull
2019-01-02 21:12:43 +00:00
setflag FLAG_RECEIVED_WHITE_HERB
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_ReceivedWhiteHerb::
msgbox Route104_Text_FlowerShopSellingSaplings, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_Girl1::
msgbox Route104_Text_BrineyLivesInSeasideCottage, MSGBOX_NPC
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_BugCatcher::
msgbox Route104_Text_WhatsItLikeAtBottomOfSea, MSGBOX_SIGN
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_BrineysCottageSign::
msgbox Route104_Text_MrBrineysCottage, MSGBOX_SIGN
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_RouteSignPetalburg::
msgbox Route104_Text_RouteSignPetalburg, MSGBOX_SIGN
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_RouteSignRustboro::
msgbox Route104_Text_RouteSignRustboro, MSGBOX_SIGN
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_FlowerShopSign::
msgbox Route104_Text_PrettyPetalFlowShop, MSGBOX_SIGN
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_TrainerTipsDoubleBattles::
msgbox Route104_Text_TrainerTipsDoubleBattles, MSGBOX_SIGN
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_Boy1::
msgbox Route104_Text_ThrowBallAtWeakenedPokemon, MSGBOX_NPC
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_Woman::
msgbox Route104_Text_OnlyThrowBallAtWildPokemon, MSGBOX_NPC
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_Boy2::
2017-11-09 19:21:31 -06:00
lock
faceplayer
goto_if_set FLAG_RECEIVED_TM09, Route104_EventScript_ReceivedBulletSeed
msgbox Route104_Text_LikeFillingMouthWithSeedsTakeThis, MSGBOX_DEFAULT
giveitem ITEM_TM09
goto_if_eq VAR_RESULT, FALSE, Common_EventScript_ShowBagIsFull
2019-01-02 21:12:43 +00:00
setflag FLAG_RECEIVED_TM09
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_ReceivedBulletSeed::
msgbox Route104_Text_TMsAreOneTimeUse, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_Girl2::
msgbox Route104_Text_ImNotATrainer, MSGBOX_NPC
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_SailToDewford::
2021-11-17 17:15:45 -05:00
setobjectsubpriority LOCALID_BRINEY_R104, MAP_ROUTE104, 0
setobjectsubpriority OBJ_EVENT_ID_PLAYER, MAP_ROUTE104, 0
applymovement LOCALID_BRINEY_R104, Route104_Movement_BrineyBoardBoat
2017-11-09 19:21:31 -06:00
waitmovement 0
removeobject LOCALID_BRINEY_R104
applymovement OBJ_EVENT_ID_PLAYER, Route104_Movement_PlayerBoardBoat
2017-11-09 19:21:31 -06:00
waitmovement 0
hideobjectat OBJ_EVENT_ID_PLAYER, MAP_ROUTE104
2019-08-14 23:38:42 -04:00
call Common_EventScript_PlayBrineysBoatMusic
goto_if_set FLAG_ENABLE_NORMAN_MATCH_CALL, Route104_EventScript_SailToDewfordNoCall
goto_if_unset FLAG_ENABLE_NORMAN_MATCH_CALL, Route104_EventScript_SailToDewfordDadCalls
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_SailToDewfordNoCall::
applymovement LOCALID_BOAT_R104, Route104_Movement_SailToDewford
applymovement OBJ_EVENT_ID_PLAYER, Route104_Movement_SailToDewford
2017-11-09 19:21:31 -06:00
waitmovement 0
goto Route104_EventScript_ArriveInDewford
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
Route104_EventScript_SailToDewfordDadCalls::
applymovement LOCALID_BOAT_R104, Route104_Movement_SailToDewfordBeforeDadCalls
applymovement OBJ_EVENT_ID_PLAYER, Route104_Movement_SailToDewfordBeforeDadCalls
2017-11-09 19:21:31 -06:00
waitmovement 0
2019-10-24 20:04:02 -05:00
pokenavcall Route104_Text_DadPokenavCall
2017-11-09 19:21:31 -06:00
waitmessage
delay 30
2020-08-20 18:02:00 -04:00
playfanfare MUS_REGISTER_MATCH_CALL
2019-10-24 20:04:02 -05:00
msgbox Route104_Text_RegisteredDadInPokenav, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
waitfanfare
closemessage
delay 30
2019-01-02 21:12:43 +00:00
setflag FLAG_ENABLE_NORMAN_MATCH_CALL
applymovement OBJ_EVENT_ID_PLAYER, Route104_Movement_SailToDewfordAfterDadCalls
applymovement LOCALID_BOAT_R104, Route104_Movement_SailToDewfordAfterDadCalls, MAP_ROUTE104
waitmovement LOCALID_BOAT_R104, MAP_ROUTE104
2017-11-09 19:21:31 -06:00
waitmovement 0
goto Route104_EventScript_ArriveInDewford
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
Route104_EventScript_ArriveInDewford::
2017-11-09 19:21:31 -06:00
delay 50
applymovement OBJ_EVENT_ID_PLAYER, Route104_Movement_PlayerExitBoat
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_DEWFORD_TOWN
applymovement OBJ_EVENT_ID_PLAYER, Route104_Movement_PlayerMoveForBriney
2017-11-09 19:21:31 -06:00
waitmovement 0
setobjectxyperm LOCALID_BRINEY_DEWFORD, 12, 8
addobject LOCALID_BRINEY_DEWFORD
2021-11-17 17:15:45 -05:00
setobjectsubpriority LOCALID_BRINEY_DEWFORD, MAP_DEWFORD_TOWN, 0
clearflag FLAG_HIDE_MR_BRINEY_DEWFORD_TOWN
applymovement LOCALID_BRINEY_DEWFORD, Route104_Movement_BrineyExitBoat
2017-11-09 19:21:31 -06:00
waitmovement 0
addobject LOCALID_BOAT_DEWFORD
clearflag FLAG_HIDE_MR_BRINEY_BOAT_DEWFORD_TOWN
2019-08-14 23:38:42 -04:00
call Common_EventScript_StopBrineysBoatMusic
2018-10-19 13:04:47 -04:00
setflag FLAG_HIDE_ROUTE_104_MR_BRINEY_BOAT
hideobjectat LOCALID_BOAT_R104, MAP_ROUTE104
copyvar VAR_BRINEY_LOCATION, VAR_0x8008
2021-11-17 17:15:45 -05:00
resetobjectsubpriority OBJ_EVENT_ID_PLAYER, MAP_ROUTE104
resetobjectsubpriority LOCALID_BRINEY_DEWFORD, MAP_DEWFORD_TOWN
copyobjectxytoperm LOCALID_BRINEY_DEWFORD
2019-08-03 14:12:48 -04:00
setvar VAR_BOARD_BRINEY_BOAT_STATE, 0
2019-10-26 11:16:04 -05:00
goto_if_unset FLAG_DELIVERED_STEVEN_LETTER, Route104_EventScript_DeliverLetterReminder
goto_if_set FLAG_DELIVERED_STEVEN_LETTER, Route104_EventScript_LandedInDewford
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_DeliverLetterReminder::
2019-10-26 11:16:04 -05:00
msgbox Route104_Text_LandedInDewfordDeliverLetter, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
releaseall
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_LandedInDewford::
2019-10-26 11:16:04 -05:00
msgbox DewfordTown_Text_BrineyLandedInDewford, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
releaseall
end
2021-07-20 15:18:31 -04:00
Route104_Movement_SailToDewfordBeforeDadCalls:
walk_down
walk_down
walk_down
walk_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
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_fast_right
walk_fast_right
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
Route104_Movement_SailToDewfordAfterDadCalls:
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_right
walk_fast_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_fast_right
walk_fast_right
walk_fast_right
walk_fast_right
walk_right
walk_right
walk_down
walk_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_down
walk_down
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
Route104_Movement_SailToDewford:
walk_down
walk_down
walk_down
walk_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
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_fast_right
walk_fast_right
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_faster_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_right
walk_fast_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_fast_right
walk_fast_right
walk_fast_right
walk_fast_right
walk_right
walk_right
walk_down
walk_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_fast_down
walk_down
walk_down
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
Route104_Movement_PlayerBoardBoat:
walk_left
walk_down
walk_down
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
Route104_Movement_PlayerExitBoat:
walk_down
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
Route104_Movement_PlayerMoveForBriney:
walk_down
walk_left
walk_in_place_faster_right
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
Route104_Movement_BrineyBoardBoat:
walk_down
walk_down
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
Route104_Movement_BrineyExitBoat:
walk_down
walk_in_place_faster_left
2017-11-09 19:21:31 -06:00
step_end
2021-07-20 15:18:31 -04:00
Route104_EventScript_Ivan::
trainerbattle_single TRAINER_IVAN, Route104_Text_IvanIntro, Route104_Text_IvanDefeat
msgbox Route104_Text_IvanPostBattle, MSGBOX_AUTOCLOSE
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_Billy::
trainerbattle_single TRAINER_BILLY, Route104_Text_BillyIntro, Route104_Text_BillyDefeat
msgbox Route104_Text_BillyPostBattle, MSGBOX_AUTOCLOSE
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_Haley::
trainerbattle_single TRAINER_HALEY_1, Route104_Text_HaleyIntro, Route104_Text_HaleyDefeat, Route104_EventScript_TryRegisterHaleyAfterBattle
2017-12-01 21:25:13 +01:00
specialvar VAR_RESULT, ShouldTryRematchBattle
goto_if_eq VAR_RESULT, TRUE, Route104_EventScript_RematchHaley
2019-09-30 01:42:52 -04:00
setvar VAR_0x8004, TRAINER_HALEY_1
specialvar VAR_RESULT, IsTrainerRegistered
goto_if_eq VAR_RESULT, FALSE, Route104_EventScript_TryRegisterHaley
msgbox Route104_Text_HaleyPostBattle, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_TryRegisterHaleyAfterBattle::
2019-11-01 03:41:55 -04:00
special PlayerFaceTrainerAfterBattle
2017-11-09 19:21:31 -06:00
waitmovement 0
goto_if_set FLAG_HAS_MATCH_CALL, Route104_EventScript_RegisterHaleyAfterBattle
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_RegisterHaleyAfterBattle::
msgbox Route104_Text_HaleyRegister2, MSGBOX_DEFAULT
2018-12-02 06:04:59 -05:00
register_matchcall TRAINER_HALEY_1
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_TryRegisterHaley::
goto_if_set FLAG_HAS_MATCH_CALL, Route104_EventScript_RegisterHaley
msgbox Route104_Text_HaleyPostBattle, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_RegisterHaley::
msgbox Route104_Text_HaleyRegister1, MSGBOX_DEFAULT
2018-12-02 06:04:59 -05:00
register_matchcall TRAINER_HALEY_1
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_RematchHaley::
trainerbattle_rematch TRAINER_HALEY_1, Route104_Text_HaleyRematchIntro, Route104_Text_HaleyRematchDefeat
msgbox Route104_Text_HaleyPostRematch, MSGBOX_AUTOCLOSE
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_Winston::
trainerbattle_single TRAINER_WINSTON_1, Route104_Text_WinstonIntro, Route104_Text_WinstonDefeat, Route104_EventScript_TryRegisterWinstonAfterBattle
2017-12-01 21:25:13 +01:00
specialvar VAR_RESULT, ShouldTryRematchBattle
goto_if_eq VAR_RESULT, TRUE, Route104_EventScript_RematchWinston
2019-09-30 01:42:52 -04:00
setvar VAR_0x8004, TRAINER_WINSTON_1
specialvar VAR_RESULT, IsTrainerRegistered
goto_if_eq VAR_RESULT, FALSE, Route104_EventScript_TryRegisterWinston
msgbox Route104_Text_WinstonPostBattle, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_TryRegisterWinstonAfterBattle::
2019-11-01 03:41:55 -04:00
special PlayerFaceTrainerAfterBattle
2017-11-09 19:21:31 -06:00
waitmovement 0
goto_if_set FLAG_HAS_MATCH_CALL, Route104_EventScript_RegisterWinstonAfterBattle
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_RegisterWinstonAfterBattle::
msgbox Route104_Text_WinstonRegister2, MSGBOX_DEFAULT
2018-12-02 06:04:59 -05:00
register_matchcall TRAINER_WINSTON_1
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_TryRegisterWinston::
goto_if_set FLAG_HAS_MATCH_CALL, Route104_EventScript_RegisterWinston
msgbox Route104_Text_WinstonPostBattle, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_RegisterWinston::
msgbox Route104_Text_WinstonRegister1, MSGBOX_DEFAULT
2018-12-02 06:04:59 -05:00
register_matchcall TRAINER_WINSTON_1
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_RematchWinston::
trainerbattle_rematch TRAINER_WINSTON_1, Route104_Text_WinstonRematchIntro, Route104_Text_WinstonRematchDefeat
msgbox Route104_Text_WinstonPostRematch, MSGBOX_AUTOCLOSE
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_Cindy::
trainerbattle_single TRAINER_CINDY_1, Route104_Text_CindyIntro, Route104_Text_CindyDefeat, Route104_EventScript_TryRegisterCindyAfterBattle
2017-12-01 21:25:13 +01:00
specialvar VAR_RESULT, ShouldTryRematchBattle
goto_if_eq VAR_RESULT, TRUE, Route104_EventScript_RematchCindy
2019-09-30 01:42:52 -04:00
setvar VAR_0x8004, TRAINER_CINDY_1
specialvar VAR_RESULT, IsTrainerRegistered
goto_if_eq VAR_RESULT, FALSE, Route104_EventScript_TryRegisterCindy
msgbox Route104_Text_CindyPostBattle, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_TryRegisterCindyAfterBattle::
2019-11-01 03:41:55 -04:00
special PlayerFaceTrainerAfterBattle
2017-11-09 19:21:31 -06:00
waitmovement 0
goto_if_set FLAG_HAS_MATCH_CALL, Route104_EventScript_RegisterCindyAfterBattle
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_RegisterCindyAfterBattle::
msgbox Route104_Text_CindyRegister2, MSGBOX_DEFAULT
2018-12-02 06:04:59 -05:00
register_matchcall TRAINER_CINDY_1
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_TryRegisterCindy::
goto_if_set FLAG_HAS_MATCH_CALL, Route104_EventScript_RegisterCindy
msgbox Route104_Text_CindyPostBattle, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_RegisterCindy::
msgbox Route104_Text_CindyRegister1, MSGBOX_DEFAULT
2018-12-02 06:04:59 -05:00
register_matchcall TRAINER_CINDY_1
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_RematchCindy::
trainerbattle_rematch TRAINER_CINDY_1, Route104_Text_CindyRematchIntro, Route104_Text_CindyRematchDefeat
msgbox Route104_Text_CindyPostRematch, MSGBOX_AUTOCLOSE
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_Gina::
trainerbattle_double TRAINER_GINA_AND_MIA_1, Route104_Text_GinaIntro, Route104_Text_GinaDefeat, Route104_Text_GinaNotEnoughMons
special GetPlayerBigGuyGirlString
msgbox Route104_Text_GinaPostBattle, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_Mia::
trainerbattle_double TRAINER_GINA_AND_MIA_1, Route104_Text_MiaIntro, Route104_Text_MiaDefeat, Route104_Text_MiaNotEnoughMons
special GetPlayerBigGuyGirlString
msgbox Route104_Text_MiaPostBattle, MSGBOX_DEFAULT
2017-11-09 19:21:31 -06:00
release
end
2021-07-20 15:18:31 -04:00
Route104_EventScript_Darian::
trainerbattle_single TRAINER_DARIAN, Route104_Text_DarianIntro, Route104_Text_DarianDefeat
msgbox Route104_Text_DarianPostBattle, MSGBOX_AUTOCLOSE
2017-11-09 19:21:31 -06:00
end
2021-07-20 15:18:31 -04:00
Route104_Text_BrineyLivesInSeasideCottage:
2017-11-09 19:21:31 -06:00
.string "That seaside cottage is where\n"
.string "MR. BRINEY lives.\p"
.string "He was once a mighty sailor who never\n"
.string "feared the sea, however stormy.$"
2021-07-20 15:18:31 -04:00
Route104_Text_WhatsItLikeAtBottomOfSea:
2017-11-09 19:21:31 -06:00
.string "The sea, huh?\p"
2018-12-07 10:41:08 -05:00
.string "I wonder what it's like at the bottom\n"
2017-11-09 19:21:31 -06:00
.string "of the sea?$"
2021-07-20 15:18:31 -04:00
Route104_Text_ThrowBallAtWeakenedPokemon:
2018-12-07 10:41:08 -05:00
.string "If you're going to throw a POKé BALL,\n"
2017-11-09 19:21:31 -06:00
.string "weaken the wild POKéMON first.\p"
2018-12-07 10:41:08 -05:00
.string "It will be easier to catch if it's been\n"
2017-11-09 19:21:31 -06:00
.string "poisoned, burned, or lulled to sleep.$"
2021-07-20 15:18:31 -04:00
Route104_Text_OnlyThrowBallAtWildPokemon:
2018-12-07 10:41:08 -05:00
.string "You're a thief if you try to steal\n"
.string "someone else's POKéMON.\p"
2017-11-09 19:21:31 -06:00
.string "You should throw POKé BALLS only at\n"
.string "wild POKéMON.$"
2021-07-20 15:18:31 -04:00
Route104_Text_ImNotATrainer:
2018-12-07 10:41:08 -05:00
.string "Oh, no, I'm not a TRAINER.\p"
.string "But that's right, if TRAINERS lock eyes,\n"
.string "it's a challenge to battle.\p"
.string "If you don't want to battle, stay out\n"
2017-11-09 19:21:31 -06:00
.string "of their sight.$"
2021-07-20 15:18:31 -04:00
Route104_Text_LikeFillingMouthWithSeedsTakeThis:
2017-11-09 19:21:31 -06:00
.string "I like filling my mouth with seeds,\n"
.string "then spitting them out fast!\p"
.string "You can have this, so you try it out!\p"
.string "Use it on a POKéMON, and it will learn\n"
.string "a move for firing seeds rapidly.$"
2021-07-20 15:18:31 -04:00
Route104_Text_TMsAreOneTimeUse:
2017-11-09 19:21:31 -06:00
.string "A word of advice!\p"
.string "A TM, TECHNICAL MACHINE, is good only\n"
.string "for one-time use.\p"
2018-12-07 10:41:08 -05:00
.string "Once you use it, it's gone.\n"
2017-11-09 19:21:31 -06:00
.string "Think twice before using it!$"
2021-07-20 15:18:31 -04:00
Route104_Text_DontNeedThisTakeIt:
2017-11-09 19:21:31 -06:00
.string "This FLOWER SHOP started selling\n"
.string "saplings recently.\p"
.string "It made me so happy, I went overboard\n"
.string "shopping.\p"
2018-12-07 10:41:08 -05:00
.string "I don't need this WHITE HERB anymore.\n"
2017-11-09 19:21:31 -06:00
.string "Would you take it, please?$"
2021-07-20 15:18:31 -04:00
Route104_Text_FlowerShopSellingSaplings:
2017-11-09 19:21:31 -06:00
.string "This FLOWER SHOP started selling\n"
.string "saplings recently.\p"
.string "It made me so happy, I went overboard\n"
.string "shopping. Where should I put them?$"
2021-07-20 15:18:31 -04:00
Route104_Text_MrBrineysCottage:
2018-12-07 10:41:08 -05:00
.string "MR. BRINEY'S COTTAGE$"
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
Route104_Text_RouteSignPetalburg:
2017-11-09 19:21:31 -06:00
.string "ROUTE 1O4\n"
.string "{RIGHT_ARROW} PETALBURG CITY$"
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
Route104_Text_RouteSignRustboro:
2017-11-09 19:21:31 -06:00
.string "ROUTE 1O4\n"
.string "{UP_ARROW} RUSTBORO CITY$"
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
Route104_Text_PrettyPetalFlowShop:
2017-11-09 19:21:31 -06:00
.string "PRETTY PETAL FLOWER SHOP$"
2021-07-20 15:18:31 -04:00
Route104_Text_TrainerTipsDoubleBattles:
2017-11-09 19:21:31 -06:00
.string "TRAINER TIPS\p"
.string "In the HOENN region there are pairs\n"
.string "of TRAINERS who challenge others\l"
.string "for 2-on-2 POKéMON battles called\l"
.string "DOUBLE BATTLES.\p"
.string "In a DOUBLE BATTLE, the TRAINER must\n"
.string "send out two POKéMON, the one at the\l"
.string "left of the list and the top one.\l"
.string "Watch how POKéMON are lined up.$"
2021-07-20 15:18:31 -04:00
Route104_Text_MayWeShouldRegister:
2017-11-09 19:21:31 -06:00
.string "MAY: Oh, hi, {PLAYER}{KUN}!\p"
.string "DEVON upgraded your POKéNAV with\n"
.string "the MATCH CALL system, huh?\p"
.string "We should register each other so we\n"
.string "can get in contact anytime.$"
2021-07-20 15:18:31 -04:00
Route104_Text_RegisteredMay:
2017-11-09 19:21:31 -06:00
.string "{PLAYER} registered MAY\n"
.string "in the POKéNAV.$"
2021-07-20 15:18:31 -04:00
Route104_Text_MayHowsYourPokedex:
2017-11-09 19:21:31 -06:00
.string "MAY: Oh, by the way, {PLAYER}{KUN},\n"
2018-12-07 10:41:08 -05:00
.string "how's your POKéDEX coming along?$"
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
Route104_Text_MayMinesDecentLetsBattle:
2018-12-07 10:41:08 -05:00
.string "Mine's looking pretty decent.\n"
2017-11-09 19:21:31 -06:00
.string "So…\l"
.string "How about a little battle?$"
2021-07-20 15:18:31 -04:00
Route104_Text_MayHaventRaisedPokemon:
2018-12-07 10:41:08 -05:00
.string "MAY: Oh, what's the matter?\p"
.string "Haven't you caught or raised your\n"
2017-11-09 19:21:31 -06:00
.string "POKéMON very much?\p"
2018-12-07 10:41:08 -05:00
.string "That's not very good for a TRAINER!$"
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
Route104_Text_MayLetsBattle:
2017-11-09 19:21:31 -06:00
.string "MAY: So, what do you think?\n"
.string "How about a little battle here?$"
2021-07-20 15:18:31 -04:00
Route104_Text_MayIntro:
2017-11-09 19:21:31 -06:00
.string "MAY: You just became a TRAINER,\n"
2018-12-07 10:41:08 -05:00
.string "{PLAYER}{KUN}. I'm not going to lose!$"
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
Route104_Text_MayDefeat:
2017-11-09 19:21:31 -06:00
.string "Yikes!\n"
2018-12-07 10:41:08 -05:00
.string "You're better than I expected!$"
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
Route104_Text_MayPostBattle:
2018-12-07 10:41:08 -05:00
.string "MAY: I can tell you've gotten pretty\n"
2017-11-09 19:21:31 -06:00
.string "good with the way you handle POKéMON.\p"
.string "But instead of only making them\n"
.string "battle, you should be like MR. BRINEY.\p"
2018-12-07 10:41:08 -05:00
.string "It's important to become friends with\n"
2017-11-09 19:21:31 -06:00
.string "POKéMON, too.$"
2021-07-20 15:18:31 -04:00
Route104_Text_BrendanWeShouldRegister:
2017-11-09 19:21:31 -06:00
.string "BRENDAN: Oh, hey, {PLAYER}!\p"
.string "Cool, you had DEVON install the MATCH\n"
.string "CALL system on your POKéNAV!\p"
2018-12-07 10:41:08 -05:00
.string "Let's register each other in our\n"
2017-11-09 19:21:31 -06:00
.string "POKéNAVS so we can keep in touch.$"
2021-07-20 15:18:31 -04:00
Route104_Text_RegisteredBrendan:
2017-11-09 19:21:31 -06:00
.string "{PLAYER} registered BRENDAN\n"
.string "in the POKéNAV.$"
2021-07-20 15:18:31 -04:00
Route104_Text_BrendanHowsYourPokedex:
2018-12-07 10:41:08 -05:00
.string "BRENDAN: {PLAYER}, how's your POKéDEX?\n"
2017-11-09 19:21:31 -06:00
.string "Have you filled in any pages yet?$"
2021-07-20 15:18:31 -04:00
Route104_Text_BrendanDoingGreatLetsBattle:
2018-12-07 10:41:08 -05:00
.string "Me, I'm doing great!\p"
2017-11-09 19:21:31 -06:00
.string "Want to check out how good I am with\n"
.string "a battle?$"
2021-07-20 15:18:31 -04:00
Route104_Text_BrendanNoConfidence:
2018-12-07 10:41:08 -05:00
.string "BRENDAN: What's the matter? Don't have\n"
2017-11-09 19:21:31 -06:00
.string "any confidence in your POKéMON?$"
2021-07-20 15:18:31 -04:00
Route104_Text_BrendanLetsBattle:
2018-12-07 10:41:08 -05:00
.string "BRENDAN: What's up?\n"
2017-11-09 19:21:31 -06:00
.string "Want to have a battle with me?$"
2021-07-20 15:18:31 -04:00
Route104_Text_BrendanIntro:
2017-11-09 19:21:31 -06:00
.string "BRENDAN: I know you just became\n"
2018-12-07 10:41:08 -05:00
.string "a TRAINER, but I won't go easy!$"
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
Route104_Text_BrendanDefeat:
2017-11-09 19:21:31 -06:00
.string "Hmm…\n"
2018-12-07 10:41:08 -05:00
.string "You're pretty good.$"
2017-11-09 19:21:31 -06:00
2021-07-20 15:18:31 -04:00
Route104_Text_BrendanPostBattle:
2018-12-07 10:41:08 -05:00
.string "BRENDAN: You've gotten pretty decent\n"
2017-11-09 19:21:31 -06:00
.string "at handling POKéMON.\p"
2018-12-07 10:41:08 -05:00
.string "But, you know, you shouldn't just be\n"
2017-11-09 19:21:31 -06:00
.string "making POKéMON battle.\p"
2018-12-07 10:41:08 -05:00
.string "Like MR. BRINEY, it's important to\n"
2017-11-09 19:21:31 -06:00
.string "become friends with your POKéMON.$"