2020-06-21 07:56:57 +02:00
|
|
|
.set LOCALID_RIVAL, 16
|
|
|
|
.set LOCALID_RIVAL_ON_BIKE, 25
|
|
|
|
.set LOCALID_SCOTT, 43
|
|
|
|
|
2017-11-10 02:21:31 +01:00
|
|
|
Route119_MapScripts:: @ 81F4424
|
2019-11-12 17:07:43 +01:00
|
|
|
map_script MAP_SCRIPT_ON_RESUME, Route119_OnResume
|
2019-04-22 22:31:51 +02:00
|
|
|
map_script MAP_SCRIPT_ON_TRANSITION, Route119_OnTransition
|
2017-11-10 02:21:31 +01:00
|
|
|
.byte 0
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_OnResume: @ 81F442F
|
|
|
|
call_if_set FLAG_SYS_CTRL_OBJ_DELETE, Route119_EventScript_TryRemoveKecleon
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_TryRemoveKecleon:: @ 81F4439
|
2018-08-08 10:37:12 +02:00
|
|
|
specialvar VAR_RESULT, GetBattleOutcome
|
2019-10-07 05:07:59 +02:00
|
|
|
compare VAR_RESULT, B_OUTCOME_CAUGHT
|
2019-02-23 02:21:26 +01:00
|
|
|
goto_if_ne Common_EventScript_NopReturn
|
2017-11-10 02:21:31 +01:00
|
|
|
removeobject VAR_LAST_TALKED
|
|
|
|
return
|
|
|
|
|
2019-04-22 22:31:51 +02:00
|
|
|
Route119_OnTransition: @ 81F444D
|
2019-09-05 20:56:34 +02:00
|
|
|
call Common_EventScript_SetupRivalGfxId
|
|
|
|
call Common_EventScript_SetupRivalOnBikeGfxId
|
2018-02-14 00:58:22 +01:00
|
|
|
compare VAR_WEATHER_INSTITUTE_STATE, 1
|
2019-11-12 17:07:43 +01:00
|
|
|
call_if_eq Route119_EventScript_MoveInstituteWorkersDownstairs
|
2017-12-28 09:09:11 +01:00
|
|
|
special SetRoute119Weather
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_MoveInstituteWorkersDownstairs:: @ 81F4466
|
2018-10-19 19:04:47 +02:00
|
|
|
setflag FLAG_HIDE_WEATHER_INSTITUTE_2F_WORKERS
|
|
|
|
clearflag FLAG_HIDE_WEATHER_INSTITUTE_1F_WORKERS
|
2018-02-14 00:58:22 +01:00
|
|
|
setvar VAR_WEATHER_INSTITUTE_STATE, 2
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_RivalTrigger1:: @ 81F4472
|
2018-05-19 18:02:43 +02:00
|
|
|
setvar VAR_TEMP_1, 1
|
2019-11-12 17:07:43 +01:00
|
|
|
goto Route119_EventScript_RivalEncounter
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_RivalTrigger2:: @ 81F447D
|
2018-05-19 18:02:43 +02:00
|
|
|
setvar VAR_TEMP_1, 2
|
2019-11-12 17:07:43 +01:00
|
|
|
goto Route119_EventScript_RivalEncounter
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_RivalEncounter:: @ 81F4488
|
2017-11-10 02:21:31 +01:00
|
|
|
lockall
|
2020-06-21 07:56:57 +02:00
|
|
|
addobject LOCALID_RIVAL_ON_BIKE
|
2017-11-10 02:21:31 +01:00
|
|
|
checkplayergender
|
2018-12-25 03:22:56 +01:00
|
|
|
compare VAR_RESULT, MALE
|
2019-11-12 17:07:43 +01:00
|
|
|
call_if_eq Route119_EventScript_PlayMayMusic
|
2018-12-25 03:22:56 +01:00
|
|
|
compare VAR_RESULT, FEMALE
|
2019-11-12 17:07:43 +01:00
|
|
|
call_if_eq Route119_EventScript_PlayBrendanMusic
|
2017-11-10 02:21:31 +01:00
|
|
|
delay 65
|
2018-05-19 18:02:43 +02:00
|
|
|
compare VAR_TEMP_1, 1
|
2019-11-12 17:07:43 +01:00
|
|
|
call_if_eq Route119_EventScript_RivalEnter1
|
2018-05-19 18:02:43 +02:00
|
|
|
compare VAR_TEMP_1, 2
|
2019-11-12 17:07:43 +01:00
|
|
|
call_if_eq Route119_EventScript_RivalEnter2
|
2019-11-21 05:12:51 +01:00
|
|
|
applymovement OBJ_EVENT_ID_PLAYER, Common_Movement_WalkInPlaceFastestDown
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
|
|
|
delay 30
|
2018-05-19 18:02:43 +02:00
|
|
|
compare VAR_TEMP_1, 1
|
2019-11-12 17:07:43 +01:00
|
|
|
call_if_eq Route119_EventScript_SetRivalPos1
|
2018-05-19 18:02:43 +02:00
|
|
|
compare VAR_TEMP_1, 2
|
2019-11-12 17:07:43 +01:00
|
|
|
call_if_eq Route119_EventScript_SetRivalPos2
|
2020-06-21 07:56:57 +02:00
|
|
|
removeobject LOCALID_RIVAL_ON_BIKE
|
|
|
|
addobject LOCALID_RIVAL
|
2017-11-10 02:21:31 +01:00
|
|
|
delay 30
|
|
|
|
checkplayergender
|
2018-12-25 03:22:56 +01:00
|
|
|
compare VAR_RESULT, MALE
|
2019-11-12 17:07:43 +01:00
|
|
|
goto_if_eq Route119_EventScript_BattleMay
|
2018-12-25 03:22:56 +01:00
|
|
|
compare VAR_RESULT, FEMALE
|
2019-11-12 17:07:43 +01:00
|
|
|
goto_if_eq Route119_EventScript_BattleBrendan
|
2017-11-10 02:21:31 +01:00
|
|
|
releaseall
|
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_PlayMayMusic:: @ 81F4501
|
2020-08-21 00:02:00 +02:00
|
|
|
playbgm MUS_ENCOUNTER_MAY, 1
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_PlayBrendanMusic:: @ 81F4506
|
2020-08-21 00:02:00 +02:00
|
|
|
playbgm MUS_ENCOUNTER_BRENDAN, 1
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_BattleMay:: @ 81F450B
|
|
|
|
msgbox Route119_Text_MayIntro, MSGBOX_DEFAULT
|
2018-08-08 10:37:12 +02:00
|
|
|
switch VAR_STARTER_MON
|
2019-11-12 17:07:43 +01:00
|
|
|
case 0, Route119_EventScript_BattleMayTreecko
|
|
|
|
case 1, Route119_EventScript_BattleMayTorchic
|
|
|
|
case 2, Route119_EventScript_BattleMayMudkip
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_BattleMayTreecko:: @ 81F453A
|
2019-12-26 04:39:06 +01:00
|
|
|
trainerbattle_no_intro TRAINER_MAY_ROUTE_119_TREECKO, Route119_Text_MayDefeat
|
2019-11-12 17:07:43 +01:00
|
|
|
goto Route119_EventScript_DefeatedMay
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_BattleMayTorchic:: @ 81F454A
|
2019-12-26 04:39:06 +01:00
|
|
|
trainerbattle_no_intro TRAINER_MAY_ROUTE_119_TORCHIC, Route119_Text_MayDefeat
|
2019-11-12 17:07:43 +01:00
|
|
|
goto Route119_EventScript_DefeatedMay
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_BattleMayMudkip:: @ 81F455A
|
2019-12-26 04:39:06 +01:00
|
|
|
trainerbattle_no_intro TRAINER_MAY_ROUTE_119_MUDKIP, Route119_Text_MayDefeat
|
2019-11-12 17:07:43 +01:00
|
|
|
goto Route119_EventScript_DefeatedMay
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_DefeatedMay:: @ 81F456A
|
|
|
|
msgbox Route119_Text_MayPresentForYou, MSGBOX_DEFAULT
|
|
|
|
call Route119_EventScript_GiveFlyHM
|
|
|
|
msgbox Route119_Text_MayExplainFly, MSGBOX_DEFAULT
|
|
|
|
goto Route119_EventScript_RivalExitScottArrive
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_BattleBrendan:: @ 81F4585
|
|
|
|
msgbox Route119_Text_BrendanIntro, MSGBOX_DEFAULT
|
2018-08-08 10:37:12 +02:00
|
|
|
switch VAR_STARTER_MON
|
2019-11-12 17:07:43 +01:00
|
|
|
case 0, Route119_EventScript_BattleBrendanTreecko
|
|
|
|
case 1, Route119_EventScript_BattleBrendanTorchic
|
|
|
|
case 2, Route119_EventScript_BattleBrendanMudkip
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_BattleBrendanTreecko:: @ 81F45B4
|
2019-12-26 04:39:06 +01:00
|
|
|
trainerbattle_no_intro TRAINER_BRENDAN_ROUTE_119_TREECKO, Route119_Text_BrendanDefeat
|
2019-11-12 17:07:43 +01:00
|
|
|
goto Route119_EventScript_DefeatedBrendan
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_BattleBrendanTorchic:: @ 81F45C4
|
2019-12-26 04:39:06 +01:00
|
|
|
trainerbattle_no_intro TRAINER_BRENDAN_ROUTE_119_TORCHIC, Route119_Text_BrendanDefeat
|
2019-11-12 17:07:43 +01:00
|
|
|
goto Route119_EventScript_DefeatedBrendan
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_BattleBrendanMudkip:: @ 81F45D4
|
2019-12-26 04:39:06 +01:00
|
|
|
trainerbattle_no_intro TRAINER_BRENDAN_ROUTE_119_MUDKIP, Route119_Text_BrendanDefeat
|
2019-11-12 17:07:43 +01:00
|
|
|
goto Route119_EventScript_DefeatedBrendan
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_DefeatedBrendan:: @ 81F45E4
|
|
|
|
msgbox Route119_Text_BrendanIllGiveYouThis, MSGBOX_DEFAULT
|
|
|
|
call Route119_EventScript_GiveFlyHM
|
|
|
|
msgbox Route119_Text_BrendanExplainFly, MSGBOX_DEFAULT
|
|
|
|
goto Route119_EventScript_RivalExitScottArrive
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_GiveFlyHM:: @ 81F45FF
|
2020-01-11 18:02:58 +01:00
|
|
|
giveitem ITEM_HM02
|
2019-01-02 22:12:43 +01:00
|
|
|
setflag FLAG_RECEIVED_HM02
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_RivalExitScottArrive:: @ 81F460F
|
2017-11-10 02:21:31 +01:00
|
|
|
closemessage
|
2018-05-19 18:02:43 +02:00
|
|
|
compare VAR_TEMP_1, 1
|
2019-11-12 17:07:43 +01:00
|
|
|
call_if_eq Route119_EventScript_SetRivalPos1
|
2018-05-19 18:02:43 +02:00
|
|
|
compare VAR_TEMP_1, 2
|
2019-11-12 17:07:43 +01:00
|
|
|
call_if_eq Route119_EventScript_SetRivalPos2
|
2020-06-21 07:56:57 +02:00
|
|
|
removeobject LOCALID_RIVAL
|
|
|
|
addobject LOCALID_RIVAL_ON_BIKE
|
2017-11-10 02:21:31 +01:00
|
|
|
delay 30
|
2018-05-19 18:02:43 +02:00
|
|
|
compare VAR_TEMP_1, 1
|
2019-11-12 17:07:43 +01:00
|
|
|
call_if_eq Route119_EventScript_RivalExit1
|
2018-05-19 18:02:43 +02:00
|
|
|
compare VAR_TEMP_1, 2
|
2019-11-12 17:07:43 +01:00
|
|
|
call_if_eq Route119_EventScript_RivalExit2
|
2020-06-21 07:56:57 +02:00
|
|
|
removeobject LOCALID_RIVAL_ON_BIKE
|
2019-02-22 10:01:38 +01:00
|
|
|
setvar VAR_ROUTE119_STATE, 1
|
2017-12-22 08:46:19 +01:00
|
|
|
savebgm MUS_DUMMY
|
2017-11-10 02:21:31 +01:00
|
|
|
fadedefaultbgm
|
|
|
|
delay 60
|
2018-05-19 18:02:43 +02:00
|
|
|
compare VAR_TEMP_1, 1
|
2019-11-12 17:07:43 +01:00
|
|
|
call_if_eq Route119_EventScript_SetScottPos1
|
2018-05-19 18:02:43 +02:00
|
|
|
compare VAR_TEMP_1, 2
|
2019-11-12 17:07:43 +01:00
|
|
|
call_if_eq Route119_EventScript_SetScottPos2
|
2020-06-21 07:56:57 +02:00
|
|
|
addobject LOCALID_SCOTT
|
|
|
|
applymovement LOCALID_SCOTT, Route119_Movement_ScottEnter
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
2019-02-28 02:25:09 +01:00
|
|
|
addvar VAR_SCOTT_STATE, 1
|
2019-11-12 17:07:43 +01:00
|
|
|
msgbox Route119_Text_ScottWayToGoBeSeeingYou, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
closemessage
|
2018-05-19 18:02:43 +02:00
|
|
|
compare VAR_TEMP_1, 1
|
2019-11-12 17:07:43 +01:00
|
|
|
call_if_eq Route119_EventScript_ScottExit1
|
2018-05-19 18:02:43 +02:00
|
|
|
compare VAR_TEMP_1, 2
|
2019-11-12 17:07:43 +01:00
|
|
|
call_if_eq Route119_EventScript_ScottExit2
|
2020-06-21 07:56:57 +02:00
|
|
|
removeobject LOCALID_SCOTT
|
2017-11-10 02:21:31 +01:00
|
|
|
releaseall
|
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_SetScottPos1:: @ 81F46A0
|
2020-06-21 07:56:57 +02:00
|
|
|
setobjectxyperm LOCALID_SCOTT, 27, 25
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_SetScottPos2:: @ 81F46A8
|
2020-06-21 07:56:57 +02:00
|
|
|
setobjectxyperm LOCALID_SCOTT, 28, 25
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_ScottExit1:: @ 81F46B0
|
2020-06-21 07:56:57 +02:00
|
|
|
applymovement LOCALID_SCOTT, Route119_Movement_ScottExit1
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
|
|
|
return
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_ScottExit2:: @ 81F46BB
|
2020-06-21 07:56:57 +02:00
|
|
|
applymovement LOCALID_SCOTT, Route119_Movement_ScottExit2
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
|
|
|
return
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_RivalEnter1:: @ 81F46C6
|
2020-06-21 07:56:57 +02:00
|
|
|
applymovement LOCALID_RIVAL_ON_BIKE, Route119_Movement_RivalEnter1
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
|
|
|
return
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_RivalEnter2:: @ 81F46D1
|
2020-06-21 07:56:57 +02:00
|
|
|
applymovement LOCALID_RIVAL_ON_BIKE, Route119_Movement_RivalEnter2
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
|
|
|
return
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_RivalExit1:: @ 81F46DC
|
2019-11-21 05:12:51 +01:00
|
|
|
applymovement OBJ_EVENT_ID_PLAYER, Route119_Movement_PlayerWatchRivalExit1
|
2020-06-21 07:56:57 +02:00
|
|
|
applymovement LOCALID_RIVAL_ON_BIKE, Route119_Movement_RivalExit1
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
|
|
|
return
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_RivalExit2:: @ 81F46EE
|
2019-11-21 05:12:51 +01:00
|
|
|
applymovement OBJ_EVENT_ID_PLAYER, Route119_Movement_PlayerWatchRivalExit2
|
2020-06-21 07:56:57 +02:00
|
|
|
applymovement LOCALID_RIVAL_ON_BIKE, Route119_Movement_RivalExit2
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
|
|
|
return
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_SetRivalPos1:: @ 81F4700
|
2020-06-21 07:56:57 +02:00
|
|
|
setobjectxyperm LOCALID_RIVAL, 25, 32
|
|
|
|
setobjectxyperm LOCALID_RIVAL_ON_BIKE, 25, 32
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_SetRivalPos2:: @ 81F470F
|
2020-06-21 07:56:57 +02:00
|
|
|
setobjectxyperm LOCALID_RIVAL, 26, 32
|
|
|
|
setobjectxyperm LOCALID_RIVAL_ON_BIKE, 26, 32
|
2017-11-10 02:21:31 +01:00
|
|
|
return
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Movement_PlayerWatchRivalExit1: @ 81F471E
|
2018-06-14 01:19:19 +02:00
|
|
|
delay_16
|
|
|
|
walk_in_place_fastest_right
|
|
|
|
delay_8
|
|
|
|
walk_in_place_fastest_up
|
2017-11-10 02:21:31 +01:00
|
|
|
step_end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Movement_PlayerWatchRivalExit2: @ 81F4723
|
2018-06-14 01:19:19 +02:00
|
|
|
delay_16
|
|
|
|
walk_in_place_fastest_left
|
|
|
|
delay_8
|
|
|
|
walk_in_place_fastest_up
|
2017-11-10 02:21:31 +01:00
|
|
|
step_end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Movement_RivalEnter1: @ 81F4728
|
2018-06-14 01:19:19 +02:00
|
|
|
walk_fast_right
|
|
|
|
walk_fast_right
|
|
|
|
walk_fast_right
|
|
|
|
walk_fast_right
|
|
|
|
walk_fast_right
|
|
|
|
walk_fast_right
|
|
|
|
walk_fast_right
|
|
|
|
walk_fast_right
|
|
|
|
walk_fast_up
|
2017-11-10 02:21:31 +01:00
|
|
|
step_end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Movement_RivalEnter2: @ 81F4732
|
2018-06-14 01:19:19 +02:00
|
|
|
walk_fast_right
|
|
|
|
walk_fast_right
|
|
|
|
walk_fast_right
|
|
|
|
walk_fast_right
|
|
|
|
walk_fast_right
|
|
|
|
walk_fast_right
|
|
|
|
walk_fast_right
|
|
|
|
walk_fast_right
|
|
|
|
walk_fast_right
|
|
|
|
walk_fast_up
|
2017-11-10 02:21:31 +01:00
|
|
|
step_end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Movement_RivalExit1: @ 81F473D
|
2018-06-14 01:19:19 +02:00
|
|
|
walk_fast_right
|
|
|
|
walk_fast_up
|
|
|
|
walk_fast_up
|
|
|
|
walk_fast_up
|
|
|
|
walk_fast_right
|
|
|
|
walk_fast_up
|
|
|
|
walk_fast_up
|
|
|
|
walk_fast_up
|
|
|
|
walk_fast_up
|
2017-11-10 02:21:31 +01:00
|
|
|
step_end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Movement_RivalExit2: @ 81F4747
|
2018-06-14 01:19:19 +02:00
|
|
|
walk_fast_left
|
|
|
|
walk_fast_up
|
|
|
|
walk_fast_up
|
|
|
|
walk_fast_up
|
|
|
|
walk_fast_right
|
|
|
|
walk_fast_right
|
|
|
|
walk_fast_up
|
|
|
|
walk_fast_up
|
|
|
|
walk_fast_up
|
|
|
|
walk_fast_up
|
2017-11-10 02:21:31 +01:00
|
|
|
step_end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Movement_ScottEnter: @ 81F4752
|
2018-06-14 01:19:19 +02:00
|
|
|
walk_down
|
|
|
|
walk_down
|
|
|
|
walk_down
|
|
|
|
walk_down
|
|
|
|
walk_left
|
|
|
|
walk_left
|
|
|
|
walk_down
|
2017-11-10 02:21:31 +01:00
|
|
|
step_end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Movement_ScottExit1: @ 81F475A
|
2018-06-14 01:19:19 +02:00
|
|
|
walk_up
|
|
|
|
walk_right
|
|
|
|
walk_right
|
|
|
|
walk_up
|
|
|
|
walk_up
|
|
|
|
walk_up
|
|
|
|
walk_up
|
|
|
|
walk_up
|
2017-11-10 02:21:31 +01:00
|
|
|
step_end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Movement_ScottExit2: @ 81F4763
|
2018-06-14 01:19:19 +02:00
|
|
|
walk_up
|
|
|
|
walk_right
|
|
|
|
walk_up
|
|
|
|
walk_up
|
|
|
|
walk_up
|
|
|
|
walk_up
|
|
|
|
walk_up
|
2017-11-10 02:21:31 +01:00
|
|
|
step_end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_CyclingTriathleteM:: @ 81F476B
|
|
|
|
msgbox Route119_Text_TallGrassSnaresBikeTires, MSGBOX_NPC
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_RouteSignFortree:: @ 81F4774
|
|
|
|
msgbox Route119_Text_RouteSignFortree, MSGBOX_SIGN
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_WeatherInstituteSign:: @ 81F477D
|
|
|
|
msgbox Route119_Text_WeatherInstitute, MSGBOX_SIGN
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_Brent:: @ 81F4786
|
|
|
|
trainerbattle_single TRAINER_BRENT, Route119_Text_BrentIntro, Route119_Text_BrentDefeat
|
|
|
|
msgbox Route119_Text_BrentPostBattle, MSGBOX_AUTOCLOSE
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_Donald:: @ 81F479D
|
|
|
|
trainerbattle_single TRAINER_DONALD, Route119_Text_DonaldIntro, Route119_Text_DonaldDefeat
|
|
|
|
msgbox Route119_Text_DonaldPostBattle, MSGBOX_AUTOCLOSE
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_Taylor:: @ 81F47B4
|
|
|
|
trainerbattle_single TRAINER_TAYLOR, Route119_Text_TaylorIntro, Route119_Text_TaylorDefeat
|
|
|
|
msgbox Route119_Text_TaylorPostBattle, MSGBOX_AUTOCLOSE
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_Doug:: @ 81F47CB
|
|
|
|
trainerbattle_single TRAINER_DOUG, Route119_Text_DougIntro, Route119_Text_DougDefeat
|
|
|
|
msgbox Route119_Text_DougPostBattle, MSGBOX_AUTOCLOSE
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_Greg:: @ 81F47E2
|
|
|
|
trainerbattle_single TRAINER_GREG, Route119_Text_GregIntro, Route119_Text_GregDefeat
|
|
|
|
msgbox Route119_Text_GregPostBattle, MSGBOX_AUTOCLOSE
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_Kent:: @ 81F47F9
|
|
|
|
trainerbattle_single TRAINER_KENT, Route119_Text_KentIntro, Route119_Text_KentDefeat
|
|
|
|
msgbox Route119_Text_KentPostBattle, MSGBOX_AUTOCLOSE
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_Jackson:: @ 81F4810
|
|
|
|
trainerbattle_single TRAINER_JACKSON_1, Route119_Text_JacksonIntro, Route119_Text_JacksonDefeat, Route119_EventScript_RegisterJackson
|
2017-12-01 21:25:13 +01:00
|
|
|
specialvar VAR_RESULT, ShouldTryRematchBattle
|
2019-11-12 17:07:43 +01:00
|
|
|
compare VAR_RESULT, TRUE
|
|
|
|
goto_if_eq Route119_EventScript_RematchJackson
|
|
|
|
msgbox Route119_Text_JacksonPostBattle, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_RegisterJackson:: @ 81F483C
|
2019-11-01 08:41:55 +01:00
|
|
|
special PlayerFaceTrainerAfterBattle
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
2019-11-12 17:07:43 +01:00
|
|
|
msgbox Route119_Text_JacksonRegister, MSGBOX_DEFAULT
|
2018-12-02 12:04:59 +01:00
|
|
|
register_matchcall TRAINER_JACKSON_1
|
2017-11-10 02:21:31 +01:00
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_RematchJackson:: @ 81F485B
|
|
|
|
trainerbattle_rematch TRAINER_JACKSON_1, Route119_Text_JacksonRematchIntro, Route119_Text_JacksonRematchDefeat
|
|
|
|
msgbox Route119_Text_JacksonPostRematch, MSGBOX_AUTOCLOSE
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_Catherine:: @ 81F4872
|
|
|
|
trainerbattle_single TRAINER_CATHERINE_1, Route119_Text_CatherineIntro, Route119_Text_CatherineDefeat, Route119_EventScript_RegisterCatherine
|
2017-12-01 21:25:13 +01:00
|
|
|
specialvar VAR_RESULT, ShouldTryRematchBattle
|
2019-11-12 17:07:43 +01:00
|
|
|
compare VAR_RESULT, TRUE
|
|
|
|
goto_if_eq Route119_EventScript_RematchCatherine
|
|
|
|
msgbox Route119_Text_CatherinePostBattle, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_RegisterCatherine:: @ 81F489E
|
2019-11-01 08:41:55 +01:00
|
|
|
special PlayerFaceTrainerAfterBattle
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
2019-11-12 17:07:43 +01:00
|
|
|
msgbox Route119_Text_CatherineRegister, MSGBOX_DEFAULT
|
2018-12-02 12:04:59 +01:00
|
|
|
register_matchcall TRAINER_CATHERINE_1
|
2017-11-10 02:21:31 +01:00
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_RematchCatherine:: @ 81F48BD
|
|
|
|
trainerbattle_rematch TRAINER_CATHERINE_1, Route119_Text_CatherineRematchIntro, Route119_Text_CatherineRematchDefeat
|
|
|
|
msgbox Route119_Text_CatherinePostRematch, MSGBOX_AUTOCLOSE
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_Hugh:: @ 81F48D4
|
|
|
|
trainerbattle_single TRAINER_HUGH, Route119_Text_HughIntro, Route119_Text_HughDefeat
|
|
|
|
msgbox Route119_Text_HughPostBattle, MSGBOX_AUTOCLOSE
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_Phil:: @ 81F48EB
|
|
|
|
trainerbattle_single TRAINER_PHIL, Route119_Text_PhilIntro, Route119_Text_PhilDefeat
|
|
|
|
msgbox Route119_Text_PhilPostBattle, MSGBOX_AUTOCLOSE
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_Yasu:: @ 81F4902
|
|
|
|
trainerbattle_single TRAINER_YASU, Route119_Text_YasuIntro, Route119_Text_YasuDefeat
|
|
|
|
msgbox Route119_Text_YasuPostBattle, MSGBOX_AUTOCLOSE
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_Takashi:: @ 81F4919
|
|
|
|
trainerbattle_single TRAINER_TAKASHI, Route119_Text_TakashiIntro, Route119_Text_TakashiDefeat
|
|
|
|
msgbox Route119_Text_TakashiPostBattle, MSGBOX_AUTOCLOSE
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_Hideo:: @ 81F4930
|
|
|
|
trainerbattle_single TRAINER_HIDEO, Route119_Text_HideoIntro, Route119_Text_HideoDefeat
|
|
|
|
msgbox Route119_Text_HideoPostBattle, MSGBOX_AUTOCLOSE
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_Chris:: @ 81F4947
|
|
|
|
trainerbattle_single TRAINER_CHRIS, Route119_Text_ChrisIntro, Route119_Text_ChrisDefeat
|
|
|
|
msgbox Route119_Text_ChrisPostBattle, MSGBOX_AUTOCLOSE
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_Fabian:: @ 81F495E
|
|
|
|
trainerbattle_single TRAINER_FABIAN, Route119_Text_FabianIntro, Route119_Text_FabianDefeat
|
|
|
|
msgbox Route119_Text_FabianPostBattle, MSGBOX_AUTOCLOSE
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_Dayton:: @ 81F4975
|
|
|
|
trainerbattle_single TRAINER_DAYTON, Route119_Text_DaytonIntro, Route119_Text_DaytonDefeat
|
|
|
|
msgbox Route119_Text_DaytonPostBattle, MSGBOX_AUTOCLOSE
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_Rachel:: @ 81F498C
|
|
|
|
trainerbattle_single TRAINER_RACHEL, Route119_Text_RachelIntro, Route119_Text_RachelDefeat
|
|
|
|
msgbox Route119_Text_RachelPostBattle, MSGBOX_AUTOCLOSE
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_BridgeAquaGrunt1:: @ 81F49A3
|
2017-11-10 02:21:31 +01:00
|
|
|
lock
|
|
|
|
faceplayer
|
2019-11-12 17:07:43 +01:00
|
|
|
msgbox Route119_Text_StayAwayFromWeatherInstitute, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
closemessage
|
2019-02-23 02:09:14 +01:00
|
|
|
applymovement VAR_LAST_TALKED, Common_Movement_FaceOriginalDirection
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_BridgeAquaGrunt2:: @ 81F49BA
|
2017-11-10 02:21:31 +01:00
|
|
|
lock
|
|
|
|
faceplayer
|
2019-11-12 17:07:43 +01:00
|
|
|
msgbox Route119_Text_DontGoNearWeatherInstitute, MSGBOX_DEFAULT
|
2017-11-10 02:21:31 +01:00
|
|
|
closemessage
|
2019-02-23 02:09:14 +01:00
|
|
|
applymovement VAR_LAST_TALKED, Common_Movement_FaceOriginalDirection
|
2017-11-10 02:21:31 +01:00
|
|
|
waitmovement 0
|
|
|
|
release
|
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_Boy1:: @ 81F49D1
|
|
|
|
msgbox Route119_Text_ThoughtFlyByCatchingBirdMons, MSGBOX_NPC
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_Boy2:: @ 81F49DA
|
|
|
|
msgbox Route119_Text_CanYourMonMakeSecretBase, MSGBOX_NPC
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_TrainerTipsDecoration:: @ 81F49E3
|
|
|
|
msgbox Route119_Text_TrainerTipsDecoration, MSGBOX_SIGN
|
2017-11-10 02:21:31 +01:00
|
|
|
end
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_EventScript_ScottWonAtFortreeGymCall:: @ 81F49EC
|
2017-11-10 09:24:21 +01:00
|
|
|
lockall
|
2019-11-12 17:07:43 +01:00
|
|
|
pokenavcall Route119_Text_ScottYouWonAtFortreeGym
|
2017-11-10 09:24:21 +01:00
|
|
|
waitmessage
|
2019-11-12 17:07:43 +01:00
|
|
|
clearflag FLAG_SCOTT_CALL_FORTREE_GYM
|
2019-02-28 02:25:09 +01:00
|
|
|
addvar VAR_SCOTT_STATE, 1
|
2017-11-10 09:24:21 +01:00
|
|
|
releaseall
|
|
|
|
end
|
2017-11-10 08:36:41 +01:00
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Text_MayIntro: @ 81F49FD
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "MAY: {PLAYER}{KUN}!\n"
|
|
|
|
.string "Where were you? I was looking for you!\p"
|
|
|
|
.string "How much stronger have you gotten?\n"
|
|
|
|
.string "Let me check for you!\p"
|
|
|
|
.string "Ready with your POKéMON?\n"
|
|
|
|
.string "Of course you are! Go!$"
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Text_MayDefeat: @ 81F4A98
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "Achah!\n"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "{PLAYER}{KUN}, you're strong!\p"
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "I was worried that you might be\n"
|
|
|
|
.string "struggling with your training.$"
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Text_MayPresentForYou: @ 81F4AF3
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "MAY: But I had absolutely nothing to\n"
|
|
|
|
.string "worry about! Keep it up!\p"
|
|
|
|
.string "And, here! I have a present for you.$"
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Text_MayExplainFly: @ 81F4B56
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "MAY: Use FLY, and your POKéMON will\n"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "instantly carry you to any town you've\l"
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "already visited.\p"
|
|
|
|
.string "But, to use FLY, you have to get\n"
|
|
|
|
.string "the GYM BADGE from FORTREE CITY.\l"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "That's important, so don't forget.\p"
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "You should FLY home and visit\n"
|
|
|
|
.string "LITTLEROOT for a change.\p"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "I bet your mom's worried about you,\n"
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "{PLAYER}{KUN}.\p"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "Well, let's meet again somewhere!$"
|
2017-11-10 08:36:41 +01:00
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Text_BrendanIntro: @ 81F4C9A
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "BRENDAN: {PLAYER}! So this is where\n"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "you've been looking for POKéMON?\p"
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "Let me see how good you got.\n"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "I'll test you!\p"
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "Now!\n"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "It's a battle, so battle!$"
|
2017-11-10 08:36:41 +01:00
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Text_BrendanDefeat: @ 81F4D24
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "Hmm…\n"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "You've gotten pretty darn decent.$"
|
2017-11-10 08:36:41 +01:00
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Text_BrendanIllGiveYouThis: @ 81F4D4B
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "BRENDAN: I'd say you're good enough\n"
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "to search for POKéMON anywhere.\p"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "Here, I'll give you this.\n"
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "Try it out.$"
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Text_BrendanExplainFly: @ 81F4DB5
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "BRENDAN: Use FLY, and your POKéMON\n"
|
|
|
|
.string "instantly carries you to any town\l"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "you've already visited.\p"
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "But you need the FORTREE GYM BADGE \n"
|
|
|
|
.string "to do that.\p"
|
|
|
|
.string "Anyway, I have to move along.$"
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Text_ScottWayToGoBeSeeingYou: @ 81F4E60
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "SCOTT: Hahahah!\n"
|
|
|
|
.string "Way to go, {PLAYER}{KUN}!\p"
|
|
|
|
.string "I just passed by a TRAINER riding\n"
|
|
|
|
.string "a BIKE.\p"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "You just beat that TRAINER, didn't you?\n"
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "It was pretty obvious that you did.\p"
|
|
|
|
.string "The kid looked really upset with\n"
|
|
|
|
.string "a face all red from anger.\p"
|
|
|
|
.string "I sure seem to run into you often.\n"
|
|
|
|
.string "Are you off to FORTREE GYM next?\p"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "I expect that you'll do well at the GYM.\n"
|
|
|
|
.string "Well, I'll be seeing you!$"
|
2017-11-10 08:36:41 +01:00
|
|
|
|
2017-11-10 09:24:21 +01:00
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Text_ScottYouWonAtFortreeGym: @ 81F4FBA
|
2017-11-10 09:24:21 +01:00
|
|
|
.string "… … … … … …\n"
|
|
|
|
.string "… … … … … Beep!\p"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "SCOTT: Hiya, {PLAYER}{KUN}, it's me!\p"
|
2017-11-10 09:24:21 +01:00
|
|
|
.string "Just as I thought, you won at\n"
|
|
|
|
.string "the FORTREE GYM.\p"
|
|
|
|
.string "Your strength…\n"
|
|
|
|
.string "Perhaps you really are the TRAINER\l"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "that I've been searching for.\p"
|
2017-11-10 09:24:21 +01:00
|
|
|
.string "Remember, you have a fan in me.\n"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "I'll be cheering from the sidelines.\l"
|
2017-11-10 09:24:21 +01:00
|
|
|
.string "Keep up the great work!\p"
|
|
|
|
.string "… … … … … …\n"
|
|
|
|
.string "… … … … … Click!$"
|
2017-11-10 08:36:41 +01:00
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Text_StayAwayFromWeatherInstitute: @ 81F50EB
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "We're standing lookout here.\p"
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "Hey, you! Stay away from the WEATHER\n"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "INSTITUTE. It's not safe.$"
|
2017-11-10 08:36:41 +01:00
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Text_DontGoNearWeatherInstitute: @ 81F5147
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "Lookout duty is surprisingly boring.\p"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "Hey, you! Please don't go near the\n"
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "WEATHER INSTITUTE.$"
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Text_ThoughtFlyByCatchingBirdMons: @ 81F51A2
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "I thought you FLY by catching a whole\n"
|
|
|
|
.string "flock of BIRD POKéMON, and then\l"
|
|
|
|
.string "hanging on to them somehow.\p"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "But it turns out there's an HM move\n"
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "called FLY!\p"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "I wish I'd known about that a long\n"
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "time ago…$"
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Text_TallGrassSnaresBikeTires: @ 81F5261
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "Tch…\n"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "It's a no-go…\p"
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "The tall grass snares BIKE tires.\n"
|
2018-12-07 16:41:08 +01:00
|
|
|
.string "There's no way you can cycle here.$"
|
2017-11-10 08:36:41 +01:00
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Text_CanYourMonMakeSecretBase: @ 81F52B9
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "Can your POKéMON use its SECRET POWER\n"
|
|
|
|
.string "on a big pile of grass and make a\l"
|
|
|
|
.string "SECRET BASE?$"
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Text_RouteSignFortree: @ 81F530E
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "ROUTE 119\n"
|
2018-07-25 06:18:23 +02:00
|
|
|
.string "{RIGHT_ARROW} FORTREE CITY$"
|
2017-11-10 08:36:41 +01:00
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Text_WeatherInstitute: @ 81F5327
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "WEATHER INSTITUTE$"
|
|
|
|
|
2019-11-12 17:07:43 +01:00
|
|
|
Route119_Text_TrainerTipsDecoration: @ 81F5339
|
2017-11-10 08:36:41 +01:00
|
|
|
.string "TRAINER TIPS\p"
|
|
|
|
.string "Up to sixteen decorations and\n"
|
|
|
|
.string "furniture items can be placed in\l"
|
|
|
|
.string "a SECRET BASE.\p"
|
|
|
|
.string "Pick your favorite items and create\n"
|
|
|
|
.string "your very own SECRET BASE exactly the\l"
|
|
|
|
.string "way you want.$"
|