Subnautica: add missed PDA

This commit is contained in:
Fabian Dill 2022-07-21 09:57:38 +02:00 committed by Fabian Dill
parent 17351021b3
commit 53a995372f
3 changed files with 8 additions and 4 deletions

View File

@ -115,7 +115,7 @@ item_table: Dict[int, ItemDict] = {
'name': 'Light Stick Fragment',
'tech_type': 'TechlightFragment'},
35026: {'classification': ItemClassification.progression,
'count': 3,
'count': 4,
'name': 'Mobile Vehicle Bay Fragment',
'tech_type': 'ConstructorFragment'},
35027: {'classification': ItemClassification.progression,

View File

@ -560,8 +560,12 @@ location_table: Dict[int, LocationDict] = {
33129: {'can_slip_through': False,
'name': 'Floating Island - Cave Entrance PDA',
'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
payload = {location_id: location_data["position"] for location_id, location_data in location_table.items()}
import json

View File

@ -41,7 +41,7 @@ class SubnauticaWorld(World):
location_name_to_id = all_locations
options = Options.options
data_version = 3
data_version = 4
required_client_version = (0, 3, 3)
prefill_items: List[Item]