Document several route scripts

This commit is contained in:
Marcus Huderle
2019-10-24 20:04:02 -05:00
committed by huderlem
parent 7d24f2d62c
commit 83d0a87d0c
13 changed files with 275 additions and 275 deletions
+2 -2
View File
@@ -379,11 +379,11 @@ Route104_EventScript_1ED0EF:: @ 81ED0EF
applymovement 7, Route104_Movement_1ED1C8 applymovement 7, Route104_Movement_1ED1C8
applymovement EVENT_OBJ_ID_PLAYER, Route104_Movement_1ED1C8 applymovement EVENT_OBJ_ID_PLAYER, Route104_Movement_1ED1C8
waitmovement 0 waitmovement 0
pokenavcall Route104_Text_1EE336 pokenavcall Route104_Text_DadPokenavCall
waitmessage waitmessage
delay 30 delay 30
playfanfare MUS_ME_TORE_EYE playfanfare MUS_ME_TORE_EYE
msgbox Route104_Text_1EE463, MSGBOX_DEFAULT msgbox Route104_Text_RegisteredDadInPokenav, MSGBOX_DEFAULT
waitfanfare waitfanfare
closemessage closemessage
delay 30 delay 30
@@ -24,7 +24,7 @@
"movement_range_y": 0, "movement_range_y": 0,
"trainer_type": "0", "trainer_type": "0",
"trainer_sight_or_berry_tree_id": "0", "trainer_sight_or_berry_tree_id": "0",
"script": "Route104_PrettyPetalFlowerShop_EventScript_22A373", "script": "Route104_PrettyPetalFlowerShop_EventScript_ShopOwner",
"flag": "0" "flag": "0"
}, },
{ {
@@ -37,7 +37,7 @@
"movement_range_y": 0, "movement_range_y": 0,
"trainer_type": "0", "trainer_type": "0",
"trainer_sight_or_berry_tree_id": "0", "trainer_sight_or_berry_tree_id": "0",
"script": "Route104_PrettyPetalFlowerShop_EventScript_22A40C", "script": "Route104_PrettyPetalFlowerShop_EventScript_WailmerPailGirl",
"flag": "0" "flag": "0"
}, },
{ {
@@ -50,7 +50,7 @@
"movement_range_y": 2, "movement_range_y": 2,
"trainer_type": "0", "trainer_type": "0",
"trainer_sight_or_berry_tree_id": "0", "trainer_sight_or_berry_tree_id": "0",
"script": "Route104_PrettyPetalFlowerShop_EventScript_22A442", "script": "Route104_PrettyPetalFlowerShop_EventScript_RandomBerryGirl",
"flag": "0" "flag": "0"
} }
], ],
@@ -4,48 +4,48 @@ Route104_PrettyPetalFlowerShop_MapScripts:: @ 822A34C
Route104_PrettyPetalFlowerShop_OnTransition: @ 822A352 Route104_PrettyPetalFlowerShop_OnTransition: @ 822A352
setflag FLAG_LANDMARK_FLOWER_SHOP setflag FLAG_LANDMARK_FLOWER_SHOP
goto_if_unset FLAG_MET_PRETTY_PETAL_SHOP_OWNER, Route104_PrettyPetalFlowerShop_EventScript_22A36B goto_if_unset FLAG_MET_PRETTY_PETAL_SHOP_OWNER, Route104_PrettyPetalFlowerShop_EventScript_MoveShopOwner
goto_if_unset FLAG_BADGE03_GET, Route104_PrettyPetalFlowerShop_EventScript_22A36B goto_if_unset FLAG_BADGE03_GET, Route104_PrettyPetalFlowerShop_EventScript_MoveShopOwner
setflag FLAG_TEMP_1 setflag FLAG_TEMP_1
end end
Route104_PrettyPetalFlowerShop_EventScript_22A36B:: @ 822A36B Route104_PrettyPetalFlowerShop_EventScript_MoveShopOwner:: @ 822A36B
setobjectxyperm 1, 4, 6 setobjectxyperm 1, 4, 6
end end
Route104_PrettyPetalFlowerShop_EventScript_22A373:: @ 822A373 Route104_PrettyPetalFlowerShop_EventScript_ShopOwner:: @ 822A373
lock lock
faceplayer faceplayer
goto_if_set FLAG_TEMP_1, Route104_PrettyPetalFlowerShop_EventScript_22A3E4 goto_if_set FLAG_TEMP_1, Route104_PrettyPetalFlowerShop_EventScript_SellDecorations
msgbox Route104_PrettyPetalFlowerShop_Text_2A7686, MSGBOX_DEFAULT msgbox Route104_PrettyPetalFlowerShop_Text_ThisIsPrettyPetalFlowerShop, MSGBOX_DEFAULT
goto_if_set FLAG_MET_PRETTY_PETAL_SHOP_OWNER, Route104_PrettyPetalFlowerShop_EventScript_22A3B2 goto_if_set FLAG_MET_PRETTY_PETAL_SHOP_OWNER, Route104_PrettyPetalFlowerShop_EventScript_AlreadyMet
setflag FLAG_MET_PRETTY_PETAL_SHOP_OWNER setflag FLAG_MET_PRETTY_PETAL_SHOP_OWNER
msgbox Route104_PrettyPetalFlowerShop_Text_2A7706, MSGBOX_YESNO msgbox Route104_PrettyPetalFlowerShop_Text_IntroLearnAboutBerries, MSGBOX_YESNO
compare VAR_RESULT, 1 compare VAR_RESULT, TRUE
call_if_eq Route104_PrettyPetalFlowerShop_EventScript_22A3D2 call_if_eq Route104_PrettyPetalFlowerShop_EventScript_ExplainBerries
compare VAR_RESULT, 0 compare VAR_RESULT, FALSE
call_if_eq Route104_PrettyPetalFlowerShop_EventScript_22A3DB call_if_eq Route104_PrettyPetalFlowerShop_EventScript_DontExplainBerries
release release
end end
Route104_PrettyPetalFlowerShop_EventScript_22A3B2:: @ 822A3B2 Route104_PrettyPetalFlowerShop_EventScript_AlreadyMet:: @ 822A3B2
msgbox Route104_PrettyPetalFlowerShop_Text_2A76D9, MSGBOX_YESNO msgbox Route104_PrettyPetalFlowerShop_Text_LearnAboutBerries, MSGBOX_YESNO
compare VAR_RESULT, 1 compare VAR_RESULT, TRUE
call_if_eq Route104_PrettyPetalFlowerShop_EventScript_22A3D2 call_if_eq Route104_PrettyPetalFlowerShop_EventScript_ExplainBerries
compare VAR_RESULT, 0 compare VAR_RESULT, FALSE
call_if_eq Route104_PrettyPetalFlowerShop_EventScript_22A3DB call_if_eq Route104_PrettyPetalFlowerShop_EventScript_DontExplainBerries
release release
end end
Route104_PrettyPetalFlowerShop_EventScript_22A3D2:: @ 822A3D2 Route104_PrettyPetalFlowerShop_EventScript_ExplainBerries:: @ 822A3D2
msgbox Route104_PrettyPetalFlowerShop_Text_2A775B, MSGBOX_DEFAULT msgbox Route104_PrettyPetalFlowerShop_Text_BerriesExplanation, MSGBOX_DEFAULT
return return
Route104_PrettyPetalFlowerShop_EventScript_22A3DB:: @ 822A3DB Route104_PrettyPetalFlowerShop_EventScript_DontExplainBerries:: @ 822A3DB
msgbox Route104_PrettyPetalFlowerShop_Text_2A78DF, MSGBOX_DEFAULT msgbox Route104_PrettyPetalFlowerShop_Text_FlowersBringHappiness, MSGBOX_DEFAULT
return return
Route104_PrettyPetalFlowerShop_EventScript_22A3E4:: @ 822A3E4 Route104_PrettyPetalFlowerShop_EventScript_SellDecorations:: @ 822A3E4
message gText_PlayerWhatCanIDoForYou message gText_PlayerWhatCanIDoForYou
waitmessage waitmessage
pokemartdecoration2 Route104_PrettyPetalFlowerShop_Pokemart_Plants pokemartdecoration2 Route104_PrettyPetalFlowerShop_Pokemart_Plants
@@ -65,39 +65,39 @@ Route104_PrettyPetalFlowerShop_Pokemart_Plants: @ 822A3FC
release release
end end
Route104_PrettyPetalFlowerShop_EventScript_22A40C:: @ 822A40C Route104_PrettyPetalFlowerShop_EventScript_WailmerPailGirl:: @ 822A40C
lock lock
faceplayer faceplayer
goto_if_unset FLAG_RECEIVED_WAILMER_PAIL, Route104_PrettyPetalFlowerShop_EventScript_22A421 goto_if_unset FLAG_RECEIVED_WAILMER_PAIL, Route104_PrettyPetalFlowerShop_EventScript_GiveWailmerPail
msgbox Route104_PrettyPetalFlowerShop_Text_2A79A6, MSGBOX_DEFAULT msgbox Route104_PrettyPetalFlowerShop_Text_WailmerPailExplanation, MSGBOX_DEFAULT
release release
end end
Route104_PrettyPetalFlowerShop_EventScript_22A421:: @ 822A421 Route104_PrettyPetalFlowerShop_EventScript_GiveWailmerPail:: @ 822A421
msgbox Route104_PrettyPetalFlowerShop_Text_2A7916, MSGBOX_DEFAULT msgbox Route104_PrettyPetalFlowerShop_Text_YouCanHaveThis, MSGBOX_DEFAULT
giveitem_std ITEM_WAILMER_PAIL giveitem_std ITEM_WAILMER_PAIL
msgbox Route104_PrettyPetalFlowerShop_Text_2A79A6, MSGBOX_DEFAULT msgbox Route104_PrettyPetalFlowerShop_Text_WailmerPailExplanation, MSGBOX_DEFAULT
setflag FLAG_RECEIVED_WAILMER_PAIL setflag FLAG_RECEIVED_WAILMER_PAIL
release release
end end
Route104_PrettyPetalFlowerShop_EventScript_22A442:: @ 822A442 Route104_PrettyPetalFlowerShop_EventScript_RandomBerryGirl:: @ 822A442
lock lock
faceplayer faceplayer
dotimebasedevents dotimebasedevents
goto_if_set FLAG_DAILY_FLOWER_SHOP_RECEIVED_BERRY, Route104_PrettyPetalFlowerShop_EventScript_22A482 goto_if_set FLAG_DAILY_FLOWER_SHOP_RECEIVED_BERRY, Route104_PrettyPetalFlowerShop_EventScript_AlreadyReceivedBerry
msgbox Route104_PrettyPetalFlowerShop_Text_2A7A98, MSGBOX_DEFAULT msgbox Route104_PrettyPetalFlowerShop_Text_ImGrowingFlowers, MSGBOX_DEFAULT
random 8 random 8
addvar VAR_RESULT, FIRST_BERRY_INDEX addvar VAR_RESULT, FIRST_BERRY_INDEX
giveitem_std VAR_RESULT giveitem_std VAR_RESULT
compare VAR_RESULT, 0 compare VAR_RESULT, 0
goto_if_eq Common_EventScript_ShowBagIsFull goto_if_eq Common_EventScript_ShowBagIsFull
setflag FLAG_DAILY_FLOWER_SHOP_RECEIVED_BERRY setflag FLAG_DAILY_FLOWER_SHOP_RECEIVED_BERRY
msgbox Route104_PrettyPetalFlowerShop_Text_2A7AF3, MSGBOX_DEFAULT msgbox Route104_PrettyPetalFlowerShop_Text_MachineMixesBerries, MSGBOX_DEFAULT
release release
end end
Route104_PrettyPetalFlowerShop_EventScript_22A482:: @ 822A482 Route104_PrettyPetalFlowerShop_EventScript_AlreadyReceivedBerry:: @ 822A482
msgbox Route104_PrettyPetalFlowerShop_Text_2A7AF3, MSGBOX_DEFAULT msgbox Route104_PrettyPetalFlowerShop_Text_MachineMixesBerries, MSGBOX_DEFAULT
release release
end end
+7 -7
View File
@@ -40,7 +40,7 @@
"movement_range_y": 0, "movement_range_y": 0,
"trainer_type": "1", "trainer_type": "1",
"trainer_sight_or_berry_tree_id": "6", "trainer_sight_or_berry_tree_id": "6",
"script": "Route105_EventScript_1EE261", "script": "Route105_EventScript_Luis",
"flag": "0" "flag": "0"
}, },
{ {
@@ -53,7 +53,7 @@
"movement_range_y": 0, "movement_range_y": 0,
"trainer_type": "1", "trainer_type": "1",
"trainer_sight_or_berry_tree_id": "3", "trainer_sight_or_berry_tree_id": "3",
"script": "Route105_EventScript_1EE278", "script": "Route105_EventScript_Dominik",
"flag": "0" "flag": "0"
}, },
{ {
@@ -66,7 +66,7 @@
"movement_range_y": 7, "movement_range_y": 7,
"trainer_type": "1", "trainer_type": "1",
"trainer_sight_or_berry_tree_id": "3", "trainer_sight_or_berry_tree_id": "3",
"script": "Route105_EventScript_1EE28F", "script": "Route105_EventScript_Beverly",
"flag": "0" "flag": "0"
}, },
{ {
@@ -79,7 +79,7 @@
"movement_range_y": 5, "movement_range_y": 5,
"trainer_type": "1", "trainer_type": "1",
"trainer_sight_or_berry_tree_id": "3", "trainer_sight_or_berry_tree_id": "3",
"script": "Route105_EventScript_1EE2A6", "script": "Route105_EventScript_Imani",
"flag": "0" "flag": "0"
}, },
{ {
@@ -105,7 +105,7 @@
"movement_range_y": 7, "movement_range_y": 7,
"trainer_type": "1", "trainer_type": "1",
"trainer_sight_or_berry_tree_id": "3", "trainer_sight_or_berry_tree_id": "3",
"script": "Route105_EventScript_1EE24A", "script": "Route105_EventScript_Foster",
"flag": "0" "flag": "0"
}, },
{ {
@@ -118,7 +118,7 @@
"movement_range_y": 2, "movement_range_y": 2,
"trainer_type": "1", "trainer_type": "1",
"trainer_sight_or_berry_tree_id": "2", "trainer_sight_or_berry_tree_id": "2",
"script": "Route105_EventScript_1EE2BD", "script": "Route105_EventScript_Josue",
"flag": "0" "flag": "0"
}, },
{ {
@@ -131,7 +131,7 @@
"movement_range_y": 2, "movement_range_y": 2,
"trainer_type": "1", "trainer_type": "1",
"trainer_sight_or_berry_tree_id": "4", "trainer_sight_or_berry_tree_id": "4",
"script": "Route105_EventScript_1EE2D4", "script": "Route105_EventScript_Andres",
"flag": "0" "flag": "0"
} }
], ],
+36 -36
View File
@@ -1,18 +1,18 @@
Route105_MapScripts:: @ 81EE1DB Route105_MapScripts:: @ 81EE1DB
map_script MAP_SCRIPT_ON_LOAD, Route105_MapScript1_1EE1EB map_script MAP_SCRIPT_ON_LOAD, Route105_OnLoad
map_script MAP_SCRIPT_ON_TRANSITION, Route105_OnTransition map_script MAP_SCRIPT_ON_TRANSITION, Route105_OnTransition
map_script MAP_SCRIPT_ON_FRAME_TABLE, Route105_MapScript2_1EE240 map_script MAP_SCRIPT_ON_FRAME_TABLE, Route105_OnFrame
.byte 0 .byte 0
Route105_MapScript1_1EE1EB: @ 81EE1EB Route105_OnLoad: @ 81EE1EB
call_if_unset FLAG_REGI_DOORS_OPENED, Route105_EventScript_1EE20B call_if_unset FLAG_REGI_DOORS_OPENED, Route105_CloseRegiEntrance
compare VAR_UNUSUAL_WEATHER_LOCATION, UNUSUAL_WEATHER_ROUTE_105_NORTH compare VAR_UNUSUAL_WEATHER_LOCATION, UNUSUAL_WEATHER_ROUTE_105_NORTH
call_if_eq UnusualWeather_EventScript_PlaceTilesRoute105North call_if_eq UnusualWeather_EventScript_PlaceTilesRoute105North
compare VAR_UNUSUAL_WEATHER_LOCATION, UNUSUAL_WEATHER_ROUTE_105_SOUTH compare VAR_UNUSUAL_WEATHER_LOCATION, UNUSUAL_WEATHER_ROUTE_105_SOUTH
call_if_eq UnusualWeather_EventScript_PlaceTilesRoute105South call_if_eq UnusualWeather_EventScript_PlaceTilesRoute105South
end end
Route105_EventScript_1EE20B:: @ 81EE20B Route105_CloseRegiEntrance:: @ 81EE20B
setmetatile 9, 19, METATILE_General_RockWall_RockBase, 1 setmetatile 9, 19, METATILE_General_RockWall_RockBase, 1
setmetatile 9, 20, METATILE_General_RockWall_SandBase, 1 setmetatile 9, 20, METATILE_General_RockWall_SandBase, 1
return return
@@ -26,63 +26,63 @@ Route105_OnTransition: @ 81EE21E
call_if_eq UnusualWeather_StartKyogreWeather call_if_eq UnusualWeather_StartKyogreWeather
end end
Route105_MapScript2_1EE240: @ 81EE240 Route105_OnFrame: @ 81EE240
map_script_2 VAR_SHOULD_END_UNUSUAL_WEATHER, 1, UnusualWeather_EventScript_EndEventAndCleanup_1 map_script_2 VAR_SHOULD_END_UNUSUAL_WEATHER, 1, UnusualWeather_EventScript_EndEventAndCleanup_1
.2byte 0 .2byte 0
Route105_EventScript_1EE24A:: @ 81EE24A Route105_EventScript_Foster:: @ 81EE24A
trainerbattle_single TRAINER_FOSTER, Route105_Text_295D0F, Route105_Text_295D62 trainerbattle_single TRAINER_FOSTER, Route105_Text_FosterIntro, Route105_Text_FosterDefeated
msgbox Route105_Text_295DAB, MSGBOX_AUTOCLOSE msgbox Route105_Text_FosterPostBattle, MSGBOX_AUTOCLOSE
end end
Route105_EventScript_1EE261:: @ 81EE261 Route105_EventScript_Luis:: @ 81EE261
trainerbattle_single TRAINER_LUIS, Route105_Text_295DF5, Route105_Text_295E66 trainerbattle_single TRAINER_LUIS, Route105_Text_LuisIntro, Route105_Text_LuisDefeated
msgbox Route105_Text_295E72, MSGBOX_AUTOCLOSE msgbox Route105_Text_LuisPostBattle, MSGBOX_AUTOCLOSE
end end
Route105_EventScript_1EE278:: @ 81EE278 Route105_EventScript_Dominik:: @ 81EE278
trainerbattle_single TRAINER_DOMINIK, Route105_Text_295EB7, Route105_Text_295EEA trainerbattle_single TRAINER_DOMINIK, Route105_Text_DominikIntro, Route105_Text_DominikDefeated
msgbox Route105_Text_295F08, MSGBOX_AUTOCLOSE msgbox Route105_Text_DominikPostBattle, MSGBOX_AUTOCLOSE
end end
Route105_EventScript_1EE28F:: @ 81EE28F Route105_EventScript_Beverly:: @ 81EE28F
trainerbattle_single TRAINER_BEVERLY, Route105_Text_295F5C, Route105_Text_295FA0 trainerbattle_single TRAINER_BEVERLY, Route105_Text_BeverlyIntro, Route105_Text_BeverlyDefeated
msgbox Route105_Text_295FAE, MSGBOX_AUTOCLOSE msgbox Route105_Text_PostBattle, MSGBOX_AUTOCLOSE
end end
Route105_EventScript_1EE2A6:: @ 81EE2A6 Route105_EventScript_Imani:: @ 81EE2A6
trainerbattle_single TRAINER_IMANI, Route105_Text_296025, Route105_Text_296059 trainerbattle_single TRAINER_IMANI, Route105_Text_ImaniIntro, Route105_Text_ImaniDefeated
msgbox Route105_Text_296076, MSGBOX_AUTOCLOSE msgbox Route105_Text_ImaniPostBattle, MSGBOX_AUTOCLOSE
end end
Route105_EventScript_1EE2BD:: @ 81EE2BD Route105_EventScript_Josue:: @ 81EE2BD
trainerbattle_single TRAINER_JOSUE, Route105_Text_29626F, Route105_Text_2962CB trainerbattle_single TRAINER_JOSUE, Route105_Text_JosueIntro, Route105_Text_JosueDefeated
msgbox Route105_Text_2962EC, MSGBOX_AUTOCLOSE msgbox Route105_Text_JosuePostBattle, MSGBOX_AUTOCLOSE
end end
Route105_EventScript_1EE2D4:: @ 81EE2D4 Route105_EventScript_Andres:: @ 81EE2D4
trainerbattle_single TRAINER_ANDRES_1, Route105_Text_2960A9, Route105_Text_2960DB, Route105_EventScript_1EE300 trainerbattle_single TRAINER_ANDRES_1, Route105_Text_AndresIntro, Route105_Text_AndresDefeated, Route105_EventScript_AndresRegisterMatchCallAfterBattle
specialvar VAR_RESULT, ShouldTryRematchBattle specialvar VAR_RESULT, ShouldTryRematchBattle
compare VAR_RESULT, 1 compare VAR_RESULT, TRUE
goto_if_eq Route105_EventScript_1EE31F goto_if_eq Route105_EventScript_AndresRematch
msgbox Route105_Text_2960FA, MSGBOX_DEFAULT msgbox Route105_Text_AndresPostBattle, MSGBOX_DEFAULT
release release
end end
Route105_EventScript_1EE300:: @ 81EE300 Route105_EventScript_AndresRegisterMatchCallAfterBattle:: @ 81EE300
special sub_80B4808 special sub_80B4808
waitmovement 0 waitmovement 0
msgbox Route105_Text_296159, MSGBOX_DEFAULT msgbox Route105_Text_AndresRegister, MSGBOX_DEFAULT
register_matchcall TRAINER_ANDRES_1 register_matchcall TRAINER_ANDRES_1
release release
end end
Route105_EventScript_1EE31F:: @ 81EE31F Route105_EventScript_AndresRematch:: @ 81EE31F
trainerbattle_rematch TRAINER_ANDRES_1, Route105_Text_29619E, Route105_Text_2961DD trainerbattle_rematch TRAINER_ANDRES_1, Route105_Text_AndresRematchIntro, Route105_Text_AndresRematchDefeated
msgbox Route105_Text_2961FE, MSGBOX_AUTOCLOSE msgbox Route105_Text_AndresRematchPostBattle, MSGBOX_AUTOCLOSE
end end
Route104_Text_1EE336: @ 81EE336 Route104_Text_DadPokenavCall: @ 81EE336
.string "… … … … … …\n" .string "… … … … … …\n"
.string "… … … … … Beep!\p" .string "… … … … … Beep!\p"
.string "DAD: Oh, {PLAYER}?\p" .string "DAD: Oh, {PLAYER}?\p"
@@ -98,6 +98,6 @@ Route104_Text_1EE336: @ 81EE336
.string "… … … … … …\n" .string "… … … … … …\n"
.string "… … … … … Click!$" .string "… … … … … Click!$"
Route104_Text_1EE463: @ 81EE463 Route104_Text_RegisteredDadInPokenav: @ 81EE463
.string "Registered DAD NORMAN\n" .string "Registered DAD NORMAN\n"
.string "in the POKéNAV.$" .string "in the POKéNAV.$"
+5 -5
View File
@@ -35,7 +35,7 @@
"movement_range_y": 0, "movement_range_y": 0,
"trainer_type": "1", "trainer_type": "1",
"trainer_sight_or_berry_tree_id": "3", "trainer_sight_or_berry_tree_id": "3",
"script": "Route106_EventScript_1EE493", "script": "Route106_EventScript_Douglas",
"flag": "0" "flag": "0"
}, },
{ {
@@ -48,7 +48,7 @@
"movement_range_y": 0, "movement_range_y": 0,
"trainer_type": "1", "trainer_type": "1",
"trainer_sight_or_berry_tree_id": "3", "trainer_sight_or_berry_tree_id": "3",
"script": "Route106_EventScript_1EE4AA", "script": "Route106_EventScript_Kyla",
"flag": "0" "flag": "0"
}, },
{ {
@@ -61,7 +61,7 @@
"movement_range_y": 0, "movement_range_y": 0,
"trainer_type": "1", "trainer_type": "1",
"trainer_sight_or_berry_tree_id": "4", "trainer_sight_or_berry_tree_id": "4",
"script": "Route106_EventScript_1EE4C1", "script": "Route106_EventScript_Elliot",
"flag": "0" "flag": "0"
}, },
{ {
@@ -74,7 +74,7 @@
"movement_range_y": 0, "movement_range_y": 0,
"trainer_type": "1", "trainer_type": "1",
"trainer_sight_or_berry_tree_id": "3", "trainer_sight_or_berry_tree_id": "3",
"script": "Route106_EventScript_1EE523", "script": "Route106_EventScript_Ned",
"flag": "0" "flag": "0"
}, },
{ {
@@ -132,7 +132,7 @@
"y": 13, "y": 13,
"elevation": 3, "elevation": 3,
"player_facing_dir": "BG_EVENT_PLAYER_FACING_ANY", "player_facing_dir": "BG_EVENT_PLAYER_FACING_ANY",
"script": "Route106_EventScript_1EE48A" "script": "Route106_EventScript_TrainerTipsSign"
} }
] ]
} }
+22 -22
View File
@@ -1,48 +1,48 @@
Route106_MapScripts:: @ 81EE489 Route106_MapScripts:: @ 81EE489
.byte 0 .byte 0
Route106_EventScript_1EE48A:: @ 81EE48A Route106_EventScript_TrainerTipsSign:: @ 81EE48A
msgbox Route106_Text_1EE53A, MSGBOX_SIGN msgbox Route106_Text_TrainerTips, MSGBOX_SIGN
end end
Route106_EventScript_1EE493:: @ 81EE493 Route106_EventScript_Douglas:: @ 81EE493
trainerbattle_single TRAINER_DOUGLAS, Route106_Text_2965BB, Route106_Text_2965FD trainerbattle_single TRAINER_DOUGLAS, Route106_Text_DouglasIntro, Route106_Text_DouglasDefeated
msgbox Route106_Text_296608, MSGBOX_AUTOCLOSE msgbox Route106_Text_DouglasPostBattle, MSGBOX_AUTOCLOSE
end end
Route106_EventScript_1EE4AA:: @ 81EE4AA Route106_EventScript_Kyla:: @ 81EE4AA
trainerbattle_single TRAINER_KYLA, Route106_Text_296628, Route106_Text_296674 trainerbattle_single TRAINER_KYLA, Route106_Text_KylaIntro, Route106_Text_KylaDefeated
msgbox Route106_Text_29669E, MSGBOX_AUTOCLOSE msgbox Route106_Text_KylaPostBattle, MSGBOX_AUTOCLOSE
end end
Route106_EventScript_1EE4C1:: @ 81EE4C1 Route106_EventScript_Elliot:: @ 81EE4C1
trainerbattle_single TRAINER_ELLIOT_1, Route106_Text_296327, Route106_Text_29635C, Route106_EventScript_1EE4ED trainerbattle_single TRAINER_ELLIOT_1, Route106_Text_ElliotIntro, Route106_Text_ElliotDefeated, Route106_EventScript_ElliotRegisterMatchCallAfterBattle
specialvar VAR_RESULT, ShouldTryRematchBattle specialvar VAR_RESULT, ShouldTryRematchBattle
compare VAR_RESULT, 1 compare VAR_RESULT, TRUE
goto_if_eq Route106_EventScript_1EE50C goto_if_eq Route106_EventScript_ElliotRematch
msgbox Route106_Text_29638C, MSGBOX_DEFAULT msgbox Route106_Text_ElliotPostBattle, MSGBOX_DEFAULT
release release
end end
Route106_EventScript_1EE4ED:: @ 81EE4ED Route106_EventScript_ElliotRegisterMatchCallAfterBattle:: @ 81EE4ED
special sub_80B4808 special sub_80B4808
waitmovement 0 waitmovement 0
msgbox Route106_Text_2963E3, MSGBOX_DEFAULT msgbox Route106_Text_ElliotRegister, MSGBOX_DEFAULT
register_matchcall TRAINER_ELLIOT_1 register_matchcall TRAINER_ELLIOT_1
release release
end end
Route106_EventScript_1EE50C:: @ 81EE50C Route106_EventScript_ElliotRematch:: @ 81EE50C
trainerbattle_rematch TRAINER_ELLIOT_1, Route106_Text_29642E, Route106_Text_296477 trainerbattle_rematch TRAINER_ELLIOT_1, Route106_Text_ElliotRematchIntro, Route106_Text_ElliotRematchDefeated
msgbox Route106_Text_296493, MSGBOX_AUTOCLOSE msgbox Route106_Text_ElliotRematchPostBattle, MSGBOX_AUTOCLOSE
end end
Route106_EventScript_1EE523:: @ 81EE523 Route106_EventScript_Ned:: @ 81EE523
trainerbattle_single TRAINER_NED, Route106_Text_2964D4, Route106_Text_296553 trainerbattle_single TRAINER_NED, Route106_Text_NedIntro, Route106_Text_NedDefeated
msgbox Route106_Text_296588, MSGBOX_AUTOCLOSE msgbox Route106_Text_NedPostBattle, MSGBOX_AUTOCLOSE
end end
Route106_Text_1EE53A: @ 81EE53A Route106_Text_TrainerTips: @ 81EE53A
.string "TRAINER TIPS\p" .string "TRAINER TIPS\p"
.string "Advice on catching POKéMON with a ROD:\n" .string "Advice on catching POKéMON with a ROD:\n"
.string "Press the A Button if you get a bite.$" .string "Press the A Button if you get a bite.$"
+7 -7
View File
@@ -35,7 +35,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": "1", "trainer_type": "1",
"trainer_sight_or_berry_tree_id": "3", "trainer_sight_or_berry_tree_id": "3",
"script": "Route107_EventScript_1EE595", "script": "Route107_EventScript_Darrin",
"flag": "0" "flag": "0"
}, },
{ {
@@ -48,7 +48,7 @@
"movement_range_y": 2, "movement_range_y": 2,
"trainer_type": "1", "trainer_type": "1",
"trainer_sight_or_berry_tree_id": "2", "trainer_sight_or_berry_tree_id": "2",
"script": "Route107_EventScript_1EE5AC", "script": "Route107_EventScript_Tony",
"flag": "0" "flag": "0"
}, },
{ {
@@ -61,7 +61,7 @@
"movement_range_y": 0, "movement_range_y": 0,
"trainer_type": "1", "trainer_type": "1",
"trainer_sight_or_berry_tree_id": "5", "trainer_sight_or_berry_tree_id": "5",
"script": "Route107_EventScript_1EE60E", "script": "Route107_EventScript_Denise",
"flag": "0" "flag": "0"
}, },
{ {
@@ -74,7 +74,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": "1", "trainer_type": "1",
"trainer_sight_or_berry_tree_id": "5", "trainer_sight_or_berry_tree_id": "5",
"script": "Route107_EventScript_1EE625", "script": "Route107_EventScript_Beth",
"flag": "0" "flag": "0"
}, },
{ {
@@ -87,7 +87,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": "1", "trainer_type": "1",
"trainer_sight_or_berry_tree_id": "1", "trainer_sight_or_berry_tree_id": "1",
"script": "Route107_EventScript_1EE63C", "script": "Route107_EventScript_Lisa",
"flag": "0" "flag": "0"
}, },
{ {
@@ -100,7 +100,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": "1", "trainer_type": "1",
"trainer_sight_or_berry_tree_id": "1", "trainer_sight_or_berry_tree_id": "1",
"script": "Route107_EventScript_1EE657", "script": "Route107_EventScript_Ray",
"flag": "0" "flag": "0"
}, },
{ {
@@ -113,7 +113,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": "1", "trainer_type": "1",
"trainer_sight_or_berry_tree_id": "5", "trainer_sight_or_berry_tree_id": "5",
"script": "Route107_EventScript_1EE672", "script": "Route107_EventScript_Camron",
"flag": "0" "flag": "0"
} }
], ],
+28 -28
View File
@@ -1,55 +1,55 @@
Route107_MapScripts:: @ 81EE594 Route107_MapScripts:: @ 81EE594
.byte 0 .byte 0
Route107_EventScript_1EE595:: @ 81EE595 Route107_EventScript_Darrin:: @ 81EE595
trainerbattle_single TRAINER_DARRIN, Route107_Text_2966E5, Route107_Text_29672F trainerbattle_single TRAINER_DARRIN, Route107_Text_DarrinIntro, Route107_Text_DarrinDefeated
msgbox Route107_Text_29675B, MSGBOX_AUTOCLOSE msgbox Route107_Text_DarrinPostBattle, MSGBOX_AUTOCLOSE
end end
Route107_EventScript_1EE5AC:: @ 81EE5AC Route107_EventScript_Tony:: @ 81EE5AC
trainerbattle_single TRAINER_TONY_1, Route107_Text_2967AD, Route107_Text_2967D8, Route107_EventScript_1EE5D8 trainerbattle_single TRAINER_TONY_1, Route107_Text_TonyIntro, Route107_Text_TonyDefeated, Route107_EventScript_TonyRegisterMatchCallAfterBattle
specialvar VAR_RESULT, ShouldTryRematchBattle specialvar VAR_RESULT, ShouldTryRematchBattle
compare VAR_RESULT, 1 compare VAR_RESULT, TRUE
goto_if_eq Route107_EventScript_1EE5F7 goto_if_eq Route107_EventScript_TonyRematch
msgbox Route107_Text_2967FF, MSGBOX_DEFAULT msgbox Route107_Text_TonyPostBattle, MSGBOX_DEFAULT
release release
end end
Route107_EventScript_1EE5D8:: @ 81EE5D8 Route107_EventScript_TonyRegisterMatchCallAfterBattle:: @ 81EE5D8
special sub_80B4808 special sub_80B4808
waitmovement 0 waitmovement 0
msgbox Route107_Text_29685A, MSGBOX_DEFAULT msgbox Route107_Text_TonyRegister, MSGBOX_DEFAULT
register_matchcall TRAINER_TONY_1 register_matchcall TRAINER_TONY_1
release release
end end
Route107_EventScript_1EE5F7:: @ 81EE5F7 Route107_EventScript_TonyRematch:: @ 81EE5F7
trainerbattle_rematch TRAINER_TONY_1, Route107_Text_296897, Route107_Text_2968D5 trainerbattle_rematch TRAINER_TONY_1, Route107_Text_TonyRematchIntro, Route107_Text_TonyRematchDefeated
msgbox Route107_Text_296923, MSGBOX_AUTOCLOSE msgbox Route107_Text_TonyRematchPostBattle, MSGBOX_AUTOCLOSE
end end
Route107_EventScript_1EE60E:: @ 81EE60E Route107_EventScript_Denise:: @ 81EE60E
trainerbattle_single TRAINER_DENISE, Route107_Text_296974, Route107_Text_29699E trainerbattle_single TRAINER_DENISE, Route107_Text_DeniseIntro, Route107_Text_DeniseDefeated
msgbox Route107_Text_2969AB, MSGBOX_AUTOCLOSE msgbox Route107_Text_DenisePostBattle, MSGBOX_AUTOCLOSE
end end
Route107_EventScript_1EE625:: @ 81EE625 Route107_EventScript_Beth:: @ 81EE625
trainerbattle_single TRAINER_BETH, Route107_Text_2969E4, Route107_Text_296A17 trainerbattle_single TRAINER_BETH, Route107_Text_BethIntro, Route107_Text_BethDefeated
msgbox Route107_Text_296A35, MSGBOX_AUTOCLOSE msgbox Route107_Text_BethPostBattle, MSGBOX_AUTOCLOSE
end end
Route107_EventScript_1EE63C:: @ 81EE63C Route107_EventScript_Lisa:: @ 81EE63C
trainerbattle_double TRAINER_LISA_AND_RAY, Route107_Text_296A77, Route107_Text_296AA7, Route107_Text_296B1E trainerbattle_double TRAINER_LISA_AND_RAY, Route107_Text_LisaIntro, Route107_Text_LisaDefeated, Route107_Text_LisaNotEnoughPokemon
msgbox Route107_Text_296ADC, MSGBOX_AUTOCLOSE msgbox Route107_Text_LisaPostBattle, MSGBOX_AUTOCLOSE
end end
Route107_EventScript_1EE657:: @ 81EE657 Route107_EventScript_Ray:: @ 81EE657
trainerbattle_double TRAINER_LISA_AND_RAY, Route107_Text_296B57, Route107_Text_296BB3, Route107_Text_296C34 trainerbattle_double TRAINER_LISA_AND_RAY, Route107_Text_RayIntro, Route107_Text_RayDefeated, Route107_Text_RayNotEnoughPokemon
msgbox Route107_Text_296BE1, MSGBOX_AUTOCLOSE msgbox Route107_Text_RayPostBattle, MSGBOX_AUTOCLOSE
end end
Route107_EventScript_1EE672:: @ 81EE672 Route107_EventScript_Camron:: @ 81EE672
trainerbattle_single TRAINER_CAMRON, Route107_Text_296C6F, Route107_Text_296CAD trainerbattle_single TRAINER_CAMRON, Route107_Text_CamronIntro, Route107_Text_CamronDefeated
msgbox Route107_Text_296CC0, MSGBOX_AUTOCLOSE msgbox Route107_Text_CamronPostBattle, MSGBOX_AUTOCLOSE
end end
+6 -6
View File
@@ -35,7 +35,7 @@
"movement_range_y": 3, "movement_range_y": 3,
"trainer_type": "1", "trainer_type": "1",
"trainer_sight_or_berry_tree_id": "3", "trainer_sight_or_berry_tree_id": "3",
"script": "Route108_EventScript_1EE68A", "script": "Route108_EventScript_Jerome",
"flag": "0" "flag": "0"
}, },
{ {
@@ -48,7 +48,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": "1", "trainer_type": "1",
"trainer_sight_or_berry_tree_id": "3", "trainer_sight_or_berry_tree_id": "3",
"script": "Route108_EventScript_1EE6B8", "script": "Route108_EventScript_Tara",
"flag": "0" "flag": "0"
}, },
{ {
@@ -61,7 +61,7 @@
"movement_range_y": 0, "movement_range_y": 0,
"trainer_type": "1", "trainer_type": "1",
"trainer_sight_or_berry_tree_id": "3", "trainer_sight_or_berry_tree_id": "3",
"script": "Route108_EventScript_1EE6A1", "script": "Route108_EventScript_Matthew",
"flag": "0" "flag": "0"
}, },
{ {
@@ -74,7 +74,7 @@
"movement_range_y": 0, "movement_range_y": 0,
"trainer_type": "1", "trainer_type": "1",
"trainer_sight_or_berry_tree_id": "3", "trainer_sight_or_berry_tree_id": "3",
"script": "Route108_EventScript_1EE6CF", "script": "Route108_EventScript_Missy",
"flag": "0" "flag": "0"
}, },
{ {
@@ -87,7 +87,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": "1", "trainer_type": "1",
"trainer_sight_or_berry_tree_id": "1", "trainer_sight_or_berry_tree_id": "1",
"script": "Route108_EventScript_1EE6E6", "script": "Route108_EventScript_Carolina",
"flag": "0" "flag": "0"
}, },
{ {
@@ -100,7 +100,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": "1", "trainer_type": "1",
"trainer_sight_or_berry_tree_id": "1", "trainer_sight_or_berry_tree_id": "1",
"script": "Route108_EventScript_1EE6FD", "script": "Route108_EventScript_Cory",
"flag": "0" "flag": "0"
}, },
{ {
+25 -25
View File
@@ -1,50 +1,50 @@
Route108_MapScripts:: @ 81EE689 Route108_MapScripts:: @ 81EE689
.byte 0 .byte 0
Route108_EventScript_1EE68A:: @ 81EE68A Route108_EventScript_Jerome:: @ 81EE68A
trainerbattle_single TRAINER_JEROME, Route108_Text_296D10, Route108_Text_296D3C trainerbattle_single TRAINER_JEROME, Route108_Text_JeromeIntro, Route108_Text_JeromeDefeated
msgbox Route108_Text_296D6E, MSGBOX_AUTOCLOSE msgbox Route108_Text_JeromePostBattle, MSGBOX_AUTOCLOSE
end end
Route108_EventScript_1EE6A1:: @ 81EE6A1 Route108_EventScript_Matthew:: @ 81EE6A1
trainerbattle_single TRAINER_MATTHEW, Route108_Text_296DAF, Route108_Text_296DEA trainerbattle_single TRAINER_MATTHEW, Route108_Text_MatthewIntro, Route108_Text_MatthewDefeated
msgbox Route108_Text_296E03, MSGBOX_AUTOCLOSE msgbox Route108_Text_MatthewPostBattle, MSGBOX_AUTOCLOSE
end end
Route108_EventScript_1EE6B8:: @ 81EE6B8 Route108_EventScript_Tara:: @ 81EE6B8
trainerbattle_single TRAINER_TARA, Route108_Text_296E33, Route108_Text_296E71 trainerbattle_single TRAINER_TARA, Route108_Text_TaraIntro, Route108_Text_TaraDefeated
msgbox Route108_Text_296E7A, MSGBOX_AUTOCLOSE msgbox Route108_Text_TaraPostBattle, MSGBOX_AUTOCLOSE
end end
Route108_EventScript_1EE6CF:: @ 81EE6CF Route108_EventScript_Missy:: @ 81EE6CF
trainerbattle_single TRAINER_MISSY, Route108_Text_296EC7, Route108_Text_296EFC trainerbattle_single TRAINER_MISSY, Route108_Text_MissyIntro, Route108_Text_MissyDefeated
msgbox Route108_Text_296F2A, MSGBOX_AUTOCLOSE msgbox Route108_Text_MissyPostBattle, MSGBOX_AUTOCLOSE
end end
Route108_EventScript_1EE6E6:: @ 81EE6E6 Route108_EventScript_Carolina:: @ 81EE6E6
trainerbattle_single TRAINER_CAROLINA, Route108_Text_297094, Route108_Text_2970D7 trainerbattle_single TRAINER_CAROLINA, Route108_Text_CarolinaIntro, Route108_Text_CarolinaDefeated
msgbox Route108_Text_2970F0, MSGBOX_AUTOCLOSE msgbox Route108_Text_CarolinaPostBattle, MSGBOX_AUTOCLOSE
end end
Route108_EventScript_1EE6FD:: @ 81EE6FD Route108_EventScript_Cory:: @ 81EE6FD
trainerbattle_single TRAINER_CORY_1, Route108_Text_296F5D, Route108_Text_296F93, Route108_EventScript_1EE729 trainerbattle_single TRAINER_CORY_1, Route108_Text_CoryIntro, Route108_Text_CoryDefeated, Route108_EventScript_CoryRegisterMatchCallAfterBattle
specialvar VAR_RESULT, ShouldTryRematchBattle specialvar VAR_RESULT, ShouldTryRematchBattle
compare VAR_RESULT, 1 compare VAR_RESULT, TRUE
goto_if_eq Route108_EventScript_1EE748 goto_if_eq Route108_EventScript_CoryRematch
msgbox Route108_Text_296FB0, MSGBOX_DEFAULT msgbox Route108_Text_CoryPostBattle, MSGBOX_DEFAULT
release release
end end
Route108_EventScript_1EE729:: @ 81EE729 Route108_EventScript_CoryRegisterMatchCallAfterBattle:: @ 81EE729
special sub_80B4808 special sub_80B4808
waitmovement 0 waitmovement 0
msgbox Route108_Text_296FD8, MSGBOX_DEFAULT msgbox Route108_Text_CoryRegister, MSGBOX_DEFAULT
register_matchcall TRAINER_CORY_1 register_matchcall TRAINER_CORY_1
release release
end end
Route108_EventScript_1EE748:: @ 81EE748 Route108_EventScript_CoryRematch:: @ 81EE748
trainerbattle_rematch TRAINER_CORY_1, Route108_Text_297011, Route108_Text_297036 trainerbattle_rematch TRAINER_CORY_1, Route108_Text_CoryRematchIntro, Route108_Text_CoryRematchDefeated
msgbox Route108_Text_297059, MSGBOX_AUTOCLOSE msgbox Route108_Text_CoryRematchPostBattle, MSGBOX_AUTOCLOSE
end end
+9 -9
View File
@@ -134,23 +134,23 @@ Route123_BerryMastersHouse_Text_2A761B: @ 82A761B
Route123_BerryMastersHouse_Text_2A7682: @ 82A7682 Route123_BerryMastersHouse_Text_2A7682: @ 82A7682
.string "Ah…$" .string "Ah…$"
Route104_PrettyPetalFlowerShop_Text_2A7686: @ 82A7686 Route104_PrettyPetalFlowerShop_Text_ThisIsPrettyPetalFlowerShop: @ 82A7686
.string "Hello!\p" .string "Hello!\p"
.string "This is the PRETTY PETAL flower shop.\n" .string "This is the PRETTY PETAL flower shop.\n"
.string "Spreading flowers all over the world!$" .string "Spreading flowers all over the world!$"
Route104_PrettyPetalFlowerShop_Text_2A76D9: @ 82A76D9 Route104_PrettyPetalFlowerShop_Text_LearnAboutBerries: @ 82A76D9
.string "{PLAYER}{KUN}, would you like to learn about\n" .string "{PLAYER}{KUN}, would you like to learn about\n"
.string "BERRIES?$" .string "BERRIES?$"
Route104_PrettyPetalFlowerShop_Text_2A7706: @ 82A7706 Route104_PrettyPetalFlowerShop_Text_IntroLearnAboutBerries: @ 82A7706
.string "Your name is?\p" .string "Your name is?\p"
.string "{PLAYER}{KUN}.\n" .string "{PLAYER}{KUN}.\n"
.string "That's a nice name.\p" .string "That's a nice name.\p"
.string "{PLAYER}{KUN}, would you like to learn about\n" .string "{PLAYER}{KUN}, would you like to learn about\n"
.string "BERRIES?$" .string "BERRIES?$"
Route104_PrettyPetalFlowerShop_Text_2A775B: @ 82A775B Route104_PrettyPetalFlowerShop_Text_BerriesExplanation: @ 82A775B
.string "BERRIES grow on trees that thrive\n" .string "BERRIES grow on trees that thrive\n"
.string "only in soft, loamy soil.\p" .string "only in soft, loamy soil.\p"
.string "If you take some BERRIES, be sure to\n" .string "If you take some BERRIES, be sure to\n"
@@ -164,18 +164,18 @@ Route104_PrettyPetalFlowerShop_Text_2A775B: @ 82A775B
.string "Please help me, {PLAYER}{KUN}. Plant BERRIES\n" .string "Please help me, {PLAYER}{KUN}. Plant BERRIES\n"
.string "and bring more flowers into the world.$" .string "and bring more flowers into the world.$"
Route104_PrettyPetalFlowerShop_Text_2A78DF: @ 82A78DF Route104_PrettyPetalFlowerShop_Text_FlowersBringHappiness: @ 82A78DF
.string "Flowers bring so much happiness to\n" .string "Flowers bring so much happiness to\n"
.string "people, don't they?$" .string "people, don't they?$"
Route104_PrettyPetalFlowerShop_Text_2A7916: @ 82A7916 Route104_PrettyPetalFlowerShop_Text_YouCanHaveThis: @ 82A7916
.string "Hello!\p" .string "Hello!\p"
.string "The more attention you give to flowers,\n" .string "The more attention you give to flowers,\n"
.string "the more beautifully they bloom.\p" .string "the more beautifully they bloom.\p"
.string "You'll like tending flowers. I'm sure\n" .string "You'll like tending flowers. I'm sure\n"
.string "of it. You can have this.$" .string "of it. You can have this.$"
Route104_PrettyPetalFlowerShop_Text_2A79A6: @ 82A79A6 Route104_PrettyPetalFlowerShop_Text_WailmerPailExplanation: @ 82A79A6
.string "While BERRY plants are growing,\n" .string "While BERRY plants are growing,\n"
.string "water them with the WAILMER PAIL.\p" .string "water them with the WAILMER PAIL.\p"
.string "Oh, another thing.\p" .string "Oh, another thing.\p"
@@ -185,13 +185,13 @@ Route104_PrettyPetalFlowerShop_Text_2A79A6: @ 82A79A6
.string "Isn't that awesome?\n" .string "Isn't that awesome?\n"
.string "It's like they have the will to live.$" .string "It's like they have the will to live.$"
Route104_PrettyPetalFlowerShop_Text_2A7A98: @ 82A7A98 Route104_PrettyPetalFlowerShop_Text_ImGrowingFlowers: @ 82A7A98
.string "I'm trying to be like my big sisters.\n" .string "I'm trying to be like my big sisters.\n"
.string "I'm growing flowers, too!\p" .string "I'm growing flowers, too!\p"
.string "Here you go!\n" .string "Here you go!\n"
.string "It's for you!$" .string "It's for you!$"
Route104_PrettyPetalFlowerShop_Text_2A7AF3: @ 82A7AF3 Route104_PrettyPetalFlowerShop_Text_MachineMixesBerries: @ 82A7AF3
.string "You can plant a BERRY and grow it big,\n" .string "You can plant a BERRY and grow it big,\n"
.string "or you can make a POKéMON hold it.\p" .string "or you can make a POKéMON hold it.\p"
.string "But now they have a machine that mixes\n" .string "But now they have a machine that mixes\n"
+90 -90
View File
@@ -427,375 +427,375 @@ Route104_Text_295CD3: @ 8295CD3
.string "Hey, MAGIKARP, you sure don't live up\n" .string "Hey, MAGIKARP, you sure don't live up\n"
.string "to your name, do you?$" .string "to your name, do you?$"
Route105_Text_295D0F: @ 8295D0F Route105_Text_FosterIntro: @ 8295D0F
.string "There's supposed to be a mystical\n" .string "There's supposed to be a mystical\n"
.string "rock around here.\l" .string "rock around here.\l"
.string "Do you know anything about it?$" .string "Do you know anything about it?$"
Route105_Text_295D62: @ 8295D62 Route105_Text_FosterDefeated: @ 8295D62
.string "I was thinking too much about that\n" .string "I was thinking too much about that\n"
.string "rock, while my POKéMON remained weak…$" .string "rock, while my POKéMON remained weak…$"
Route105_Text_295DAB: @ 8295DAB Route105_Text_FosterPostBattle: @ 8295DAB
.string "I can spend hours and hours staring\n" .string "I can spend hours and hours staring\n"
.string "at a nice rock without growing bored.$" .string "at a nice rock without growing bored.$"
Route105_Text_295DF5: @ 8295DF5 Route105_Text_LuisIntro: @ 8295DF5
.string "Whew! I was worried that a kid was\n" .string "Whew! I was worried that a kid was\n"
.string "drowning when I saw you.\p" .string "drowning when I saw you.\p"
.string "You seem to be okay, so what do you\n" .string "You seem to be okay, so what do you\n"
.string "say to a battle?$" .string "say to a battle?$"
Route105_Text_295E66: @ 8295E66 Route105_Text_LuisDefeated: @ 8295E66
.string "Glub… Glub…$" .string "Glub… Glub…$"
Route105_Text_295E72: @ 8295E72 Route105_Text_LuisPostBattle: @ 8295E72
.string "If you are drowning, the signal is to\n" .string "If you are drowning, the signal is to\n"
.string "wave one arm toward the beach.$" .string "wave one arm toward the beach.$"
Route105_Text_295EB7: @ 8295EB7 Route105_Text_DominikIntro: @ 8295EB7
.string "Swimming the deep blue sea…\n" .string "Swimming the deep blue sea…\n"
.string "It feels the greatest!$" .string "It feels the greatest!$"
Route105_Text_295EEA: @ 8295EEA Route105_Text_DominikDefeated: @ 8295EEA
.string "I lost…\n" .string "I lost…\n"
.string "Now I'm feeling blue…$" .string "Now I'm feeling blue…$"
Route105_Text_295F08: @ 8295F08 Route105_Text_DominikPostBattle: @ 8295F08
.string "Why is the sea blue?\p" .string "Why is the sea blue?\p"
.string "I learned about that at the MUSEUM in\n" .string "I learned about that at the MUSEUM in\n"
.string "SLATEPORT, but I forgot.$" .string "SLATEPORT, but I forgot.$"
Route105_Text_295F5C: @ 8295F5C Route105_Text_BeverlyIntro: @ 8295F5C
.string "My body feels lighter in the water.\n" .string "My body feels lighter in the water.\n"
.string "It's as if I've gotten slimmer!$" .string "It's as if I've gotten slimmer!$"
Route105_Text_295FA0: @ 8295FA0 Route105_Text_BeverlyDefeated: @ 8295FA0
.string "I'm floating…$" .string "I'm floating…$"
Route105_Text_295FAE: @ 8295FAE Route105_Text_PostBattle: @ 8295FAE
.string "Your body weight is reduced to just\n" .string "Your body weight is reduced to just\n"
.string "one tenth in the water.\p" .string "one tenth in the water.\p"
.string "That would make me…\n" .string "That would make me…\n"
.string "Whoops! I'm not telling you my weight!$" .string "Whoops! I'm not telling you my weight!$"
Route105_Text_296025: @ 8296025 Route105_Text_ImaniIntro: @ 8296025
.string "The blue, blue sky…\n" .string "The blue, blue sky…\n"
.string "The vast sea…\l" .string "The vast sea…\l"
.string "It's so peaceful…$" .string "It's so peaceful…$"
Route105_Text_296059: @ 8296059 Route105_Text_ImaniDefeated: @ 8296059
.string "I lost while I was lounging!$" .string "I lost while I was lounging!$"
Route105_Text_296076: @ 8296076 Route105_Text_ImaniPostBattle: @ 8296076
.string "I want to be told I'm relaxing to be\n" .string "I want to be told I'm relaxing to be\n"
.string "with. Giggle.$" .string "with. Giggle.$"
Route105_Text_2960A9: @ 82960A9 Route105_Text_AndresIntro: @ 82960A9
.string "I'm convinced that the sea keeps\n" .string "I'm convinced that the sea keeps\n"
.string "secrets from us.$" .string "secrets from us.$"
Route105_Text_2960DB: @ 82960DB Route105_Text_AndresDefeated: @ 82960DB
.string "Yes…\n" .string "Yes…\n"
.string "I am no good at battling…$" .string "I am no good at battling…$"
Route105_Text_2960FA: @ 82960FA Route105_Text_AndresPostBattle: @ 82960FA
.string "I'm sure there are many secrets to be\n" .string "I'm sure there are many secrets to be\n"
.string "discovered in the world's seas.\p" .string "discovered in the world's seas.\p"
.string "I mean to find them all!$" .string "I mean to find them all!$"
Route105_Text_296159: @ 8296159 Route105_Text_AndresRegister: @ 8296159
.string "Huh? I'm so weak, but you're willing\n" .string "Huh? I'm so weak, but you're willing\n"
.string "to register me in your POKéNAV?$" .string "to register me in your POKéNAV?$"
Route105_Text_29619E: @ 829619E Route105_Text_AndresRematchIntro: @ 829619E
.string "I've told you that I'm weak…\n" .string "I've told you that I'm weak…\n"
.string "Are you sure you want to do this?$" .string "Are you sure you want to do this?$"
Route105_Text_2961DD: @ 82961DD Route105_Text_AndresRematchDefeated: @ 82961DD
.string "Yes…\n" .string "Yes…\n"
.string "I didn't think I could win.$" .string "I didn't think I could win.$"
Route105_Text_2961FE: @ 82961FE Route105_Text_AndresRematchPostBattle: @ 82961FE
.string "I may be weak at battling, but my\n" .string "I may be weak at battling, but my\n"
.string "drive to explore can't be bested.\p" .string "drive to explore can't be bested.\p"
.string "I will travel the seas all around\n" .string "I will travel the seas all around\n"
.string "the world!$" .string "the world!$"
Route105_Text_29626F: @ 829626F Route105_Text_JosueIntro: @ 829626F
.string "I'm exhausted from swimming.\n" .string "I'm exhausted from swimming.\n"
.string "I'm just not used to it.\p" .string "I'm just not used to it.\p"
.string "I need a battle for a change of pace!$" .string "I need a battle for a change of pace!$"
Route105_Text_2962CB: @ 82962CB Route105_Text_JosueDefeated: @ 82962CB
.string "I lost because I battled at sea.$" .string "I lost because I battled at sea.$"
Route105_Text_2962EC: @ 82962EC Route105_Text_JosuePostBattle: @ 82962EC
.string "Yeah, for me, the sky is a much better\n" .string "Yeah, for me, the sky is a much better\n"
.string "match than the sea.$" .string "match than the sea.$"
Route106_Text_296327: @ 8296327 Route106_Text_ElliotIntro: @ 8296327
.string "Which do you prefer, fishing in the\n" .string "Which do you prefer, fishing in the\n"
.string "sea or a stream?$" .string "sea or a stream?$"
Route106_Text_29635C: @ 829635C Route106_Text_ElliotDefeated: @ 829635C
.string "Like in deep-sea fishing, I lost\n" .string "Like in deep-sea fishing, I lost\n"
.string "spectacularly!$" .string "spectacularly!$"
Route106_Text_29638C: @ 829638C Route106_Text_ElliotPostBattle: @ 829638C
.string "Fishing is the greatest whether it's\n" .string "Fishing is the greatest whether it's\n"
.string "in the sea or a stream.\l" .string "in the sea or a stream.\l"
.string "You agree with me, right?$" .string "You agree with me, right?$"
Route106_Text_2963E3: @ 82963E3 Route106_Text_ElliotRegister: @ 82963E3
.string "Fishing's great, but so is battling.\n" .string "Fishing's great, but so is battling.\n"
.string "If you don't mind, can we meet again?$" .string "If you don't mind, can we meet again?$"
Route106_Text_29642E: @ 829642E Route106_Text_ElliotRematchIntro: @ 829642E
.string "I caught a bunch of POKéMON fishing.\n" .string "I caught a bunch of POKéMON fishing.\n"
.string "I'll show you an impressive battle!$" .string "I'll show you an impressive battle!$"
Route106_Text_296477: @ 8296477 Route106_Text_ElliotRematchDefeated: @ 8296477
.string "I lost again spectacularly!$" .string "I lost again spectacularly!$"
Route106_Text_296493: @ 8296493 Route106_Text_ElliotRematchPostBattle: @ 8296493
.string "Win or lose, POKéMON are the greatest!\n" .string "Win or lose, POKéMON are the greatest!\n"
.string "You agree with me, right?$" .string "You agree with me, right?$"
Route106_Text_2964D4: @ 82964D4 Route106_Text_NedIntro: @ 82964D4
.string "What do people do if they need to go\n" .string "What do people do if they need to go\n"
.string "to a washroom?\p" .string "to a washroom?\p"
.string "What if my ROD hooks a big one while\n" .string "What if my ROD hooks a big one while\n"
.string "I'm in the washroom? I just can't go…$" .string "I'm in the washroom? I just can't go…$"
Route106_Text_296553: @ 8296553 Route106_Text_NedDefeated: @ 8296553
.string "I lost because I'm trying to not go\n" .string "I lost because I'm trying to not go\n"
.string "to the washroom…$" .string "to the washroom…$"
Route106_Text_296588: @ 8296588 Route106_Text_NedPostBattle: @ 8296588
.string "Oh, no! I've got this feeling I'll hook\n" .string "Oh, no! I've got this feeling I'll hook\n"
.string "a big one!$" .string "a big one!$"
Route106_Text_2965BB: @ 82965BB Route106_Text_DouglasIntro: @ 82965BB
.string "Hahahah! I'm a lousy runner, but in\n" .string "Hahahah! I'm a lousy runner, but in\n"
.string "the water you can't catch me!$" .string "the water you can't catch me!$"
Route106_Text_2965FD: @ 82965FD Route106_Text_DouglasDefeated: @ 82965FD
.string "I give up!$" .string "I give up!$"
Route106_Text_296608: @ 8296608 Route106_Text_DouglasPostBattle: @ 8296608
.string "I wouldn't lose in a swim race…$" .string "I wouldn't lose in a swim race…$"
Route106_Text_296628: @ 8296628 Route106_Text_KylaIntro: @ 8296628
.string "The sea is my backyard. I'm not going\n" .string "The sea is my backyard. I'm not going\n"
.string "to take it easy because you're a kid!$" .string "to take it easy because you're a kid!$"
Route106_Text_296674: @ 8296674 Route106_Text_KylaDefeated: @ 8296674
.string "Did you take it easy on me by any\n" .string "Did you take it easy on me by any\n"
.string "chance?$" .string "chance?$"
Route106_Text_29669E: @ 829669E Route106_Text_KylaPostBattle: @ 829669E
.string "Drifting along with the waves…\n" .string "Drifting along with the waves…\n"
.string "I love it! Why don't you give it a try?$" .string "I love it! Why don't you give it a try?$"
Route107_Text_2966E5: @ 82966E5 Route107_Text_DarrinIntro: @ 82966E5
.string "Yawn…\p" .string "Yawn…\p"
.string "I must have drifted off to sleep while\n" .string "I must have drifted off to sleep while\n"
.string "I was drifting in the waves.$" .string "I was drifting in the waves.$"
Route107_Text_29672F: @ 829672F Route107_Text_DarrinDefeated: @ 829672F
.string "Ahaha, I lost…\n" .string "Ahaha, I lost…\n"
.string "I'll take a snooze, I think…$" .string "I'll take a snooze, I think…$"
Route107_Text_29675B: @ 829675B Route107_Text_DarrinPostBattle: @ 829675B
.string "Floating and being rocked by\n" .string "Floating and being rocked by\n"
.string "the waves--it's like sleeping in\l" .string "the waves--it's like sleeping in\l"
.string "a plush, comfy bed.$" .string "a plush, comfy bed.$"
Route107_Text_2967AD: @ 82967AD Route107_Text_TonyIntro: @ 82967AD
.string "The sea is like my backyard.\n" .string "The sea is like my backyard.\n"
.string "Let's battle!$" .string "Let's battle!$"
Route107_Text_2967D8: @ 82967D8 Route107_Text_TonyDefeated: @ 82967D8
.string "I lost on my home field…\n" .string "I lost on my home field…\n"
.string "I'm in shock!$" .string "I'm in shock!$"
Route107_Text_2967FF: @ 82967FF Route107_Text_TonyPostBattle: @ 82967FF
.string "I swim the seas with a heart full of\n" .string "I swim the seas with a heart full of\n"
.string "dreams…\p" .string "dreams…\p"
.string "It's a song!\n" .string "It's a song!\n"
.string "Anyways, I'm swimming some more.$" .string "Anyways, I'm swimming some more.$"
Route107_Text_29685A: @ 829685A Route107_Text_TonyRegister: @ 829685A
.string "You've shocked me to the bone!\n" .string "You've shocked me to the bone!\n"
.string "Well, so you won't forget me…$" .string "Well, so you won't forget me…$"
Route107_Text_296897: @ 8296897 Route107_Text_TonyRematchIntro: @ 8296897
.string "Swimming in the big, wide sea,\n" .string "Swimming in the big, wide sea,\n"
.string "my POKéMON has grown stronger!$" .string "my POKéMON has grown stronger!$"
Route107_Text_2968D5: @ 82968D5 Route107_Text_TonyRematchDefeated: @ 82968D5
.string "What a shock!\p" .string "What a shock!\p"
.string "My POKéMON has gotten stronger, but\n" .string "My POKéMON has gotten stronger, but\n"
.string "I stayed weak as a TRAINER!$" .string "I stayed weak as a TRAINER!$"
Route107_Text_296923: @ 8296923 Route107_Text_TonyRematchPostBattle: @ 8296923
.string "What you learn in battle makes you\n" .string "What you learn in battle makes you\n"
.string "a stronger TRAINER.\l" .string "a stronger TRAINER.\l"
.string "The waves taught me that.$" .string "The waves taught me that.$"
Route107_Text_296974: @ 8296974 Route107_Text_DeniseIntro: @ 8296974
.string "Do you know a little town called\n" .string "Do you know a little town called\n"
.string "DEWFORD?$" .string "DEWFORD?$"
Route107_Text_29699E: @ 829699E Route107_Text_DeniseDefeated: @ 829699E
.string "I hate this!$" .string "I hate this!$"
Route107_Text_2969AB: @ 82969AB Route107_Text_DenisePostBattle: @ 82969AB
.string "A weird saying is getting really\n" .string "A weird saying is getting really\n"
.string "trendy at DEWFORD HALL.$" .string "trendy at DEWFORD HALL.$"
Route107_Text_2969E4: @ 82969E4 Route107_Text_BethIntro: @ 82969E4
.string "Did you want to battle me?\n" .string "Did you want to battle me?\n"
.string "Sure, I'll go with you!$" .string "Sure, I'll go with you!$"
Route107_Text_296A17: @ 8296A17 Route107_Text_BethDefeated: @ 8296A17
.string "I wasn't good enough for you.$" .string "I wasn't good enough for you.$"
Route107_Text_296A35: @ 8296A35 Route107_Text_BethPostBattle: @ 8296A35
.string "I think you're going to keep getting\n" .string "I think you're going to keep getting\n"
.string "better. I'll go for it, too!$" .string "better. I'll go for it, too!$"
Route107_Text_296A77: @ 8296A77 Route107_Text_LisaIntro: @ 8296A77
.string "LISA: We challenge you as a sister\n" .string "LISA: We challenge you as a sister\n"
.string "and brother!$" .string "and brother!$"
Route107_Text_296AA7: @ 8296AA7 Route107_Text_LisaDefeated: @ 8296AA7
.string "LISA: Awesome.\n" .string "LISA: Awesome.\n"
.string "You're in a different class of tough.$" .string "You're in a different class of tough.$"
Route107_Text_296ADC: @ 8296ADC Route107_Text_LisaPostBattle: @ 8296ADC
.string "LISA: Do you have any friends who\n" .string "LISA: Do you have any friends who\n"
.string "would go to the beach with you?$" .string "would go to the beach with you?$"
Route107_Text_296B1E: @ 8296B1E Route107_Text_LisaNotEnoughPokemon: @ 8296B1E
.string "LISA: If you want to battle with us,\n" .string "LISA: If you want to battle with us,\n"
.string "bring more POKéMON.$" .string "bring more POKéMON.$"
Route107_Text_296B57: @ 8296B57 Route107_Text_RayIntro: @ 8296B57
.string "RAY: We always battle POKéMON,\n" .string "RAY: We always battle POKéMON,\n"
.string "me and my sister.\p" .string "me and my sister.\p"
.string "I always lose, but we can beat you\n" .string "I always lose, but we can beat you\n"
.string "2-on-2!$" .string "2-on-2!$"
Route107_Text_296BB3: @ 8296BB3 Route107_Text_RayDefeated: @ 8296BB3
.string "RAY: Wowee, you're at a higher level\n" .string "RAY: Wowee, you're at a higher level\n"
.string "than us!$" .string "than us!$"
Route107_Text_296BE1: @ 8296BE1 Route107_Text_RayPostBattle: @ 8296BE1
.string "RAY: My sister gave me my POKéMON.\n" .string "RAY: My sister gave me my POKéMON.\n"
.string "I raised it, and now it's my important\l" .string "I raised it, and now it's my important\l"
.string "partner!$" .string "partner!$"
Route107_Text_296C34: @ 8296C34 Route107_Text_RayNotEnoughPokemon: @ 8296C34
.string "RAY: If you want to battle us,\n" .string "RAY: If you want to battle us,\n"
.string "go bring some more POKéMON!$" .string "go bring some more POKéMON!$"
Route107_Text_296C6F: @ 8296C6F Route107_Text_CamronIntro: @ 8296C6F
.string "I'm in the middle of a triathlon,\n" .string "I'm in the middle of a triathlon,\n"
.string "but I'm nowhere near tired!$" .string "but I'm nowhere near tired!$"
Route107_Text_296CAD: @ 8296CAD Route107_Text_CamronDefeated: @ 8296CAD
.string "That exhausted me…$" .string "That exhausted me…$"
Route107_Text_296CC0: @ 8296CC0 Route107_Text_CamronPostBattle: @ 8296CC0
.string "I still have swimming and running left\n" .string "I still have swimming and running left\n"
.string "to do after this.\p" .string "to do after this.\p"
.string "Am I going to be okay?$" .string "Am I going to be okay?$"
Route108_Text_296D10: @ 8296D10 Route108_Text_JeromeIntro: @ 8296D10
.string "My dream is to swim the world's seven\n" .string "My dream is to swim the world's seven\n"
.string "seas!$" .string "seas!$"
Route108_Text_296D3C: @ 8296D3C Route108_Text_JeromeDefeated: @ 8296D3C
.string "I won't be able to swim the seven seas\n" .string "I won't be able to swim the seven seas\n"
.string "like this…$" .string "like this…$"
Route108_Text_296D6E: @ 8296D6E Route108_Text_JeromePostBattle: @ 8296D6E
.string "Playing with marine POKéMON is one of\n" .string "Playing with marine POKéMON is one of\n"
.string "the pleasures of swimming!$" .string "the pleasures of swimming!$"
Route108_Text_296DAF: @ 8296DAF Route108_Text_MatthewIntro: @ 8296DAF
.string "Ahoy, there! Are you going out to\n" .string "Ahoy, there! Are you going out to\n"
.string "the ABANDONED SHIP, too?$" .string "the ABANDONED SHIP, too?$"
Route108_Text_296DEA: @ 8296DEA Route108_Text_MatthewDefeated: @ 8296DEA
.string "I'm sinking!\n" .string "I'm sinking!\n"
.string "Glub… Glub…$" .string "Glub… Glub…$"
Route108_Text_296E03: @ 8296E03 Route108_Text_MatthewPostBattle: @ 8296E03
.string "Some people even go inside that\n" .string "Some people even go inside that\n"
.string "ABANDONED SHIP.$" .string "ABANDONED SHIP.$"
Route108_Text_296E33: @ 8296E33 Route108_Text_TaraIntro: @ 8296E33
.string "My liar of a boyfriend told me that\n" .string "My liar of a boyfriend told me that\n"
.string "I look great in a bikini…$" .string "I look great in a bikini…$"
Route108_Text_296E71: @ 8296E71 Route108_Text_TaraDefeated: @ 8296E71
.string "Oh, boo!$" .string "Oh, boo!$"
Route108_Text_296E7A: @ 8296E7A Route108_Text_TaraPostBattle: @ 8296E7A
.string "Even if it's a lie, I love being told\n" .string "Even if it's a lie, I love being told\n"
.string "I look great…\l" .string "I look great…\l"
.string "We girls are so complex…$" .string "We girls are so complex…$"
Route108_Text_296EC7: @ 8296EC7 Route108_Text_MissyIntro: @ 8296EC7
.string "I love the sea!\n" .string "I love the sea!\n"
.string "I forget all my worries when I swim!$" .string "I forget all my worries when I swim!$"
Route108_Text_296EFC: @ 8296EFC Route108_Text_MissyDefeated: @ 8296EFC
.string "When I lose a battle, I get all\n" .string "When I lose a battle, I get all\n"
.string "stressed out!$" .string "stressed out!$"
Route108_Text_296F2A: @ 8296F2A Route108_Text_MissyPostBattle: @ 8296F2A
.string "Work off your stress by swimming!\n" .string "Work off your stress by swimming!\n"
.string "It's so healthy!$" .string "It's so healthy!$"
Route108_Text_296F5D: @ 8296F5D Route108_Text_CoryIntro: @ 8296F5D
.string "I love WATER-type POKéMON.\n" .string "I love WATER-type POKéMON.\n"
.string "I love other POKéMON, too!$" .string "I love other POKéMON, too!$"
Route108_Text_296F93: @ 8296F93 Route108_Text_CoryDefeated: @ 8296F93
.string "Waaah! I lost!\n" .string "Waaah! I lost!\n"
.string "Waaah! Waaah!$" .string "Waaah! Waaah!$"
Route108_Text_296FB0: @ 8296FB0 Route108_Text_CoryPostBattle: @ 8296FB0
.string "Shouting is good for me!\n" .string "Shouting is good for me!\n"
.string "It uplifts me!$" .string "It uplifts me!$"
Route108_Text_296FD8: @ 8296FD8 Route108_Text_CoryRegister: @ 8296FD8
.string "I love tough TRAINERS, too!\n" .string "I love tough TRAINERS, too!\n"
.string "Register me in your POKéNAV!$" .string "Register me in your POKéNAV!$"
Route108_Text_297011: @ 8297011 Route108_Text_CoryRematchIntro: @ 8297011
.string "Win or lose, I love battling at sea!$" .string "Win or lose, I love battling at sea!$"
Route108_Text_297036: @ 8297036 Route108_Text_CoryRematchDefeated: @ 8297036
.string "Waaah! I lost again!\n" .string "Waaah! I lost again!\n"
.string "Waaah! Waaah!$" .string "Waaah! Waaah!$"
Route108_Text_297059: @ 8297059 Route108_Text_CoryRematchPostBattle: @ 8297059
.string "If you're faced with a challenge,\n" .string "If you're faced with a challenge,\n"
.string "try shouting at the sea!$" .string "try shouting at the sea!$"
Route108_Text_297094: @ 8297094 Route108_Text_CarolinaIntro: @ 8297094
.string "I take huge pride in my POKéMON.\n" .string "I take huge pride in my POKéMON.\n"
.string "We'll show you one speedy battle!$" .string "We'll show you one speedy battle!$"
Route108_Text_2970D7: @ 82970D7 Route108_Text_CarolinaDefeated: @ 82970D7
.string "That wasn't cute at all.$" .string "That wasn't cute at all.$"
Route108_Text_2970F0: @ 82970F0 Route108_Text_CarolinaPostBattle: @ 82970F0
.string "Since I'm at sea like this, I wouldn't\n" .string "Since I'm at sea like this, I wouldn't\n"
.string "mind putting on a pink, frilly swimsuit…$" .string "mind putting on a pink, frilly swimsuit…$"