Subnautica: fix missed item and correct other item pool counts to fit it
This commit is contained in:
parent
bb386d3bd7
commit
e204a0fce6
|
@ -139,7 +139,7 @@ item_table: Dict[int, ItemDict] = {
|
||||||
'name': 'Power Transmitter Fragment',
|
'name': 'Power Transmitter Fragment',
|
||||||
'tech_type': 'PowerTransmitterFragment'},
|
'tech_type': 'PowerTransmitterFragment'},
|
||||||
35032: {'classification': ItemClassification.progression,
|
35032: {'classification': ItemClassification.progression,
|
||||||
'count': 4,
|
'count': 5,
|
||||||
'name': 'Prawn Suit Fragment',
|
'name': 'Prawn Suit Fragment',
|
||||||
'tech_type': 'ExosuitFragment'},
|
'tech_type': 'ExosuitFragment'},
|
||||||
35033: {'classification': ItemClassification.useful,
|
35033: {'classification': ItemClassification.useful,
|
||||||
|
@ -163,7 +163,7 @@ item_table: Dict[int, ItemDict] = {
|
||||||
'name': 'Scanner Room Fragment',
|
'name': 'Scanner Room Fragment',
|
||||||
'tech_type': 'BaseMapRoomFragment'},
|
'tech_type': 'BaseMapRoomFragment'},
|
||||||
35038: {'classification': ItemClassification.progression,
|
35038: {'classification': ItemClassification.progression,
|
||||||
'count': 5,
|
'count': 4,
|
||||||
'name': 'Seamoth Fragment',
|
'name': 'Seamoth Fragment',
|
||||||
'tech_type': 'SeamothFragment'},
|
'tech_type': 'SeamothFragment'},
|
||||||
35039: {'classification': ItemClassification.progression,
|
35039: {'classification': ItemClassification.progression,
|
||||||
|
@ -203,9 +203,9 @@ item_table: Dict[int, ItemDict] = {
|
||||||
'name': 'Picture Frame',
|
'name': 'Picture Frame',
|
||||||
'tech_type': 'PictureFrameFragment'},
|
'tech_type': 'PictureFrameFragment'},
|
||||||
35048: {'classification': ItemClassification.filler,
|
35048: {'classification': ItemClassification.filler,
|
||||||
'count': 2,
|
'count': 1,
|
||||||
'name': 'Bench Fragment',
|
'name': 'Bench',
|
||||||
'tech_type': 'BenchFragment'},
|
'tech_type': 'Bench'},
|
||||||
35049: {'classification': ItemClassification.filler,
|
35049: {'classification': ItemClassification.filler,
|
||||||
'count': 1,
|
'count': 1,
|
||||||
'name': 'Basic Plant Pot',
|
'name': 'Basic Plant Pot',
|
||||||
|
@ -333,7 +333,12 @@ item_table: Dict[int, ItemDict] = {
|
||||||
35080: {'classification': ItemClassification.filler,
|
35080: {'classification': ItemClassification.filler,
|
||||||
'count': 1,
|
'count': 1,
|
||||||
'name': 'Water Filtration Machine',
|
'name': 'Water Filtration Machine',
|
||||||
'tech_type': 'BaseFiltrationMachine'}}
|
'tech_type': 'BaseFiltrationMachine'},
|
||||||
|
35081: {'classification': ItemClassification.progression,
|
||||||
|
'count': 1,
|
||||||
|
'name': 'Ultra High Capacity Tank',
|
||||||
|
'tech_type': 'HighCapacityTank'},
|
||||||
|
}
|
||||||
|
|
||||||
advancement_item_names: Set[str] = set()
|
advancement_item_names: Set[str] = set()
|
||||||
non_advancement_item_names: Set[str] = set()
|
non_advancement_item_names: Set[str] = set()
|
||||||
|
|
|
@ -41,7 +41,7 @@ class SubnauticaWorld(World):
|
||||||
location_name_to_id = all_locations
|
location_name_to_id = all_locations
|
||||||
option_definitions = Options.options
|
option_definitions = Options.options
|
||||||
|
|
||||||
data_version = 6
|
data_version = 7
|
||||||
required_client_version = (0, 3, 5)
|
required_client_version = (0, 3, 5)
|
||||||
|
|
||||||
prefill_items: List[Item]
|
prefill_items: List[Item]
|
||||||
|
|
Loading…
Reference in New Issue