Skip to content

Commit 4e7531b

Browse files
committed
Add alternate travel location for Icelands that won't hang Gardevoir hunts.
1 parent 32f7fa3 commit 4e7531b

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

SerialPrograms/Source/PokemonLA/PokemonLA_TravelLocations.cpp

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,15 @@ TravelLocations::TravelLocations()
151151
"Alabaster Icelands - Pearl Settlement",
152152
MapRegion::ICELANDS, 0, 2, nullptr
153153
)
154+
, Icelands_PearlSettlement_SW(
155+
"icelands-settlement-sw",
156+
"Alabaster Icelands - Pearl Settlement (SW of landing spot)",
157+
MapRegion::ICELANDS, 0, 2, [](VideoStream& stream, SwitchControllerContext& context){
158+
change_mount(stream, context, MountState::BRAVIARY_ON);
159+
pbf_move_left_joystick(context, 192, 255, 160, 0);
160+
pbf_mash_button(context, BUTTON_B, 2 * TICKS_PER_SECOND);
161+
}
162+
)
154163
, Icelands_Arena(
155164
"icelands-arena",
156165
"Alabaster Icelands - Icepeak Arena",
@@ -179,6 +188,7 @@ TravelLocations::TravelLocations()
179188
add_location(Icelands_Snowfields);
180189
add_location(Icelands_Icepeak);
181190
add_location(Icelands_PearlSettlement);
191+
add_location(Icelands_PearlSettlement_SW);
182192
add_location(Icelands_Arena);
183193
}
184194

SerialPrograms/Source/PokemonLA/PokemonLA_TravelLocations.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ class TravelLocations{
7676
const TravelLocation Icelands_Snowfields;
7777
const TravelLocation Icelands_Icepeak;
7878
const TravelLocation Icelands_PearlSettlement;
79+
const TravelLocation Icelands_PearlSettlement_SW;
7980
const TravelLocation Icelands_Arena;
8081

8182

0 commit comments

Comments
 (0)