Skip to content

Commit 3b3ad75

Browse files
TRPG0FlySniper
authored andcommitted
Hylics 2: Add more missing locations (ArchipelagoMW#2219)
Adds two missing locations in Sage Labyrinth and their items
1 parent 42018b2 commit 3b3ad75

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

worlds/hylics2/Items.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ class ItemDict(TypedDict):
9898
'count': 4,
9999
'name': 'MULTI-JUICE'},
100100
200651: {'classification': ItemClassification.filler,
101-
'count': 1,
101+
'count': 3,
102102
'name': 'MULTI STEM CELL'},
103103
200652: {'classification': ItemClassification.filler,
104104
'count': 6,

worlds/hylics2/Locations.py

+4
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,10 @@ class LocationDict(TypedDict, total=False):
220220
'region': 15},
221221
200754: {'name': "Sage Labyrinth: 2F Sarcophagus",
222222
'region': 15},
223+
200786: {'name': "Sage Labyrinth: Boss Secret Chest 1",
224+
'region': 15},
225+
200787: {'name': "Sage Labyrinth: Boss Secret Chest 2",
226+
'region': 15},
223227
200725: {'name': "Sage Labyrinth: Motor Hunter Sarcophagus",
224228
'region': 15},
225229
200726: {'name': "Sage Labyrinth: Sage Item 1",

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 = 2
39+
data_version = 3
4040

4141
start_location = "Waynehouse"
4242

0 commit comments

Comments
 (0)