Subnautica: add missed PDA
This commit is contained in:
parent
17351021b3
commit
53a995372f
|
@ -115,7 +115,7 @@ item_table: Dict[int, ItemDict] = {
|
||||||
'name': 'Light Stick Fragment',
|
'name': 'Light Stick Fragment',
|
||||||
'tech_type': 'TechlightFragment'},
|
'tech_type': 'TechlightFragment'},
|
||||||
35026: {'classification': ItemClassification.progression,
|
35026: {'classification': ItemClassification.progression,
|
||||||
'count': 3,
|
'count': 4,
|
||||||
'name': 'Mobile Vehicle Bay Fragment',
|
'name': 'Mobile Vehicle Bay Fragment',
|
||||||
'tech_type': 'ConstructorFragment'},
|
'tech_type': 'ConstructorFragment'},
|
||||||
35027: {'classification': ItemClassification.progression,
|
35027: {'classification': ItemClassification.progression,
|
||||||
|
|
|
@ -560,8 +560,12 @@ location_table: Dict[int, LocationDict] = {
|
||||||
33129: {'can_slip_through': False,
|
33129: {'can_slip_through': False,
|
||||||
'name': 'Floating Island - Cave Entrance PDA',
|
'name': 'Floating Island - Cave Entrance PDA',
|
||||||
'need_laser_cutter': False,
|
'need_laser_cutter': False,
|
||||||
'position': {'x': -748.9, 'y': 14.4, 'z': -1179.5}}}
|
'position': {'x': -748.9, 'y': 14.4, 'z': -1179.5}},
|
||||||
|
33130: {'can_slip_through': False,
|
||||||
|
'name': 'Degasi Seabase - Jellyshroom Cave - Outside PDA',
|
||||||
|
'need_laser_cutter': False,
|
||||||
|
'position': {'x': -83.2, 'y': -276.4, 'z': -345.5}},
|
||||||
|
}
|
||||||
if False: # turn to True to export for Subnautica mod
|
if False: # turn to True to export for Subnautica mod
|
||||||
payload = {location_id: location_data["position"] for location_id, location_data in location_table.items()}
|
payload = {location_id: location_data["position"] for location_id, location_data in location_table.items()}
|
||||||
import json
|
import json
|
||||||
|
|
|
@ -41,7 +41,7 @@ class SubnauticaWorld(World):
|
||||||
location_name_to_id = all_locations
|
location_name_to_id = all_locations
|
||||||
options = Options.options
|
options = Options.options
|
||||||
|
|
||||||
data_version = 3
|
data_version = 4
|
||||||
required_client_version = (0, 3, 3)
|
required_client_version = (0, 3, 3)
|
||||||
|
|
||||||
prefill_items: List[Item]
|
prefill_items: List[Item]
|
||||||
|
|
Loading…
Reference in New Issue