Skip to content

Commit 566fd42

Browse files
TRPG0FlySniper
authored andcommitted
Hylics 2: Add missing location (ArchipelagoMW#1917)
* Hylics 2: Add missing location * Hylics 2: Change data_version
1 parent c03f3bf commit 566fd42

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

worlds/hylics2/Items.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class ItemDict(TypedDict):
2323
'count': 6,
2424
'name': 'SOUL SPONGE'},
2525
200626: {'classification': ItemClassification.useful,
26-
'count': 6,
26+
'count': 7,
2727
'name': 'MUSCLE APPLIQUE'},
2828
200627: {'classification': ItemClassification.filler,
2929
'count': 1,

worlds/hylics2/Locations.py

+2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ class LocationDict(TypedDict, total=False):
3636
'region': 4},
3737
200635: {'name': "New Muldul: Pot near Vault",
3838
'region': 4},
39+
200785: {'name': "New Muldul: Pot above Vault",
40+
'region': 4},
3941
200636: {'name': "New Muldul: Underground Pot",
4042
'region': 4},
4143
200637: {'name': "New Muldul: Underground Chest",

worlds/hylics2/Rules.py

+2
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@ def set_rules(hylics2world):
105105
lambda state: state._hylics2_has_upper_house_key(player))
106106
add_rule(world.get_location("New Muldul: Upper House Chest 2", player),
107107
lambda state: state._hylics2_has_upper_house_key(player))
108+
add_rule(world.get_location("New Muldul: Pot above Vault", player),
109+
lambda state: state._hylics2_can_air_dash(player))
108110

109111
# New Muldul Vault
110112
add_rule(world.get_location("New Muldul: Rescued Blerol 1", player),

worlds/hylics2/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class Hylics2World(World):
3636

3737
topology_present: bool = True
3838

39-
data_version = 1
39+
data_version = 2
4040

4141
start_location = "Waynehouse"
4242

0 commit comments

Comments
 (0)