Merge pull request #270 from GriffinRichards/doc-oneisland

Document One Island scripts
This commit is contained in:
PikalaxALT
2020-02-26 14:08:19 -05:00
committed by GitHub
27 changed files with 576 additions and 567 deletions
+4 -4
View File
@@ -49,7 +49,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": 0, "trainer_type": 0,
"trainer_sight_or_berry_tree_id": 0, "trainer_sight_or_berry_tree_id": 0,
"script": "OneIsland_EventScript_167517", "script": "OneIsland_EventScript_OldMan",
"flag": "0" "flag": "0"
}, },
{ {
@@ -62,7 +62,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": 0, "trainer_type": 0,
"trainer_sight_or_berry_tree_id": 0, "trainer_sight_or_berry_tree_id": 0,
"script": "OneIsland_EventScript_167549", "script": "OneIsland_EventScript_BaldingMan",
"flag": "0" "flag": "0"
} }
], ],
@@ -103,14 +103,14 @@
"x": 14, "x": 14,
"y": 13, "y": 13,
"elevation": 0, "elevation": 0,
"script": "OneIsland_EventScript_167552" "script": "OneIsland_EventScript_IslandSign"
}, },
{ {
"type": "bg_event_type_0", "type": "bg_event_type_0",
"x": 15, "x": 15,
"y": 6, "y": 6,
"elevation": 0, "elevation": 0,
"script": "OneIsland_EventScript_16755B" "script": "OneIsland_EventScript_PokemonNetCenterSign"
} }
] ]
} }
+36 -40
View File
@@ -1,3 +1,5 @@
.equ LOCALID_BILL, 1
OneIsland_MapScripts:: @ 8167484 OneIsland_MapScripts:: @ 8167484
map_script MAP_SCRIPT_ON_TRANSITION, OneIsland_OnTransition map_script MAP_SCRIPT_ON_TRANSITION, OneIsland_OnTransition
map_script MAP_SCRIPT_ON_FRAME_TABLE, OneIsland_OnFrame map_script MAP_SCRIPT_ON_FRAME_TABLE, OneIsland_OnFrame
@@ -8,35 +10,34 @@ OneIsland_OnTransition:: @ 816748F
end end
OneIsland_OnFrame:: @ 8167493 OneIsland_OnFrame:: @ 8167493
map_script_2 VAR_MAP_SCENE_ONE_ISLAND_HARBOR, 2, EventScript_16749D map_script_2 VAR_MAP_SCENE_ONE_ISLAND_HARBOR, 2, OneIsland_EventScript_EnterOneIslandFirstTime
.2byte 0 .2byte 0
EventScript_16749D:: @ 816749D OneIsland_EventScript_EnterOneIslandFirstTime:: @ 816749D
lockall lockall
textcolor 0 textcolor 0
applymovement OBJ_EVENT_ID_PLAYER, Movement_167505 applymovement OBJ_EVENT_ID_PLAYER, OneIsland_Movement_PlayerExitHarbor
waitmovement 0 waitmovement 0
msgbox gUnknown_818161B msgbox OneIsland_Text_BillLetsGoSeeCelio
closemessage closemessage
applymovement 1, Movement_167507 applymovement LOCALID_BILL, OneIsland_Movement_BillWalkToPokeCenter
applymovement OBJ_EVENT_ID_PLAYER, Movement_1674F4 applymovement OBJ_EVENT_ID_PLAYER, OneIsland_Movement_PlayerWalkToPokeCenter
waitmovement 0 waitmovement 0
opendoor 14, 5 opendoor 14, 5
waitdooranim waitdooranim
applymovement 1, Movement_167514 applymovement LOCALID_BILL, OneIsland_Movement_BillEnterPokeCenter
applymovement OBJ_EVENT_ID_PLAYER, Movement_167501 applymovement OBJ_EVENT_ID_PLAYER, OneIsland_Movement_PlayerEnterPokeCenter
waitmovement 0 waitmovement 0
closedoor 14, 5 closedoor 14, 5
waitdooranim waitdooranim
removeobject 1 removeobject LOCALID_BILL
setvar VAR_MAP_SCENE_ONE_ISLAND_HARBOR, 3 setvar VAR_MAP_SCENE_ONE_ISLAND_HARBOR, 3
warp MAP_ONE_ISLAND_POKEMON_CENTER_1F, 255, 9, 9 warp MAP_ONE_ISLAND_POKEMON_CENTER_1F, 255, 9, 9
waitstate waitstate
releaseall releaseall
end end
Movement_1674F4:: @ 81674F4 .macro walk_to_pokecenter
walk_up
walk_up walk_up
walk_up walk_up
walk_up walk_up
@@ -48,65 +49,60 @@ Movement_1674F4:: @ 81674F4
walk_up walk_up
walk_up walk_up
walk_up walk_up
.endm
OneIsland_Movement_PlayerWalkToPokeCenter:: @ 81674F4
walk_up
walk_to_pokecenter
step_end step_end
Movement_167501:: @ 8167501 OneIsland_Movement_PlayerEnterPokeCenter:: @ 8167501
walk_up walk_up
walk_up walk_up
set_invisible set_invisible
step_end step_end
Movement_167505:: @ 8167505 OneIsland_Movement_PlayerExitHarbor:: @ 8167505
walk_up walk_up
step_end step_end
Movement_167507:: @ 8167507 OneIsland_Movement_BillWalkToPokeCenter:: @ 8167507
walk_up walk_to_pokecenter
walk_up
walk_up
walk_up
walk_right
walk_right
walk_up
walk_up
walk_up
walk_up
walk_up
walk_up walk_up
step_end step_end
Movement_167514:: @ 8167514 OneIsland_Movement_BillEnterPokeCenter:: @ 8167514
walk_up walk_up
set_invisible set_invisible
step_end step_end
OneIsland_EventScript_167517:: @ 8167517 OneIsland_EventScript_OldMan:: @ 8167517
lock lock
faceplayer faceplayer
goto_if_set FLAG_SYS_CAN_LINK_WITH_RS, EventScript_16753F goto_if_set FLAG_SYS_CAN_LINK_WITH_RS, OneIsland_EventScript_OldManLinkHoenn
goto_if_set FLAG_SEVII_DETOUR_FINISHED, EventScript_167535 goto_if_set FLAG_SEVII_DETOUR_FINISHED, OneIsland_EventScript_OldManLinkKanto
msgbox gUnknown_818174E msgbox OneIsland_Text_LuckyToHaveCelioHere
release release
end end
EventScript_167535:: @ 8167535 OneIsland_EventScript_OldManLinkKanto:: @ 8167535
msgbox gUnknown_8181858 msgbox OneIsland_Text_HavePCLinkageWithKanto
release release
end end
EventScript_16753F:: @ 816753F OneIsland_EventScript_OldManLinkHoenn:: @ 816753F
msgbox gUnknown_8181901 msgbox OneIsland_Text_HavePCLinkageWithHoenn
release release
end end
OneIsland_EventScript_167549:: @ 8167549 OneIsland_EventScript_BaldingMan:: @ 8167549
msgbox gUnknown_8181A4A, MSGBOX_NPC msgbox OneIsland_Text_IsntWarmClimateHereGreat, MSGBOX_NPC
end end
OneIsland_EventScript_167552:: @ 8167552 OneIsland_EventScript_IslandSign:: @ 8167552
msgbox gUnknown_81819E1, MSGBOX_SIGN msgbox OneIsland_Text_IslandSign, MSGBOX_SIGN
end end
OneIsland_EventScript_16755B:: @ 816755B OneIsland_EventScript_PokemonNetCenterSign:: @ 816755B
msgbox gUnknown_8181A0A, MSGBOX_SIGN msgbox OneIsland_Text_PokemonNetCenterSign, MSGBOX_SIGN
end end
+9 -8
View File
@@ -1,4 +1,4 @@
gUnknown_818161B:: @ 818161B OneIsland_Text_BillLetsGoSeeCelio:: @ 818161B
.string "BILL: Here we are!\n" .string "BILL: Here we are!\n"
.string "This is ONE ISLAND.\p" .string "This is ONE ISLAND.\p"
.string "There are several islands around\n" .string "There are several islands around\n"
@@ -14,7 +14,7 @@ Text_WhereDoYouWantToSail:: @ 8181726
.string "Ahoy, there!\n" .string "Ahoy, there!\n"
.string "Where do you want to sail?$" .string "Where do you want to sail?$"
gUnknown_818174E:: @ 818174E OneIsland_Text_LuckyToHaveCelioHere:: @ 818174E
.string "Here we are on an island smack in\n" .string "Here we are on an island smack in\n"
.string "the middle of nowhere.\p" .string "the middle of nowhere.\p"
.string "We're lucky to have an upstanding\n" .string "We're lucky to have an upstanding\n"
@@ -26,7 +26,7 @@ gUnknown_818174E:: @ 818174E
.string "I'm not sure what that means, but\n" .string "I'm not sure what that means, but\n"
.string "CELIO is quite the man!$" .string "CELIO is quite the man!$"
gUnknown_8181858:: @ 8181858 OneIsland_Text_HavePCLinkageWithKanto:: @ 8181858
.string "My granddaughter was in a tizzy\n" .string "My granddaughter was in a tizzy\n"
.string "over a new breakthrough.\p" .string "over a new breakthrough.\p"
.string "She said we now have PC linkage\n" .string "She said we now have PC linkage\n"
@@ -34,7 +34,7 @@ gUnknown_8181858:: @ 8181858
.string "I'm not sure what that means, but\n" .string "I'm not sure what that means, but\n"
.string "CELIO is quite the man!$" .string "CELIO is quite the man!$"
gUnknown_8181901:: @ 8181901 OneIsland_Text_HavePCLinkageWithHoenn:: @ 8181901
.string "My granddaughter was in a tizzy\n" .string "My granddaughter was in a tizzy\n"
.string "over a new breakthrough.\p" .string "over a new breakthrough.\p"
.string "She said we finally have PC linkage\n" .string "She said we finally have PC linkage\n"
@@ -44,18 +44,19 @@ gUnknown_8181901:: @ 8181901
.string "He would make a fine husband for\n" .string "He would make a fine husband for\n"
.string "my granddaughter!$" .string "my granddaughter!$"
gUnknown_81819E1:: @ 81819E1 OneIsland_Text_IslandSign:: @ 81819E1
.string "ONE ISLAND\n" .string "ONE ISLAND\n"
.string "Friends Gather at Knot Island$" .string "Friends Gather at Knot Island$"
gUnknown_8181A0A:: @ 8181A0A OneIsland_Text_PokemonNetCenterSign:: @ 8181A0A
.string "Expanding the POKéMON World!\n" .string "Expanding the POKéMON World!\n"
.string "POKéMON NET CENTER$" .string "POKéMON NET CENTER$"
Text_181A3A:: @ 8181A3A @ Unused
OneIsland_Text_ReturnToCinnabar:: @ 8181A3A
.string "グレンタウンに もどりますか?$" .string "グレンタウンに もどりますか?$"
gUnknown_8181A4A:: @ 8181A4A OneIsland_Text_IsntWarmClimateHereGreat:: @ 8181A4A
.string "Hi, sight-seeing, are you?\n" .string "Hi, sight-seeing, are you?\n"
.string "Isn't the warm climate here great?$" .string "Isn't the warm climate here great?$"
+1 -1
View File
@@ -38,7 +38,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": 0, "trainer_type": 0,
"trainer_sight_or_berry_tree_id": 0, "trainer_sight_or_berry_tree_id": 0,
"script": "OneIsland_Harbor_EventScript_1713BD", "script": "OneIsland_Harbor_EventScript_Sailor",
"flag": "0" "flag": "0"
} }
], ],
+7 -7
View File
@@ -4,21 +4,21 @@ OneIsland_Harbor_MapScripts:: @ 8171378
.byte 0 .byte 0
OneIsland_Harbor_OnWarp:: @ 8171383 OneIsland_Harbor_OnWarp:: @ 8171383
map_script_2 VAR_MAP_SCENE_ONE_ISLAND_HARBOR, 1, EventScript_17138D map_script_2 VAR_MAP_SCENE_ONE_ISLAND_HARBOR, 1, OneIsland_Harbor_EventScript_TurnPlayerNorth
.2byte 0 .2byte 0
EventScript_17138D:: @ 817138D OneIsland_Harbor_EventScript_TurnPlayerNorth:: @ 817138D
turnobject OBJ_EVENT_ID_PLAYER, DIR_NORTH turnobject OBJ_EVENT_ID_PLAYER, DIR_NORTH
end end
OneIsland_Harbor_OnFrame:: @ 8171392 OneIsland_Harbor_OnFrame:: @ 8171392
map_script_2 VAR_MAP_SCENE_ONE_ISLAND_HARBOR, 1, EventScript_17139C map_script_2 VAR_MAP_SCENE_ONE_ISLAND_HARBOR, 1, OneIsland_Harbor_EventScript_PlayerEnterHarborFirstTime
.2byte 0 .2byte 0
EventScript_17139C:: @ 817139C OneIsland_Harbor_EventScript_PlayerEnterHarborFirstTime:: @ 817139C
lockall lockall
textcolor 0 textcolor 0
applymovement OBJ_EVENT_ID_PLAYER, Movement_1713B9 applymovement OBJ_EVENT_ID_PLAYER, OneIsland_Harbor_Movement_PlayerExitHarbor
waitmovement 0 waitmovement 0
setvar VAR_MAP_SCENE_ONE_ISLAND_HARBOR, 2 setvar VAR_MAP_SCENE_ONE_ISLAND_HARBOR, 2
warp MAP_ONE_ISLAND, 255, 12, 18 warp MAP_ONE_ISLAND, 255, 12, 18
@@ -26,13 +26,13 @@ EventScript_17139C:: @ 817139C
releaseall releaseall
end end
Movement_1713B9:: @ 81713B9 OneIsland_Harbor_Movement_PlayerExitHarbor:: @ 81713B9
walk_up walk_up
walk_up walk_up
walk_up walk_up
step_end step_end
OneIsland_Harbor_EventScript_1713BD:: @ 81713BD OneIsland_Harbor_EventScript_Sailor:: @ 81713BD
lock lock
faceplayer faceplayer
message Text_WhereDoYouWantToSail message Text_WhereDoYouWantToSail
+2 -2
View File
@@ -25,7 +25,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": 0, "trainer_type": 0,
"trainer_sight_or_berry_tree_id": 0, "trainer_sight_or_berry_tree_id": 0,
"script": "OneIsland_House1_EventScript_17135C", "script": "OneIsland_House1_EventScript_OldMan",
"flag": "0" "flag": "0"
}, },
{ {
@@ -38,7 +38,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": 0, "trainer_type": 0,
"trainer_sight_or_berry_tree_id": 0, "trainer_sight_or_berry_tree_id": 0,
"script": "OneIsland_House1_EventScript_171365", "script": "OneIsland_House1_EventScript_OldWoman",
"flag": "0" "flag": "0"
} }
], ],
+4 -4
View File
@@ -1,10 +1,10 @@
OneIsland_House1_MapScripts:: @ 817135B OneIsland_House1_MapScripts:: @ 817135B
.byte 0 .byte 0
OneIsland_House1_EventScript_17135C:: @ 817135C OneIsland_House1_EventScript_OldMan:: @ 817135C
msgbox gUnknown_81A2332, MSGBOX_NPC msgbox OneIsland_House1_Text_GazeUponVolcanoOnSunnyDays, MSGBOX_NPC
end end
OneIsland_House1_EventScript_171365:: @ 8171365 OneIsland_House1_EventScript_OldWoman:: @ 8171365
msgbox gUnknown_81A2380, MSGBOX_NPC msgbox OneIsland_House1_Text_LastTimeMtEmberErupted, MSGBOX_NPC
end end
+2 -2
View File
@@ -1,9 +1,9 @@
gUnknown_81A2332:: @ 81A2332 OneIsland_House1_Text_GazeUponVolcanoOnSunnyDays:: @ 81A2332
.string "On sunny days, I step out and gaze\n" .string "On sunny days, I step out and gaze\n"
.string "upon the volcano.\p" .string "upon the volcano.\p"
.string "That's my daily routine.$" .string "That's my daily routine.$"
gUnknown_81A2380:: @ 81A2380 OneIsland_House1_Text_LastTimeMtEmberErupted:: @ 81A2380
.string "Let me think… When was the last\n" .string "Let me think… When was the last\n"
.string "time MT. EMBER erupted?$" .string "time MT. EMBER erupted?$"
+1 -1
View File
@@ -25,7 +25,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": 0, "trainer_type": 0,
"trainer_sight_or_berry_tree_id": 0, "trainer_sight_or_berry_tree_id": 0,
"script": "OneIsland_House2_EventScript_17136F", "script": "OneIsland_House2_EventScript_Lass",
"flag": "0" "flag": "0"
} }
], ],
+2 -2
View File
@@ -1,6 +1,6 @@
OneIsland_House2_MapScripts:: @ 817136E OneIsland_House2_MapScripts:: @ 817136E
.byte 0 .byte 0
OneIsland_House2_EventScript_17136F:: @ 817136F OneIsland_House2_EventScript_Lass:: @ 817136F
msgbox gUnknown_81A23B8, MSGBOX_NPC msgbox OneIsland_House2_Text_IWantToStayHereForever, MSGBOX_NPC
end end
+1 -1
View File
@@ -1,4 +1,4 @@
gUnknown_81A23B8:: @ 81A23B8 OneIsland_House2_Text_IWantToStayHereForever:: @ 81A23B8
.string "Young people all want to go off to\n" .string "Young people all want to go off to\n"
.string "big cities.\p" .string "big cities.\p"
.string "But I want to stay here forever!$" .string "But I want to stay here forever!$"
+15 -15
View File
@@ -31,7 +31,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": 1, "trainer_type": 1,
"trainer_sight_or_berry_tree_id": 4, "trainer_sight_or_berry_tree_id": 4,
"script": "OneIsland_KindleRoad_EventScript_1ABBF1", "script": "OneIsland_KindleRoad_EventScript_Maria",
"flag": "0" "flag": "0"
}, },
{ {
@@ -44,7 +44,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": 1, "trainer_type": 1,
"trainer_sight_or_berry_tree_id": 2, "trainer_sight_or_berry_tree_id": 2,
"script": "OneIsland_KindleRoad_EventScript_1ABC2F", "script": "OneIsland_KindleRoad_EventScript_Abigail",
"flag": "0" "flag": "0"
}, },
{ {
@@ -57,7 +57,7 @@
"movement_range_y": 3, "movement_range_y": 3,
"trainer_type": 1, "trainer_type": 1,
"trainer_sight_or_berry_tree_id": 1, "trainer_sight_or_berry_tree_id": 1,
"script": "OneIsland_KindleRoad_EventScript_1ABC6D", "script": "OneIsland_KindleRoad_EventScript_Finn",
"flag": "0" "flag": "0"
}, },
{ {
@@ -70,7 +70,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": "OneIsland_KindleRoad_EventScript_1ABCAB", "script": "OneIsland_KindleRoad_EventScript_Garrett",
"flag": "0" "flag": "0"
}, },
{ {
@@ -83,7 +83,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": 1, "trainer_type": 1,
"trainer_sight_or_berry_tree_id": 0, "trainer_sight_or_berry_tree_id": 0,
"script": "OneIsland_KindleRoad_EventScript_1ABCE9", "script": "OneIsland_KindleRoad_EventScript_Tommy",
"flag": "0" "flag": "0"
}, },
{ {
@@ -96,7 +96,7 @@
"movement_range_y": 7, "movement_range_y": 7,
"trainer_type": 1, "trainer_type": 1,
"trainer_sight_or_berry_tree_id": 1, "trainer_sight_or_berry_tree_id": 1,
"script": "OneIsland_KindleRoad_EventScript_1ABD27", "script": "OneIsland_KindleRoad_EventScript_Sharon",
"flag": "0" "flag": "0"
}, },
{ {
@@ -109,7 +109,7 @@
"movement_range_y": 4, "movement_range_y": 4,
"trainer_type": 1, "trainer_type": 1,
"trainer_sight_or_berry_tree_id": 1, "trainer_sight_or_berry_tree_id": 1,
"script": "OneIsland_KindleRoad_EventScript_1ABD65", "script": "OneIsland_KindleRoad_EventScript_Tanya",
"flag": "0" "flag": "0"
}, },
{ {
@@ -122,7 +122,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": "OneIsland_KindleRoad_EventScript_1ABDA3", "script": "OneIsland_KindleRoad_EventScript_Shea",
"flag": "0" "flag": "0"
}, },
{ {
@@ -135,7 +135,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": "OneIsland_KindleRoad_EventScript_1ABDE1", "script": "OneIsland_KindleRoad_EventScript_Hugh",
"flag": "0" "flag": "0"
}, },
{ {
@@ -148,7 +148,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": "OneIsland_KindleRoad_EventScript_1ABE1F", "script": "OneIsland_KindleRoad_EventScript_Bryce",
"flag": "0" "flag": "0"
}, },
{ {
@@ -161,7 +161,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": "OneIsland_KindleRoad_EventScript_1ABE5D", "script": "OneIsland_KindleRoad_EventScript_Claire",
"flag": "0" "flag": "0"
}, },
{ {
@@ -174,7 +174,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": "OneIsland_KindleRoad_EventScript_1ABEE1", "script": "OneIsland_KindleRoad_EventScript_Mik",
"flag": "0" "flag": "0"
}, },
{ {
@@ -187,7 +187,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": "OneIsland_KindleRoad_EventScript_1ABE9B", "script": "OneIsland_KindleRoad_EventScript_Kia",
"flag": "0" "flag": "0"
}, },
{ {
@@ -429,14 +429,14 @@
"x": 13, "x": 13,
"y": 59, "y": 59,
"elevation": 0, "elevation": 0,
"script": "OneIsland_KindleRoad_EventScript_168762" "script": "OneIsland_KindleRoad_EventScript_EmberSpaSign"
}, },
{ {
"type": "bg_event_type_0", "type": "bg_event_type_0",
"x": 8, "x": 8,
"y": 115, "y": 115,
"elevation": 0, "elevation": 0,
"script": "OneIsland_KindleRoad_EventScript_168759" "script": "OneIsland_KindleRoad_EventScript_RouteSign"
} }
] ]
} }
+4 -4
View File
@@ -1,10 +1,10 @@
OneIsland_KindleRoad_MapScripts:: @ 8168758 OneIsland_KindleRoad_MapScripts:: @ 8168758
.byte 0 .byte 0
OneIsland_KindleRoad_EventScript_168759:: @ 8168759 OneIsland_KindleRoad_EventScript_RouteSign:: @ 8168759
msgbox gUnknown_8189D02, MSGBOX_SIGN msgbox OneIsland_KindleRoad_Text_RouteSign, MSGBOX_SIGN
end end
OneIsland_KindleRoad_EventScript_168762:: @ 8168762 OneIsland_KindleRoad_EventScript_EmberSpaSign:: @ 8168762
msgbox gUnknown_8189D32, MSGBOX_SIGN msgbox OneIsland_KindleRoad_Text_EmberSpaSign, MSGBOX_SIGN
end end
+43 -43
View File
@@ -1,164 +1,164 @@
Text_18961F:: @ 818961F OneIsland_KindleRoad_Text_MariaIntro:: @ 818961F
.string "The weather's gorgeous!\n" .string "The weather's gorgeous!\n"
.string "Perfect for a battle!$" .string "Perfect for a battle!$"
Text_18964D:: @ 818964D OneIsland_KindleRoad_Text_MariaDefeat:: @ 818964D
.string "Aiyeeeeh!$" .string "Aiyeeeeh!$"
Text_189657:: @ 8189657 OneIsland_KindleRoad_Text_MariaPostBattle:: @ 8189657
.string "Please don't splash my face!\n" .string "Please don't splash my face!\n"
.string "You'll ruin the makeup.$" .string "You'll ruin the makeup.$"
Text_18968C:: @ 818968C OneIsland_KindleRoad_Text_AbigailIntro:: @ 818968C
.string "I'm beginning to get a sunburn…$" .string "I'm beginning to get a sunburn…$"
Text_1896AC:: @ 81896AC OneIsland_KindleRoad_Text_AbigailDefeat:: @ 81896AC
.string "Oh, you're so awful.$" .string "Oh, you're so awful.$"
Text_1896C1:: @ 81896C1 OneIsland_KindleRoad_Text_AbigailPostBattle:: @ 81896C1
.string "I like that cap you have.\n" .string "I like that cap you have.\n"
.string "Maybe I should wear one, too…$" .string "Maybe I should wear one, too…$"
Text_1896F9:: @ 81896F9 OneIsland_KindleRoad_Text_FinnIntro:: @ 81896F9
.string "Seen from here, MT. EMBER towers\n" .string "Seen from here, MT. EMBER towers\n"
.string "into the sky.$" .string "into the sky.$"
Text_189728:: @ 8189728 OneIsland_KindleRoad_Text_FinnDefeat:: @ 8189728
.string "Well, aren't you tough?$" .string "Well, aren't you tough?$"
Text_189740:: @ 8189740 OneIsland_KindleRoad_Text_FinnPostBattle:: @ 8189740
.string "The sky is immense around these\n" .string "The sky is immense around these\n"
.string "parts.$" .string "parts.$"
Text_189767:: @ 8189767 OneIsland_KindleRoad_Text_GarrettIntro:: @ 8189767
.string "I took a break from swimming,\n" .string "I took a break from swimming,\n"
.string "only to have you challenge me?$" .string "only to have you challenge me?$"
Text_1897A4:: @ 81897A4 OneIsland_KindleRoad_Text_GarrettDefeat:: @ 81897A4
.string "Hey, what the…\n" .string "Hey, what the…\n"
.string "You're good, you!$" .string "You're good, you!$"
Text_1897C5:: @ 81897C5 OneIsland_KindleRoad_Text_GarrettPostBattle:: @ 81897C5
.string "Instead of using SURF all the time,\n" .string "Instead of using SURF all the time,\n"
.string "you should swim some.$" .string "you should swim some.$"
Text_1897FF:: @ 81897FF OneIsland_KindleRoad_Text_TommyIntro:: @ 81897FF
.string "Wait! Wait a second!\n" .string "Wait! Wait a second!\n"
.string "I think I've hooked a big one!$" .string "I think I've hooked a big one!$"
Text_189833:: @ 8189833 OneIsland_KindleRoad_Text_TommyDefeat:: @ 8189833
.string "I've lost it all again…$" .string "I've lost it all again…$"
Text_18984B:: @ 818984B OneIsland_KindleRoad_Text_TommyPostBattle:: @ 818984B
.string "Not only did I lose, the big one\n" .string "Not only did I lose, the big one\n"
.string "got away from me, too!$" .string "got away from me, too!$"
Text_189883:: @ 8189883 OneIsland_KindleRoad_Text_SharonIntro:: @ 8189883
.string "Could you help me out with my\n" .string "Could you help me out with my\n"
.string "training?$" .string "training?$"
Text_1898AB:: @ 81898AB OneIsland_KindleRoad_Text_SharonDefeat:: @ 81898AB
.string "You were a cut above me.$" .string "You were a cut above me.$"
Text_1898C4:: @ 81898C4 OneIsland_KindleRoad_Text_SharonPostBattle:: @ 81898C4
.string "It's clear that you're skilled.\n" .string "It's clear that you're skilled.\n"
.string "I like you!$" .string "I like you!$"
Text_1898F0:: @ 81898F0 OneIsland_KindleRoad_Text_TanyaIntro:: @ 81898F0
.string "There isn't a day in which we don't\n" .string "There isn't a day in which we don't\n"
.string "train!$" .string "train!$"
Text_18991B:: @ 818991B OneIsland_KindleRoad_Text_TanyaDefeat:: @ 818991B
.string "I'm such a fool!$" .string "I'm such a fool!$"
Text_18992C:: @ 818992C OneIsland_KindleRoad_Text_TanyaPostBattle:: @ 818992C
.string "I'll train even harder from now on!$" .string "I'll train even harder from now on!$"
Text_189950:: @ 8189950 OneIsland_KindleRoad_Text_SheaIntro:: @ 8189950
.string "Every morning, before breakfast,\n" .string "Every morning, before breakfast,\n"
.string "I swim around this island.$" .string "I swim around this island.$"
Text_18998C:: @ 818998C OneIsland_KindleRoad_Text_SheaDefeat:: @ 818998C
.string "Gasp…\n" .string "Gasp…\n"
.string "Gasp…$" .string "Gasp…$"
Text_189998:: @ 8189998 OneIsland_KindleRoad_Text_SheaPostBattle:: @ 8189998
.string "I lost because I'm pooped from all\n" .string "I lost because I'm pooped from all\n"
.string "the running I did…$" .string "the running I did…$"
Text_1899CE:: @ 81899CE OneIsland_KindleRoad_Text_HughIntro:: @ 81899CE
.string "Dress appropriately for battle!\n" .string "Dress appropriately for battle!\n"
.string "Lose that frivolous outfit!$" .string "Lose that frivolous outfit!$"
Text_189A0A:: @ 8189A0A OneIsland_KindleRoad_Text_HughDefeat:: @ 8189A0A
.string "Why me?!$" .string "Why me?!$"
Text_189A13:: @ 8189A13 OneIsland_KindleRoad_Text_HughPostBattle:: @ 8189A13
.string "Even martial artists are becoming\n" .string "Even martial artists are becoming\n"
.string "fashion conscious these days…$" .string "fashion conscious these days…$"
Text_189A53:: @ 8189A53 OneIsland_KindleRoad_Text_BryceIntro:: @ 8189A53
.string "You know, everything tastes great\n" .string "You know, everything tastes great\n"
.string "when you're out in the wild.$" .string "when you're out in the wild.$"
Text_189A92:: @ 8189A92 OneIsland_KindleRoad_Text_BryceDefeat:: @ 8189A92
.string "Awww, blown!$" .string "Awww, blown!$"
Text_189A9F:: @ 8189A9F OneIsland_KindleRoad_Text_BrycePostBattle:: @ 8189A9F
.string "The water in volcanic regions is\n" .string "The water in volcanic regions is\n"
.string "delicious.$" .string "delicious.$"
Text_189ACB:: @ 8189ACB OneIsland_KindleRoad_Text_ClaireIntro:: @ 8189ACB
.string "My lunch filled us up, so will you\n" .string "My lunch filled us up, so will you\n"
.string "battle us for some exercise?$" .string "battle us for some exercise?$"
Text_189B0B:: @ 8189B0B OneIsland_KindleRoad_Text_ClaireDefeat:: @ 8189B0B
.string "That made me all sweaty.$" .string "That made me all sweaty.$"
Text_189B24:: @ 8189B24 OneIsland_KindleRoad_Text_ClairePostBattle:: @ 8189B24
.string "What should I do?\n" .string "What should I do?\n"
.string "I feel famished again.$" .string "I feel famished again.$"
Text_189B4D:: @ 8189B4D OneIsland_KindleRoad_Text_KiaIntro:: @ 8189B4D
.string "KIA: My big brother and I make\n" .string "KIA: My big brother and I make\n"
.string "an awesome combination!$" .string "an awesome combination!$"
Text_189B84:: @ 8189B84 OneIsland_KindleRoad_Text_KiaDefeat:: @ 8189B84
.string "KIA: Huh?!\n" .string "KIA: Huh?!\n"
.string "I can't believe it!$" .string "I can't believe it!$"
Text_189BA3:: @ 8189BA3 OneIsland_KindleRoad_Text_KiaPostBattle:: @ 8189BA3
.string "KIA: How could there be anyone\n" .string "KIA: How could there be anyone\n"
.string "better than my big brother?$" .string "better than my big brother?$"
Text_189BDE:: @ 8189BDE OneIsland_KindleRoad_Text_KiaNotEnoughMons:: @ 8189BDE
.string "KIA: If you want to battle with\n" .string "KIA: If you want to battle with\n"
.string "us, you have to bring at least two\l" .string "us, you have to bring at least two\l"
.string "POKéMON with you.$" .string "POKéMON with you.$"
Text_189C33:: @ 8189C33 OneIsland_KindleRoad_Text_MikIntro:: @ 8189C33
.string "MIK: Together with KIA, I'm afraid\n" .string "MIK: Together with KIA, I'm afraid\n"
.string "of nothing!$" .string "of nothing!$"
Text_189C62:: @ 8189C62 OneIsland_KindleRoad_Text_MikDefeat:: @ 8189C62
.string "MIK: Whoa!\n" .string "MIK: Whoa!\n"
.string "That's too much!$" .string "That's too much!$"
Text_189C7E:: @ 8189C7E OneIsland_KindleRoad_Text_MikPostBattle:: @ 8189C7E
.string "MIK: How could my combination\n" .string "MIK: How could my combination\n"
.string "with KIA fail?$" .string "with KIA fail?$"
Text_189CAB:: @ 8189CAB OneIsland_KindleRoad_Text_MikNotEnoughMons:: @ 8189CAB
.string "MIK: Hey, do you want to battle\n" .string "MIK: Hey, do you want to battle\n"
.string "with us two?\p" .string "with us two?\p"
.string "Bring two or more POKéMON with\n" .string "Bring two or more POKéMON with\n"
.string "you, then.$" .string "you, then.$"
gUnknown_8189D02:: @ 8189D02 OneIsland_KindleRoad_Text_RouteSign:: @ 8189D02
.string "This is KINDLE ROAD.\p" .string "This is KINDLE ROAD.\p"
.string "Go straight for MT. EMBER.$" .string "Go straight for MT. EMBER.$"
gUnknown_8189D32:: @ 8189D32 OneIsland_KindleRoad_Text_EmberSpaSign:: @ 8189D32
.string "Light the Fire in Your Heart!\n" .string "Light the Fire in Your Heart!\n"
.string "EMBER SPA$" .string "EMBER SPA$"
@@ -25,7 +25,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": 0, "trainer_type": 0,
"trainer_sight_or_berry_tree_id": 0, "trainer_sight_or_berry_tree_id": 0,
"script": "OneIsland_KindleRoad_EmberSpa_EventScript_16535C", "script": "OneIsland_KindleRoad_EmberSpa_EventScript_OldMan",
"flag": "0" "flag": "0"
}, },
{ {
@@ -38,7 +38,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": 0, "trainer_type": 0,
"trainer_sight_or_berry_tree_id": 0, "trainer_sight_or_berry_tree_id": 0,
"script": "OneIsland_KindleRoad_EmberSpa_EventScript_165365", "script": "OneIsland_KindleRoad_EmberSpa_EventScript_BaldingMan1",
"flag": "0" "flag": "0"
}, },
{ {
@@ -51,7 +51,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": 0, "trainer_type": 0,
"trainer_sight_or_berry_tree_id": 0, "trainer_sight_or_berry_tree_id": 0,
"script": "OneIsland_KindleRoad_EmberSpa_EventScript_165380", "script": "OneIsland_KindleRoad_EmberSpa_EventScript_BlackBelt",
"flag": "FLAG_HIDE_POSTGAME_GOSSIPERS" "flag": "FLAG_HIDE_POSTGAME_GOSSIPERS"
}, },
{ {
@@ -64,7 +64,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": 0, "trainer_type": 0,
"trainer_sight_or_berry_tree_id": 0, "trainer_sight_or_berry_tree_id": 0,
"script": "OneIsland_KindleRoad_EmberSpa_EventScript_165377", "script": "OneIsland_KindleRoad_EmberSpa_EventScript_OldWoman",
"flag": "0" "flag": "0"
}, },
{ {
@@ -77,7 +77,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": 0, "trainer_type": 0,
"trainer_sight_or_berry_tree_id": 0, "trainer_sight_or_berry_tree_id": 0,
"script": "OneIsland_KindleRoad_EmberSpa_EventScript_165399", "script": "OneIsland_KindleRoad_EmberSpa_EventScript_RockSmashMan",
"flag": "0" "flag": "0"
}, },
{ {
@@ -90,7 +90,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": 0, "trainer_type": 0,
"trainer_sight_or_berry_tree_id": 0, "trainer_sight_or_berry_tree_id": 0,
"script": "OneIsland_KindleRoad_EmberSpa_EventScript_16536E", "script": "OneIsland_KindleRoad_EmberSpa_EventScript_BaldingMan2",
"flag": "0" "flag": "0"
} }
], ],
@@ -111,7 +111,7 @@
"elevation": 3, "elevation": 3,
"var": "VAR_TEMP_1", "var": "VAR_TEMP_1",
"var_value": 0, "var_value": 0,
"script": "OneIsland_KindleRoad_EmberSpa_EventScript_1653CF" "script": "OneIsland_KindleRoad_EmberSpa_EventScript_SpaHeal"
} }
], ],
"bg_events": [] "bg_events": []
@@ -1,52 +1,52 @@
OneIsland_KindleRoad_EmberSpa_MapScripts:: @ 816535B OneIsland_KindleRoad_EmberSpa_MapScripts:: @ 816535B
.byte 0 .byte 0
OneIsland_KindleRoad_EmberSpa_EventScript_16535C:: @ 816535C OneIsland_KindleRoad_EmberSpa_EventScript_OldMan:: @ 816535C
msgbox gUnknown_817D34A, MSGBOX_NPC msgbox OneIsland_KindleRoad_EmberSpa_Text_WaterWarmsMeToCore, MSGBOX_NPC
end end
OneIsland_KindleRoad_EmberSpa_EventScript_165365:: @ 8165365 OneIsland_KindleRoad_EmberSpa_EventScript_BaldingMan1:: @ 8165365
msgbox gUnknown_817D3DE, MSGBOX_NPC msgbox OneIsland_KindleRoad_EmberSpa_Text_EnjoyBowlOfChowder, MSGBOX_NPC
end end
OneIsland_KindleRoad_EmberSpa_EventScript_16536E:: @ 816536E OneIsland_KindleRoad_EmberSpa_EventScript_BaldingMan2:: @ 816536E
msgbox gUnknown_817D4AA, MSGBOX_NPC msgbox OneIsland_KindleRoad_EmberSpa_Text_HotSpringIsTherapeutic, MSGBOX_NPC
end end
OneIsland_KindleRoad_EmberSpa_EventScript_165377:: @ 8165377 OneIsland_KindleRoad_EmberSpa_EventScript_OldWoman:: @ 8165377
msgbox gUnknown_817D4E3, MSGBOX_NPC msgbox OneIsland_KindleRoad_EmberSpa_Text_SeeHowSmoothMySkinIs, MSGBOX_NPC
end end
OneIsland_KindleRoad_EmberSpa_EventScript_165380:: @ 8165380 OneIsland_KindleRoad_EmberSpa_EventScript_BlackBelt:: @ 8165380
lock lock
faceplayer faceplayer
famechecker FAMECHECKER_BRUNO, 3 famechecker FAMECHECKER_BRUNO, 3
msgbox gUnknown_817D550 msgbox OneIsland_KindleRoad_EmberSpa_Text_BrunoVisitsSpaOnOccasion
release release
end end
OneIsland_KindleRoad_EmberSpa_EventScript_165399:: @ 8165399 OneIsland_KindleRoad_EmberSpa_EventScript_RockSmashMan:: @ 8165399
lock lock
faceplayer faceplayer
goto_if_set FLAG_GOT_HM06, EventScript_1653C5 goto_if_set FLAG_GOT_HM06, OneIsland_KindleRoad_EmberSpa_EventScript_AlreadyGotHM06
msgbox gUnknown_817D622 msgbox OneIsland_KindleRoad_EmberSpa_Text_UsedThisToMakeEmberSpa
giveitem ITEM_HM06 giveitem ITEM_HM06
setflag FLAG_GOT_HM06 setflag FLAG_GOT_HM06
msgbox gUnknown_817D6F3 msgbox OneIsland_KindleRoad_EmberSpa_Text_ExplainHM06
release release
end end
EventScript_1653C5:: @ 81653C5 OneIsland_KindleRoad_EmberSpa_EventScript_AlreadyGotHM06:: @ 81653C5
msgbox gUnknown_817D6F3 msgbox OneIsland_KindleRoad_EmberSpa_Text_ExplainHM06
release release
end end
OneIsland_KindleRoad_EmberSpa_EventScript_1653CF:: @ 81653CF OneIsland_KindleRoad_EmberSpa_EventScript_SpaHeal:: @ 81653CF
lockall lockall
fadescreen FADE_TO_WHITE fadescreen FADE_TO_WHITE
special HealPlayerParty special HealPlayerParty
fadescreen FADE_FROM_WHITE fadescreen FADE_FROM_WHITE
msgbox gUnknown_817D450 msgbox OneIsland_KindleRoad_EmberSpa_Text_WaterExquisiteFullyRefreshed
setvar VAR_TEMP_1, 1 setvar VAR_TEMP_1, 1
releaseall releaseall
end end
@@ -1,4 +1,4 @@
gUnknown_817D34A:: @ 817D34A OneIsland_KindleRoad_EmberSpa_Text_WaterWarmsMeToCore:: @ 817D34A
.string "Hm!\n" .string "Hm!\n"
.string "Haaaaaaaaaaah!\p" .string "Haaaaaaaaaaah!\p"
.string "Aaaah! This is heavenly!\n" .string "Aaaah! This is heavenly!\n"
@@ -7,29 +7,29 @@ gUnknown_817D34A:: @ 817D34A
.string "Go to the middle, relax, and get\n" .string "Go to the middle, relax, and get\n"
.string "good and warm!$" .string "good and warm!$"
gUnknown_817D3DE:: @ 817D3DE OneIsland_KindleRoad_EmberSpa_Text_EnjoyBowlOfChowder:: @ 817D3DE
.string "My favorite part of bathing comes\n" .string "My favorite part of bathing comes\n"
.string "up right after this.\p" .string "up right after this.\p"
.string "I enjoy a bowl of chowder to\n" .string "I enjoy a bowl of chowder to\n"
.string "warm me from the inside, too!$" .string "warm me from the inside, too!$"
gUnknown_817D450:: @ 817D450 OneIsland_KindleRoad_EmberSpa_Text_WaterExquisiteFullyRefreshed:: @ 817D450
.string "The water is perfectly warm.\n" .string "The water is perfectly warm.\n"
.string "It feels exquisite…\p" .string "It feels exquisite…\p"
.string "{PLAYER} and the POKéMON were\n" .string "{PLAYER} and the POKéMON were\n"
.string "fully refreshed!$" .string "fully refreshed!$"
gUnknown_817D4AA:: @ 817D4AA OneIsland_KindleRoad_EmberSpa_Text_HotSpringIsTherapeutic:: @ 817D4AA
.string "Soaking in a hot spring pool is\n" .string "Soaking in a hot spring pool is\n"
.string "therapeutic, people say.$" .string "therapeutic, people say.$"
gUnknown_817D4E3:: @ 817D4E3 OneIsland_KindleRoad_EmberSpa_Text_SeeHowSmoothMySkinIs:: @ 817D4E3
.string "Have a look at my face.\n" .string "Have a look at my face.\n"
.string "See how smooth my skin is?\p" .string "See how smooth my skin is?\p"
.string "The hot spring's water keeps my\n" .string "The hot spring's water keeps my\n"
.string "skin younger than my age.$" .string "skin younger than my age.$"
gUnknown_817D550:: @ 817D550 OneIsland_KindleRoad_EmberSpa_Text_BrunoVisitsSpaOnOccasion:: @ 817D550
.string "After an honest day of training,\n" .string "After an honest day of training,\n"
.string "nothing beats a relaxing soak in\l" .string "nothing beats a relaxing soak in\l"
.string "the hot spring pool.\p" .string "the hot spring pool.\p"
@@ -38,7 +38,7 @@ gUnknown_817D550:: @ 817D550
.string "He comes to rehab injuries, both\n" .string "He comes to rehab injuries, both\n"
.string "his own and his POKéMON's.$" .string "his own and his POKéMON's.$"
gUnknown_817D622:: @ 817D622 OneIsland_KindleRoad_EmberSpa_Text_UsedThisToMakeEmberSpa:: @ 817D622
.string "Hot springs go hand-in-hand with\n" .string "Hot springs go hand-in-hand with\n"
.string "volcanoes.\p" .string "volcanoes.\p"
.string "The EMBER SPA here, well,\n" .string "The EMBER SPA here, well,\n"
@@ -48,7 +48,7 @@ gUnknown_817D622:: @ 817D622
.string "I was using this at the time.\n" .string "I was using this at the time.\n"
.string "I suppose I can part with it.$" .string "I suppose I can part with it.$"
gUnknown_817D6F3:: @ 817D6F3 OneIsland_KindleRoad_EmberSpa_Text_ExplainHM06:: @ 817D6F3
.string "That shatters boulders as if they\n" .string "That shatters boulders as if they\n"
.string "were made of crackers.$" .string "were made of crackers.$"
+19 -19
View File
@@ -25,7 +25,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": 0, "trainer_type": 0,
"trainer_sight_or_berry_tree_id": 0, "trainer_sight_or_berry_tree_id": 0,
"script": "OneIsland_PokemonCenter_1F_EventScript_170E94", "script": "OneIsland_PokemonCenter_1F_EventScript_Nurse",
"flag": "0" "flag": "0"
}, },
{ {
@@ -38,7 +38,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": 0, "trainer_type": 0,
"trainer_sight_or_berry_tree_id": 0, "trainer_sight_or_berry_tree_id": 0,
"script": "OneIsland_PokemonCenter_1F_EventScript_170E9D", "script": "OneIsland_PokemonCenter_1F_EventScript_Bill",
"flag": "FLAG_HIDE_ONE_ISLAND_POKECENTER_BILL" "flag": "FLAG_HIDE_ONE_ISLAND_POKECENTER_BILL"
}, },
{ {
@@ -51,7 +51,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": 0, "trainer_type": 0,
"trainer_sight_or_berry_tree_id": 0, "trainer_sight_or_berry_tree_id": 0,
"script": "OneIsland_PokemonCenter_1F_EventScript_170EC5", "script": "OneIsland_PokemonCenter_1F_EventScript_Celio",
"flag": "FLAG_HIDE_ONE_ISLAND_POKECENTER_CELIO" "flag": "FLAG_HIDE_ONE_ISLAND_POKECENTER_CELIO"
}, },
{ {
@@ -64,7 +64,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": 0, "trainer_type": 0,
"trainer_sight_or_berry_tree_id": 0, "trainer_sight_or_berry_tree_id": 0,
"script": "OneIsland_PokemonCenter_1F_EventScript_171148", "script": "OneIsland_PokemonCenter_1F_EventScript_LittleBoy",
"flag": "0" "flag": "0"
}, },
{ {
@@ -77,7 +77,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": 0, "trainer_type": 0,
"trainer_sight_or_berry_tree_id": 0, "trainer_sight_or_berry_tree_id": 0,
"script": "OneIsland_PokemonCenter_1F_EventScript_171151", "script": "OneIsland_PokemonCenter_1F_EventScript_Hiker",
"flag": "0" "flag": "0"
}, },
{ {
@@ -90,7 +90,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": 0, "trainer_type": 0,
"trainer_sight_or_berry_tree_id": 0, "trainer_sight_or_berry_tree_id": 0,
"script": "OneIsland_PokemonCenter_1F_EventScript_17115A", "script": "OneIsland_PokemonCenter_1F_EventScript_BattleGirl",
"flag": "0" "flag": "0"
} }
], ],
@@ -118,7 +118,7 @@
"elevation": 3, "elevation": 3,
"var": "VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F", "var": "VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F",
"var_value": 2, "var_value": 2,
"script": "OneIsland_PokemonCenter_1F_EventScript_1711AA" "script": "OneIsland_PokemonCenter_1F_EventScript_LeaveOneIslandTriggerTop"
}, },
{ {
"type": "trigger", "type": "trigger",
@@ -127,7 +127,7 @@
"elevation": 3, "elevation": 3,
"var": "VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F", "var": "VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F",
"var_value": 2, "var_value": 2,
"script": "OneIsland_PokemonCenter_1F_EventScript_1711B6" "script": "OneIsland_PokemonCenter_1F_EventScript_LeaveOneIslandTriggerMidTop"
}, },
{ {
"type": "trigger", "type": "trigger",
@@ -136,7 +136,7 @@
"elevation": 3, "elevation": 3,
"var": "VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F", "var": "VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F",
"var_value": 2, "var_value": 2,
"script": "OneIsland_PokemonCenter_1F_EventScript_1711C2" "script": "OneIsland_PokemonCenter_1F_EventScript_LeaveOneIslandTriggerMidBottom"
}, },
{ {
"type": "trigger", "type": "trigger",
@@ -145,7 +145,7 @@
"elevation": 3, "elevation": 3,
"var": "VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F", "var": "VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F",
"var_value": 2, "var_value": 2,
"script": "OneIsland_PokemonCenter_1F_EventScript_1711CE" "script": "OneIsland_PokemonCenter_1F_EventScript_LeaveOneIslandTriggerBottom"
} }
], ],
"bg_events": [ "bg_events": [
@@ -154,63 +154,63 @@
"x": 12, "x": 12,
"y": 2, "y": 2,
"elevation": 0, "elevation": 0,
"script": "OneIsland_PokemonCenter_1F_EventScript_171179" "script": "OneIsland_PokemonCenter_1F_EventScript_NetworkMachine"
}, },
{ {
"type": "bg_event_type_0", "type": "bg_event_type_0",
"x": 12, "x": 12,
"y": 3, "y": 3,
"elevation": 0, "elevation": 0,
"script": "OneIsland_PokemonCenter_1F_EventScript_171179" "script": "OneIsland_PokemonCenter_1F_EventScript_NetworkMachine"
}, },
{ {
"type": "bg_event_type_0", "type": "bg_event_type_0",
"x": 12, "x": 12,
"y": 4, "y": 4,
"elevation": 0, "elevation": 0,
"script": "OneIsland_PokemonCenter_1F_EventScript_171179" "script": "OneIsland_PokemonCenter_1F_EventScript_NetworkMachine"
}, },
{ {
"type": "bg_event_type_0", "type": "bg_event_type_0",
"x": 12, "x": 12,
"y": 5, "y": 5,
"elevation": 0, "elevation": 0,
"script": "OneIsland_PokemonCenter_1F_EventScript_171179" "script": "OneIsland_PokemonCenter_1F_EventScript_NetworkMachine"
}, },
{ {
"type": "bg_event_type_0", "type": "bg_event_type_0",
"x": 13, "x": 13,
"y": 5, "y": 5,
"elevation": 0, "elevation": 0,
"script": "OneIsland_PokemonCenter_1F_EventScript_171179" "script": "OneIsland_PokemonCenter_1F_EventScript_NetworkMachine"
}, },
{ {
"type": "bg_event_type_0", "type": "bg_event_type_0",
"x": 15, "x": 15,
"y": 5, "y": 5,
"elevation": 0, "elevation": 0,
"script": "OneIsland_PokemonCenter_1F_EventScript_171179" "script": "OneIsland_PokemonCenter_1F_EventScript_NetworkMachine"
}, },
{ {
"type": "bg_event_type_0", "type": "bg_event_type_0",
"x": 14, "x": 14,
"y": 5, "y": 5,
"elevation": 0, "elevation": 0,
"script": "OneIsland_PokemonCenter_1F_EventScript_171179" "script": "OneIsland_PokemonCenter_1F_EventScript_NetworkMachine"
}, },
{ {
"type": "bg_event_type_0", "type": "bg_event_type_0",
"x": 16, "x": 16,
"y": 5, "y": 5,
"elevation": 0, "elevation": 0,
"script": "OneIsland_PokemonCenter_1F_EventScript_171179" "script": "OneIsland_PokemonCenter_1F_EventScript_NetworkMachine"
}, },
{ {
"type": "bg_event_type_0", "type": "bg_event_type_0",
"x": 17, "x": 17,
"y": 5, "y": 5,
"elevation": 0, "elevation": 0,
"script": "OneIsland_PokemonCenter_1F_EventScript_171179" "script": "OneIsland_PokemonCenter_1F_EventScript_NetworkMachine"
} }
] ]
} }
+207 -200
View File
@@ -1,3 +1,6 @@
.equ LOCALID_BILL, 2
.equ LOCALID_CELIO, 3
OneIsland_PokemonCenter_1F_MapScripts:: @ 8170BF8 OneIsland_PokemonCenter_1F_MapScripts:: @ 8170BF8
map_script MAP_SCRIPT_ON_TRANSITION, OneIsland_PokemonCenter_1F_OnTransition map_script MAP_SCRIPT_ON_TRANSITION, OneIsland_PokemonCenter_1F_OnTransition
map_script MAP_SCRIPT_ON_RESUME, CableClub_OnResume map_script MAP_SCRIPT_ON_RESUME, CableClub_OnResume
@@ -7,147 +10,147 @@ OneIsland_PokemonCenter_1F_MapScripts:: @ 8170BF8
OneIsland_PokemonCenter_1F_OnLoad:: @ 8170C0D OneIsland_PokemonCenter_1F_OnLoad:: @ 8170C0D
compare VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 5 compare VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 5
call_if_ge EventScript_170C22 call_if_ge OneIsland_PokemonCenter_1F_EventScript_SetRubyMetatile
call_if_set FLAG_SYS_CAN_LINK_WITH_RS, EventScript_170C36 call_if_set FLAG_SYS_CAN_LINK_WITH_RS, OneIsland_PokemonCenter_1F_EventScript_SetNetworkMachineOn
end end
EventScript_170C22:: @ 8170C22 OneIsland_PokemonCenter_1F_EventScript_SetRubyMetatile:: @ 8170C22
setmetatile 13, 4, 861, 1 setmetatile 13, 4, METATILE_PokemonCenter_NetworkMachine_Ruby, 1
return return
EventScript_170C2C:: @ 8170C2C OneIsland_PokemonCenter_1F_EventScript_SetSapphireMetatile:: @ 8170C2C
setmetatile 16, 4, 863, 1 setmetatile 16, 4, METATILE_PokemonCenter_NetworkMachine_Sapphire, 1
return return
EventScript_170C36:: @ 8170C36 OneIsland_PokemonCenter_1F_EventScript_SetNetworkMachineOn:: @ 8170C36
call EventScript_170C2C call OneIsland_PokemonCenter_1F_EventScript_SetSapphireMetatile
setmetatile 14, 4, 858, 1 setmetatile 14, 4, METATILE_PokemonCenter_NetworkMachine_ScreenLeft_On, 1
setmetatile 15, 4, 859, 1 setmetatile 15, 4, METATILE_PokemonCenter_NetworkMachine_ScreenRight_On, 1
return return
OneIsland_PokemonCenter_1F_OnTransition:: @ 8170C4E OneIsland_PokemonCenter_1F_OnTransition:: @ 8170C4E
setrespawn SPAWN_ONE_ISLAND setrespawn SPAWN_ONE_ISLAND
compare VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 6 compare VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 6
call_if_eq EventScript_170C73 call_if_eq OneIsland_PokemonCenter_1F_EventScript_SetCelioQuestDone
compare VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 0 compare VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 0
call_if_eq EventScript_170C79 call_if_eq OneIsland_PokemonCenter_1F_EventScript_SetBillCelioFirstMeetingPos
compare VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 2 compare VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 2
call_if_eq EventScript_170C90 call_if_eq OneIsland_PokemonCenter_1F_EventScript_SetBillCelioReadyToLeavePos
end end
EventScript_170C73:: @ 8170C73 OneIsland_PokemonCenter_1F_EventScript_SetCelioQuestDone:: @ 8170C73
setvar VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 7 setvar VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 7
return return
EventScript_170C79:: @ 8170C79 OneIsland_PokemonCenter_1F_EventScript_SetBillCelioFirstMeetingPos:: @ 8170C79
setobjectxyperm 2, 9, 8 setobjectxyperm LOCALID_BILL, 9, 8
setobjectmovementtype 2, 7 setobjectmovementtype LOCALID_BILL, MOVEMENT_TYPE_FACE_UP
setobjectxyperm 3, 15, 6 setobjectxyperm LOCALID_CELIO, 15, 6
setobjectmovementtype 3, 7 setobjectmovementtype LOCALID_CELIO, MOVEMENT_TYPE_FACE_UP
return return
EventScript_170C90:: @ 8170C90 OneIsland_PokemonCenter_1F_EventScript_SetBillCelioReadyToLeavePos:: @ 8170C90
setobjectxyperm 2, 14, 7 setobjectxyperm LOCALID_BILL, 14, 7
setobjectmovementtype 2, 9 setobjectmovementtype LOCALID_BILL, MOVEMENT_TYPE_FACE_LEFT
setobjectxyperm 3, 14, 8 setobjectxyperm LOCALID_CELIO, 14, 8
setobjectmovementtype 3, 9 setobjectmovementtype LOCALID_CELIO, MOVEMENT_TYPE_FACE_LEFT
return return
OneIsland_PokemonCenter_1F_OnFrame:: @ 8170CA7 OneIsland_PokemonCenter_1F_OnFrame:: @ 8170CA7
map_script_2 VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 0, EventScript_170CB1 map_script_2 VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 0, OneIsland_PokemonCenter_1F_EventScript_MeetCelioScene
.2byte 0 .2byte 0
EventScript_170CB1:: @ 8170CB1 OneIsland_PokemonCenter_1F_EventScript_MeetCelioScene:: @ 8170CB1
lockall lockall
textcolor 0 textcolor 0
applymovement OBJ_EVENT_ID_PLAYER, Movement_170E7D applymovement OBJ_EVENT_ID_PLAYER, OneIsland_PokemonCenter_1F_Movement_PlayerWalkToCelio
applymovement 2, Movement_170E86 applymovement LOCALID_BILL, OneIsland_PokemonCenter_1F_Movement_BillWalkToCelio
waitmovement 0 waitmovement 0
msgbox gUnknown_81A0CDE msgbox OneIsland_PokemonCenter_1F_Text_BillHeyThereCelio
applymovement OBJ_EVENT_ID_PLAYER, Movement_WalkInPlaceFastestRight applymovement OBJ_EVENT_ID_PLAYER, Movement_WalkInPlaceFastestRight
waitmovement 0 waitmovement 0
playse SE_PIN playse SE_PIN
applymovement 3, Movement_ExclamationMark applymovement LOCALID_CELIO, Movement_ExclamationMark
waitmovement 0 waitmovement 0
applymovement 3, Movement_WalkInPlaceFastestLeft applymovement LOCALID_CELIO, Movement_WalkInPlaceFastestLeft
waitmovement 0 waitmovement 0
applymovement 3, Movement_Delay48 applymovement LOCALID_CELIO, Movement_Delay48
waitmovement 0 waitmovement 0
msgbox gUnknown_81A0CF7 msgbox OneIsland_PokemonCenter_1F_Text_CelioCantBelieveYouCameOut
msgbox gUnknown_81A0D27 msgbox OneIsland_PokemonCenter_1F_Text_BillHowsYourResearchComing
applymovement 2, Movement_WalkInPlaceFastestDown applymovement LOCALID_BILL, Movement_WalkInPlaceFastestDown
applymovement OBJ_EVENT_ID_PLAYER, Movement_WalkInPlaceFastestUp applymovement OBJ_EVENT_ID_PLAYER, Movement_WalkInPlaceFastestUp
waitmovement 0 waitmovement 0
msgbox gUnknown_81A0D72 msgbox OneIsland_PokemonCenter_1F_Text_ThisIsMyBuddyCelio
applymovement 2, Movement_WalkInPlaceFastestRight applymovement LOCALID_BILL, Movement_WalkInPlaceFastestRight
waitmovement 0 waitmovement 0
applymovement OBJ_EVENT_ID_PLAYER, Movement_WalkInPlaceFastestRight applymovement OBJ_EVENT_ID_PLAYER, Movement_WalkInPlaceFastestRight
waitmovement 0 waitmovement 0
call_if_set FLAG_SYS_GAME_CLEAR, EventScript_170E34 call_if_set FLAG_SYS_GAME_CLEAR, OneIsland_PokemonCenter_1F_EventScript_IntroducePlayerChamp
call_if_unset FLAG_SYS_GAME_CLEAR, EventScript_170E3D call_if_unset FLAG_SYS_GAME_CLEAR, OneIsland_PokemonCenter_1F_EventScript_IntroducePlayerNotChamp
applymovement 3, Movement_WalkInPlaceFastestDown applymovement LOCALID_CELIO, Movement_WalkInPlaceFastestDown
waitmovement 0 waitmovement 0
msgbox gUnknown_81A0E17 msgbox OneIsland_PokemonCenter_1F_Text_CelioThatsReallyImpressive
msgbox gUnknown_81A0E90 msgbox OneIsland_PokemonCenter_1F_Text_BillBringMeUpToSpeed
applymovement 3, Movement_WalkInPlaceFastestLeft applymovement LOCALID_CELIO, Movement_WalkInPlaceFastestLeft
waitmovement 0 waitmovement 0
msgbox gUnknown_81A0ECC msgbox OneIsland_PokemonCenter_1F_Text_CelioPCsCantLinkWithYours
closemessage closemessage
applymovement 2, Movement_WalkInPlaceFastestUp applymovement LOCALID_BILL, Movement_WalkInPlaceFastestUp
waitmovement 0 waitmovement 0
msgbox gUnknown_81A0F40 msgbox OneIsland_PokemonCenter_1F_Text_BillLetMeHelpYou
applymovement 2, Movement_WalkInPlaceFastestDown applymovement LOCALID_BILL, Movement_WalkInPlaceFastestDown
waitmovement 0 waitmovement 0
applymovement OBJ_EVENT_ID_PLAYER, Movement_WalkInPlaceFastestUp applymovement OBJ_EVENT_ID_PLAYER, Movement_WalkInPlaceFastestUp
waitmovement 0 waitmovement 0
msgbox gUnknown_81A0FB1 msgbox OneIsland_PokemonCenter_1F_Text_CanYouDeliverThisMeteoritePlayer
msgreceiveditem gUnknown_81A10EE, ITEM_METEORITE, 1, MUS_FAN5 msgreceiveditem OneIsland_PokemonCenter_1F_Text_AcceptedMeteoriteFromBill, ITEM_METEORITE, 1, MUS_FAN5
additem ITEM_METEORITE additem ITEM_METEORITE
applymovement 3, Movement_WalkInPlaceFastestDown applymovement LOCALID_CELIO, Movement_WalkInPlaceFastestDown
waitmovement 0 waitmovement 0
msgbox gUnknown_81A1113 msgbox OneIsland_PokemonCenter_1F_Text_CelioPleaseTakeThis
giveitem_msg gUnknown_81A231B, ITEM_TRI_PASS, 1, MUS_FAN5 giveitem_msg OneIsland_PokemonCenter_1F_Text_ObtainedTriPass, ITEM_TRI_PASS, 1, MUS_FAN5
msgbox gUnknown_81A1150 msgbox OneIsland_PokemonCenter_1F_Text_PassLetsYouTravelBetweenIslands
compare VAR_MAP_SCENE_PALLET_TOWN_GARYS_HOUSE, 2 compare VAR_MAP_SCENE_PALLET_TOWN_GARYS_HOUSE, 2
call_if_ge EventScript_170E46 call_if_ge OneIsland_PokemonCenter_1F_EventScript_ReceiveTownMapPage
compare VAR_MAP_SCENE_PALLET_TOWN_GARYS_HOUSE, 2 compare VAR_MAP_SCENE_PALLET_TOWN_GARYS_HOUSE, 2
call_if_lt EventScript_170E58 call_if_lt OneIsland_PokemonCenter_1F_EventScript_ReceiveTownMap
setflag FLAG_SYS_SEVII_MAP_123 setflag FLAG_SYS_SEVII_MAP_123
msgbox gUnknown_81A1230 msgbox OneIsland_PokemonCenter_1F_Text_BillCatchYouLater
closemessage closemessage
applymovement 2, Movement_WalkInPlaceFastestUp applymovement LOCALID_BILL, Movement_WalkInPlaceFastestUp
waitmovement 0 waitmovement 0
applymovement 3, Movement_WalkInPlaceFastestUp applymovement LOCALID_CELIO, Movement_WalkInPlaceFastestUp
waitmovement 0 waitmovement 0
setflag FLAG_SYS_PC_STORAGE_DISABLED setflag FLAG_SYS_PC_STORAGE_DISABLED
setvar VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 1 setvar VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 1
releaseall releaseall
end end
EventScript_170E34:: @ 8170E34 OneIsland_PokemonCenter_1F_EventScript_IntroducePlayerChamp:: @ 8170E34
msgbox gUnknown_81A0DE8 msgbox OneIsland_PokemonCenter_1F_Text_PlayerIsReigningPokemonChamp
return return
EventScript_170E3D:: @ 8170E3D OneIsland_PokemonCenter_1F_EventScript_IntroducePlayerNotChamp:: @ 8170E3D
msgbox gUnknown_81A0DAC msgbox OneIsland_PokemonCenter_1F_Text_PlayerIsRisingPokemonChamp
return return
EventScript_170E46:: @ 8170E46 OneIsland_PokemonCenter_1F_EventScript_ReceiveTownMapPage:: @ 8170E46
textcolor 3 textcolor 3
playfanfare MUS_FAN5 playfanfare MUS_FAN5
message Text_1A11EC message OneIsland_PokemonCenter_1F_Text_ReceivedExtraPageForTownMap
waitmessage waitmessage
waitfanfare waitfanfare
call EventScript_1A6675 call EventScript_1A6675
return return
EventScript_170E58:: @ 8170E58 OneIsland_PokemonCenter_1F_EventScript_ReceiveTownMap:: @ 8170E58
setflag FLAG_HIDE_TOWN_MAP setflag FLAG_HIDE_TOWN_MAP
setvar VAR_MAP_SCENE_PALLET_TOWN_GARYS_HOUSE, 2 setvar VAR_MAP_SCENE_PALLET_TOWN_GARYS_HOUSE, 2
giveitem_msg gUnknown_81A1218, ITEM_TOWN_MAP, 1, MUS_FAN5 giveitem_msg OneIsland_PokemonCenter_1F_Text_ReceivedTownMap, ITEM_TOWN_MAP, 1, MUS_FAN5
return return
Movement_170E7D:: @ 8170E7D OneIsland_PokemonCenter_1F_Movement_PlayerWalkToCelio:: @ 8170E7D
walk_up walk_up
walk_up walk_up
walk_right walk_right
@@ -158,7 +161,7 @@ Movement_170E7D:: @ 8170E7D
walk_in_place_fastest_up walk_in_place_fastest_up
step_end step_end
Movement_170E86:: @ 8170E86 OneIsland_PokemonCenter_1F_Movement_BillWalkToCelio:: @ 8170E86
walk_up walk_up
walk_right walk_right
walk_right walk_right
@@ -169,121 +172,123 @@ Movement_170E86:: @ 8170E86
walk_in_place_fastest_right walk_in_place_fastest_right
step_end step_end
@ Unused
Movement_170E8F:: @ 8170E8F Movement_170E8F:: @ 8170E8F
walk_up walk_up
step_end step_end
@ Unused
Movement_170E91:: @ 8170E91 Movement_170E91:: @ 8170E91
walk_left walk_left
walk_in_place_fastest_right walk_in_place_fastest_right
step_end step_end
OneIsland_PokemonCenter_1F_EventScript_170E94:: @ 8170E94 OneIsland_PokemonCenter_1F_EventScript_Nurse:: @ 8170E94
lock lock
faceplayer faceplayer
call EventScript_PkmnCenterNurse call EventScript_PkmnCenterNurse
release release
end end
OneIsland_PokemonCenter_1F_EventScript_170E9D:: @ 8170E9D OneIsland_PokemonCenter_1F_EventScript_Bill:: @ 8170E9D
lock lock
goto_if_set FLAG_SEVII_DETOUR_FINISHED, EventScript_170EB1 goto_if_set FLAG_SEVII_DETOUR_FINISHED, OneIsland_PokemonCenter_1F_EventScript_BillGoTakeStroll
msgbox gUnknown_81A1266 msgbox OneIsland_PokemonCenter_1F_Text_HmmHowAboutLikeThis
release release
end end
EventScript_170EB1:: @ 8170EB1 OneIsland_PokemonCenter_1F_EventScript_BillGoTakeStroll:: @ 8170EB1
applymovement 2, Movement_FacePlayer applymovement LOCALID_BILL, Movement_FacePlayer
waitmovement 0 waitmovement 0
msgbox gUnknown_81A128C msgbox OneIsland_PokemonCenter_1F_Text_GotPCWorkingStrollAWhileMore
release release
end end
OneIsland_PokemonCenter_1F_EventScript_170EC5:: @ 8170EC5 OneIsland_PokemonCenter_1F_EventScript_Celio:: @ 8170EC5
lock lock
faceplayer faceplayer
compare VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 7 compare VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 7
goto_if_eq EventScript_170F35 goto_if_eq OneIsland_PokemonCenter_1F_EventScript_CelioGiveBillFact
compare VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 6 compare VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 6
goto_if_eq EventScript_170F9B goto_if_eq OneIsland_PokemonCenter_1F_EventScript_CelioJustGivenSapphire
goto_if_set FLAG_RECOVERED_SAPPHIRE, EventScript_170FA5 goto_if_set FLAG_RECOVERED_SAPPHIRE, OneIsland_PokemonCenter_1F_EventScript_GiveCelioSapphire
compare VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 5 compare VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 5
goto_if_eq EventScript_17103A goto_if_eq OneIsland_PokemonCenter_1F_EventScript_ExplainRainbowPass
goto_if_set FLAG_GOT_RUBY, EventScript_171044 goto_if_set FLAG_GOT_RUBY, OneIsland_PokemonCenter_1F_EventScript_GiveCelioRuby
compare VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 4 compare VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 4
goto_if_eq EventScript_1710F2 goto_if_eq OneIsland_PokemonCenter_1F_EventScript_CelioWaitingForRuby
specialvar VAR_RESULT, IsNationalPokedexEnabled specialvar VAR_RESULT, IsNationalPokedexEnabled
compare VAR_RESULT, TRUE compare VAR_RESULT, TRUE
goto_if_eq EventScript_1710FC goto_if_eq OneIsland_PokemonCenter_1F_EventScript_CelioRequestRuby
compare VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 3 compare VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 3
goto_if_eq EventScript_171134 goto_if_eq OneIsland_PokemonCenter_1F_EventScript_CelioPlayerMissingNationalDex
msgbox gUnknown_81A1321 msgbox OneIsland_PokemonCenter_1F_Text_SorryForBeingPoorHost
closemessage closemessage
applymovement 3, Movement_FaceOriginalDirection applymovement LOCALID_CELIO, Movement_FaceOriginalDirection
waitmovement 0 waitmovement 0
release release
end end
EventScript_170F35:: @ 8170F35 OneIsland_PokemonCenter_1F_EventScript_CelioGiveBillFact:: @ 8170F35
msgbox gUnknown_81A1EBD msgbox OneIsland_PokemonCenter_1F_Text_CelioHearingRumorsAboutYou
random 3 random 3
compare VAR_RESULT, 0 compare VAR_RESULT, 0
goto_if_eq EventScript_170F6D goto_if_eq OneIsland_PokemonCenter_1F_EventScript_BillFact1
compare VAR_RESULT, 1 compare VAR_RESULT, 1
goto_if_eq EventScript_170F84 goto_if_eq OneIsland_PokemonCenter_1F_EventScript_BillFact2
famechecker FAMECHECKER_BILL, 5 famechecker FAMECHECKER_BILL, 5
msgbox gUnknown_81A2076 msgbox OneIsland_PokemonCenter_1F_Text_BillCantStomachMilk
release release
end end
EventScript_170F6D:: @ 8170F6D OneIsland_PokemonCenter_1F_EventScript_BillFact1:: @ 8170F6D
famechecker FAMECHECKER_BILL, 3 famechecker FAMECHECKER_BILL, 3
msgbox gUnknown_81A1EF3 msgbox OneIsland_PokemonCenter_1F_Text_BillsFirstMonWasAbra
release release
end end
EventScript_170F84:: @ 8170F84 OneIsland_PokemonCenter_1F_EventScript_BillFact2:: @ 8170F84
famechecker FAMECHECKER_BILL, 4 famechecker FAMECHECKER_BILL, 4
msgbox gUnknown_81A1F7C msgbox OneIsland_PokemonCenter_1F_Text_BillsHometownInGoldenrod
release release
end end
EventScript_170F9B:: @ 8170F9B OneIsland_PokemonCenter_1F_EventScript_CelioJustGivenSapphire:: @ 8170F9B
msgbox gUnknown_81A1E39 msgbox OneIsland_PokemonCenter_1F_Text_WishYouBestOfLuck
release release
end end
EventScript_170FA5:: @ 8170FA5 OneIsland_PokemonCenter_1F_EventScript_GiveCelioSapphire:: @ 8170FA5
textcolor 3 textcolor 3
playfanfare MUS_ME_WAZA playfanfare MUS_ME_WAZA
message Text_1A1C2D message OneIsland_PokemonCenter_1F_Text_HandedSapphireToCelio
waitmessage waitmessage
waitfanfare waitfanfare
call EventScript_1A6675 call EventScript_1A6675
removeitem ITEM_SAPPHIRE, 1 removeitem ITEM_SAPPHIRE, 1
msgbox gUnknown_81A1C4E msgbox OneIsland_PokemonCenter_1F_Text_ThankYouGiveMeTime
closemessage closemessage
applymovement 3, Movement_171142 applymovement LOCALID_CELIO, OneIsland_PokemonCenter_1F_Movement_CelioPutGemInMachine
waitmovement 0 waitmovement 0
playse SE_TK_KASYA playse SE_TK_KASYA
call EventScript_170C2C call OneIsland_PokemonCenter_1F_EventScript_SetSapphireMetatile
special DrawWholeMapView special DrawWholeMapView
msgbox gUnknown_81A1D45 msgbox OneIsland_PokemonCenter_1F_Text_OkayThisIsGood
closemessage closemessage
delay 60 delay 60
applymovement 3, Movement_17113E applymovement LOCALID_CELIO, OneIsland_PokemonCenter_1F_Movement_CelioCheckMachine
waitmovement 0 waitmovement 0
delay 30 delay 30
applymovement 3, Movement_17113E applymovement LOCALID_CELIO, OneIsland_PokemonCenter_1F_Movement_CelioCheckMachine
waitmovement 0 waitmovement 0
delay 40 delay 40
playse SE_PC_ON playse SE_PC_ON
call EventScript_170C36 call OneIsland_PokemonCenter_1F_EventScript_SetNetworkMachineOn
special DrawWholeMapView special DrawWholeMapView
msgbox gUnknown_81A1D59 msgbox OneIsland_PokemonCenter_1F_Text_LinkedUpWithLanette
applymovement 3, Movement_FacePlayer applymovement LOCALID_CELIO, Movement_FacePlayer
waitmovement 0 waitmovement 0
msgbox gUnknown_81A1D7D msgbox OneIsland_PokemonCenter_1F_Text_ManagedToLinkWithHoennThankYou
special sub_810B82C special sub_810B82C
setflag FLAG_SYS_CAN_LINK_WITH_RS setflag FLAG_SYS_CAN_LINK_WITH_RS
setflag FLAG_HIDE_CERULEAN_CAVE_GUARD setflag FLAG_HIDE_CERULEAN_CAVE_GUARD
@@ -293,43 +298,43 @@ EventScript_170FA5:: @ 8170FA5
release release
end end
EventScript_17103A:: @ 817103A OneIsland_PokemonCenter_1F_EventScript_ExplainRainbowPass:: @ 817103A
msgbox gUnknown_81A1BB7 msgbox OneIsland_PokemonCenter_1F_Text_PassLetYouGetToAllIslands
release release
end end
EventScript_171044:: @ 8171044 OneIsland_PokemonCenter_1F_EventScript_GiveCelioRuby:: @ 8171044
msgbox gUnknown_81A197E msgbox OneIsland_PokemonCenter_1F_Text_OhThats
textcolor 3 textcolor 3
playfanfare MUS_ME_WAZA playfanfare MUS_ME_WAZA
message Text_1A198D message OneIsland_PokemonCenter_1F_Text_HandedRubyToCelio
waitmessage waitmessage
waitfanfare waitfanfare
call EventScript_1A6675 call EventScript_1A6675
closemessage closemessage
applymovement 3, Movement_171142 applymovement LOCALID_CELIO, OneIsland_PokemonCenter_1F_Movement_CelioPutGemInMachine
waitmovement 0 waitmovement 0
playse SE_TK_KASYA playse SE_TK_KASYA
call EventScript_170C22 call OneIsland_PokemonCenter_1F_EventScript_SetRubyMetatile
special DrawWholeMapView special DrawWholeMapView
delay 30 delay 30
applymovement 3, Movement_FacePlayer applymovement LOCALID_CELIO, Movement_FacePlayer
waitmovement 0 waitmovement 0
msgbox gUnknown_81A19AA, MSGBOX_YESNO msgbox OneIsland_PokemonCenter_1F_Text_MayIAskOneMoreFavor, MSGBOX_YESNO
compare VAR_RESULT, NO compare VAR_RESULT, NO
goto_if_eq EventScript_171099 goto_if_eq OneIsland_PokemonCenter_1F_EventScript_DeclineHelpCelio
goto EventScript_1710B2 goto OneIsland_PokemonCenter_1F_EventScript_GiveRainbowPass
end end
EventScript_171099:: @ 8171099 OneIsland_PokemonCenter_1F_EventScript_DeclineHelpCelio:: @ 8171099
msgbox gUnknown_81A1A08, MSGBOX_YESNO msgbox OneIsland_PokemonCenter_1F_Text_PleaseINeedYourHelp, MSGBOX_YESNO
compare VAR_RESULT, NO compare VAR_RESULT, NO
goto_if_eq EventScript_171099 goto_if_eq OneIsland_PokemonCenter_1F_EventScript_DeclineHelpCelio
goto EventScript_1710B2 goto OneIsland_PokemonCenter_1F_EventScript_GiveRainbowPass
end end
EventScript_1710B2:: @ 81710B2 OneIsland_PokemonCenter_1F_EventScript_GiveRainbowPass:: @ 81710B2
msgbox gUnknown_81A1A3F msgbox OneIsland_PokemonCenter_1F_Text_AnotherGemstoneInSeviiIslands
removeitem ITEM_RUBY, 1 removeitem ITEM_RUBY, 1
removeitem ITEM_TRI_PASS, 1 removeitem ITEM_TRI_PASS, 1
setvar VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 5 setvar VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 5
@@ -337,47 +342,47 @@ EventScript_1710B2:: @ 81710B2
setflag FLAG_SYS_SEVII_MAP_4567 setflag FLAG_SYS_SEVII_MAP_4567
textcolor 3 textcolor 3
playfanfare MUS_FAN5 playfanfare MUS_FAN5
message Text_1A1B56 message OneIsland_PokemonCenter_1F_Text_ReturnedTriPassForRainbowPass
waitmessage waitmessage
waitfanfare waitfanfare
playfanfare MUS_FAN5 playfanfare MUS_FAN5
message Text_1A1B8E message OneIsland_PokemonCenter_1F_Text_ObtainedExtraMapPage
waitmessage waitmessage
waitfanfare waitfanfare
call EventScript_1A6675 call EventScript_1A6675
goto EventScript_17103A goto OneIsland_PokemonCenter_1F_EventScript_ExplainRainbowPass
end end
EventScript_1710F2:: @ 81710F2 OneIsland_PokemonCenter_1F_EventScript_CelioWaitingForRuby:: @ 81710F2
msgbox gUnknown_81A1896 msgbox OneIsland_PokemonCenter_1F_Text_TryingToFindGem
release release
end end
EventScript_1710FC:: @ 81710FC OneIsland_PokemonCenter_1F_EventScript_CelioRequestRuby:: @ 81710FC
msgbox gUnknown_81A169B msgbox OneIsland_PokemonCenter_1F_Text_CelioCaughtMoreMonMaybeICanBeUseful
applymovement 3, Movement_WalkInPlaceFastestUp applymovement LOCALID_CELIO, Movement_WalkInPlaceFastestUp
waitmovement 0 waitmovement 0
msgbox gUnknown_81A1723 msgbox OneIsland_PokemonCenter_1F_Text_YoullBeTradingFromTrainersFarAway
applymovement 3, Movement_FacePlayer applymovement LOCALID_CELIO, Movement_FacePlayer
waitmovement 0 waitmovement 0
msgbox gUnknown_81A17DF msgbox OneIsland_PokemonCenter_1F_Text_NeedsSpecialGemstone
setvar VAR_MAP_SCENE_MT_EMBER_EXTERIOR, 1 setvar VAR_MAP_SCENE_MT_EMBER_EXTERIOR, 1
setvar VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 4 setvar VAR_MAP_SCENE_ONE_ISLAND_POKEMON_CENTER_1F, 4
release release
end end
EventScript_171134:: @ 8171134 OneIsland_PokemonCenter_1F_EventScript_CelioPlayerMissingNationalDex:: @ 8171134
msgbox gUnknown_81A15EC msgbox OneIsland_PokemonCenter_1F_Text_CelioImModifyingMyNetworkMachine
release release
end end
Movement_17113E:: @ 817113E OneIsland_PokemonCenter_1F_Movement_CelioCheckMachine:: @ 817113E
walk_in_place_up walk_in_place_up
delay_8 delay_8
walk_in_place_up walk_in_place_up
step_end step_end
Movement_171142:: @ 8171142 OneIsland_PokemonCenter_1F_Movement_CelioPutGemInMachine:: @ 8171142
walk_in_place_fastest_up walk_in_place_fastest_up
walk_in_place_up walk_in_place_up
delay_16 delay_16
@@ -385,116 +390,116 @@ Movement_171142:: @ 8171142
walk_in_place_up walk_in_place_up
step_end step_end
OneIsland_PokemonCenter_1F_EventScript_171148:: @ 8171148 OneIsland_PokemonCenter_1F_EventScript_LittleBoy:: @ 8171148
msgbox gUnknown_81A20D5, MSGBOX_NPC msgbox OneIsland_PokemonCenter_1F_Text_CameFromPalletDontKnowIt, MSGBOX_NPC
end end
OneIsland_PokemonCenter_1F_EventScript_171151:: @ 8171151 OneIsland_PokemonCenter_1F_EventScript_Hiker:: @ 8171151
msgbox gUnknown_81A212D, MSGBOX_NPC msgbox OneIsland_PokemonCenter_1F_Text_EnormousVolcanoOnIsland, MSGBOX_NPC
end end
OneIsland_PokemonCenter_1F_EventScript_17115A:: @ 817115A OneIsland_PokemonCenter_1F_EventScript_BattleGirl:: @ 817115A
lock lock
faceplayer faceplayer
goto_if_set FLAG_SYS_CAN_LINK_WITH_RS, EventScript_17116F goto_if_set FLAG_SYS_CAN_LINK_WITH_RS, OneIsland_PokemonCenter_1F_EventScript_BattleGirlHoennLinked
msgbox gUnknown_81A218D msgbox OneIsland_PokemonCenter_1F_Text_WishICouldTradeWithBoyfriend
release release
end end
EventScript_17116F:: @ 817116F OneIsland_PokemonCenter_1F_EventScript_BattleGirlHoennLinked:: @ 817116F
msgbox gUnknown_81A21D0 msgbox OneIsland_PokemonCenter_1F_Text_TradedWithFarAwayBoyfriend
release release
end end
OneIsland_PokemonCenter_1F_EventScript_171179:: @ 8171179 OneIsland_PokemonCenter_1F_EventScript_NetworkMachine:: @ 8171179
lockall lockall
goto_if_set FLAG_SYS_CAN_LINK_WITH_RS, EventScript_1711A0 goto_if_set FLAG_SYS_CAN_LINK_WITH_RS, OneIsland_PokemonCenter_1F_EventScript_NetworkMachineLinkedWithHoenn
goto_if_set FLAG_SEVII_DETOUR_FINISHED, EventScript_171196 goto_if_set FLAG_SEVII_DETOUR_FINISHED, OneIsland_PokemonCenter_1F_EventScript_NetworkMachineLinkedWithKanto
msgbox gUnknown_81A223F msgbox OneIsland_PokemonCenter_1F_Text_MachineUnderAdjustment
releaseall releaseall
end end
EventScript_171196:: @ 8171196 OneIsland_PokemonCenter_1F_EventScript_NetworkMachineLinkedWithKanto:: @ 8171196
msgbox gUnknown_81A2286 msgbox OneIsland_PokemonCenter_1F_Text_MachineLinkedWithKanto
releaseall releaseall
end end
EventScript_1711A0:: @ 81711A0 OneIsland_PokemonCenter_1F_EventScript_NetworkMachineLinkedWithHoenn:: @ 81711A0
msgbox gUnknown_81A22CB msgbox OneIsland_PokemonCenter_1F_Text_MachineLinkedWithKantoAndHoenn
releaseall releaseall
end end
OneIsland_PokemonCenter_1F_EventScript_1711AA:: @ 81711AA OneIsland_PokemonCenter_1F_EventScript_LeaveOneIslandTriggerTop:: @ 81711AA
lockall lockall
setvar VAR_TEMP_1, 1 setvar VAR_TEMP_1, 1
goto EventScript_1711DA goto OneIsland_PokemonCenter_1F_EventScript_LeaveOneIslandScene
end end
OneIsland_PokemonCenter_1F_EventScript_1711B6:: @ 81711B6 OneIsland_PokemonCenter_1F_EventScript_LeaveOneIslandTriggerMidTop:: @ 81711B6
lockall lockall
setvar VAR_TEMP_1, 2 setvar VAR_TEMP_1, 2
goto EventScript_1711DA goto OneIsland_PokemonCenter_1F_EventScript_LeaveOneIslandScene
end end
OneIsland_PokemonCenter_1F_EventScript_1711C2:: @ 81711C2 OneIsland_PokemonCenter_1F_EventScript_LeaveOneIslandTriggerMidBottom:: @ 81711C2
lockall lockall
setvar VAR_TEMP_1, 3 setvar VAR_TEMP_1, 3
goto EventScript_1711DA goto OneIsland_PokemonCenter_1F_EventScript_LeaveOneIslandScene
end end
OneIsland_PokemonCenter_1F_EventScript_1711CE:: @ 81711CE OneIsland_PokemonCenter_1F_EventScript_LeaveOneIslandTriggerBottom:: @ 81711CE
lockall lockall
setvar VAR_TEMP_1, 4 setvar VAR_TEMP_1, 4
goto EventScript_1711DA goto OneIsland_PokemonCenter_1F_EventScript_LeaveOneIslandScene
end end
EventScript_1711DA:: @ 81711DA OneIsland_PokemonCenter_1F_EventScript_LeaveOneIslandScene:: @ 81711DA
textcolor 0 textcolor 0
playse SE_PIN playse SE_PIN
applymovement 2, Movement_ExclamationMark applymovement LOCALID_BILL, Movement_ExclamationMark
waitmovement 0 waitmovement 0
msgbox gUnknown_81A13B8 msgbox OneIsland_PokemonCenter_1F_Text_BillOhHeyPlayer
closemessage closemessage
compare VAR_TEMP_1, 1 compare VAR_TEMP_1, 1
call_if_eq EventScript_1712E4 call_if_eq OneIsland_PokemonCenter_1F_EventScript_PlayerWalkToBillTop
compare VAR_TEMP_1, 2 compare VAR_TEMP_1, 2
call_if_eq EventScript_1712EF call_if_eq OneIsland_PokemonCenter_1F_EventScript_PlayerWalkToBillMidTop
compare VAR_TEMP_1, 3 compare VAR_TEMP_1, 3
call_if_eq EventScript_1712FA call_if_eq OneIsland_PokemonCenter_1F_EventScript_PlayerWalkToBillMidBottom
compare VAR_TEMP_1, 4 compare VAR_TEMP_1, 4
call_if_eq EventScript_171305 call_if_eq OneIsland_PokemonCenter_1F_EventScript_PlayerWalkToBillBottom
delay 10 delay 10
msgbox gUnknown_81A13CB msgbox OneIsland_PokemonCenter_1F_Text_BillWeGotItDone
applymovement OBJ_EVENT_ID_PLAYER, Movement_WalkInPlaceFastestDown applymovement OBJ_EVENT_ID_PLAYER, Movement_WalkInPlaceFastestDown
waitmovement 0 waitmovement 0
msgbox gUnknown_81A1431 msgbox OneIsland_PokemonCenter_1F_Text_CelioJobWentQuick
applymovement 2, Movement_WalkInPlaceFastestDown applymovement LOCALID_BILL, Movement_WalkInPlaceFastestDown
waitmovement 0 waitmovement 0
applymovement 3, Movement_WalkInPlaceFastestUp applymovement LOCALID_CELIO, Movement_WalkInPlaceFastestUp
waitmovement 0 waitmovement 0
msgbox gUnknown_81A1470 msgbox OneIsland_PokemonCenter_1F_Text_BillYouveLearnedALot
msgbox gUnknown_81A14E1 msgbox OneIsland_PokemonCenter_1F_Text_CelioOhReallyEhehe
closemessage closemessage
applymovement 2, Movement_WalkInPlaceFastestLeft applymovement LOCALID_BILL, Movement_WalkInPlaceFastestLeft
waitmovement 0 waitmovement 0
delay 10 delay 10
applymovement OBJ_EVENT_ID_PLAYER, Movement_WalkInPlaceFastestRight applymovement OBJ_EVENT_ID_PLAYER, Movement_WalkInPlaceFastestRight
waitmovement 0 waitmovement 0
delay 15 delay 15
msgbox gUnknown_81A14FB msgbox OneIsland_PokemonCenter_1F_Text_BillWeShouldHeadBackToKanto
closemessage closemessage
applymovement 2, Movement_WalkInPlaceFastestDown applymovement LOCALID_BILL, Movement_WalkInPlaceFastestDown
waitmovement 0 waitmovement 0
delay 15 delay 15
applymovement 3, Movement_WalkInPlaceFastestLeft applymovement LOCALID_CELIO, Movement_WalkInPlaceFastestLeft
waitmovement 0 waitmovement 0
applymovement OBJ_EVENT_ID_PLAYER, Movement_WalkInPlaceFastestDown applymovement OBJ_EVENT_ID_PLAYER, Movement_WalkInPlaceFastestDown
waitmovement 0 waitmovement 0
msgbox gUnknown_81A1574 msgbox OneIsland_PokemonCenter_1F_Text_CelioPromiseIllShowYouAroundSometime
closemessage closemessage
delay 25 delay 25
applymovement OBJ_EVENT_ID_PLAYER, Movement_171326 applymovement OBJ_EVENT_ID_PLAYER, OneIsland_PokemonCenter_1F_Movement_PlayerExit
applymovement 2, Movement_17132D applymovement LOCALID_BILL, OneIsland_PokemonCenter_1F_Movement_BillExit
waitmovement 0 waitmovement 0
playse SE_KAIDAN playse SE_KAIDAN
setflag FLAG_HIDE_ONE_ISLAND_POKECENTER_BILL setflag FLAG_HIDE_ONE_ISLAND_POKECENTER_BILL
@@ -506,49 +511,50 @@ EventScript_1711DA:: @ 81711DA
goto EventScript_SetSail goto EventScript_SetSail
end end
EventScript_1712E4:: @ 81712E4 OneIsland_PokemonCenter_1F_EventScript_PlayerWalkToBillTop:: @ 81712E4
applymovement OBJ_EVENT_ID_PLAYER, Movement_171310 applymovement OBJ_EVENT_ID_PLAYER, OneIsland_PokemonCenter_1F_Movement_PlayerWalkToBillTop
waitmovement 0 waitmovement 0
return return
EventScript_1712EF:: @ 81712EF OneIsland_PokemonCenter_1F_EventScript_PlayerWalkToBillMidTop:: @ 81712EF
applymovement OBJ_EVENT_ID_PLAYER, Movement_171314 applymovement OBJ_EVENT_ID_PLAYER, OneIsland_PokemonCenter_1F_Movement_PlayerWalkToBillMidTop
waitmovement 0 waitmovement 0
return return
EventScript_1712FA:: @ 81712FA OneIsland_PokemonCenter_1F_EventScript_PlayerWalkToBillMidBottom:: @ 81712FA
applymovement OBJ_EVENT_ID_PLAYER, Movement_171316 applymovement OBJ_EVENT_ID_PLAYER, OneIsland_PokemonCenter_1F_Movement_PlayerWalkToBillMidBottom
waitmovement 0 waitmovement 0
return return
EventScript_171305:: @ 8171305 OneIsland_PokemonCenter_1F_EventScript_PlayerWalkToBillBottom:: @ 8171305
applymovement OBJ_EVENT_ID_PLAYER, Movement_17131A applymovement OBJ_EVENT_ID_PLAYER, OneIsland_PokemonCenter_1F_Movement_PlayerWalkToBillBottom
waitmovement 0 waitmovement 0
return return
Movement_171310:: @ 8171310 OneIsland_PokemonCenter_1F_Movement_PlayerWalkToBillTop:: @ 8171310
walk_right walk_right
walk_down walk_down
walk_in_place_fastest_right walk_in_place_fastest_right
step_end step_end
Movement_171314:: @ 8171314 OneIsland_PokemonCenter_1F_Movement_PlayerWalkToBillMidTop:: @ 8171314
walk_right walk_right
step_end step_end
Movement_171316:: @ 8171316 OneIsland_PokemonCenter_1F_Movement_PlayerWalkToBillMidBottom:: @ 8171316
walk_right walk_right
walk_up walk_up
walk_in_place_fastest_right walk_in_place_fastest_right
step_end step_end
Movement_17131A:: @ 817131A OneIsland_PokemonCenter_1F_Movement_PlayerWalkToBillBottom:: @ 817131A
walk_right walk_right
walk_up walk_up
walk_up walk_up
walk_in_place_fastest_right walk_in_place_fastest_right
step_end step_end
@ Unused
Movement_17131F:: @ 817131F Movement_17131F:: @ 817131F
delay_16 delay_16
delay_16 delay_16
@@ -556,11 +562,12 @@ Movement_17131F:: @ 817131F
walk_in_place_fastest_left walk_in_place_fastest_left
step_end step_end
@ Unused
Movement_171324:: @ 8171324 Movement_171324:: @ 8171324
walk_in_place_fast_down walk_in_place_fast_down
step_end step_end
Movement_171326:: @ 8171326 OneIsland_PokemonCenter_1F_Movement_PlayerExit:: @ 8171326
walk_left walk_left
walk_left walk_left
walk_left walk_left
@@ -569,7 +576,7 @@ Movement_171326:: @ 8171326
walk_down walk_down
step_end step_end
Movement_17132D:: @ 817132D OneIsland_PokemonCenter_1F_Movement_BillExit:: @ 817132D
walk_left walk_left
walk_left walk_left
walk_left walk_left
+59 -59
View File
@@ -1,52 +1,52 @@
gUnknown_81A0CDE:: @ 81A0CDE OneIsland_PokemonCenter_1F_Text_BillHeyThereCelio:: @ 81A0CDE
.string "BILL: Hey, there!\n" .string "BILL: Hey, there!\n"
.string "CELIO!$" .string "CELIO!$"
gUnknown_81A0CF7:: @ 81A0CF7 OneIsland_PokemonCenter_1F_Text_CelioCantBelieveYouCameOut:: @ 81A0CF7
.string "CELIO: BILL!\n" .string "CELIO: BILL!\n"
.string "I can't believe you came out here.$" .string "I can't believe you came out here.$"
gUnknown_81A0D27:: @ 81A0D27 OneIsland_PokemonCenter_1F_Text_BillHowsYourResearchComing:: @ 81A0D27
.string "BILL: Well, absolutely!\n" .string "BILL: Well, absolutely!\n"
.string "How's your research coming along?\p" .string "How's your research coming along?\p"
.string "…Oh, wait a sec.$" .string "…Oh, wait a sec.$"
gUnknown_81A0D72:: @ 81A0D72 OneIsland_PokemonCenter_1F_Text_ThisIsMyBuddyCelio:: @ 81A0D72
.string "{PLAYER}, this is my buddy CELIO.\n" .string "{PLAYER}, this is my buddy CELIO.\n"
.string "He's one dedicated PC MANIAC!$" .string "He's one dedicated PC MANIAC!$"
gUnknown_81A0DAC:: @ 81A0DAC OneIsland_PokemonCenter_1F_Text_PlayerIsRisingPokemonChamp:: @ 81A0DAC
.string "CELIO, this is {PLAYER}, a rising\n" .string "CELIO, this is {PLAYER}, a rising\n"
.string "contender as the POKéMON CHAMP!$" .string "contender as the POKéMON CHAMP!$"
gUnknown_81A0DE8:: @ 81A0DE8 OneIsland_PokemonCenter_1F_Text_PlayerIsReigningPokemonChamp:: @ 81A0DE8
.string "CELIO, this is {PLAYER}, the\n" .string "CELIO, this is {PLAYER}, the\n"
.string "reigning POKéMON CHAMP!$" .string "reigning POKéMON CHAMP!$"
gUnknown_81A0E17:: @ 81A0E17 OneIsland_PokemonCenter_1F_Text_CelioThatsReallyImpressive:: @ 81A0E17
.string "CELIO: That's really impressive.\p" .string "CELIO: That's really impressive.\p"
.string "I hate to say it, but I have zero\n" .string "I hate to say it, but I have zero\n"
.string "aptitude for battling.\p" .string "aptitude for battling.\p"
.string "Anyways, I'm glad to meet you.$" .string "Anyways, I'm glad to meet you.$"
gUnknown_81A0E90:: @ 81A0E90 OneIsland_PokemonCenter_1F_Text_BillBringMeUpToSpeed:: @ 81A0E90
.string "BILL: So, bring me up to speed.\n" .string "BILL: So, bring me up to speed.\n"
.string "How's your machine running?$" .string "How's your machine running?$"
gUnknown_81A0ECC:: @ 81A0ECC OneIsland_PokemonCenter_1F_Text_CelioPCsCantLinkWithYours:: @ 81A0ECC
.string "CELIO: It's running fine, but we're\n" .string "CELIO: It's running fine, but we're\n"
.string "too remote out here.\p" .string "too remote out here.\p"
.string "The PCs on this island just can't\n" .string "The PCs on this island just can't\n"
.string "link with your PC, BILL.$" .string "link with your PC, BILL.$"
gUnknown_81A0F40:: @ 81A0F40 OneIsland_PokemonCenter_1F_Text_BillLetMeHelpYou:: @ 81A0F40
.string "BILL: Oh, yeah?\n" .string "BILL: Oh, yeah?\n"
.string "Okay, let me take a look-see.\p" .string "Okay, let me take a look-see.\p"
.string "…Hang on here…\n" .string "…Hang on here…\n"
.string "I think we can make it work.\l" .string "I think we can make it work.\l"
.string "Let me help you, okay?$" .string "Let me help you, okay?$"
gUnknown_81A0FB1:: @ 81A0FB1 OneIsland_PokemonCenter_1F_Text_CanYouDeliverThisMeteoritePlayer:: @ 81A0FB1
.string "{PLAYER}, can I get you to wait for\n" .string "{PLAYER}, can I get you to wait for\n"
.string "me just a bit?\p" .string "me just a bit?\p"
.string "…Actually, can I get you to do\n" .string "…Actually, can I get you to do\n"
@@ -62,38 +62,38 @@ gUnknown_81A0FB1:: @ 81A0FB1
.string "So, can I get you to deliver this\n" .string "So, can I get you to deliver this\n"
.string "METEORITE to him?$" .string "METEORITE to him?$"
gUnknown_81A10EE:: @ 81A10EE OneIsland_PokemonCenter_1F_Text_AcceptedMeteoriteFromBill:: @ 81A10EE
.string "{PLAYER} accepted the METEORITE\n" .string "{PLAYER} accepted the METEORITE\n"
.string "from BILL.$" .string "from BILL.$"
gUnknown_81A1113:: @ 81A1113 OneIsland_PokemonCenter_1F_Text_CelioPleaseTakeThis:: @ 81A1113
.string "CELIO: {PLAYER}, if you are going\n" .string "CELIO: {PLAYER}, if you are going\n"
.string "to TWO ISLAND, please take this.$" .string "to TWO ISLAND, please take this.$"
gUnknown_81A1150:: @ 81A1150 OneIsland_PokemonCenter_1F_Text_PassLetsYouTravelBetweenIslands:: @ 81A1150
.string "It's a PASS for the ferry service\n" .string "It's a PASS for the ferry service\n"
.string "serving the local islands.\p" .string "serving the local islands.\p"
.string "It will let you travel between the\n" .string "It will let you travel between the\n"
.string "ISLANDS ONE, TWO, and THREE.\p" .string "ISLANDS ONE, TWO, and THREE.\p"
.string "Oh, you should have this, too.$" .string "Oh, you should have this, too.$"
Text_1A11EC:: @ 81A11EC OneIsland_PokemonCenter_1F_Text_ReceivedExtraPageForTownMap:: @ 81A11EC
.string "{PLAYER} received an extra page\n" .string "{PLAYER} received an extra page\n"
.string "for the TOWN MAP!$" .string "for the TOWN MAP!$"
gUnknown_81A1218:: @ 81A1218 OneIsland_PokemonCenter_1F_Text_ReceivedTownMap:: @ 81A1218
.string "{PLAYER} received\n" .string "{PLAYER} received\n"
.string "a TOWN MAP!$" .string "a TOWN MAP!$"
gUnknown_81A1230:: @ 81A1230 OneIsland_PokemonCenter_1F_Text_BillCatchYouLater:: @ 81A1230
.string "BILL: I'll catch you later!\n" .string "BILL: I'll catch you later!\n"
.string "Say hi to the guy for me!$" .string "Say hi to the guy for me!$"
gUnknown_81A1266:: @ 81A1266 OneIsland_PokemonCenter_1F_Text_HmmHowAboutLikeThis:: @ 81A1266
.string "Hmm…\p" .string "Hmm…\p"
.string "How about we try this like this…$" .string "How about we try this like this…$"
gUnknown_81A128C:: @ 81A128C OneIsland_PokemonCenter_1F_Text_GotPCWorkingStrollAWhileMore:: @ 81A128C
.string "Oh, hey, {PLAYER}!\p" .string "Oh, hey, {PLAYER}!\p"
.string "Did you see?\n" .string "Did you see?\n"
.string "We got the PC working!\p" .string "We got the PC working!\p"
@@ -102,54 +102,54 @@ gUnknown_81A128C:: @ 81A128C
.string "Can you go out on a stroll or\n" .string "Can you go out on a stroll or\n"
.string "something for a while more?$" .string "something for a while more?$"
gUnknown_81A1321:: @ 81A1321 OneIsland_PokemonCenter_1F_Text_SorryForBeingPoorHost:: @ 81A1321
.string "I'm sorry for taking up so much of\n" .string "I'm sorry for taking up so much of\n"
.string "BILL's time.\p" .string "BILL's time.\p"
.string "I'm also sorry for being such a \n" .string "I'm also sorry for being such a \n"
.string "poor host on your visit here.$" .string "poor host on your visit here.$"
Text_UsualPCServicesUnavailable:: @ 81A1390 OneIsland_PokemonCenter_1F_Text_UsualPCServicesUnavailable:: @ 81A1390
.string "The usual PC services aren't\n" .string "The usual PC services aren't\n"
.string "available…$" .string "available…$"
gUnknown_81A13B8:: @ 81A13B8 OneIsland_PokemonCenter_1F_Text_BillOhHeyPlayer:: @ 81A13B8
.string "BILL: Oh, hey!\n" .string "BILL: Oh, hey!\n"
.string "{PLAYER}!$" .string "{PLAYER}!$"
gUnknown_81A13CB:: @ 81A13CB OneIsland_PokemonCenter_1F_Text_BillWeGotItDone:: @ 81A13CB
.string "BILL: What kept you so long?\n" .string "BILL: What kept you so long?\n"
.string "Been out having a good time?\p" .string "Been out having a good time?\p"
.string "We got it done.\n" .string "We got it done.\n"
.string "The PCs are up and running!$" .string "The PCs are up and running!$"
gUnknown_81A1431:: @ 81A1431 OneIsland_PokemonCenter_1F_Text_CelioJobWentQuick:: @ 81A1431
.string "CELIO: The job went incredibly\n" .string "CELIO: The job went incredibly\n"
.string "quick.\p" .string "quick.\p"
.string "BILL is one amazing guy…$" .string "BILL is one amazing guy…$"
gUnknown_81A1470:: @ 81A1470 OneIsland_PokemonCenter_1F_Text_BillYouveLearnedALot:: @ 81A1470
.string "BILL: No, no! There was almost\n" .string "BILL: No, no! There was almost\n"
.string "nothing left for me to do.\p" .string "nothing left for me to do.\p"
.string "CELIO, I have to hand it to you.\n" .string "CELIO, I have to hand it to you.\n"
.string "You've learned a lot.$" .string "You've learned a lot.$"
gUnknown_81A14E1:: @ 81A14E1 OneIsland_PokemonCenter_1F_Text_CelioOhReallyEhehe:: @ 81A14E1
.string "CELIO: Oh, really?\n" .string "CELIO: Oh, really?\n"
.string "Ehehe…$" .string "Ehehe…$"
gUnknown_81A14FB:: @ 81A14FB OneIsland_PokemonCenter_1F_Text_BillWeShouldHeadBackToKanto:: @ 81A14FB
.string "BILL: Well, there you have it.\n" .string "BILL: Well, there you have it.\n"
.string "I'm finished with the job.\l" .string "I'm finished with the job.\l"
.string "We should head back to KANTO.\p" .string "We should head back to KANTO.\p"
.string "CELIO, I'll be seeing you again.$" .string "CELIO, I'll be seeing you again.$"
gUnknown_81A1574:: @ 81A1574 OneIsland_PokemonCenter_1F_Text_CelioPromiseIllShowYouAroundSometime:: @ 81A1574
.string "CELIO: {PLAYER}, I'm really sorry\n" .string "CELIO: {PLAYER}, I'm really sorry\n"
.string "that we sent you off alone today.\p" .string "that we sent you off alone today.\p"
.string "I promise, I will show you around\n" .string "I promise, I will show you around\n"
.string "these islands sometime.$" .string "these islands sometime.$"
gUnknown_81A15EC:: @ 81A15EC OneIsland_PokemonCenter_1F_Text_CelioImModifyingMyNetworkMachine:: @ 81A15EC
.string "CELIO: Hello!\n" .string "CELIO: Hello!\n"
.string "You look awfully busy as always.\p" .string "You look awfully busy as always.\p"
.string "How am I doing?\p" .string "How am I doing?\p"
@@ -159,7 +159,7 @@ gUnknown_81A15EC:: @ 81A15EC
.string "I hope you'll be first to use it,\l" .string "I hope you'll be first to use it,\l"
.string "{PLAYER}.$" .string "{PLAYER}.$"
gUnknown_81A169B:: @ 81A169B OneIsland_PokemonCenter_1F_Text_CelioCaughtMoreMonMaybeICanBeUseful:: @ 81A169B
.string "CELIO: {PLAYER}, how have things\n" .string "CELIO: {PLAYER}, how have things\n"
.string "been for you?\p" .string "been for you?\p"
.string "Oh, is that right?\n" .string "Oh, is that right?\n"
@@ -167,7 +167,7 @@ gUnknown_81A169B:: @ 81A169B
.string "Do you know what?\n" .string "Do you know what?\n"
.string "Maybe I can be useful to you.$" .string "Maybe I can be useful to you.$"
gUnknown_81A1723:: @ 81A1723 OneIsland_PokemonCenter_1F_Text_YoullBeTradingFromTrainersFarAway:: @ 81A1723
.string "I'm modifying the Network Machine\n" .string "I'm modifying the Network Machine\n"
.string "right now.\p" .string "right now.\p"
.string "I'm changing it so it can handle\n" .string "I'm changing it so it can handle\n"
@@ -176,7 +176,7 @@ gUnknown_81A1723:: @ 81A1723
.string "trading for exotic POKéMON from\l" .string "trading for exotic POKéMON from\l"
.string "TRAINERS far away.$" .string "TRAINERS far away.$"
gUnknown_81A17DF:: @ 81A17DF OneIsland_PokemonCenter_1F_Text_NeedsSpecialGemstone:: @ 81A17DF
.string "But, there is a slight catch.\p" .string "But, there is a slight catch.\p"
.string "For the link to work, the Machine\n" .string "For the link to work, the Machine\n"
.string "needs a special gemstone.\p" .string "needs a special gemstone.\p"
@@ -184,7 +184,7 @@ gUnknown_81A17DF:: @ 81A17DF
.string "but I haven't found one yet.\p" .string "but I haven't found one yet.\p"
.string "Who knows where it could be.$" .string "Who knows where it could be.$"
gUnknown_81A1896:: @ 81A1896 OneIsland_PokemonCenter_1F_Text_TryingToFindGem:: @ 81A1896
.string "I was trying to find the gem\n" .string "I was trying to find the gem\n"
.string "even while I was studying.\p" .string "even while I was studying.\p"
.string "As a result, I've made no headway\n" .string "As a result, I've made no headway\n"
@@ -194,26 +194,26 @@ gUnknown_81A1896:: @ 81A1896
.string "But this time, I want to try to do\n" .string "But this time, I want to try to do\n"
.string "things by myself.$" .string "things by myself.$"
gUnknown_81A197E:: @ 81A197E OneIsland_PokemonCenter_1F_Text_OhThats:: @ 81A197E
.string "Oh!\n" .string "Oh!\n"
.string "Th-that's…$" .string "Th-that's…$"
Text_1A198D:: @ 81A198D OneIsland_PokemonCenter_1F_Text_HandedRubyToCelio:: @ 81A198D
.string "{PLAYER} handed the RUBY\n" .string "{PLAYER} handed the RUBY\n"
.string "to CELIO.$" .string "to CELIO.$"
gUnknown_81A19AA:: @ 81A19AA OneIsland_PokemonCenter_1F_Text_MayIAskOneMoreFavor:: @ 81A19AA
.string "Thank you!\n" .string "Thank you!\n"
.string "{PLAYER}, you're simply amazing.\p" .string "{PLAYER}, you're simply amazing.\p"
.string "… … … … … …\p" .string "… … … … … …\p"
.string "Um… May I ask one more giant favor\n" .string "Um… May I ask one more giant favor\n"
.string "of you?$" .string "of you?$"
gUnknown_81A1A08:: @ 81A1A08 OneIsland_PokemonCenter_1F_Text_PleaseINeedYourHelp:: @ 81A1A08
.string "It… It's not anything weird.\n" .string "It… It's not anything weird.\n"
.string "Please, I need your help.$" .string "Please, I need your help.$"
gUnknown_81A1A3F:: @ 81A1A3F OneIsland_PokemonCenter_1F_Text_AnotherGemstoneInSeviiIslands:: @ 81A1A3F
.string "While I was studying gemstones,\n" .string "While I was studying gemstones,\n"
.string "I discovered something important.\p" .string "I discovered something important.\p"
.string "There is another gem that forms\n" .string "There is another gem that forms\n"
@@ -225,26 +225,26 @@ gUnknown_81A1A3F:: @ 81A1A3F
.string "{PLAYER}, may I have your ferry\n" .string "{PLAYER}, may I have your ferry\n"
.string "PASS and the TOWN MAP?$" .string "PASS and the TOWN MAP?$"
Text_1A1B56:: @ 81A1B56 OneIsland_PokemonCenter_1F_Text_ReturnedTriPassForRainbowPass:: @ 81A1B56
.string "{PLAYER} returned the TRI-PASS and\n" .string "{PLAYER} returned the TRI-PASS and\n"
.string "received the RAINBOW PASS.$" .string "received the RAINBOW PASS.$"
Text_1A1B8E:: @ 81A1B8E OneIsland_PokemonCenter_1F_Text_ObtainedExtraMapPage:: @ 81A1B8E
.string "Obtained an extra page for the\n" .string "Obtained an extra page for the\n"
.string "TOWN MAP!$" .string "TOWN MAP!$"
gUnknown_81A1BB7:: @ 81A1BB7 OneIsland_PokemonCenter_1F_Text_PassLetYouGetToAllIslands:: @ 81A1BB7
.string "This is my own ferry PASS.\p" .string "This is my own ferry PASS.\p"
.string "It will let you get to all the\n" .string "It will let you get to all the\n"
.string "SEVII ISLANDS.\p" .string "SEVII ISLANDS.\p"
.string "{PLAYER}, please, I can't do\n" .string "{PLAYER}, please, I can't do\n"
.string "it without your help.$" .string "it without your help.$"
Text_1A1C2D:: @ 81A1C2D OneIsland_PokemonCenter_1F_Text_HandedSapphireToCelio:: @ 81A1C2D
.string "{PLAYER} handed the SAPPHIRE\n" .string "{PLAYER} handed the SAPPHIRE\n"
.string "to CELIO.$" .string "to CELIO.$"
gUnknown_81A1C4E:: @ 81A1C4E OneIsland_PokemonCenter_1F_Text_ThankYouGiveMeTime:: @ 81A1C4E
.string "CELIO: So this is the gem that\n" .string "CELIO: So this is the gem that\n"
.string "forms a pair with the RUBY…\p" .string "forms a pair with the RUBY…\p"
.string "{PLAYER}, you've gone through a lot\n" .string "{PLAYER}, you've gone through a lot\n"
@@ -255,14 +255,14 @@ gUnknown_81A1C4E:: @ 81A1C4E
.string "Now it's my turn to work for you!\n" .string "Now it's my turn to work for you!\n"
.string "Please give me a little time.$" .string "Please give me a little time.$"
gUnknown_81A1D45:: @ 81A1D45 OneIsland_PokemonCenter_1F_Text_OkayThisIsGood:: @ 81A1D45
.string "Okay, this is good…$" .string "Okay, this is good…$"
gUnknown_81A1D59:: @ 81A1D59 OneIsland_PokemonCenter_1F_Text_LinkedUpWithLanette:: @ 81A1D59
.string "I did it!\n" .string "I did it!\n"
.string "I linked up with LANETTE!$" .string "I linked up with LANETTE!$"
gUnknown_81A1D7D:: @ 81A1D7D OneIsland_PokemonCenter_1F_Text_ManagedToLinkWithHoennThankYou:: @ 81A1D7D
.string "{PLAYER}…\n" .string "{PLAYER}…\n"
.string "{PLAYER}, I did it!\p" .string "{PLAYER}, I did it!\p"
.string "I've managed to link up with\n" .string "I've managed to link up with\n"
@@ -273,7 +273,7 @@ gUnknown_81A1D7D:: @ 81A1D7D
.string "Thanks to you, my dream came\n" .string "Thanks to you, my dream came\n"
.string "true…$" .string "true…$"
gUnknown_81A1E39:: @ 81A1E39 OneIsland_PokemonCenter_1F_Text_WishYouBestOfLuck:: @ 81A1E39
.string "I…\n" .string "I…\n"
.string "I'm not crying.\p" .string "I'm not crying.\p"
.string "That's enough about me!\p" .string "That's enough about me!\p"
@@ -281,12 +281,12 @@ gUnknown_81A1E39:: @ 81A1E39
.string "looking for exotic POKéMON, right?\p" .string "looking for exotic POKéMON, right?\p"
.string "I wish you the best of luck!$" .string "I wish you the best of luck!$"
gUnknown_81A1EBD:: @ 81A1EBD OneIsland_PokemonCenter_1F_Text_CelioHearingRumorsAboutYou:: @ 81A1EBD
.string "CELIO: Hello!\p" .string "CELIO: Hello!\p"
.string "{PLAYER}, I've been hearing rumors\n" .string "{PLAYER}, I've been hearing rumors\n"
.string "about you.$" .string "about you.$"
gUnknown_81A1EF3:: @ 81A1EF3 OneIsland_PokemonCenter_1F_Text_BillsFirstMonWasAbra:: @ 81A1EF3
.string "{PLAYER}, what's your favorite kind\n" .string "{PLAYER}, what's your favorite kind\n"
.string "of POKéMON?\p" .string "of POKéMON?\p"
.string "BILL is a POKéMANIAC, so he loves\n" .string "BILL is a POKéMANIAC, so he loves\n"
@@ -294,7 +294,7 @@ gUnknown_81A1EF3:: @ 81A1EF3
.string "Apparently, the first one he caught\n" .string "Apparently, the first one he caught\n"
.string "was an ABRA.$" .string "was an ABRA.$"
gUnknown_81A1F7C:: @ 81A1F7C OneIsland_PokemonCenter_1F_Text_BillsHometownInGoldenrod:: @ 81A1F7C
.string "By the way, {PLAYER}, you're from\n" .string "By the way, {PLAYER}, you're from\n"
.string "PALLET TOWN, aren't you?\p" .string "PALLET TOWN, aren't you?\p"
.string "I've heard that it's a quiet and\n" .string "I've heard that it's a quiet and\n"
@@ -305,53 +305,53 @@ gUnknown_81A1F7C:: @ 81A1F7C
.string "festive, bustling city.\p" .string "festive, bustling city.\p"
.string "I'd like to go there one day.$" .string "I'd like to go there one day.$"
gUnknown_81A2076:: @ 81A2076 OneIsland_PokemonCenter_1F_Text_BillCantStomachMilk:: @ 81A2076
.string "{PLAYER}, is there anything that\n" .string "{PLAYER}, is there anything that\n"
.string "you can't stand?\p" .string "you can't stand?\p"
.string "Apparently, BILL simply can't\n" .string "Apparently, BILL simply can't\n"
.string "stomach milk at all.$" .string "stomach milk at all.$"
gUnknown_81A20D5:: @ 81A20D5 OneIsland_PokemonCenter_1F_Text_CameFromPalletDontKnowIt:: @ 81A20D5
.string "Oh, you're a stranger here!\n" .string "Oh, you're a stranger here!\n"
.string "Hi! Where did you come from?\p" .string "Hi! Where did you come from?\p"
.string "…PALLET TOWN?\n" .string "…PALLET TOWN?\n"
.string "I don't know it!$" .string "I don't know it!$"
gUnknown_81A212D:: @ 81A212D OneIsland_PokemonCenter_1F_Text_EnormousVolcanoOnIsland:: @ 81A212D
.string "On this island, there's an enormous\n" .string "On this island, there's an enormous\n"
.string "volcano.\p" .string "volcano.\p"
.string "It hasn't erupted lately, so why\n" .string "It hasn't erupted lately, so why\n"
.string "not enjoy a hike?$" .string "not enjoy a hike?$"
gUnknown_81A218D:: @ 81A218D OneIsland_PokemonCenter_1F_Text_WishICouldTradeWithBoyfriend:: @ 81A218D
.string "I wish I could trade POKéMON with\n" .string "I wish I could trade POKéMON with\n"
.string "my boyfriend who lives far away…$" .string "my boyfriend who lives far away…$"
gUnknown_81A21D0:: @ 81A21D0 OneIsland_PokemonCenter_1F_Text_TradedWithFarAwayBoyfriend:: @ 81A21D0
.string "I traded POKéMON with my boyfriend\n" .string "I traded POKéMON with my boyfriend\n"
.string "far away!\p" .string "far away!\p"
.string "Everyone's saying that we can\n" .string "Everyone's saying that we can\n"
.string "thank you and CELIO.\p" .string "thank you and CELIO.\p"
.string "So, thank you!$" .string "So, thank you!$"
gUnknown_81A223F:: @ 81A223F OneIsland_PokemonCenter_1F_Text_MachineUnderAdjustment:: @ 81A223F
.string "Network Machine\n" .string "Network Machine\n"
.string "Link Level 0\p" .string "Link Level 0\p"
.string "…POKéMON Storage System under\n" .string "…POKéMON Storage System under\n"
.string "adjustment…$" .string "adjustment…$"
gUnknown_81A2286:: @ 81A2286 OneIsland_PokemonCenter_1F_Text_MachineLinkedWithKanto:: @ 81A2286
.string "Network Machine\n" .string "Network Machine\n"
.string "Link Level 1\p" .string "Link Level 1\p"
.string "Link established with the KANTO\n" .string "Link established with the KANTO\n"
.string "region.$" .string "region.$"
gUnknown_81A22CB:: @ 81A22CB OneIsland_PokemonCenter_1F_Text_MachineLinkedWithKantoAndHoenn:: @ 81A22CB
.string "Network Machine\n" .string "Network Machine\n"
.string "Link Level 2\p" .string "Link Level 2\p"
.string "Link established with the KANTO\n" .string "Link established with the KANTO\n"
.string "and HOENN regions.$" .string "and HOENN regions.$"
gUnknown_81A231B:: @ 81A231B OneIsland_PokemonCenter_1F_Text_ObtainedTriPass:: @ 81A231B
.string "Obtained the TRI-PASS!$" .string "Obtained the TRI-PASS!$"
+2 -2
View File
@@ -31,7 +31,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": "OneIsland_TreasureBeach_EventScript_1ABF27", "script": "OneIsland_TreasureBeach_EventScript_Amara",
"flag": "0" "flag": "0"
}, },
{ {
@@ -44,7 +44,7 @@
"movement_range_y": 1, "movement_range_y": 1,
"trainer_type": 0, "trainer_type": 0,
"trainer_sight_or_berry_tree_id": 0, "trainer_sight_or_berry_tree_id": 0,
"script": "OneIsland_TreasureBeach_EventScript_16876C", "script": "OneIsland_TreasureBeach_EventScript_Boy",
"flag": "0" "flag": "0"
} }
], ],
@@ -1,6 +1,6 @@
OneIsland_TreasureBeach_MapScripts:: @ 816876B OneIsland_TreasureBeach_MapScripts:: @ 816876B
.byte 0 .byte 0
OneIsland_TreasureBeach_EventScript_16876C:: @ 816876C OneIsland_TreasureBeach_EventScript_Boy:: @ 816876C
msgbox gUnknown_8189DCE, MSGBOX_NPC msgbox OneIsland_TreasureBeach_Text_GoodThingsWashUpOnBeach, MSGBOX_NPC
end end
+4 -4
View File
@@ -1,16 +1,16 @@
Text_189D5A:: @ 8189D5A OneIsland_TreasureBeach_Text_AmaraIntro:: @ 8189D5A
.string "Lying back, rocked by the waves…\n" .string "Lying back, rocked by the waves…\n"
.string "It's exquisite.$" .string "It's exquisite.$"
Text_189D8B:: @ 8189D8B OneIsland_TreasureBeach_Text_AmaraDefeat:: @ 8189D8B
.string "I lost…\n" .string "I lost…\n"
.string "It feels awful.$" .string "It feels awful.$"
Text_189DA3:: @ 8189DA3 OneIsland_TreasureBeach_Text_AmaraPostBattle:: @ 8189DA3
.string "The sea is pleasantly warm in these\n" .string "The sea is pleasantly warm in these\n"
.string "parts.$" .string "parts.$"
gUnknown_8189DCE:: @ 8189DCE OneIsland_TreasureBeach_Text_GoodThingsWashUpOnBeach:: @ 8189DCE
.string "Good things get washed up by the\n" .string "Good things get washed up by the\n"
.string "ocean current onto this beach.\p" .string "ocean current onto this beach.\p"
.string "That's why I often come here for\n" .string "That's why I often come here for\n"
+2 -1
View File
@@ -11,8 +11,9 @@ EventScript_PC:: @ 81A6955
goto EventScript_PCMainMenu goto EventScript_PCMainMenu
end end
@ For when the player first arrives on One Island
EventScript_PCDisabled:: @ 81A698E EventScript_PCDisabled:: @ 81A698E
msgbox Text_UsualPCServicesUnavailable msgbox OneIsland_PokemonCenter_1F_Text_UsualPCServicesUnavailable
releaseall releaseall
end end
+98 -98
View File
@@ -2130,186 +2130,186 @@ Route21_North_EventScript_IanRematch:: @ 81ABBD6
msgbox Route21_North_Text_IanPostBattle, MSGBOX_AUTOCLOSE msgbox Route21_North_Text_IanPostBattle, MSGBOX_AUTOCLOSE
end end
OneIsland_KindleRoad_EventScript_1ABBF1:: @ 81ABBF1 OneIsland_KindleRoad_EventScript_Maria:: @ 81ABBF1
trainerbattle_single TRAINER_SWIMMER_FEMALE_MARIA, Text_18961F, Text_18964D trainerbattle_single TRAINER_SWIMMER_FEMALE_MARIA, OneIsland_KindleRoad_Text_MariaIntro, OneIsland_KindleRoad_Text_MariaDefeat
specialvar VAR_RESULT, ShouldTryRematchBattle specialvar VAR_RESULT, ShouldTryRematchBattle
compare VAR_RESULT, TRUE compare VAR_RESULT, TRUE
goto_if_eq EventScript_1ABC18 goto_if_eq OneIsland_KindleRoad_EventScript_MariaRematch
msgbox Text_189657, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_MariaPostBattle, MSGBOX_AUTOCLOSE
end end
EventScript_1ABC18:: @ 81ABC18 OneIsland_KindleRoad_EventScript_MariaRematch:: @ 81ABC18
trainerbattle_rematch TRAINER_SWIMMER_FEMALE_MARIA, Text_1C37B5, Text_18964D trainerbattle_rematch TRAINER_SWIMMER_FEMALE_MARIA, OneIsland_KindleRoad_Text_MariaRematchIntro, OneIsland_KindleRoad_Text_MariaDefeat
msgbox Text_189657, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_MariaPostBattle, MSGBOX_AUTOCLOSE
end end
OneIsland_KindleRoad_EventScript_1ABC2F:: @ 81ABC2F OneIsland_KindleRoad_EventScript_Abigail:: @ 81ABC2F
trainerbattle_single TRAINER_SWIMMER_FEMALE_ABIGAIL, Text_18968C, Text_1896AC trainerbattle_single TRAINER_SWIMMER_FEMALE_ABIGAIL, OneIsland_KindleRoad_Text_AbigailIntro, OneIsland_KindleRoad_Text_AbigailDefeat
specialvar VAR_RESULT, ShouldTryRematchBattle specialvar VAR_RESULT, ShouldTryRematchBattle
compare VAR_RESULT, TRUE compare VAR_RESULT, TRUE
goto_if_eq EventScript_1ABC56 goto_if_eq OneIsland_KindleRoad_EventScript_AbigailRematch
msgbox Text_1896C1, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_AbigailPostBattle, MSGBOX_AUTOCLOSE
end end
EventScript_1ABC56:: @ 81ABC56 OneIsland_KindleRoad_EventScript_AbigailRematch:: @ 81ABC56
trainerbattle_rematch TRAINER_SWIMMER_FEMALE_ABIGAIL, Text_1C37E7, Text_1896AC trainerbattle_rematch TRAINER_SWIMMER_FEMALE_ABIGAIL, OneIsland_KindleRoad_Text_AbigailRematchIntro, OneIsland_KindleRoad_Text_AbigailDefeat
msgbox Text_1896C1, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_AbigailPostBattle, MSGBOX_AUTOCLOSE
end end
OneIsland_KindleRoad_EventScript_1ABC6D:: @ 81ABC6D OneIsland_KindleRoad_EventScript_Finn:: @ 81ABC6D
trainerbattle_single TRAINER_SWIMMER_MALE_FINN, Text_1896F9, Text_189728 trainerbattle_single TRAINER_SWIMMER_MALE_FINN, OneIsland_KindleRoad_Text_FinnIntro, OneIsland_KindleRoad_Text_FinnDefeat
specialvar VAR_RESULT, ShouldTryRematchBattle specialvar VAR_RESULT, ShouldTryRematchBattle
compare VAR_RESULT, TRUE compare VAR_RESULT, TRUE
goto_if_eq EventScript_1ABC94 goto_if_eq OneIsland_KindleRoad_EventScript_FinnRematch
msgbox Text_189740, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_FinnPostBattle, MSGBOX_AUTOCLOSE
end end
EventScript_1ABC94:: @ 81ABC94 OneIsland_KindleRoad_EventScript_FinnRematch:: @ 81ABC94
trainerbattle_rematch TRAINER_SWIMMER_MALE_FINN, Text_1C3807, Text_189728 trainerbattle_rematch TRAINER_SWIMMER_MALE_FINN, OneIsland_KindleRoad_Text_FinnRematchIntro, OneIsland_KindleRoad_Text_FinnDefeat
msgbox Text_189740, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_FinnPostBattle, MSGBOX_AUTOCLOSE
end end
OneIsland_KindleRoad_EventScript_1ABCAB:: @ 81ABCAB OneIsland_KindleRoad_EventScript_Garrett:: @ 81ABCAB
trainerbattle_single TRAINER_SWIMMER_MALE_GARRETT, Text_189767, Text_1897A4 trainerbattle_single TRAINER_SWIMMER_MALE_GARRETT, OneIsland_KindleRoad_Text_GarrettIntro, OneIsland_KindleRoad_Text_GarrettDefeat
specialvar VAR_RESULT, ShouldTryRematchBattle specialvar VAR_RESULT, ShouldTryRematchBattle
compare VAR_RESULT, TRUE compare VAR_RESULT, TRUE
goto_if_eq EventScript_1ABCD2 goto_if_eq OneIsland_KindleRoad_EventScript_GarrettRematch
msgbox Text_1897C5, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_GarrettPostBattle, MSGBOX_AUTOCLOSE
end end
EventScript_1ABCD2:: @ 81ABCD2 OneIsland_KindleRoad_EventScript_GarrettRematch:: @ 81ABCD2
trainerbattle_rematch TRAINER_SWIMMER_MALE_GARRETT, Text_1C3835, Text_1897A4 trainerbattle_rematch TRAINER_SWIMMER_MALE_GARRETT, OneIsland_KindleRoad_Text_GarrettRematchIntro, OneIsland_KindleRoad_Text_GarrettDefeat
msgbox Text_1897C5, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_GarrettPostBattle, MSGBOX_AUTOCLOSE
end end
OneIsland_KindleRoad_EventScript_1ABCE9:: @ 81ABCE9 OneIsland_KindleRoad_EventScript_Tommy:: @ 81ABCE9
trainerbattle_single TRAINER_FISHERMAN_TOMMY, Text_1897FF, Text_189833 trainerbattle_single TRAINER_FISHERMAN_TOMMY, OneIsland_KindleRoad_Text_TommyIntro, OneIsland_KindleRoad_Text_TommyDefeat
specialvar VAR_RESULT, ShouldTryRematchBattle specialvar VAR_RESULT, ShouldTryRematchBattle
compare VAR_RESULT, TRUE compare VAR_RESULT, TRUE
goto_if_eq EventScript_1ABD10 goto_if_eq OneIsland_KindleRoad_EventScript_TommyRematch
msgbox Text_18984B, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_TommyPostBattle, MSGBOX_AUTOCLOSE
end end
EventScript_1ABD10:: @ 81ABD10 OneIsland_KindleRoad_EventScript_TommyRematch:: @ 81ABD10
trainerbattle_rematch TRAINER_FISHERMAN_TOMMY, Text_1C386A, Text_189833 trainerbattle_rematch TRAINER_FISHERMAN_TOMMY, OneIsland_KindleRoad_Text_TommyRematchIntro, OneIsland_KindleRoad_Text_TommyDefeat
msgbox Text_18984B, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_TommyPostBattle, MSGBOX_AUTOCLOSE
end end
OneIsland_KindleRoad_EventScript_1ABD27:: @ 81ABD27 OneIsland_KindleRoad_EventScript_Sharon:: @ 81ABD27
trainerbattle_single TRAINER_CRUSH_GIRL_SHARON, Text_189883, Text_1898AB trainerbattle_single TRAINER_CRUSH_GIRL_SHARON, OneIsland_KindleRoad_Text_SharonIntro, OneIsland_KindleRoad_Text_SharonDefeat
specialvar VAR_RESULT, ShouldTryRematchBattle specialvar VAR_RESULT, ShouldTryRematchBattle
compare VAR_RESULT, TRUE compare VAR_RESULT, TRUE
goto_if_eq EventScript_1ABD4E goto_if_eq OneIsland_KindleRoad_EventScript_SharonRematch
msgbox Text_1898C4, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_SharonPostBattle, MSGBOX_AUTOCLOSE
end end
EventScript_1ABD4E:: @ 81ABD4E OneIsland_KindleRoad_EventScript_SharonRematch:: @ 81ABD4E
trainerbattle_rematch TRAINER_CRUSH_GIRL_SHARON, Text_1C389F, Text_1898AB trainerbattle_rematch TRAINER_CRUSH_GIRL_SHARON, OneIsland_KindleRoad_Text_SharonRematchIntro, OneIsland_KindleRoad_Text_SharonDefeat
msgbox Text_1898C4, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_SharonPostBattle, MSGBOX_AUTOCLOSE
end end
OneIsland_KindleRoad_EventScript_1ABD65:: @ 81ABD65 OneIsland_KindleRoad_EventScript_Tanya:: @ 81ABD65
trainerbattle_single TRAINER_CRUSH_GIRL_TANYA, Text_1898F0, Text_18991B trainerbattle_single TRAINER_CRUSH_GIRL_TANYA, OneIsland_KindleRoad_Text_TanyaIntro, OneIsland_KindleRoad_Text_TanyaDefeat
specialvar VAR_RESULT, ShouldTryRematchBattle specialvar VAR_RESULT, ShouldTryRematchBattle
compare VAR_RESULT, TRUE compare VAR_RESULT, TRUE
goto_if_eq EventScript_1ABD8C goto_if_eq OneIsland_KindleRoad_EventScript_TanyaRematch
msgbox Text_18992C, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_TanyaPostBattle, MSGBOX_AUTOCLOSE
end end
EventScript_1ABD8C:: @ 81ABD8C OneIsland_KindleRoad_EventScript_TanyaRematch:: @ 81ABD8C
trainerbattle_rematch TRAINER_CRUSH_GIRL_TANYA, Text_1C38CA, Text_18991B trainerbattle_rematch TRAINER_CRUSH_GIRL_TANYA, OneIsland_KindleRoad_Text_TanyaRematchIntro, OneIsland_KindleRoad_Text_TanyaDefeat
msgbox Text_18992C, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_TanyaPostBattle, MSGBOX_AUTOCLOSE
end end
OneIsland_KindleRoad_EventScript_1ABDA3:: @ 81ABDA3 OneIsland_KindleRoad_EventScript_Shea:: @ 81ABDA3
trainerbattle_single TRAINER_BLACK_BELT_SHEA, Text_189950, Text_18998C trainerbattle_single TRAINER_BLACK_BELT_SHEA, OneIsland_KindleRoad_Text_SheaIntro, OneIsland_KindleRoad_Text_SheaDefeat
specialvar VAR_RESULT, ShouldTryRematchBattle specialvar VAR_RESULT, ShouldTryRematchBattle
compare VAR_RESULT, TRUE compare VAR_RESULT, TRUE
goto_if_eq EventScript_1ABDCA goto_if_eq OneIsland_KindleRoad_EventScript_SheaRematch
msgbox Text_189998, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_SheaPostBattle, MSGBOX_AUTOCLOSE
end end
EventScript_1ABDCA:: @ 81ABDCA OneIsland_KindleRoad_EventScript_SheaRematch:: @ 81ABDCA
trainerbattle_rematch TRAINER_BLACK_BELT_SHEA, Text_1C38FA, Text_18998C trainerbattle_rematch TRAINER_BLACK_BELT_SHEA, OneIsland_KindleRoad_Text_SheaRematchIntro, OneIsland_KindleRoad_Text_SheaDefeat
msgbox Text_189998, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_SheaPostBattle, MSGBOX_AUTOCLOSE
end end
OneIsland_KindleRoad_EventScript_1ABDE1:: @ 81ABDE1 OneIsland_KindleRoad_EventScript_Hugh:: @ 81ABDE1
trainerbattle_single TRAINER_BLACK_BELT_HUGH, Text_1899CE, Text_189A0A trainerbattle_single TRAINER_BLACK_BELT_HUGH, OneIsland_KindleRoad_Text_HughIntro, OneIsland_KindleRoad_Text_HughDefeat
specialvar VAR_RESULT, ShouldTryRematchBattle specialvar VAR_RESULT, ShouldTryRematchBattle
compare VAR_RESULT, TRUE compare VAR_RESULT, TRUE
goto_if_eq EventScript_1ABE08 goto_if_eq OneIsland_KindleRoad_EventScript_HughRematch
msgbox Text_189A13, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_HughPostBattle, MSGBOX_AUTOCLOSE
end end
EventScript_1ABE08:: @ 81ABE08 OneIsland_KindleRoad_EventScript_HughRematch:: @ 81ABE08
trainerbattle_rematch TRAINER_BLACK_BELT_HUGH, Text_1C3943, Text_189A0A trainerbattle_rematch TRAINER_BLACK_BELT_HUGH, OneIsland_KindleRoad_Text_HughRematchIntro, OneIsland_KindleRoad_Text_HughDefeat
msgbox Text_189A13, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_HughPostBattle, MSGBOX_AUTOCLOSE
end end
OneIsland_KindleRoad_EventScript_1ABE1F:: @ 81ABE1F OneIsland_KindleRoad_EventScript_Bryce:: @ 81ABE1F
trainerbattle_single TRAINER_CAMPER_BRYCE, Text_189A53, Text_189A92 trainerbattle_single TRAINER_CAMPER_BRYCE, OneIsland_KindleRoad_Text_BryceIntro, OneIsland_KindleRoad_Text_BryceDefeat
specialvar VAR_RESULT, ShouldTryRematchBattle specialvar VAR_RESULT, ShouldTryRematchBattle
compare VAR_RESULT, TRUE compare VAR_RESULT, TRUE
goto_if_eq EventScript_1ABE46 goto_if_eq OneIsland_KindleRoad_EventScript_BryceRematch
msgbox Text_189A9F, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_BrycePostBattle, MSGBOX_AUTOCLOSE
end end
EventScript_1ABE46:: @ 81ABE46 OneIsland_KindleRoad_EventScript_BryceRematch:: @ 81ABE46
trainerbattle_rematch TRAINER_CAMPER_BRYCE, Text_1C3987, Text_189A92 trainerbattle_rematch TRAINER_CAMPER_BRYCE, OneIsland_KindleRoad_Text_BryceRematchIntro, OneIsland_KindleRoad_Text_BryceDefeat
msgbox Text_189A9F, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_BrycePostBattle, MSGBOX_AUTOCLOSE
end end
OneIsland_KindleRoad_EventScript_1ABE5D:: @ 81ABE5D OneIsland_KindleRoad_EventScript_Claire:: @ 81ABE5D
trainerbattle_single TRAINER_PICNICKER_CLAIRE, Text_189ACB, Text_189B0B trainerbattle_single TRAINER_PICNICKER_CLAIRE, OneIsland_KindleRoad_Text_ClaireIntro, OneIsland_KindleRoad_Text_ClaireDefeat
specialvar VAR_RESULT, ShouldTryRematchBattle specialvar VAR_RESULT, ShouldTryRematchBattle
compare VAR_RESULT, TRUE compare VAR_RESULT, TRUE
goto_if_eq EventScript_1ABE84 goto_if_eq OneIsland_KindleRoad_EventScript_ClaireRematch
msgbox Text_189B24, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_ClairePostBattle, MSGBOX_AUTOCLOSE
end end
EventScript_1ABE84:: @ 81ABE84 OneIsland_KindleRoad_EventScript_ClaireRematch:: @ 81ABE84
trainerbattle_rematch TRAINER_PICNICKER_CLAIRE, Text_1C39C6, Text_189B0B trainerbattle_rematch TRAINER_PICNICKER_CLAIRE, OneIsland_KindleRoad_Text_ClaireRematchIntro, OneIsland_KindleRoad_Text_ClaireDefeat
msgbox Text_189B24, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_ClairePostBattle, MSGBOX_AUTOCLOSE
end end
OneIsland_KindleRoad_EventScript_1ABE9B:: @ 81ABE9B OneIsland_KindleRoad_EventScript_Kia:: @ 81ABE9B
trainerbattle_double TRAINER_CRUSH_KIN_MIK_KIA, Text_189B4D, Text_189B84, Text_189BDE trainerbattle_double TRAINER_CRUSH_KIN_MIK_KIA, OneIsland_KindleRoad_Text_KiaIntro, OneIsland_KindleRoad_Text_KiaDefeat, OneIsland_KindleRoad_Text_KiaNotEnoughMons
specialvar VAR_RESULT, ShouldTryRematchBattle specialvar VAR_RESULT, ShouldTryRematchBattle
compare VAR_RESULT, TRUE compare VAR_RESULT, TRUE
goto_if_eq EventScript_1ABEC6 goto_if_eq OneIsland_KindleRoad_EventScript_KiaRematch
msgbox Text_189BA3, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_KiaPostBattle, MSGBOX_AUTOCLOSE
end end
EventScript_1ABEC6:: @ 81ABEC6 OneIsland_KindleRoad_EventScript_KiaRematch:: @ 81ABEC6
trainerbattle_rematch_double TRAINER_CRUSH_KIN_MIK_KIA, Text_1C3A05, Text_189B84, Text_189BDE trainerbattle_rematch_double TRAINER_CRUSH_KIN_MIK_KIA, OneIsland_KindleRoad_Text_KiaRematchIntro, OneIsland_KindleRoad_Text_KiaDefeat, OneIsland_KindleRoad_Text_KiaNotEnoughMons
msgbox Text_189BA3, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_KiaPostBattle, MSGBOX_AUTOCLOSE
end end
OneIsland_KindleRoad_EventScript_1ABEE1:: @ 81ABEE1 OneIsland_KindleRoad_EventScript_Mik:: @ 81ABEE1
trainerbattle_double TRAINER_CRUSH_KIN_MIK_KIA, Text_189C33, Text_189C62, Text_189CAB trainerbattle_double TRAINER_CRUSH_KIN_MIK_KIA, OneIsland_KindleRoad_Text_MikIntro, OneIsland_KindleRoad_Text_MikDefeat, OneIsland_KindleRoad_Text_MikNotEnoughMons
specialvar VAR_RESULT, ShouldTryRematchBattle specialvar VAR_RESULT, ShouldTryRematchBattle
compare VAR_RESULT, TRUE compare VAR_RESULT, TRUE
goto_if_eq EventScript_1ABF0C goto_if_eq OneIsland_KindleRoad_EventScript_MikRematch
msgbox Text_189C7E, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_MikPostBattle, MSGBOX_AUTOCLOSE
end end
EventScript_1ABF0C:: @ 81ABF0C OneIsland_KindleRoad_EventScript_MikRematch:: @ 81ABF0C
trainerbattle_rematch_double TRAINER_CRUSH_KIN_MIK_KIA, Text_1C3A55, Text_189C62, Text_189CAB trainerbattle_rematch_double TRAINER_CRUSH_KIN_MIK_KIA, OneIsland_KindleRoad_Text_MikRematchIntro, OneIsland_KindleRoad_Text_MikDefeat, OneIsland_KindleRoad_Text_MikNotEnoughMons
msgbox Text_189C7E, MSGBOX_AUTOCLOSE msgbox OneIsland_KindleRoad_Text_MikPostBattle, MSGBOX_AUTOCLOSE
end end
OneIsland_TreasureBeach_EventScript_1ABF27:: @ 81ABF27 OneIsland_TreasureBeach_EventScript_Amara:: @ 81ABF27
trainerbattle_single TRAINER_SWIMMER_FEMALE_AMARA, Text_189D5A, Text_189D8B trainerbattle_single TRAINER_SWIMMER_FEMALE_AMARA, OneIsland_TreasureBeach_Text_AmaraIntro, OneIsland_TreasureBeach_Text_AmaraDefeat
specialvar VAR_RESULT, ShouldTryRematchBattle specialvar VAR_RESULT, ShouldTryRematchBattle
compare VAR_RESULT, TRUE compare VAR_RESULT, TRUE
goto_if_eq EventScript_1ABF4E goto_if_eq OneIsland_TreasureBeach_EventScript_AmaraRematch
msgbox Text_189DA3, MSGBOX_AUTOCLOSE msgbox OneIsland_TreasureBeach_Text_AmaraPostBattle, MSGBOX_AUTOCLOSE
end end
EventScript_1ABF4E:: @ 81ABF4E OneIsland_TreasureBeach_EventScript_AmaraRematch:: @ 81ABF4E
trainerbattle_rematch TRAINER_SWIMMER_FEMALE_AMARA, Text_1C3773, Text_189D8B trainerbattle_rematch TRAINER_SWIMMER_FEMALE_AMARA, OneIsland_TreasureBeach_Text_AmaraRematchIntro, OneIsland_TreasureBeach_Text_AmaraDefeat
msgbox Text_189DA3, MSGBOX_AUTOCLOSE msgbox OneIsland_TreasureBeach_Text_AmaraPostBattle, MSGBOX_AUTOCLOSE
end end
ThreeIsland_BondBridge_EventScript_1ABF65:: @ 81ABF65 ThreeIsland_BondBridge_EventScript_1ABF65:: @ 81ABF65
+14 -14
View File
@@ -707,60 +707,60 @@ Route24_Text_CaleRematchIntro:: @ 81C36DA
.string "…But, you're welcome to battle with\n" .string "…But, you're welcome to battle with\n"
.string "us again.$" .string "us again.$"
Text_1C3773:: @ 81C3773 OneIsland_TreasureBeach_Text_AmaraRematchIntro:: @ 81C3773
.string "Lying back, rocked by the waves…\n" .string "Lying back, rocked by the waves…\n"
.string "I don't notice time slipping by…$" .string "I don't notice time slipping by…$"
Text_1C37B5:: @ 81C37B5 OneIsland_KindleRoad_Text_MariaRematchIntro:: @ 81C37B5
.string "The weather's gorgeous!\n" .string "The weather's gorgeous!\n"
.string "I'll try not to spoil it.$" .string "I'll try not to spoil it.$"
Text_1C37E7:: @ 81C37E7 OneIsland_KindleRoad_Text_AbigailRematchIntro:: @ 81C37E7
.string "My sunburn is starting to hurt…$" .string "My sunburn is starting to hurt…$"
Text_1C3807:: @ 81C3807 OneIsland_KindleRoad_Text_FinnRematchIntro:: @ 81C3807
.string "The fire bird's mountain casts\n" .string "The fire bird's mountain casts\n"
.string "a huge shadow…$" .string "a huge shadow…$"
Text_1C3835:: @ 81C3835 OneIsland_KindleRoad_Text_GarrettRematchIntro:: @ 81C3835
.string "I have this strong feeling that\n" .string "I have this strong feeling that\n"
.string "I can win this time!$" .string "I can win this time!$"
Text_1C386A:: @ 81C386A OneIsland_KindleRoad_Text_TommyRematchIntro:: @ 81C386A
.string "Wait! Wait a second!\n" .string "Wait! Wait a second!\n"
.string "I'm sure I've hooked a big one!$" .string "I'm sure I've hooked a big one!$"
Text_1C389F:: @ 81C389F OneIsland_KindleRoad_Text_SharonRematchIntro:: @ 81C389F
.string "You'll help me out with my\n" .string "You'll help me out with my\n"
.string "training again?$" .string "training again?$"
Text_1C38CA:: @ 81C38CA OneIsland_KindleRoad_Text_TanyaRematchIntro:: @ 81C38CA
.string "We haven't missed a single day of\n" .string "We haven't missed a single day of\n"
.string "training yet!$" .string "training yet!$"
Text_1C38FA:: @ 81C38FA OneIsland_KindleRoad_Text_SheaRematchIntro:: @ 81C38FA
.string "Every morning, before breakfast,\n" .string "Every morning, before breakfast,\n"
.string "I swim around this island…\l" .string "I swim around this island…\l"
.string "Three times!$" .string "Three times!$"
Text_1C3943:: @ 81C3943 OneIsland_KindleRoad_Text_HughRematchIntro:: @ 81C3943
.string "Dress appropriately for battle!\n" .string "Dress appropriately for battle!\n"
.string "Lose that frivolous outfit, I said!$" .string "Lose that frivolous outfit, I said!$"
Text_1C3987:: @ 81C3987 OneIsland_KindleRoad_Text_BryceRematchIntro:: @ 81C3987
.string "You know, everything tastes great\n" .string "You know, everything tastes great\n"
.string "when you're out in the wild.$" .string "when you're out in the wild.$"
Text_1C39C6:: @ 81C39C6 OneIsland_KindleRoad_Text_ClaireRematchIntro:: @ 81C39C6
.string "I ate too much again, so will you\n" .string "I ate too much again, so will you\n"
.string "battle us for some exercise?$" .string "battle us for some exercise?$"
Text_1C3A05:: @ 81C3A05 OneIsland_KindleRoad_Text_KiaRematchIntro:: @ 81C3A05
.string "KIA: My big brother and I make\n" .string "KIA: My big brother and I make\n"
.string "an awesome combination!\p" .string "an awesome combination!\p"
.string "We won't lose this time!$" .string "We won't lose this time!$"
Text_1C3A55:: @ 81C3A55 OneIsland_KindleRoad_Text_MikRematchIntro:: @ 81C3A55
.string "MIK: Together with KIA, we're\n" .string "MIK: Together with KIA, we're\n"
.string "afraid of nothing!\p" .string "afraid of nothing!\p"
.string "We'll prove it to you this time!$" .string "We'll prove it to you this time!$"
+5 -1
View File
@@ -14,9 +14,13 @@
// gTileset_Mart // gTileset_Mart
#define METATILE_Mart_CounterMid_Top 0x2BF #define METATILE_Mart_CounterMid_Top 0x2BF
#define METATILE_Mart_CounterMid_Bottom 0x2C0 #define METATILE_Mart_CounterMid_Bottom 0x2C0
// gTileset_PokemonCenter // gTileset_PokemonCenter
#define METATILE_PokemonCenter_NetworkMachine_ScreenLeft_On 0x35A
#define METATILE_PokemonCenter_NetworkMachine_ScreenRight_On 0x35B
#define METATILE_PokemonCenter_NetworkMachine_Ruby 0x35D
#define METATILE_PokemonCenter_NetworkMachine_Sapphire 0x35F
#define METATILE_PokemonCenter_Escalator_Top_Normal 0x2E4 #define METATILE_PokemonCenter_Escalator_Top_Normal 0x2E4
#define METATILE_PokemonCenter_Escalator_Top_Transition1 0x317 #define METATILE_PokemonCenter_Escalator_Top_Transition1 0x317
#define METATILE_PokemonCenter_Escalator_Top_Transition2 0x315 #define METATILE_PokemonCenter_Escalator_Top_Transition2 0x315