Skip to content

Hylics 2: Add more missing locations #2219

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Sep 24, 2023
2 changes: 1 addition & 1 deletion worlds/hylics2/Items.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class ItemDict(TypedDict):
'count': 4,
'name': 'MULTI-JUICE'},
200651: {'classification': ItemClassification.filler,
'count': 1,
'count': 3,
'name': 'MULTI STEM CELL'},
200652: {'classification': ItemClassification.filler,
'count': 6,
Expand Down
4 changes: 4 additions & 0 deletions worlds/hylics2/Locations.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,10 @@ class LocationDict(TypedDict, total=False):
'region': 15},
200754: {'name': "Sage Labyrinth: 2F Sarcophagus",
'region': 15},
200786: {'name': "Sage Labyrinth: Boss Secret Chest 1",
'region': 15},
200787: {'name': "Sage Labyrinth: Boss Secret Chest 2",
'region': 15},
200725: {'name': "Sage Labyrinth: Motor Hunter Sarcophagus",
'region': 15},
200726: {'name': "Sage Labyrinth: Sage Item 1",
Expand Down
2 changes: 1 addition & 1 deletion worlds/hylics2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class Hylics2World(World):

topology_present: bool = True

data_version = 2
data_version = 3

start_location = "Waynehouse"

Expand Down