Hylics 2: Add more missing locations (#2219)
Adds two missing locations in Sage Labyrinth and their items
This commit is contained in:
parent
b41a1e69b4
commit
5af47425b0
|
@ -98,7 +98,7 @@ item_table: Dict[int, ItemDict] = {
|
||||||
'count': 4,
|
'count': 4,
|
||||||
'name': 'MULTI-JUICE'},
|
'name': 'MULTI-JUICE'},
|
||||||
200651: {'classification': ItemClassification.filler,
|
200651: {'classification': ItemClassification.filler,
|
||||||
'count': 1,
|
'count': 3,
|
||||||
'name': 'MULTI STEM CELL'},
|
'name': 'MULTI STEM CELL'},
|
||||||
200652: {'classification': ItemClassification.filler,
|
200652: {'classification': ItemClassification.filler,
|
||||||
'count': 6,
|
'count': 6,
|
||||||
|
|
|
@ -220,6 +220,10 @@ location_table: Dict[int, LocationDict] = {
|
||||||
'region': 15},
|
'region': 15},
|
||||||
200754: {'name': "Sage Labyrinth: 2F Sarcophagus",
|
200754: {'name': "Sage Labyrinth: 2F Sarcophagus",
|
||||||
'region': 15},
|
'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",
|
200725: {'name': "Sage Labyrinth: Motor Hunter Sarcophagus",
|
||||||
'region': 15},
|
'region': 15},
|
||||||
200726: {'name': "Sage Labyrinth: Sage Item 1",
|
200726: {'name': "Sage Labyrinth: Sage Item 1",
|
||||||
|
|
|
@ -36,7 +36,7 @@ class Hylics2World(World):
|
||||||
|
|
||||||
topology_present: bool = True
|
topology_present: bool = True
|
||||||
|
|
||||||
data_version = 2
|
data_version = 3
|
||||||
|
|
||||||
start_location = "Waynehouse"
|
start_location = "Waynehouse"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue