Subnautica: Allow either utility room for progression

This commit is contained in:
Fabian Dill 2023-02-26 10:15:40 +01:00 committed by Fabian Dill
parent d6f3b27695
commit 0733775f2c
2 changed files with 4 additions and 5 deletions

View File

@ -223,7 +223,7 @@ item_table: Dict[int, ItemDict] = {
'name': 'Observatory', 'name': 'Observatory',
'tech_type': 'BaseObservatory'}, 'tech_type': 'BaseObservatory'},
35053: {'classification': ItemClassification.progression, 35053: {'classification': ItemClassification.progression,
'count': 2, 'count': 1,
'name': 'Multipurpose Room', 'name': 'Multipurpose Room',
'tech_type': 'BaseRoom'}, 'tech_type': 'BaseRoom'},
35054: {'classification': ItemClassification.useful, 35054: {'classification': ItemClassification.useful,
@ -338,12 +338,11 @@ item_table: Dict[int, ItemDict] = {
'count': 1, 'count': 1,
'name': 'Ultra High Capacity Tank', 'name': 'Ultra High Capacity Tank',
'tech_type': 'HighCapacityTank'}, 'tech_type': 'HighCapacityTank'},
# these currently unlock through some special sauce in Subnautica, unlike any established other
# keeping here for later
35082: {'classification': ItemClassification.progression, 35082: {'classification': ItemClassification.progression,
'count': 0, 'count': 1,
'name': 'Large Room', 'name': 'Large Room',
'tech_type': 'BaseLargeRoom'}, 'tech_type': 'BaseLargeRoom'},
# awarded with their rooms, keeping that as-is as they're cosmetic
35083: {'classification': ItemClassification.filler, 35083: {'classification': ItemClassification.filler,
'count': 0, 'count': 0,
'name': 'Large Room Glass Dome', 'name': 'Large Room Glass Dome',

View File

@ -42,7 +42,7 @@ class SubnauticaWorld(World):
option_definitions = Options.options option_definitions = Options.options
data_version = 9 data_version = 9
required_client_version = (0, 3, 8) required_client_version = (0, 3, 9)
creatures_to_scan: List[str] creatures_to_scan: List[str]