Created
February 24, 2023 21:51
-
-
Save h8rt3rmin8r/0d0a22d9aaca43791a638930f913fb25 to your computer and use it in GitHub Desktop.
JSON Schema for decoded save file data from No Man's Sky (merged schema from various game versions using genson)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "http://json-schema.org/schema#", | |
| "type": "object", | |
| "properties": { | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "Platform": { | |
| "type": "string" | |
| }, | |
| "PlayerStateData": { | |
| "type": "object", | |
| "properties": { | |
| "UniverseAddress": { | |
| "type": "object", | |
| "properties": { | |
| "RealityIndex": { | |
| "type": "integer" | |
| }, | |
| "GalacticAddress": { | |
| "type": "object", | |
| "properties": { | |
| "VoxelX": { | |
| "type": "integer" | |
| }, | |
| "VoxelY": { | |
| "type": "integer" | |
| }, | |
| "VoxelZ": { | |
| "type": "integer" | |
| }, | |
| "SolarSystemIndex": { | |
| "type": "integer" | |
| }, | |
| "PlanetIndex": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "PlanetIndex", | |
| "SolarSystemIndex", | |
| "VoxelX", | |
| "VoxelY", | |
| "VoxelZ" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "GalacticAddress", | |
| "RealityIndex" | |
| ] | |
| }, | |
| "PreviousUniverseAddress": { | |
| "type": "object", | |
| "properties": { | |
| "RealityIndex": { | |
| "type": "integer" | |
| }, | |
| "GalacticAddress": { | |
| "type": "object", | |
| "properties": { | |
| "VoxelX": { | |
| "type": "integer" | |
| }, | |
| "VoxelY": { | |
| "type": "integer" | |
| }, | |
| "VoxelZ": { | |
| "type": "integer" | |
| }, | |
| "SolarSystemIndex": { | |
| "type": "integer" | |
| }, | |
| "PlanetIndex": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "PlanetIndex", | |
| "SolarSystemIndex", | |
| "VoxelX", | |
| "VoxelY", | |
| "VoxelZ" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "GalacticAddress", | |
| "RealityIndex" | |
| ] | |
| }, | |
| "HomeRealityIteration": { | |
| "type": "integer" | |
| }, | |
| "Inventory": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "Inventory_TechOnly": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventorySpecialSlotType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventorySpecialSlotType" | |
| ] | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Index", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "Inventory_Cargo": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "ShipInventory": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array" | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array" | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "WeaponInventory": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "BaseStatID": { | |
| "type": "string" | |
| }, | |
| "Value": { | |
| "type": "number" | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatID", | |
| "Value" | |
| ] | |
| } | |
| }, | |
| "SpecialSlots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventorySpecialSlotType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventorySpecialSlotType" | |
| ] | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Index", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "Multitools": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Layout": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "integer" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Level", | |
| "Seed", | |
| "Slots" | |
| ] | |
| }, | |
| "Store": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "BaseStatID": { | |
| "type": "string" | |
| }, | |
| "Value": { | |
| "type": "number" | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatID", | |
| "Value" | |
| ] | |
| } | |
| }, | |
| "SpecialSlots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventorySpecialSlotType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventorySpecialSlotType" | |
| ] | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Index", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "IsLarge": { | |
| "type": "boolean" | |
| }, | |
| "PrimaryMode": { | |
| "type": "integer" | |
| }, | |
| "SecondaryMode": { | |
| "type": "integer" | |
| }, | |
| "UseLegacyColours": { | |
| "type": "boolean" | |
| }, | |
| "Resource": { | |
| "type": "object", | |
| "properties": { | |
| "Filename": { | |
| "type": "string" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "AltId": { | |
| "type": "string" | |
| }, | |
| "ProceduralTexture": { | |
| "type": "object", | |
| "properties": { | |
| "Samplers": { | |
| "type": "array" | |
| } | |
| }, | |
| "required": [ | |
| "Samplers" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "AltId", | |
| "Filename", | |
| "ProceduralTexture", | |
| "Seed" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "IsLarge", | |
| "Layout", | |
| "Name", | |
| "PrimaryMode", | |
| "Resource", | |
| "SecondaryMode", | |
| "Seed", | |
| "Store", | |
| "UseLegacyColours" | |
| ] | |
| } | |
| }, | |
| "ActiveMultioolIndex": { | |
| "type": "integer" | |
| }, | |
| "ByteBeatLibrary": { | |
| "type": "object", | |
| "properties": { | |
| "MySongs": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "RequiredSpecialId": { | |
| "type": "string" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "LocID": { | |
| "type": "string" | |
| }, | |
| "AuthorOnlineID": { | |
| "type": "string" | |
| }, | |
| "AuthorUsername": { | |
| "type": "string" | |
| }, | |
| "AuthorPlatform": { | |
| "type": "string" | |
| }, | |
| "Data": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "AuthorOnlineID", | |
| "AuthorPlatform", | |
| "AuthorUsername", | |
| "Data", | |
| "Id", | |
| "LocID", | |
| "Name", | |
| "RequiredSpecialId" | |
| ] | |
| } | |
| }, | |
| "Playlist": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| }, | |
| "Shuffle": { | |
| "type": "boolean" | |
| }, | |
| "AutoplayOnFoot": { | |
| "type": "boolean" | |
| }, | |
| "AutoplayInShip": { | |
| "type": "boolean" | |
| }, | |
| "AutoplayInVehicle": { | |
| "type": "boolean" | |
| } | |
| }, | |
| "required": [ | |
| "AutoplayInShip", | |
| "AutoplayInVehicle", | |
| "AutoplayOnFoot", | |
| "MySongs", | |
| "Playlist", | |
| "Shuffle" | |
| ] | |
| }, | |
| "Pets": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Scale": { | |
| "type": "number" | |
| }, | |
| "CreatureID": { | |
| "type": "string" | |
| }, | |
| "Descriptors": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| }, | |
| "CreatureSeed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "CreatureSecondarySeed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "SpeciesSeed": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "GenusSeed": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "CustomSpeciesName": { | |
| "type": "string" | |
| }, | |
| "Predator": { | |
| "type": "boolean" | |
| }, | |
| "UA": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "AllowUnmodifiedReroll": { | |
| "type": "boolean" | |
| }, | |
| "ColourBaseSeed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "BoneScaleSeed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "HasFur": { | |
| "type": "boolean" | |
| }, | |
| "Biome": { | |
| "type": "object", | |
| "properties": { | |
| "Biome": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "Biome" | |
| ] | |
| }, | |
| "CreatureType": { | |
| "type": "object", | |
| "properties": { | |
| "CreatureType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "CreatureType" | |
| ] | |
| }, | |
| "BirthTime": { | |
| "type": "integer" | |
| }, | |
| "LastEggTime": { | |
| "type": "integer" | |
| }, | |
| "LastTrustIncreaseTime": { | |
| "type": "integer" | |
| }, | |
| "LastTrustDecreaseTime": { | |
| "type": "integer" | |
| }, | |
| "EggModified": { | |
| "type": "boolean" | |
| }, | |
| "HasBeenSummoned": { | |
| "type": "boolean" | |
| }, | |
| "CustomName": { | |
| "type": "string" | |
| }, | |
| "Trust": { | |
| "type": "number" | |
| }, | |
| "SenderData": { | |
| "type": "object", | |
| "properties": { | |
| "LID": { | |
| "type": "string" | |
| }, | |
| "UID": { | |
| "type": "string" | |
| }, | |
| "USN": { | |
| "type": "string" | |
| }, | |
| "PTK": { | |
| "type": "string" | |
| }, | |
| "TS": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "LID", | |
| "PTK", | |
| "TS", | |
| "UID", | |
| "USN" | |
| ] | |
| }, | |
| "Traits": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "Moods": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "AllowUnmodifiedReroll", | |
| "Biome", | |
| "BirthTime", | |
| "BoneScaleSeed", | |
| "ColourBaseSeed", | |
| "CreatureID", | |
| "CreatureSecondarySeed", | |
| "CreatureSeed", | |
| "CreatureType", | |
| "CustomName", | |
| "CustomSpeciesName", | |
| "Descriptors", | |
| "EggModified", | |
| "GenusSeed", | |
| "HasBeenSummoned", | |
| "HasFur", | |
| "LastEggTime", | |
| "LastTrustDecreaseTime", | |
| "LastTrustIncreaseTime", | |
| "Moods", | |
| "Predator", | |
| "Scale", | |
| "SenderData", | |
| "SpeciesSeed", | |
| "Traits", | |
| "Trust", | |
| "UA" | |
| ] | |
| } | |
| }, | |
| "Eggs": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Scale": { | |
| "type": "number" | |
| }, | |
| "CreatureID": { | |
| "type": "string" | |
| }, | |
| "Descriptors": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| }, | |
| "CreatureSeed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "CreatureSecondarySeed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "SpeciesSeed": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "GenusSeed": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "CustomSpeciesName": { | |
| "type": "string" | |
| }, | |
| "Predator": { | |
| "type": "boolean" | |
| }, | |
| "UA": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "AllowUnmodifiedReroll": { | |
| "type": "boolean" | |
| }, | |
| "ColourBaseSeed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "BoneScaleSeed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "HasFur": { | |
| "type": "boolean" | |
| }, | |
| "Biome": { | |
| "type": "object", | |
| "properties": { | |
| "Biome": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "Biome" | |
| ] | |
| }, | |
| "CreatureType": { | |
| "type": "object", | |
| "properties": { | |
| "CreatureType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "CreatureType" | |
| ] | |
| }, | |
| "BirthTime": { | |
| "type": "integer" | |
| }, | |
| "LastEggTime": { | |
| "type": "integer" | |
| }, | |
| "LastTrustIncreaseTime": { | |
| "type": "integer" | |
| }, | |
| "LastTrustDecreaseTime": { | |
| "type": "integer" | |
| }, | |
| "EggModified": { | |
| "type": "boolean" | |
| }, | |
| "HasBeenSummoned": { | |
| "type": "boolean" | |
| }, | |
| "CustomName": { | |
| "type": "string" | |
| }, | |
| "Trust": { | |
| "type": "number" | |
| }, | |
| "SenderData": { | |
| "type": "object", | |
| "properties": { | |
| "LID": { | |
| "type": "string" | |
| }, | |
| "UID": { | |
| "type": "string" | |
| }, | |
| "USN": { | |
| "type": "string" | |
| }, | |
| "PTK": { | |
| "type": "string" | |
| }, | |
| "TS": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "LID", | |
| "PTK", | |
| "TS", | |
| "UID", | |
| "USN" | |
| ] | |
| }, | |
| "Traits": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "Moods": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "AllowUnmodifiedReroll", | |
| "Biome", | |
| "BirthTime", | |
| "BoneScaleSeed", | |
| "ColourBaseSeed", | |
| "CreatureID", | |
| "CreatureSecondarySeed", | |
| "CreatureSeed", | |
| "CreatureType", | |
| "CustomName", | |
| "CustomSpeciesName", | |
| "Descriptors", | |
| "EggModified", | |
| "GenusSeed", | |
| "HasBeenSummoned", | |
| "HasFur", | |
| "LastEggTime", | |
| "LastTrustDecreaseTime", | |
| "LastTrustIncreaseTime", | |
| "Moods", | |
| "Predator", | |
| "Scale", | |
| "SenderData", | |
| "SpeciesSeed", | |
| "Traits", | |
| "Trust", | |
| "UA" | |
| ] | |
| } | |
| }, | |
| "PetAccessoryCustomisation": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Data": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "SelectedPreset": { | |
| "type": "string" | |
| }, | |
| "CustomData": { | |
| "type": "object", | |
| "properties": { | |
| "DescriptorGroups": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| }, | |
| "Colours": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Palette": { | |
| "type": "object", | |
| "properties": { | |
| "Palette": { | |
| "type": "string" | |
| }, | |
| "ColourAlt": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "ColourAlt", | |
| "Palette" | |
| ] | |
| }, | |
| "Colour": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "Colour", | |
| "Palette" | |
| ] | |
| } | |
| }, | |
| "TextureOptions": { | |
| "type": "array" | |
| }, | |
| "BoneScales": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "BoneName": { | |
| "type": "string" | |
| }, | |
| "Scale": { | |
| "type": "number" | |
| } | |
| }, | |
| "required": [ | |
| "BoneName", | |
| "Scale" | |
| ] | |
| } | |
| }, | |
| "Scale": { | |
| "type": "number" | |
| } | |
| }, | |
| "required": [ | |
| "BoneScales", | |
| "Colours", | |
| "DescriptorGroups", | |
| "Scale", | |
| "TextureOptions" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "CustomData", | |
| "SelectedPreset" | |
| ] | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "Data" | |
| ] | |
| } | |
| }, | |
| "UnlockedPetSlots": { | |
| "type": "array", | |
| "items": { | |
| "type": "boolean" | |
| } | |
| }, | |
| "GraveInventory": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array" | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array" | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "SpawnGrave": { | |
| "type": "boolean" | |
| }, | |
| "SpaceGrave": { | |
| "type": "boolean" | |
| }, | |
| "GraveUniverseAddress": { | |
| "type": "object", | |
| "properties": { | |
| "RealityIndex": { | |
| "type": "integer" | |
| }, | |
| "GalacticAddress": { | |
| "type": "object", | |
| "properties": { | |
| "VoxelX": { | |
| "type": "integer" | |
| }, | |
| "VoxelY": { | |
| "type": "integer" | |
| }, | |
| "VoxelZ": { | |
| "type": "integer" | |
| }, | |
| "SolarSystemIndex": { | |
| "type": "integer" | |
| }, | |
| "PlanetIndex": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "PlanetIndex", | |
| "SolarSystemIndex", | |
| "VoxelX", | |
| "VoxelY", | |
| "VoxelZ" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "GalacticAddress", | |
| "RealityIndex" | |
| ] | |
| }, | |
| "GravePosition": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "GraveMatrixLookAt": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "GraveMatrixUp": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "ShipLayout": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "integer" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Level", | |
| "Seed", | |
| "Slots" | |
| ] | |
| }, | |
| "WeaponLayout": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "integer" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Level", | |
| "Seed", | |
| "Slots" | |
| ] | |
| }, | |
| "CurrentShip": { | |
| "type": "object", | |
| "properties": { | |
| "Filename": { | |
| "type": "string" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "AltId": { | |
| "type": "string" | |
| }, | |
| "ProceduralTexture": { | |
| "type": "object", | |
| "properties": { | |
| "Samplers": { | |
| "type": "array" | |
| } | |
| }, | |
| "required": [ | |
| "Samplers" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "AltId", | |
| "Filename", | |
| "ProceduralTexture", | |
| "Seed" | |
| ] | |
| }, | |
| "CurrentWeapon": { | |
| "type": "object", | |
| "properties": { | |
| "Filename": { | |
| "type": "string" | |
| }, | |
| "GenerationSeed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "Filename", | |
| "GenerationSeed" | |
| ] | |
| }, | |
| "KnownTech": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| }, | |
| "KnownProducts": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| }, | |
| "KnownSpecials": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| }, | |
| "KnownRefinerRecipes": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| }, | |
| "KnownWords": { | |
| "type": "array" | |
| }, | |
| "KnownWordGroups": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Group": { | |
| "type": "string" | |
| }, | |
| "Races": { | |
| "type": "array", | |
| "items": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "Group", | |
| "Races" | |
| ] | |
| } | |
| }, | |
| "MissionProgress": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Mission": { | |
| "type": "string" | |
| }, | |
| "Progress": { | |
| "type": "integer" | |
| }, | |
| "Seed": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "Data": { | |
| "type": "integer" | |
| }, | |
| "Participants": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "UA": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "BuildingSeed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "BuildingLocation": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "ParticipantType": { | |
| "type": "object", | |
| "properties": { | |
| "ParticipantType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "ParticipantType" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BuildingLocation", | |
| "BuildingSeed", | |
| "ParticipantType", | |
| "UA" | |
| ] | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "Data", | |
| "Mission", | |
| "Participants", | |
| "Progress", | |
| "Seed" | |
| ] | |
| } | |
| }, | |
| "PostMissionIndex": { | |
| "type": "integer" | |
| }, | |
| "CurrentMissionID": { | |
| "type": "string" | |
| }, | |
| "CurrentMissionSeed": { | |
| "type": "integer" | |
| }, | |
| "PreviousMissionID": { | |
| "type": "string" | |
| }, | |
| "PreviousMissionSeed": { | |
| "type": "integer" | |
| }, | |
| "MissionVersion": { | |
| "type": "integer" | |
| }, | |
| "MissionRecurrences": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "MissionID": { | |
| "type": "string" | |
| }, | |
| "RecurrenceDeadline": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "MissionID", | |
| "RecurrenceDeadline" | |
| ] | |
| } | |
| }, | |
| "HoloExplorerInteraction": { | |
| "type": "object", | |
| "properties": { | |
| "GalacticAddress": { | |
| "type": "integer" | |
| }, | |
| "Value": { | |
| "type": "integer" | |
| }, | |
| "Position": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "GalacticAddress", | |
| "Position", | |
| "Value" | |
| ] | |
| }, | |
| "HoloScepticInteraction": { | |
| "type": "object", | |
| "properties": { | |
| "GalacticAddress": { | |
| "type": "integer" | |
| }, | |
| "Value": { | |
| "type": "integer" | |
| }, | |
| "Position": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "GalacticAddress", | |
| "Position", | |
| "Value" | |
| ] | |
| }, | |
| "HoloNooneInteraction": { | |
| "type": "object", | |
| "properties": { | |
| "GalacticAddress": { | |
| "type": "integer" | |
| }, | |
| "Value": { | |
| "type": "integer" | |
| }, | |
| "Position": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "GalacticAddress", | |
| "Position", | |
| "Value" | |
| ] | |
| }, | |
| "Health": { | |
| "type": "integer" | |
| }, | |
| "ShipHealth": { | |
| "type": "integer" | |
| }, | |
| "Shield": { | |
| "type": "integer" | |
| }, | |
| "ShipShield": { | |
| "type": "integer" | |
| }, | |
| "Energy": { | |
| "type": "integer" | |
| }, | |
| "Units": { | |
| "type": "integer" | |
| }, | |
| "Nanites": { | |
| "type": "integer" | |
| }, | |
| "Specials": { | |
| "type": "integer" | |
| }, | |
| "ThirdPersonShip": { | |
| "type": "boolean" | |
| }, | |
| "TimeAlive": { | |
| "type": "integer" | |
| }, | |
| "TotalPlayTime": { | |
| "type": "integer" | |
| }, | |
| "MarkerStack": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Table": { | |
| "type": "integer" | |
| }, | |
| "Event": { | |
| "type": "string" | |
| }, | |
| "GalacticAddress": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "BuildingSeed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "BuildingLocation": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "BuildingClass": { | |
| "type": "object", | |
| "properties": { | |
| "BuildingClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "BuildingClass" | |
| ] | |
| }, | |
| "Time": { | |
| "type": "number" | |
| }, | |
| "MissionID": { | |
| "type": "string" | |
| }, | |
| "MissionSeed": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "ParticipantType": { | |
| "type": "object", | |
| "properties": { | |
| "ParticipantType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "ParticipantType" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BuildingClass", | |
| "BuildingLocation", | |
| "BuildingSeed", | |
| "Event", | |
| "GalacticAddress", | |
| "MissionID", | |
| "MissionSeed", | |
| "ParticipantType", | |
| "Table", | |
| "Time" | |
| ] | |
| } | |
| }, | |
| "NewMPMarkerStack": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Table": { | |
| "type": "integer" | |
| }, | |
| "Event": { | |
| "type": "string" | |
| }, | |
| "GalacticAddress": { | |
| "type": "integer" | |
| }, | |
| "BuildingSeed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "BuildingLocation": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "BuildingClass": { | |
| "type": "object", | |
| "properties": { | |
| "BuildingClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "BuildingClass" | |
| ] | |
| }, | |
| "Time": { | |
| "type": "number" | |
| }, | |
| "MissionID": { | |
| "type": "string" | |
| }, | |
| "MissionSeed": { | |
| "type": "integer" | |
| }, | |
| "ParticipantType": { | |
| "type": "object", | |
| "properties": { | |
| "ParticipantType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "ParticipantType" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BuildingClass", | |
| "BuildingLocation", | |
| "BuildingSeed", | |
| "Event", | |
| "GalacticAddress", | |
| "MissionID", | |
| "MissionSeed", | |
| "ParticipantType", | |
| "Table", | |
| "Time" | |
| ] | |
| } | |
| }, | |
| "SurveyedEventPositions": { | |
| "type": "array" | |
| }, | |
| "NextSurveyedEventPositionIndex": { | |
| "type": "integer" | |
| }, | |
| "Stats": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "GroupId": { | |
| "type": "string" | |
| }, | |
| "Address": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "Stats": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Value": { | |
| "type": "object", | |
| "properties": { | |
| "IntValue": { | |
| "type": "integer" | |
| }, | |
| "FloatValue": { | |
| "type": "number" | |
| }, | |
| "uOX": { | |
| "type": "number" | |
| } | |
| }, | |
| "required": [ | |
| "FloatValue", | |
| "IntValue", | |
| "uOX" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Id", | |
| "Value" | |
| ] | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "Address", | |
| "GroupId", | |
| "Stats" | |
| ] | |
| } | |
| }, | |
| "TelemetryStats": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Type": { | |
| "type": "string" | |
| }, | |
| "Value": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Id", | |
| "Type", | |
| "Value" | |
| ] | |
| } | |
| }, | |
| "StoredInteractions": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Interactions": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "GalacticAddress": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "Value": { | |
| "type": "integer" | |
| }, | |
| "Position": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "GalacticAddress", | |
| "Position", | |
| "Value" | |
| ] | |
| } | |
| }, | |
| "CurrentPos": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "CurrentPos", | |
| "Interactions" | |
| ] | |
| } | |
| }, | |
| "MaintenanceInteractions": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryContainer": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array" | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "LastUpdateTimestamp": { | |
| "type": "integer" | |
| }, | |
| "LastCompletedTimestamp": { | |
| "type": "integer" | |
| }, | |
| "LastBrokenTimestamp": { | |
| "type": "integer" | |
| }, | |
| "DamageTimers": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "Flags": { | |
| "type": "integer" | |
| }, | |
| "AmountAccumulators": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "DamageTimers", | |
| "Flags", | |
| "InventoryContainer", | |
| "LastBrokenTimestamp", | |
| "LastCompletedTimestamp", | |
| "LastUpdateTimestamp" | |
| ] | |
| } | |
| }, | |
| "PersonalMaintenanceInteractions": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryContainer": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array" | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "LastUpdateTimestamp": { | |
| "type": "integer" | |
| }, | |
| "LastCompletedTimestamp": { | |
| "type": "integer" | |
| }, | |
| "LastBrokenTimestamp": { | |
| "type": "integer" | |
| }, | |
| "DamageTimers": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "Flags": { | |
| "type": "integer" | |
| }, | |
| "AmountAccumulators": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "DamageTimers", | |
| "Flags", | |
| "InventoryContainer", | |
| "LastBrokenTimestamp", | |
| "LastCompletedTimestamp", | |
| "LastUpdateTimestamp" | |
| ] | |
| } | |
| }, | |
| "VisitedSystems": { | |
| "type": "array", | |
| "items": { | |
| "type": "integer" | |
| } | |
| }, | |
| "Hazard": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "BoltAmmo": { | |
| "type": "integer" | |
| }, | |
| "ScatterAmmo": { | |
| "type": "integer" | |
| }, | |
| "PulseAmmo": { | |
| "type": "integer" | |
| }, | |
| "LaserAmmo": { | |
| "type": "integer" | |
| }, | |
| "FirstSpawnPosition": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "SavedInteractionIndicies": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "SavedRaceIndicies": { | |
| "type": "array", | |
| "items": { | |
| "type": "integer" | |
| } | |
| }, | |
| "=4m": { | |
| "type": "array", | |
| "items": { | |
| "type": "boolean" | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "SavedRaceIndicies" | |
| ] | |
| } | |
| }, | |
| "SavedInteractionDialogTable": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Hash": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "Dialog": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "Dialog", | |
| "Hash" | |
| ] | |
| } | |
| }, | |
| "InteractionProgressTable": { | |
| "type": "array" | |
| }, | |
| "AtlasStationAdressData": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "RealityIndex": { | |
| "type": "integer" | |
| }, | |
| "GalacticAddress": { | |
| "type": "object", | |
| "properties": { | |
| "VoxelX": { | |
| "type": "integer" | |
| }, | |
| "VoxelY": { | |
| "type": "integer" | |
| }, | |
| "VoxelZ": { | |
| "type": "integer" | |
| }, | |
| "SolarSystemIndex": { | |
| "type": "integer" | |
| }, | |
| "PlanetIndex": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "PlanetIndex", | |
| "SolarSystemIndex", | |
| "VoxelX", | |
| "VoxelY", | |
| "VoxelZ" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "GalacticAddress", | |
| "RealityIndex" | |
| ] | |
| } | |
| }, | |
| "NewAtlasStationAdressData": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "RealityIndex": { | |
| "type": "integer" | |
| }, | |
| "GalacticAddress": { | |
| "type": "object", | |
| "properties": { | |
| "VoxelX": { | |
| "type": "integer" | |
| }, | |
| "VoxelY": { | |
| "type": "integer" | |
| }, | |
| "VoxelZ": { | |
| "type": "integer" | |
| }, | |
| "SolarSystemIndex": { | |
| "type": "integer" | |
| }, | |
| "PlanetIndex": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "PlanetIndex", | |
| "SolarSystemIndex", | |
| "VoxelX", | |
| "VoxelY", | |
| "VoxelZ" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "GalacticAddress", | |
| "RealityIndex" | |
| ] | |
| } | |
| }, | |
| "VisitedAtlasStationsData": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "RealityIndex": { | |
| "type": "integer" | |
| }, | |
| "GalacticAddress": { | |
| "type": "object", | |
| "properties": { | |
| "VoxelX": { | |
| "type": "integer" | |
| }, | |
| "VoxelY": { | |
| "type": "integer" | |
| }, | |
| "VoxelZ": { | |
| "type": "integer" | |
| }, | |
| "SolarSystemIndex": { | |
| "type": "integer" | |
| }, | |
| "PlanetIndex": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "PlanetIndex", | |
| "SolarSystemIndex", | |
| "VoxelX", | |
| "VoxelY", | |
| "VoxelZ" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "GalacticAddress", | |
| "RealityIndex" | |
| ] | |
| } | |
| }, | |
| "FirstAtlasStationDiscovered": { | |
| "type": "boolean" | |
| }, | |
| "UsesThirdPersonCharacterCam": { | |
| "type": "boolean" | |
| }, | |
| "ProgressionLevel": { | |
| "type": "integer" | |
| }, | |
| "ProcTechIndex": { | |
| "type": "integer" | |
| }, | |
| "IsNew": { | |
| "type": "boolean" | |
| }, | |
| "UseSmallerBlackholeJumps": { | |
| "type": "boolean" | |
| }, | |
| "UsedEntitlements": { | |
| "type": "array" | |
| }, | |
| "PlanetPositions": { | |
| "type": "array", | |
| "items": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| } | |
| }, | |
| "PlanetSeeds": { | |
| "type": "array", | |
| "items": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| } | |
| }, | |
| "PrimaryPlanet": { | |
| "type": "integer" | |
| }, | |
| "TimeLastSpaceBattle": { | |
| "type": "integer" | |
| }, | |
| "WarpsLastSpaceBattle": { | |
| "type": "integer" | |
| }, | |
| "ActiveSpaceBattleUA": { | |
| "type": "integer" | |
| }, | |
| "TimeLastMiniStation": { | |
| "type": "integer" | |
| }, | |
| "WarpsLastMiniStation": { | |
| "type": "integer" | |
| }, | |
| "MiniStationUA": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "AnomalyPositionOverride": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "GameStartAddress1": { | |
| "type": "object", | |
| "properties": { | |
| "RealityIndex": { | |
| "type": "integer" | |
| }, | |
| "GalacticAddress": { | |
| "type": "object", | |
| "properties": { | |
| "VoxelX": { | |
| "type": "integer" | |
| }, | |
| "VoxelY": { | |
| "type": "integer" | |
| }, | |
| "VoxelZ": { | |
| "type": "integer" | |
| }, | |
| "SolarSystemIndex": { | |
| "type": "integer" | |
| }, | |
| "PlanetIndex": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "PlanetIndex", | |
| "SolarSystemIndex", | |
| "VoxelX", | |
| "VoxelY", | |
| "VoxelZ" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "GalacticAddress", | |
| "RealityIndex" | |
| ] | |
| }, | |
| "GameStartAddress2": { | |
| "type": "object", | |
| "properties": { | |
| "RealityIndex": { | |
| "type": "integer" | |
| }, | |
| "GalacticAddress": { | |
| "type": "object", | |
| "properties": { | |
| "VoxelX": { | |
| "type": "integer" | |
| }, | |
| "VoxelY": { | |
| "type": "integer" | |
| }, | |
| "VoxelZ": { | |
| "type": "integer" | |
| }, | |
| "SolarSystemIndex": { | |
| "type": "integer" | |
| }, | |
| "PlanetIndex": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "PlanetIndex", | |
| "SolarSystemIndex", | |
| "VoxelX", | |
| "VoxelY", | |
| "VoxelZ" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "GalacticAddress", | |
| "RealityIndex" | |
| ] | |
| }, | |
| "GalacticMapRequests": { | |
| "type": "array", | |
| "items": { | |
| "type": "boolean" | |
| } | |
| }, | |
| "FirstShipPosition": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "HazardTimeAlive": { | |
| "type": "integer" | |
| }, | |
| "RevealBlackHoles": { | |
| "type": "boolean" | |
| }, | |
| "CurrentFreighterHomeSystemSeed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "CurrentFreighter": { | |
| "type": "object", | |
| "properties": { | |
| "Filename": { | |
| "type": "string" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "AltId": { | |
| "type": "string" | |
| }, | |
| "ProceduralTexture": { | |
| "type": "object", | |
| "properties": { | |
| "Samplers": { | |
| "type": "array" | |
| } | |
| }, | |
| "required": [ | |
| "Samplers" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "AltId", | |
| "Filename", | |
| "ProceduralTexture", | |
| "Seed" | |
| ] | |
| }, | |
| "FreighterLayout": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "integer" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Level", | |
| "Seed", | |
| "Slots" | |
| ] | |
| }, | |
| "FreighterInventory": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "BaseStatID": { | |
| "type": "string" | |
| }, | |
| "Value": { | |
| "type": "number" | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatID", | |
| "Value" | |
| ] | |
| } | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "FreighterInventory_TechOnly": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "BaseStatID": { | |
| "type": "string" | |
| }, | |
| "Value": { | |
| "type": "number" | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatID", | |
| "Value" | |
| ] | |
| } | |
| }, | |
| "SpecialSlots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventorySpecialSlotType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventorySpecialSlotType" | |
| ] | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Index", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "FreighterUniverseAddress": { | |
| "type": "object", | |
| "properties": { | |
| "RealityIndex": { | |
| "type": "integer" | |
| }, | |
| "GalacticAddress": { | |
| "type": "object", | |
| "properties": { | |
| "VoxelX": { | |
| "type": "integer" | |
| }, | |
| "VoxelY": { | |
| "type": "integer" | |
| }, | |
| "VoxelZ": { | |
| "type": "integer" | |
| }, | |
| "SolarSystemIndex": { | |
| "type": "integer" | |
| }, | |
| "PlanetIndex": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "PlanetIndex", | |
| "SolarSystemIndex", | |
| "VoxelX", | |
| "VoxelY", | |
| "VoxelZ" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "GalacticAddress", | |
| "RealityIndex" | |
| ] | |
| }, | |
| "FreighterMatrixAt": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "FreighterMatrixUp": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "FreighterMatrixPos": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "SquadronUnlockedPilotSlots": { | |
| "type": "array", | |
| "items": { | |
| "type": "boolean" | |
| } | |
| }, | |
| "SquadronPilots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "NPCResource": { | |
| "type": "object", | |
| "properties": { | |
| "Filename": { | |
| "type": "string" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "AltId": { | |
| "type": "string" | |
| }, | |
| "ProceduralTexture": { | |
| "type": "object", | |
| "properties": { | |
| "Samplers": { | |
| "type": "array" | |
| } | |
| }, | |
| "required": [ | |
| "Samplers" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "AltId", | |
| "Filename", | |
| "ProceduralTexture", | |
| "Seed" | |
| ] | |
| }, | |
| "ShipResource": { | |
| "type": "object", | |
| "properties": { | |
| "Filename": { | |
| "type": "string" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "AltId": { | |
| "type": "string" | |
| }, | |
| "ProceduralTexture": { | |
| "type": "object", | |
| "properties": { | |
| "Samplers": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Options": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Layer": { | |
| "type": "string" | |
| }, | |
| "Group": { | |
| "type": "string" | |
| }, | |
| "Palette": { | |
| "type": "object", | |
| "properties": { | |
| "Palette": { | |
| "type": "string" | |
| }, | |
| "ColourAlt": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "ColourAlt", | |
| "Palette" | |
| ] | |
| }, | |
| "OverrideColour": { | |
| "type": "boolean" | |
| }, | |
| "Colour": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "OptionName": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "Colour", | |
| "Group", | |
| "Layer", | |
| "OptionName", | |
| "OverrideColour", | |
| "Palette" | |
| ] | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "Options" | |
| ] | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "Samplers" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "AltId", | |
| "Filename", | |
| "ProceduralTexture", | |
| "Seed" | |
| ] | |
| }, | |
| "PilotRank": { | |
| "type": "integer" | |
| }, | |
| "TraitsSeed": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "NPCResource", | |
| "PilotRank", | |
| "ShipResource" | |
| ] | |
| } | |
| }, | |
| "SeenBaseBuildingObjects": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| }, | |
| "BaseBuildingObjects": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Timestamp": { | |
| "type": "integer" | |
| }, | |
| "ObjectID": { | |
| "type": "string" | |
| }, | |
| "GalacticAddress": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "RegionSeed": { | |
| "type": "string" | |
| }, | |
| "UserData": { | |
| "type": "integer" | |
| }, | |
| "Position": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "Up": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "At": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "At", | |
| "GalacticAddress", | |
| "ObjectID", | |
| "Position", | |
| "RegionSeed", | |
| "Timestamp", | |
| "Up", | |
| "UserData" | |
| ] | |
| } | |
| }, | |
| "TerrainEditData": { | |
| "type": "object", | |
| "properties": { | |
| "GalacticAddresses": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "BufferSizes": { | |
| "type": "array", | |
| "items": { | |
| "type": "integer" | |
| } | |
| }, | |
| "BufferAges": { | |
| "type": "array", | |
| "items": { | |
| "type": "integer" | |
| } | |
| }, | |
| "BufferAnchors": { | |
| "type": "array", | |
| "items": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| } | |
| }, | |
| "BufferProtected": { | |
| "type": "array", | |
| "items": { | |
| "type": "boolean" | |
| } | |
| }, | |
| "Edits": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Data": { | |
| "type": "integer" | |
| }, | |
| "Position": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Data", | |
| "Position" | |
| ] | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "BufferAges", | |
| "BufferAnchors", | |
| "BufferProtected", | |
| "BufferSizes", | |
| "Edits", | |
| "GalacticAddresses" | |
| ] | |
| }, | |
| "NPCWorkers": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "ResourceElement": { | |
| "type": "object", | |
| "properties": { | |
| "Filename": { | |
| "type": "string" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "AltId": { | |
| "type": "string" | |
| }, | |
| "ProceduralTexture": { | |
| "type": "object", | |
| "properties": { | |
| "Samplers": { | |
| "type": "array" | |
| } | |
| }, | |
| "required": [ | |
| "Samplers" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "AltId", | |
| "Filename", | |
| "ProceduralTexture", | |
| "Seed" | |
| ] | |
| }, | |
| "InteractionSeed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "HiredWorker": { | |
| "type": "boolean" | |
| }, | |
| "FreighterBase": { | |
| "type": "boolean" | |
| }, | |
| "BaseUA": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "BaseOffset": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "BaseOffset", | |
| "BaseUA", | |
| "FreighterBase", | |
| "HiredWorker", | |
| "InteractionSeed", | |
| "ResourceElement" | |
| ] | |
| } | |
| }, | |
| "PersistentPlayerBases": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "BaseVersion": { | |
| "type": "integer" | |
| }, | |
| "OriginalBaseVersion": { | |
| "type": "integer" | |
| }, | |
| "GalacticAddress": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "Position": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "Forward": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "UserData": { | |
| "type": "integer" | |
| }, | |
| "LastUpdateTimestamp": { | |
| "type": "integer" | |
| }, | |
| "Objects": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Timestamp": { | |
| "type": "integer" | |
| }, | |
| "ObjectID": { | |
| "type": "string" | |
| }, | |
| "UserData": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "Position": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "Up": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "At": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "Message": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "At", | |
| "ObjectID", | |
| "Position", | |
| "Timestamp", | |
| "Up", | |
| "UserData" | |
| ] | |
| } | |
| }, | |
| "RID": { | |
| "type": "string" | |
| }, | |
| "Owner": { | |
| "type": "object", | |
| "properties": { | |
| "LID": { | |
| "type": "string" | |
| }, | |
| "UID": { | |
| "type": "string" | |
| }, | |
| "USN": { | |
| "type": "string" | |
| }, | |
| "PTK": { | |
| "type": "string" | |
| }, | |
| "TS": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "LID", | |
| "PTK", | |
| "TS", | |
| "UID", | |
| "USN" | |
| ] | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "BaseType": { | |
| "type": "object", | |
| "properties": { | |
| "PersistentBaseTypes": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "PersistentBaseTypes" | |
| ] | |
| }, | |
| "LastEditedById": { | |
| "type": "string" | |
| }, | |
| "LastEditedByUsername": { | |
| "type": "string" | |
| }, | |
| "ScreenshotAt": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "ScreenshotPos": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "GameMode": { | |
| "type": "object", | |
| "properties": { | |
| "PresetGameMode": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "PresetGameMode" | |
| ] | |
| }, | |
| "PlatformToken": { | |
| "type": "string" | |
| }, | |
| "IsReported": { | |
| "type": "boolean" | |
| }, | |
| "IsFeatured": { | |
| "type": "boolean" | |
| }, | |
| "6nS": { | |
| "type": "object", | |
| "properties": { | |
| "E7u": { | |
| "type": "object", | |
| "properties": { | |
| "DifficultyPresetType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "DifficultyPresetType" | |
| ] | |
| }, | |
| "?<y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "?<y", | |
| "E7u" | |
| ] | |
| }, | |
| "AutoPowerSetting": { | |
| "type": "object", | |
| "properties": { | |
| "BaseAutoPowerSetting": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "BaseAutoPowerSetting" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseType", | |
| "BaseVersion", | |
| "Forward", | |
| "GalacticAddress", | |
| "GameMode", | |
| "IsFeatured", | |
| "IsReported", | |
| "LastEditedById", | |
| "LastEditedByUsername", | |
| "LastUpdateTimestamp", | |
| "Name", | |
| "Objects", | |
| "OriginalBaseVersion", | |
| "Owner", | |
| "PlatformToken", | |
| "Position", | |
| "RID", | |
| "ScreenshotAt", | |
| "ScreenshotPos", | |
| "UserData" | |
| ] | |
| } | |
| }, | |
| "TeleportEndpoints": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "UniverseAddress": { | |
| "type": "object", | |
| "properties": { | |
| "RealityIndex": { | |
| "type": "integer" | |
| }, | |
| "GalacticAddress": { | |
| "type": "object", | |
| "properties": { | |
| "VoxelX": { | |
| "type": "integer" | |
| }, | |
| "VoxelY": { | |
| "type": "integer" | |
| }, | |
| "VoxelZ": { | |
| "type": "integer" | |
| }, | |
| "SolarSystemIndex": { | |
| "type": "integer" | |
| }, | |
| "PlanetIndex": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "PlanetIndex", | |
| "SolarSystemIndex", | |
| "VoxelX", | |
| "VoxelY", | |
| "VoxelZ" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "GalacticAddress", | |
| "RealityIndex" | |
| ] | |
| }, | |
| "Position": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "Facing": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "TeleporterType": { | |
| "type": "string" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "CalcWarpOffset": { | |
| "type": "boolean" | |
| }, | |
| "IsFeatured": { | |
| "type": "boolean" | |
| } | |
| }, | |
| "required": [ | |
| "CalcWarpOffset", | |
| "Facing", | |
| "IsFeatured", | |
| "Name", | |
| "Position", | |
| "TeleporterType", | |
| "UniverseAddress" | |
| ] | |
| } | |
| }, | |
| "Chest1Layout": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "integer" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Level", | |
| "Seed", | |
| "Slots" | |
| ] | |
| }, | |
| "Chest1Inventory": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "Chest2Layout": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "integer" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Level", | |
| "Seed", | |
| "Slots" | |
| ] | |
| }, | |
| "Chest2Inventory": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "Chest3Layout": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "integer" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Level", | |
| "Seed", | |
| "Slots" | |
| ] | |
| }, | |
| "Chest3Inventory": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "Chest4Layout": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "integer" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Level", | |
| "Seed", | |
| "Slots" | |
| ] | |
| }, | |
| "Chest4Inventory": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "Chest5Layout": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "integer" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Level", | |
| "Seed", | |
| "Slots" | |
| ] | |
| }, | |
| "Chest5Inventory": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "Chest6Layout": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "integer" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Level", | |
| "Seed", | |
| "Slots" | |
| ] | |
| }, | |
| "Chest6Inventory": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "Chest7Layout": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "integer" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Level", | |
| "Seed", | |
| "Slots" | |
| ] | |
| }, | |
| "Chest7Inventory": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "Chest8Layout": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "integer" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Level", | |
| "Seed", | |
| "Slots" | |
| ] | |
| }, | |
| "Chest8Inventory": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "Chest9Layout": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "integer" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Level", | |
| "Seed", | |
| "Slots" | |
| ] | |
| }, | |
| "Chest9Inventory": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "Chest10Layout": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "integer" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Level", | |
| "Seed", | |
| "Slots" | |
| ] | |
| }, | |
| "Chest10Inventory": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "ChestMagicLayout": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "integer" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Level", | |
| "Seed", | |
| "Slots" | |
| ] | |
| }, | |
| "ChestMagicInventory": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "ChestMagic2Layout": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "integer" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Level", | |
| "Seed", | |
| "Slots" | |
| ] | |
| }, | |
| "ChestMagic2Inventory": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array" | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "CookingIngredientsLayout": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "integer" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Level", | |
| "Seed", | |
| "Slots" | |
| ] | |
| }, | |
| "CookingIngredientsInventory": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "RocketLockerLayout": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "integer" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Level", | |
| "Seed", | |
| "Slots" | |
| ] | |
| }, | |
| "RocketLockerInventory": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array" | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "CurrentFreighterNPC": { | |
| "type": "object", | |
| "properties": { | |
| "Filename": { | |
| "type": "string" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "AltId": { | |
| "type": "string" | |
| }, | |
| "ProceduralTexture": { | |
| "type": "object", | |
| "properties": { | |
| "Samplers": { | |
| "type": "array" | |
| } | |
| }, | |
| "required": [ | |
| "Samplers" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "AltId", | |
| "Filename", | |
| "ProceduralTexture", | |
| "Seed" | |
| ] | |
| }, | |
| "VehicleOwnership": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Resource": { | |
| "type": "object", | |
| "properties": { | |
| "Filename": { | |
| "type": "string" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "AltId": { | |
| "type": "string" | |
| }, | |
| "ProceduralTexture": { | |
| "type": "object", | |
| "properties": { | |
| "Samplers": { | |
| "type": "array" | |
| } | |
| }, | |
| "required": [ | |
| "Samplers" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "AltId", | |
| "Filename", | |
| "ProceduralTexture", | |
| "Seed" | |
| ] | |
| }, | |
| "Inventory": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "Inventory_Cargo": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array" | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array" | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "Inventory_TechOnly": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventorySpecialSlotType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventorySpecialSlotType" | |
| ] | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Index", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "InventoryLayout": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "integer" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Level", | |
| "Seed", | |
| "Slots" | |
| ] | |
| }, | |
| "Location": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "Position": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "Direction": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "Direction", | |
| "Inventory", | |
| "InventoryLayout", | |
| "Inventory_TechOnly", | |
| "Location", | |
| "Name", | |
| "Position", | |
| "Resource" | |
| ] | |
| } | |
| }, | |
| "PrimaryVehicle": { | |
| "type": "integer" | |
| }, | |
| "ShipOwnership": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Resource": { | |
| "type": "object", | |
| "properties": { | |
| "Filename": { | |
| "type": "string" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "AltId": { | |
| "type": "string" | |
| }, | |
| "ProceduralTexture": { | |
| "type": "object", | |
| "properties": { | |
| "Samplers": { | |
| "type": "array" | |
| } | |
| }, | |
| "required": [ | |
| "Samplers" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "AltId", | |
| "Filename", | |
| "ProceduralTexture", | |
| "Seed" | |
| ] | |
| }, | |
| "Inventory": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "BaseStatID": { | |
| "type": "string" | |
| }, | |
| "Value": { | |
| "type": "number" | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatID", | |
| "Value" | |
| ] | |
| } | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "Inventory_Cargo": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "BaseStatID": { | |
| "type": "string" | |
| }, | |
| "Value": { | |
| "type": "number" | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatID", | |
| "Value" | |
| ] | |
| } | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "Inventory_TechOnly": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "BaseStatID": { | |
| "type": "string" | |
| }, | |
| "Value": { | |
| "type": "number" | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatID", | |
| "Value" | |
| ] | |
| } | |
| }, | |
| "SpecialSlots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventorySpecialSlotType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventorySpecialSlotType" | |
| ] | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Index", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "InventoryLayout": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "integer" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Level", | |
| "Seed", | |
| "Slots" | |
| ] | |
| }, | |
| "Location": { | |
| "type": "integer" | |
| }, | |
| "Position": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "Direction": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "Direction", | |
| "Inventory", | |
| "InventoryLayout", | |
| "Inventory_TechOnly", | |
| "Location", | |
| "Name", | |
| "Position", | |
| "Resource" | |
| ] | |
| } | |
| }, | |
| "PrimaryShip": { | |
| "type": "integer" | |
| }, | |
| "MultiShipEnabled": { | |
| "type": "boolean" | |
| }, | |
| "VehicleAIControlEnabled": { | |
| "type": "boolean" | |
| }, | |
| "PlayerFreighterName": { | |
| "type": "string" | |
| }, | |
| "StartGameShipPosition": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "ShipNeedsTerrainPositioning": { | |
| "type": "boolean" | |
| }, | |
| "TradingSupplyDataIndex": { | |
| "type": "integer" | |
| }, | |
| "TradingSupplyData": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "GalacticAddress": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "Supply": { | |
| "type": "number" | |
| }, | |
| "Demand": { | |
| "type": "number" | |
| }, | |
| "Product": { | |
| "type": "string" | |
| }, | |
| "Timestamp": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Demand", | |
| "GalacticAddress", | |
| "Product", | |
| "Supply", | |
| "Timestamp" | |
| ] | |
| } | |
| }, | |
| "LastPortal": { | |
| "type": "array" | |
| }, | |
| "VisitedPortal": { | |
| "type": "object", | |
| "properties": { | |
| "PortalSeed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "LastPortalUA": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "IsStoryPortal": { | |
| "type": "boolean" | |
| } | |
| }, | |
| "required": [ | |
| "IsStoryPortal", | |
| "LastPortalUA", | |
| "PortalSeed" | |
| ] | |
| }, | |
| "KnownPortalRunes": { | |
| "type": "integer" | |
| }, | |
| "OnOtherSideOfPortal": { | |
| "type": "boolean" | |
| }, | |
| "OtherSideOfPortalReturnBase": { | |
| "type": "object", | |
| "properties": { | |
| "UniverseAddress": { | |
| "type": "object", | |
| "properties": { | |
| "RealityIndex": { | |
| "type": "integer" | |
| }, | |
| "GalacticAddress": { | |
| "type": "object", | |
| "properties": { | |
| "VoxelX": { | |
| "type": "integer" | |
| }, | |
| "VoxelY": { | |
| "type": "integer" | |
| }, | |
| "VoxelZ": { | |
| "type": "integer" | |
| }, | |
| "SolarSystemIndex": { | |
| "type": "integer" | |
| }, | |
| "PlanetIndex": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "PlanetIndex", | |
| "SolarSystemIndex", | |
| "VoxelX", | |
| "VoxelY", | |
| "VoxelZ" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "GalacticAddress", | |
| "RealityIndex" | |
| ] | |
| }, | |
| "Position": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "Facing": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "TeleporterType": { | |
| "type": "string" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "CalcWarpOffset": { | |
| "type": "boolean" | |
| }, | |
| "IsFeatured": { | |
| "type": "boolean" | |
| } | |
| }, | |
| "required": [ | |
| "CalcWarpOffset", | |
| "Facing", | |
| "IsFeatured", | |
| "Name", | |
| "Position", | |
| "TeleporterType", | |
| "UniverseAddress" | |
| ] | |
| }, | |
| "PortalMarkerPosition_Local": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "PortalMarkerPosition_Offset": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "StartingPrimaryWeapon": { | |
| "type": "object", | |
| "properties": { | |
| "WeaponMode": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "WeaponMode" | |
| ] | |
| }, | |
| "StartingSecondaryWeapon": { | |
| "type": "object", | |
| "properties": { | |
| "WeaponMode": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "WeaponMode" | |
| ] | |
| }, | |
| "CharacterCustomisationData": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "SelectedPreset": { | |
| "type": "string" | |
| }, | |
| "CustomData": { | |
| "type": "object", | |
| "properties": { | |
| "DescriptorGroups": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| }, | |
| "Colours": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Palette": { | |
| "type": "object", | |
| "properties": { | |
| "Palette": { | |
| "type": "string" | |
| }, | |
| "ColourAlt": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "ColourAlt", | |
| "Palette" | |
| ] | |
| }, | |
| "Colour": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "Colour", | |
| "Palette" | |
| ] | |
| } | |
| }, | |
| "TextureOptions": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "TextureOptionGroupName": { | |
| "type": "string" | |
| }, | |
| "TextureOptionName": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "TextureOptionGroupName", | |
| "TextureOptionName" | |
| ] | |
| } | |
| }, | |
| "BoneScales": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "BoneName": { | |
| "type": "string" | |
| }, | |
| "Scale": { | |
| "type": "number" | |
| } | |
| }, | |
| "required": [ | |
| "BoneName", | |
| "Scale" | |
| ] | |
| } | |
| }, | |
| "Scale": { | |
| "type": "number" | |
| } | |
| }, | |
| "required": [ | |
| "BoneScales", | |
| "Colours", | |
| "DescriptorGroups", | |
| "Scale", | |
| "TextureOptions" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "CustomData", | |
| "SelectedPreset" | |
| ] | |
| } | |
| }, | |
| "ShipUsesLegacyColours": { | |
| "type": "array", | |
| "items": { | |
| "type": "boolean" | |
| } | |
| }, | |
| "Outfits": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "DescriptorGroups": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| }, | |
| "Colours": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Palette": { | |
| "type": "object", | |
| "properties": { | |
| "Palette": { | |
| "type": "string" | |
| }, | |
| "ColourAlt": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "ColourAlt", | |
| "Palette" | |
| ] | |
| }, | |
| "Colour": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "Colour", | |
| "Palette" | |
| ] | |
| } | |
| }, | |
| "TextureOptions": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "TextureOptionGroupName": { | |
| "type": "string" | |
| }, | |
| "TextureOptionName": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "TextureOptionGroupName", | |
| "TextureOptionName" | |
| ] | |
| } | |
| }, | |
| "BoneScales": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "BoneName": { | |
| "type": "string" | |
| }, | |
| "Scale": { | |
| "type": "number" | |
| } | |
| }, | |
| "required": [ | |
| "BoneName", | |
| "Scale" | |
| ] | |
| } | |
| }, | |
| "Scale": { | |
| "type": "number" | |
| } | |
| }, | |
| "required": [ | |
| "BoneScales", | |
| "Colours", | |
| "DescriptorGroups", | |
| "Scale", | |
| "TextureOptions" | |
| ] | |
| } | |
| }, | |
| "JetpackEffect": { | |
| "type": "string" | |
| }, | |
| "FleetSeed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "FleetFrigates": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "ResourceSeed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "HomeSystemSeed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "TimeOfLastIncomeCollection": { | |
| "type": "integer" | |
| }, | |
| "CustomName": { | |
| "type": "string" | |
| }, | |
| "FrigateClass": { | |
| "type": "object", | |
| "properties": { | |
| "FrigateClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "FrigateClass" | |
| ] | |
| }, | |
| "Race": { | |
| "type": "object", | |
| "properties": { | |
| "AlienRace": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "AlienRace" | |
| ] | |
| }, | |
| "TotalNumberOfExpeditions": { | |
| "type": "integer" | |
| }, | |
| "TotalNumberOfSuccessfulEvents": { | |
| "type": "integer" | |
| }, | |
| "TotalNumberOfFailedEvents": { | |
| "type": "integer" | |
| }, | |
| "NumberOfTimesDamaged": { | |
| "type": "integer" | |
| }, | |
| "TraitIDs": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| }, | |
| "Stats": { | |
| "type": "array", | |
| "items": { | |
| "type": "integer" | |
| } | |
| }, | |
| "RepairsMade": { | |
| "type": "integer" | |
| }, | |
| "DamageTaken": { | |
| "type": "integer" | |
| }, | |
| "ForcedTraitsSeed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "InventoryClass": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "CustomName", | |
| "DamageTaken", | |
| "FrigateClass", | |
| "HomeSystemSeed", | |
| "NumberOfTimesDamaged", | |
| "Race", | |
| "RepairsMade", | |
| "ResourceSeed", | |
| "Stats", | |
| "TimeOfLastIncomeCollection", | |
| "TotalNumberOfExpeditions", | |
| "TotalNumberOfFailedEvents", | |
| "TotalNumberOfSuccessfulEvents", | |
| "TraitIDs" | |
| ] | |
| } | |
| }, | |
| "FleetExpeditions": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "UA": { | |
| "type": "integer" | |
| }, | |
| "SpawnPosition": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "TerminalPosition": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "SpeedMultiplier": { | |
| "type": "number" | |
| }, | |
| "Powerups": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| }, | |
| "CustomName": { | |
| "type": "string" | |
| }, | |
| "InterventionEventMissionID": { | |
| "type": "string" | |
| }, | |
| "StartTime": { | |
| "type": "integer" | |
| }, | |
| "PauseTime": { | |
| "type": "integer" | |
| }, | |
| "TimeOfLastUAChange": { | |
| "type": "integer" | |
| }, | |
| "NextEventToTrigger": { | |
| "type": "integer" | |
| }, | |
| "ExpeditionCategory": { | |
| "type": "object", | |
| "properties": { | |
| "ExpeditionCategory": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "ExpeditionCategory" | |
| ] | |
| }, | |
| "ExpeditionDuration": { | |
| "type": "object", | |
| "properties": { | |
| "ExpeditionDuration": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "ExpeditionDuration" | |
| ] | |
| }, | |
| "ActiveFrigateIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "integer" | |
| } | |
| }, | |
| "DamagedFrigateIndices": { | |
| "type": "array" | |
| }, | |
| "DestroyedFrigateIndices": { | |
| "type": "array" | |
| }, | |
| "AllFrigateIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "integer" | |
| } | |
| }, | |
| "NumberOfSuccessfulEventsThisExpedition": { | |
| "type": "integer" | |
| }, | |
| "NumberOfFailedEventsThisExpedition": { | |
| "type": "integer" | |
| }, | |
| "Events": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "UA": { | |
| "type": "integer" | |
| }, | |
| "AffectedFrigateIndices": { | |
| "type": "array" | |
| }, | |
| "RepairingFrigateIndices": { | |
| "type": "array" | |
| }, | |
| "AffectedFrigateResponses": { | |
| "type": "array" | |
| }, | |
| "EventID": { | |
| "type": "string" | |
| }, | |
| "InterventionEventID": { | |
| "type": "string" | |
| }, | |
| "OverriddenDescription": { | |
| "type": "string" | |
| }, | |
| "Success": { | |
| "type": "boolean" | |
| }, | |
| "IsInterventionEvent": { | |
| "type": "boolean" | |
| }, | |
| "AvoidedIntervention": { | |
| "type": "boolean" | |
| } | |
| }, | |
| "required": [ | |
| "AffectedFrigateIndices", | |
| "AffectedFrigateResponses", | |
| "AvoidedIntervention", | |
| "EventID", | |
| "InterventionEventID", | |
| "IsInterventionEvent", | |
| "OverriddenDescription", | |
| "RepairingFrigateIndices", | |
| "Seed", | |
| "Success", | |
| "UA" | |
| ] | |
| } | |
| }, | |
| "InterventionPhoneCallActivated": { | |
| "type": "boolean" | |
| } | |
| }, | |
| "required": [ | |
| "ActiveFrigateIndices", | |
| "AllFrigateIndices", | |
| "CustomName", | |
| "DamagedFrigateIndices", | |
| "DestroyedFrigateIndices", | |
| "Events", | |
| "ExpeditionCategory", | |
| "ExpeditionDuration", | |
| "InterventionEventMissionID", | |
| "InterventionPhoneCallActivated", | |
| "NextEventToTrigger", | |
| "NumberOfFailedEventsThisExpedition", | |
| "NumberOfSuccessfulEventsThisExpedition", | |
| "PauseTime", | |
| "Powerups", | |
| "Seed", | |
| "SpawnPosition", | |
| "SpeedMultiplier", | |
| "StartTime", | |
| "TerminalPosition", | |
| "TimeOfLastUAChange", | |
| "UA" | |
| ] | |
| } | |
| }, | |
| "ExpeditionSeedsSelectedToday": { | |
| "type": "array" | |
| }, | |
| "LastKnownDay": { | |
| "type": "integer" | |
| }, | |
| "SunTimer": { | |
| "type": "integer" | |
| }, | |
| "MultiplayerLobbyID": { | |
| "type": "integer" | |
| }, | |
| "MultiplayerUA": { | |
| "type": "object", | |
| "properties": { | |
| "RealityIndex": { | |
| "type": "integer" | |
| }, | |
| "GalacticAddress": { | |
| "type": "object", | |
| "properties": { | |
| "VoxelX": { | |
| "type": "integer" | |
| }, | |
| "VoxelY": { | |
| "type": "integer" | |
| }, | |
| "VoxelZ": { | |
| "type": "integer" | |
| }, | |
| "SolarSystemIndex": { | |
| "type": "integer" | |
| }, | |
| "PlanetIndex": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "PlanetIndex", | |
| "SolarSystemIndex", | |
| "VoxelX", | |
| "VoxelY", | |
| "VoxelZ" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "GalacticAddress", | |
| "RealityIndex" | |
| ] | |
| }, | |
| "MultiplayerSpawn": { | |
| "type": "object", | |
| "properties": { | |
| "PlayerPositionInSystem": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "PlayerTransformAt": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "ShipPositionInSystem": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "ShipTransformAt": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "LastKnownPlayerState": { | |
| "type": "string" | |
| }, | |
| "FreighterPositionInSystem": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "FreighterTransformAt": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "FreighterTransformUp": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "AbandonedFreighterPositionInSystem": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "AbandonedFreighterTransformAt": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "AbandonedFreighterTransformUp": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "PlayerDeathRespawnPositionInSystem": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "PlayerDeathRespawnTransformAt": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "AbandonedFreighterPositionInSystem", | |
| "AbandonedFreighterTransformAt", | |
| "AbandonedFreighterTransformUp", | |
| "FreighterPositionInSystem", | |
| "FreighterTransformAt", | |
| "FreighterTransformUp", | |
| "LastKnownPlayerState", | |
| "PlayerPositionInSystem", | |
| "PlayerTransformAt", | |
| "ShipPositionInSystem", | |
| "ShipTransformAt" | |
| ] | |
| }, | |
| "RepairTechBuffer": { | |
| "type": "array" | |
| }, | |
| "MultiplayerPrivileges": { | |
| "type": "integer" | |
| }, | |
| "HotActions": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "KeyActions": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Action": { | |
| "type": "object", | |
| "properties": { | |
| "QuickMenuActions": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "QuickMenuActions" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Number": { | |
| "type": "integer" | |
| }, | |
| "InventoryIndex": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Action", | |
| "Id", | |
| "InventoryIndex", | |
| "Number" | |
| ] | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "KeyActions" | |
| ] | |
| } | |
| }, | |
| "LastUABeforePortalWarp": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "StoryPortalSeed": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "ShopNumber": { | |
| "type": "integer" | |
| }, | |
| "ShopTier": { | |
| "type": "integer" | |
| }, | |
| "HasAccessToNexus": { | |
| "type": "boolean" | |
| }, | |
| "NexusUniverseAddress": { | |
| "type": "object", | |
| "properties": { | |
| "RealityIndex": { | |
| "type": "integer" | |
| }, | |
| "GalacticAddress": { | |
| "type": "object", | |
| "properties": { | |
| "VoxelX": { | |
| "type": "integer" | |
| }, | |
| "VoxelY": { | |
| "type": "integer" | |
| }, | |
| "VoxelZ": { | |
| "type": "integer" | |
| }, | |
| "SolarSystemIndex": { | |
| "type": "integer" | |
| }, | |
| "PlanetIndex": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "PlanetIndex", | |
| "SolarSystemIndex", | |
| "VoxelX", | |
| "VoxelY", | |
| "VoxelZ" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "GalacticAddress", | |
| "RealityIndex" | |
| ] | |
| }, | |
| "NexusMatrixAt": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "NexusMatrixUp": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "NexusMatrixPos": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "PhotoModeSettings": { | |
| "type": "object", | |
| "properties": { | |
| "Fog": { | |
| "type": "number" | |
| }, | |
| "CloudAmount": { | |
| "type": "number" | |
| }, | |
| "SunDir": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "FoV": { | |
| "type": "number" | |
| }, | |
| "DepthOfFieldSetting": { | |
| "type": "string" | |
| }, | |
| "DepthOfFieldDistance": { | |
| "type": "number" | |
| }, | |
| "DepthOfFieldDistanceSpace": { | |
| "type": "number" | |
| }, | |
| "HalfFocalPlaneDepth": { | |
| "type": "number" | |
| }, | |
| "HalfFocalPlaneDepthSpace": { | |
| "type": "number" | |
| }, | |
| "DepthOfFieldPhysConvergence": { | |
| "type": "number" | |
| }, | |
| "DepthOfFieldPhysAperture": { | |
| "type": "number" | |
| }, | |
| "Vignette": { | |
| "type": "number" | |
| }, | |
| "Filter": { | |
| "type": "integer" | |
| }, | |
| "Bloom": { | |
| "type": "number" | |
| } | |
| }, | |
| "required": [ | |
| "Bloom", | |
| "CloudAmount", | |
| "DepthOfFieldDistance", | |
| "DepthOfFieldDistanceSpace", | |
| "DepthOfFieldPhysAperture", | |
| "DepthOfFieldPhysConvergence", | |
| "DepthOfFieldSetting", | |
| "Filter", | |
| "FoV", | |
| "Fog", | |
| "HalfFocalPlaneDepth", | |
| "HalfFocalPlaneDepthSpace", | |
| "SunDir", | |
| "Vignette" | |
| ] | |
| }, | |
| "BannerIcon": { | |
| "type": "integer" | |
| }, | |
| "BannerMainColour": { | |
| "type": "integer" | |
| }, | |
| "BannerBackgroundColour": { | |
| "type": "integer" | |
| }, | |
| "BannerTitleId": { | |
| "type": "string" | |
| }, | |
| "TelemetryUploadVersion": { | |
| "type": "integer" | |
| }, | |
| "UsesThirdPersonVehicleCam": { | |
| "type": "boolean" | |
| }, | |
| "VRCameraOffset": { | |
| "type": "number" | |
| }, | |
| "SeasonData": { | |
| "type": "object", | |
| "properties": { | |
| "SeasonId": { | |
| "type": "integer" | |
| }, | |
| "StartTimeUTC": { | |
| "type": "integer" | |
| }, | |
| "EndTimeUTC": { | |
| "type": "integer" | |
| }, | |
| "Hash": { | |
| "type": "integer" | |
| }, | |
| "Title": { | |
| "type": "string" | |
| }, | |
| "Subtitle": { | |
| "type": "string" | |
| }, | |
| "Description": { | |
| "type": "string" | |
| }, | |
| "GameMode": { | |
| "type": "object", | |
| "properties": { | |
| "PresetGameMode": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "PresetGameMode" | |
| ] | |
| }, | |
| "SeasonalUAOverride": { | |
| "type": "string" | |
| }, | |
| "UAOverrideValue": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "FinalReward": { | |
| "type": "string" | |
| }, | |
| "FinalCantRewardMessage": { | |
| "type": "string" | |
| }, | |
| "FinalRewardDescription": { | |
| "type": "string" | |
| }, | |
| "MainIcon": { | |
| "type": "object", | |
| "properties": { | |
| "Filename": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "Filename" | |
| ] | |
| }, | |
| "SeasonNumber": { | |
| "type": "integer" | |
| }, | |
| "RemixNumber": { | |
| "type": "integer" | |
| }, | |
| "DisplayNumber": { | |
| "type": "integer" | |
| }, | |
| "SeasonName": { | |
| "type": "string" | |
| }, | |
| "SeasonNameUpper": { | |
| "type": "string" | |
| }, | |
| "MainMissionTitle": { | |
| "type": "string" | |
| }, | |
| "MainMissionMessage": { | |
| "type": "string" | |
| }, | |
| "AdditionalTradeProducts": { | |
| "type": "array" | |
| }, | |
| "StartingSuitSlots": { | |
| "type": "integer" | |
| }, | |
| "StartingSuitTechSlots": { | |
| "type": "integer" | |
| }, | |
| "StartingSuitCargoSlots": { | |
| "type": "integer" | |
| }, | |
| "WeaponSeed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "ShipSeed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "ShipType": { | |
| "type": "object", | |
| "properties": { | |
| "ShipClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "ShipClass" | |
| ] | |
| }, | |
| "StartWithFreighter": { | |
| "type": "boolean" | |
| }, | |
| "FreighterRace": { | |
| "type": "object", | |
| "properties": { | |
| "AlienRace": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "AlienRace" | |
| ] | |
| }, | |
| "ValidSpawnBuildings": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "BuildingClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "BuildingClass" | |
| ] | |
| } | |
| }, | |
| "WeaponInventoryLayout": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "integer" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Level", | |
| "Seed", | |
| "Slots" | |
| ] | |
| }, | |
| "ShipInventoryLayout": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "integer" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Level", | |
| "Seed", | |
| "Slots" | |
| ] | |
| }, | |
| "ShipTechInventoryLayout": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "integer" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Level", | |
| "Seed", | |
| "Slots" | |
| ] | |
| }, | |
| "UseDefaultAppearance": { | |
| "type": "boolean" | |
| }, | |
| "Inventory": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array" | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array" | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "Inventory_TechOnly": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array" | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array" | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "Inventory_Cargo": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array" | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array" | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "ShipInventory": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array" | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array" | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "WeaponInventory": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array" | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array" | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "SubstanceMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "ProductMaxStorageMultiplier": { | |
| "type": "integer" | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "UseRandomPet": { | |
| "type": "boolean" | |
| }, | |
| "RandomPetConstraints": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "4In": { | |
| "type": "string" | |
| }, | |
| "HXT": { | |
| "type": "number" | |
| }, | |
| "UVd": { | |
| "type": "number" | |
| }, | |
| "lFr": { | |
| "type": "boolean" | |
| }, | |
| "Biome": { | |
| "type": "object", | |
| "properties": { | |
| "Biome": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "Biome" | |
| ] | |
| }, | |
| "DqZ": { | |
| "type": "number" | |
| }, | |
| "amP": { | |
| "type": "integer" | |
| }, | |
| "0xI": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "0xI", | |
| "4In", | |
| "Biome", | |
| "DqZ", | |
| "HXT", | |
| "UVd", | |
| "amP", | |
| "lFr" | |
| ] | |
| } | |
| }, | |
| "SpecificPets": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Scale": { | |
| "type": "number" | |
| }, | |
| "CreatureID": { | |
| "type": "string" | |
| }, | |
| "Descriptors": { | |
| "type": "array" | |
| }, | |
| "CreatureSeed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "CreatureSecondarySeed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "SpeciesSeed": { | |
| "type": "integer" | |
| }, | |
| "GenusSeed": { | |
| "type": "integer" | |
| }, | |
| "CustomSpeciesName": { | |
| "type": "string" | |
| }, | |
| "Predator": { | |
| "type": "boolean" | |
| }, | |
| "UA": { | |
| "type": "integer" | |
| }, | |
| "AllowUnmodifiedReroll": { | |
| "type": "boolean" | |
| }, | |
| "ColourBaseSeed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "BoneScaleSeed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "HasFur": { | |
| "type": "boolean" | |
| }, | |
| "Biome": { | |
| "type": "object", | |
| "properties": { | |
| "Biome": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "Biome" | |
| ] | |
| }, | |
| "CreatureType": { | |
| "type": "object", | |
| "properties": { | |
| "CreatureType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "CreatureType" | |
| ] | |
| }, | |
| "BirthTime": { | |
| "type": "integer" | |
| }, | |
| "LastEggTime": { | |
| "type": "integer" | |
| }, | |
| "LastTrustIncreaseTime": { | |
| "type": "integer" | |
| }, | |
| "LastTrustDecreaseTime": { | |
| "type": "integer" | |
| }, | |
| "EggModified": { | |
| "type": "boolean" | |
| }, | |
| "HasBeenSummoned": { | |
| "type": "boolean" | |
| }, | |
| "CustomName": { | |
| "type": "string" | |
| }, | |
| "Trust": { | |
| "type": "number" | |
| }, | |
| "SenderData": { | |
| "type": "object", | |
| "properties": { | |
| "LID": { | |
| "type": "string" | |
| }, | |
| "UID": { | |
| "type": "string" | |
| }, | |
| "USN": { | |
| "type": "string" | |
| }, | |
| "PTK": { | |
| "type": "string" | |
| }, | |
| "TS": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "LID", | |
| "PTK", | |
| "TS", | |
| "UID", | |
| "USN" | |
| ] | |
| }, | |
| "Traits": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "Moods": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "AllowUnmodifiedReroll", | |
| "Biome", | |
| "BirthTime", | |
| "BoneScaleSeed", | |
| "ColourBaseSeed", | |
| "CreatureID", | |
| "CreatureSecondarySeed", | |
| "CreatureSeed", | |
| "CreatureType", | |
| "CustomName", | |
| "CustomSpeciesName", | |
| "Descriptors", | |
| "EggModified", | |
| "GenusSeed", | |
| "HasBeenSummoned", | |
| "HasFur", | |
| "LastEggTime", | |
| "LastTrustDecreaseTime", | |
| "LastTrustIncreaseTime", | |
| "Moods", | |
| "Predator", | |
| "Scale", | |
| "SenderData", | |
| "SpeciesSeed", | |
| "Traits", | |
| "Trust", | |
| "UA" | |
| ] | |
| } | |
| }, | |
| "SandwormOverrides": { | |
| "type": "array" | |
| }, | |
| "SandwormGlobalOverride": { | |
| "type": "boolean" | |
| }, | |
| "SandwormGlobalOverrideTimer": { | |
| "type": "number" | |
| }, | |
| "SandwormGlobalOverrideSpawnChance": { | |
| "type": "number" | |
| }, | |
| "StartNextToShip": { | |
| "type": "boolean" | |
| }, | |
| "DistanceFromShipAtStartOfGame": { | |
| "type": "number" | |
| }, | |
| "ShipStartsDamaged": { | |
| "type": "boolean" | |
| }, | |
| "AllowMissionDetailMessages": { | |
| "type": "boolean" | |
| }, | |
| "UseStartPlanetObjectListOverrides": { | |
| "type": "boolean" | |
| }, | |
| "StartPlanetRareSubstanceOverride": { | |
| "type": "string" | |
| }, | |
| "TrashInventoryOnGalaxyTravel": { | |
| "type": "boolean" | |
| }, | |
| "FreighterBattleEarlyWarpsOverride": { | |
| "type": "integer" | |
| }, | |
| "Stages": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Milestones": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Mission": { | |
| "type": "string" | |
| }, | |
| "Title": { | |
| "type": "string" | |
| }, | |
| "TitleUpper": { | |
| "type": "string" | |
| }, | |
| "Description": { | |
| "type": "string" | |
| }, | |
| "DescriptionDone": { | |
| "type": "string" | |
| }, | |
| "CantRewardMessage": { | |
| "type": "string" | |
| }, | |
| "yID": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "number" | |
| }, | |
| "StageIndex": { | |
| "type": "integer" | |
| }, | |
| "MilestoneIndex": { | |
| "type": "integer" | |
| }, | |
| "RendezvousIndex": { | |
| "type": "integer" | |
| }, | |
| "Icon": { | |
| "type": "object", | |
| "properties": { | |
| "Filename": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "Filename" | |
| ] | |
| }, | |
| "IconGrey": { | |
| "type": "object", | |
| "properties": { | |
| "Filename": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "Filename" | |
| ] | |
| }, | |
| "MissionIcon": { | |
| "type": "object", | |
| "properties": { | |
| "Filename": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "Filename" | |
| ] | |
| }, | |
| "MissionIconSelected": { | |
| "type": "object", | |
| "properties": { | |
| "Filename": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "Filename" | |
| ] | |
| }, | |
| "MissionIconNotSelected": { | |
| "type": "object", | |
| "properties": { | |
| "Filename": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "Filename" | |
| ] | |
| }, | |
| "Reward": { | |
| "type": "string" | |
| }, | |
| "X;?": { | |
| "type": "string" | |
| }, | |
| "RewardDescription": { | |
| "type": "string" | |
| }, | |
| "CantClaimRewardDescription": { | |
| "type": "string" | |
| }, | |
| "WmI": { | |
| "type": "boolean" | |
| }, | |
| "IsRendezvous": { | |
| "type": "boolean" | |
| }, | |
| "IsStageControl": { | |
| "type": "boolean" | |
| }, | |
| "Encryption": { | |
| "type": "object", | |
| "properties": { | |
| "IsEncrypted": { | |
| "type": "boolean" | |
| }, | |
| "TitleUpper": { | |
| "type": "string" | |
| }, | |
| "Subtitle": { | |
| "type": "string" | |
| }, | |
| "Description": { | |
| "type": "string" | |
| }, | |
| "Patch": { | |
| "type": "object", | |
| "properties": { | |
| "Filename": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "Filename" | |
| ] | |
| }, | |
| "HoverPopupIcon": { | |
| "type": "object", | |
| "properties": { | |
| "Filename": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "Filename" | |
| ] | |
| }, | |
| "DecryptMissionId": { | |
| "type": "string" | |
| }, | |
| "IsL": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "DecryptMissionId", | |
| "Description", | |
| "HoverPopupIcon", | |
| "IsEncrypted", | |
| "Patch", | |
| "Subtitle", | |
| "TitleUpper" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "CantClaimRewardDescription", | |
| "CantRewardMessage", | |
| "Description", | |
| "DescriptionDone", | |
| "Encryption", | |
| "Icon", | |
| "IconGrey", | |
| "IsRendezvous", | |
| "IsStageControl", | |
| "MilestoneIndex", | |
| "Mission", | |
| "MissionIcon", | |
| "MissionIconNotSelected", | |
| "MissionIconSelected", | |
| "RendezvousIndex", | |
| "Reward", | |
| "RewardDescription", | |
| "StageIndex", | |
| "Title", | |
| "TitleUpper" | |
| ] | |
| } | |
| }, | |
| "Icon": { | |
| "type": "object", | |
| "properties": { | |
| "Filename": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "Filename" | |
| ] | |
| }, | |
| "Title": { | |
| "type": "string" | |
| }, | |
| "Description": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "Description", | |
| "Icon", | |
| "Milestones", | |
| "Title" | |
| ] | |
| } | |
| }, | |
| "ScanEventTable": { | |
| "type": "object", | |
| "properties": { | |
| "Events": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "ForceInteraction": { | |
| "type": "string" | |
| }, | |
| "ForceInteractionType": { | |
| "type": "object", | |
| "properties": { | |
| "InteractionType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InteractionType" | |
| ] | |
| }, | |
| "MMA": { | |
| "type": "object", | |
| "properties": { | |
| "AlienRace": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "AlienRace" | |
| ] | |
| }, | |
| "ForceBroken": { | |
| "type": "boolean" | |
| }, | |
| "ForceFixed": { | |
| "type": "boolean" | |
| }, | |
| "ForceOverridesAll": { | |
| "type": "boolean" | |
| }, | |
| "ForceOverrideEncounter": { | |
| "type": "string" | |
| }, | |
| "IsCommunityPortalOverride": { | |
| "type": "boolean" | |
| }, | |
| "ClearForcedInteractionOnCompletion": { | |
| "type": "boolean" | |
| }, | |
| "BuildingPreventionRadius": { | |
| "type": "number" | |
| }, | |
| "me6": { | |
| "type": "boolean" | |
| }, | |
| "AlwaysShow": { | |
| "type": "boolean" | |
| }, | |
| "NeverShow": { | |
| "type": "boolean" | |
| }, | |
| "4q6": { | |
| "type": "boolean" | |
| }, | |
| "PlanetLabelText": { | |
| "type": "string" | |
| }, | |
| "SurveyDistance": { | |
| "type": "number" | |
| }, | |
| "SurveyDiscoveryOSDMessage": { | |
| "type": "string" | |
| }, | |
| "EventStartType": { | |
| "type": "string" | |
| }, | |
| "EventEndType": { | |
| "type": "string" | |
| }, | |
| "EventPriority": { | |
| "type": "string" | |
| }, | |
| "CanEndFromOutsideMission": { | |
| "type": "boolean" | |
| }, | |
| "DisableMultiplayerSync": { | |
| "type": "boolean" | |
| }, | |
| "ReplaceEventIfAlreadyActive": { | |
| "type": "boolean" | |
| }, | |
| "BuildingLocation": { | |
| "type": "string" | |
| }, | |
| "BuildingType": { | |
| "type": "string" | |
| }, | |
| "BuildingClass": { | |
| "type": "object", | |
| "properties": { | |
| "BuildingClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "BuildingClass" | |
| ] | |
| }, | |
| "AllowFriendsBases": { | |
| "type": "boolean" | |
| }, | |
| "ForceWideRandom": { | |
| "type": "boolean" | |
| }, | |
| "MustFindSystem": { | |
| "type": "boolean" | |
| }, | |
| "AllowOverriddenBuildings": { | |
| "type": "boolean" | |
| }, | |
| "SolarSystemLocation": { | |
| "type": "string" | |
| }, | |
| "SolarSystemAttributes": { | |
| "type": "object", | |
| "properties": { | |
| "UseStarType": { | |
| "type": "boolean" | |
| }, | |
| "UseWealth": { | |
| "type": "boolean" | |
| }, | |
| "UseTrading": { | |
| "type": "boolean" | |
| }, | |
| "UseRace": { | |
| "type": "object", | |
| "properties": { | |
| "AlienRace": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "AlienRace" | |
| ] | |
| }, | |
| "UseAnomaly": { | |
| "type": "object", | |
| "properties": { | |
| "GalaxyStarAnomaly": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "GalaxyStarAnomaly" | |
| ] | |
| }, | |
| "UseConflict": { | |
| "type": "object", | |
| "properties": { | |
| "ConflictLevel": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "ConflictLevel" | |
| ] | |
| }, | |
| "StarType": { | |
| "type": "object", | |
| "properties": { | |
| "GalaxyStarType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "GalaxyStarType" | |
| ] | |
| }, | |
| "TradingData": { | |
| "type": "object", | |
| "properties": { | |
| "WealthClass": { | |
| "type": "object", | |
| "properties": { | |
| "WealthClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "WealthClass" | |
| ] | |
| }, | |
| "TradingClass": { | |
| "type": "object", | |
| "properties": { | |
| "TradingClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "TradingClass" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "TradingClass", | |
| "WealthClass" | |
| ] | |
| }, | |
| "AllowUnsafeMatches": { | |
| "type": "boolean" | |
| }, | |
| "NeverAllowEmpty": { | |
| "type": "boolean" | |
| }, | |
| "NeverAllowAbandoned": { | |
| "type": "boolean" | |
| }, | |
| "RequireUndiscovered": { | |
| "type": "boolean" | |
| }, | |
| "NeedsWaterPlanet": { | |
| "type": "boolean" | |
| }, | |
| "AeI": { | |
| "type": "boolean" | |
| }, | |
| "L8=": { | |
| "type": "boolean" | |
| }, | |
| "NeedsExtremeSentinelPlanet": { | |
| "type": "boolean" | |
| }, | |
| "NeverAllowExtremeSentinelPlanet": { | |
| "type": "boolean" | |
| }, | |
| "NeedsExtremeWeatherPlanet": { | |
| "type": "boolean" | |
| }, | |
| "NeedsExtremeHazardPlanet": { | |
| "type": "boolean" | |
| }, | |
| "AnyBiomeNotWeirdOrDead": { | |
| "type": "boolean" | |
| }, | |
| "AnyRGBBiome": { | |
| "type": "boolean" | |
| }, | |
| "rER": { | |
| "type": "boolean" | |
| }, | |
| "NeedsBiome": { | |
| "type": "boolean" | |
| }, | |
| "NeedsBiomeType": { | |
| "type": "object", | |
| "properties": { | |
| "Biome": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "Biome" | |
| ] | |
| }, | |
| "UseBiomeSubType": { | |
| "type": "object", | |
| "properties": { | |
| "BiomeSubType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "BiomeSubType" | |
| ] | |
| }, | |
| "NeedsEmptySystem": { | |
| "type": "boolean" | |
| }, | |
| "NeedsAbandonedSystem": { | |
| "type": "boolean" | |
| }, | |
| "NeedsResourceHint": { | |
| "type": "string" | |
| }, | |
| "SuitableForCreatureDiscovery": { | |
| "type": "boolean" | |
| }, | |
| "SuitableForCreatureTaming": { | |
| "type": "boolean" | |
| }, | |
| "SamePlanetAsEvent": { | |
| "type": "string" | |
| }, | |
| "OHU": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "AllowUnsafeMatches", | |
| "AnyBiomeNotWeirdOrDead", | |
| "AnyRGBBiome", | |
| "NeedsAbandonedSystem", | |
| "NeedsBiome", | |
| "NeedsBiomeType", | |
| "NeedsEmptySystem", | |
| "NeedsExtremeHazardPlanet", | |
| "NeedsExtremeSentinelPlanet", | |
| "NeedsExtremeWeatherPlanet", | |
| "NeedsResourceHint", | |
| "NeedsWaterPlanet", | |
| "NeverAllowAbandoned", | |
| "NeverAllowEmpty", | |
| "NeverAllowExtremeSentinelPlanet", | |
| "RequireUndiscovered", | |
| "SamePlanetAsEvent", | |
| "StarType", | |
| "SuitableForCreatureDiscovery", | |
| "SuitableForCreatureTaming", | |
| "TradingData", | |
| "UseAnomaly", | |
| "UseBiomeSubType", | |
| "UseConflict", | |
| "UseRace", | |
| "UseStarType", | |
| "UseTrading", | |
| "UseWealth" | |
| ] | |
| }, | |
| "SolarSystemAttributesFallback": { | |
| "type": "object", | |
| "properties": { | |
| "UseStarType": { | |
| "type": "boolean" | |
| }, | |
| "UseWealth": { | |
| "type": "boolean" | |
| }, | |
| "UseTrading": { | |
| "type": "boolean" | |
| }, | |
| "UseRace": { | |
| "type": "object", | |
| "properties": { | |
| "AlienRace": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "AlienRace" | |
| ] | |
| }, | |
| "UseAnomaly": { | |
| "type": "object", | |
| "properties": { | |
| "GalaxyStarAnomaly": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "GalaxyStarAnomaly" | |
| ] | |
| }, | |
| "UseConflict": { | |
| "type": "object", | |
| "properties": { | |
| "ConflictLevel": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "ConflictLevel" | |
| ] | |
| }, | |
| "StarType": { | |
| "type": "object", | |
| "properties": { | |
| "GalaxyStarType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "GalaxyStarType" | |
| ] | |
| }, | |
| "TradingData": { | |
| "type": "object", | |
| "properties": { | |
| "WealthClass": { | |
| "type": "object", | |
| "properties": { | |
| "WealthClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "WealthClass" | |
| ] | |
| }, | |
| "TradingClass": { | |
| "type": "object", | |
| "properties": { | |
| "TradingClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "TradingClass" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "TradingClass", | |
| "WealthClass" | |
| ] | |
| }, | |
| "AllowUnsafeMatches": { | |
| "type": "boolean" | |
| }, | |
| "NeverAllowEmpty": { | |
| "type": "boolean" | |
| }, | |
| "NeverAllowAbandoned": { | |
| "type": "boolean" | |
| }, | |
| "RequireUndiscovered": { | |
| "type": "boolean" | |
| }, | |
| "NeedsWaterPlanet": { | |
| "type": "boolean" | |
| }, | |
| "AeI": { | |
| "type": "boolean" | |
| }, | |
| "L8=": { | |
| "type": "boolean" | |
| }, | |
| "NeedsExtremeSentinelPlanet": { | |
| "type": "boolean" | |
| }, | |
| "NeverAllowExtremeSentinelPlanet": { | |
| "type": "boolean" | |
| }, | |
| "NeedsExtremeWeatherPlanet": { | |
| "type": "boolean" | |
| }, | |
| "NeedsExtremeHazardPlanet": { | |
| "type": "boolean" | |
| }, | |
| "AnyBiomeNotWeirdOrDead": { | |
| "type": "boolean" | |
| }, | |
| "AnyRGBBiome": { | |
| "type": "boolean" | |
| }, | |
| "rER": { | |
| "type": "boolean" | |
| }, | |
| "NeedsBiome": { | |
| "type": "boolean" | |
| }, | |
| "NeedsBiomeType": { | |
| "type": "object", | |
| "properties": { | |
| "Biome": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "Biome" | |
| ] | |
| }, | |
| "UseBiomeSubType": { | |
| "type": "object", | |
| "properties": { | |
| "BiomeSubType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "BiomeSubType" | |
| ] | |
| }, | |
| "NeedsEmptySystem": { | |
| "type": "boolean" | |
| }, | |
| "NeedsAbandonedSystem": { | |
| "type": "boolean" | |
| }, | |
| "NeedsResourceHint": { | |
| "type": "string" | |
| }, | |
| "SuitableForCreatureDiscovery": { | |
| "type": "boolean" | |
| }, | |
| "SuitableForCreatureTaming": { | |
| "type": "boolean" | |
| }, | |
| "SamePlanetAsEvent": { | |
| "type": "string" | |
| }, | |
| "OHU": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "AllowUnsafeMatches", | |
| "AnyBiomeNotWeirdOrDead", | |
| "AnyRGBBiome", | |
| "NeedsAbandonedSystem", | |
| "NeedsBiome", | |
| "NeedsBiomeType", | |
| "NeedsEmptySystem", | |
| "NeedsExtremeHazardPlanet", | |
| "NeedsExtremeSentinelPlanet", | |
| "NeedsExtremeWeatherPlanet", | |
| "NeedsResourceHint", | |
| "NeedsWaterPlanet", | |
| "NeverAllowAbandoned", | |
| "NeverAllowEmpty", | |
| "NeverAllowExtremeSentinelPlanet", | |
| "RequireUndiscovered", | |
| "SamePlanetAsEvent", | |
| "StarType", | |
| "SuitableForCreatureDiscovery", | |
| "SuitableForCreatureTaming", | |
| "TradingData", | |
| "UseAnomaly", | |
| "UseBiomeSubType", | |
| "UseConflict", | |
| "UseRace", | |
| "UseStarType", | |
| "UseTrading", | |
| "UseWealth" | |
| ] | |
| }, | |
| "ForceRestartInteraction": { | |
| "type": "boolean" | |
| }, | |
| "HasReward": { | |
| "type": "string" | |
| }, | |
| "NextOption": { | |
| "type": "string" | |
| }, | |
| "TriggerActions": { | |
| "type": "object", | |
| "properties": { | |
| "Range": { | |
| "type": "number" | |
| }, | |
| "Triggers": { | |
| "type": "array" | |
| }, | |
| "AllowRetrigger": { | |
| "type": "boolean" | |
| } | |
| }, | |
| "required": [ | |
| "AllowRetrigger", | |
| "Range", | |
| "Triggers" | |
| ] | |
| }, | |
| "UAsList": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| }, | |
| "TechShopType": { | |
| "type": "object", | |
| "properties": { | |
| "TechnologyCategory": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "TechnologyCategory" | |
| ] | |
| }, | |
| "OSDMessage": { | |
| "type": "string" | |
| }, | |
| "InterstellarOSDMessage": { | |
| "type": "string" | |
| }, | |
| "MarkerLabel": { | |
| "type": "string" | |
| }, | |
| "MarkerIcon": { | |
| "type": "object", | |
| "properties": { | |
| "Filename": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "Filename" | |
| ] | |
| }, | |
| "MissionMarkerHighlightStyleOverride": { | |
| "type": "object", | |
| "properties": { | |
| "ScannerIconHighlightType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "ScannerIconHighlightType" | |
| ] | |
| }, | |
| "StartTime": { | |
| "type": "number" | |
| }, | |
| "MessageTime": { | |
| "type": "number" | |
| }, | |
| "MessageDisplayTime": { | |
| "type": "number" | |
| }, | |
| "MessageAudio": { | |
| "type": "object", | |
| "properties": { | |
| "AkEvent": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "AkEvent" | |
| ] | |
| }, | |
| "IconTime": { | |
| "type": "number" | |
| }, | |
| "TooltipTime": { | |
| "type": "number" | |
| }, | |
| "TooltipRepeats": { | |
| "type": "boolean" | |
| }, | |
| "ShowEndTooltip": { | |
| "type": "boolean" | |
| }, | |
| "TooltipMessage": { | |
| "type": "string" | |
| }, | |
| "ResourceOverride": { | |
| "type": "object", | |
| "properties": { | |
| "Filename": { | |
| "type": "string" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "AltId": { | |
| "type": "string" | |
| }, | |
| "ProceduralTexture": { | |
| "type": "object", | |
| "properties": { | |
| "Samplers": { | |
| "type": "array" | |
| } | |
| }, | |
| "required": [ | |
| "Samplers" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "AltId", | |
| "Filename", | |
| "ProceduralTexture", | |
| "Seed" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "AllowFriendsBases", | |
| "AllowOverriddenBuildings", | |
| "AlwaysShow", | |
| "BuildingClass", | |
| "BuildingLocation", | |
| "BuildingPreventionRadius", | |
| "BuildingType", | |
| "CanEndFromOutsideMission", | |
| "ClearForcedInteractionOnCompletion", | |
| "DisableMultiplayerSync", | |
| "EventEndType", | |
| "EventPriority", | |
| "EventStartType", | |
| "ForceBroken", | |
| "ForceFixed", | |
| "ForceInteraction", | |
| "ForceInteractionType", | |
| "ForceOverrideEncounter", | |
| "ForceOverridesAll", | |
| "ForceRestartInteraction", | |
| "ForceWideRandom", | |
| "HasReward", | |
| "IconTime", | |
| "InterstellarOSDMessage", | |
| "IsCommunityPortalOverride", | |
| "MarkerIcon", | |
| "MarkerLabel", | |
| "MessageAudio", | |
| "MessageDisplayTime", | |
| "MessageTime", | |
| "MissionMarkerHighlightStyleOverride", | |
| "MustFindSystem", | |
| "Name", | |
| "NeverShow", | |
| "NextOption", | |
| "OSDMessage", | |
| "PlanetLabelText", | |
| "ReplaceEventIfAlreadyActive", | |
| "ResourceOverride", | |
| "ShowEndTooltip", | |
| "SolarSystemAttributes", | |
| "SolarSystemAttributesFallback", | |
| "SolarSystemLocation", | |
| "StartTime", | |
| "SurveyDiscoveryOSDMessage", | |
| "SurveyDistance", | |
| "TechShopType", | |
| "TooltipMessage", | |
| "TooltipRepeats", | |
| "TooltipTime", | |
| "TriggerActions", | |
| "UAsList" | |
| ] | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "Events" | |
| ] | |
| }, | |
| "CompatibleWithState": { | |
| "type": "boolean" | |
| }, | |
| "FinalStageTitle": { | |
| "type": "string" | |
| }, | |
| "MilestoneWithStageLocId": { | |
| "type": "string" | |
| }, | |
| "bSn": { | |
| "type": "object", | |
| "properties": { | |
| "DifficultyPresetType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "DifficultyPresetType" | |
| ] | |
| }, | |
| "JiM": { | |
| "type": "object", | |
| "properties": { | |
| "SettingsLocked": { | |
| "type": "boolean" | |
| }, | |
| "InventoriesAlwaysInRange": { | |
| "type": "boolean" | |
| }, | |
| "AllSlotsUnlocked": { | |
| "type": "boolean" | |
| }, | |
| "WarpDriveRequirements": { | |
| "type": "boolean" | |
| }, | |
| "CraftingIsFree": { | |
| "type": "boolean" | |
| }, | |
| "TutorialEnabled": { | |
| "type": "boolean" | |
| }, | |
| "StartWithAllItemsKnown": { | |
| "type": "boolean" | |
| }, | |
| "BaseAutoPower": { | |
| "type": "boolean" | |
| }, | |
| "DeathConsequences": { | |
| "type": "object", | |
| "properties": { | |
| "DeathConsequencesDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "DeathConsequencesDifficulty" | |
| ] | |
| }, | |
| "DamageReceived": { | |
| "type": "object", | |
| "properties": { | |
| "DamageReceivedDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "DamageReceivedDifficulty" | |
| ] | |
| }, | |
| "DamageGiven": { | |
| "type": "object", | |
| "properties": { | |
| "DamageGivenDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "DamageGivenDifficulty" | |
| ] | |
| }, | |
| "ActiveSurvivalBars": { | |
| "type": "object", | |
| "properties": { | |
| "ActiveSurvivalBarsDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "ActiveSurvivalBarsDifficulty" | |
| ] | |
| }, | |
| "HazardDrain": { | |
| "type": "object", | |
| "properties": { | |
| "HazardDrainDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "HazardDrainDifficulty" | |
| ] | |
| }, | |
| "EnergyDrain": { | |
| "type": "object", | |
| "properties": { | |
| "EnergyDrainDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "EnergyDrainDifficulty" | |
| ] | |
| }, | |
| "SubstanceCollection": { | |
| "type": "object", | |
| "properties": { | |
| "SubstanceCollectionDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "SubstanceCollectionDifficulty" | |
| ] | |
| }, | |
| "InventoryStackLimits": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackLimitsDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackLimitsDifficulty" | |
| ] | |
| }, | |
| "ChargingRequirements": { | |
| "type": "object", | |
| "properties": { | |
| "ChargingRequirementsDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "ChargingRequirementsDifficulty" | |
| ] | |
| }, | |
| "FuelUse": { | |
| "type": "object", | |
| "properties": { | |
| "FuelUseDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "FuelUseDifficulty" | |
| ] | |
| }, | |
| "LaunchFuelCost": { | |
| "type": "object", | |
| "properties": { | |
| "LaunchFuelCostDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "LaunchFuelCostDifficulty" | |
| ] | |
| }, | |
| "CurrencyCost": { | |
| "type": "object", | |
| "properties": { | |
| "CurrencyCostDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "CurrencyCostDifficulty" | |
| ] | |
| }, | |
| "ItemShopAvailability": { | |
| "type": "object", | |
| "properties": { | |
| "ItemShopAvailabilityDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "ItemShopAvailabilityDifficulty" | |
| ] | |
| }, | |
| "ScannerRecharge": { | |
| "type": "object", | |
| "properties": { | |
| "ScannerRechargeDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "ScannerRechargeDifficulty" | |
| ] | |
| }, | |
| "ReputationGain": { | |
| "type": "object", | |
| "properties": { | |
| "ReputationGainDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "ReputationGainDifficulty" | |
| ] | |
| }, | |
| "CreatureHostility": { | |
| "type": "object", | |
| "properties": { | |
| "CreatureHostilityDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "CreatureHostilityDifficulty" | |
| ] | |
| }, | |
| "SpaceCombatTimers": { | |
| "type": "object", | |
| "properties": { | |
| "CombatTimerDifficultyOption": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "CombatTimerDifficultyOption" | |
| ] | |
| }, | |
| "GroundCombatTimers": { | |
| "type": "object", | |
| "properties": { | |
| "CombatTimerDifficultyOption": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "CombatTimerDifficultyOption" | |
| ] | |
| }, | |
| "SprintingCost": { | |
| "type": "object", | |
| "properties": { | |
| "SprintingCostDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "SprintingCostDifficulty" | |
| ] | |
| }, | |
| "BreakTechOnDamage": { | |
| "type": "object", | |
| "properties": { | |
| "BreakTechOnDamageProbability": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "BreakTechOnDamageProbability" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "ActiveSurvivalBars", | |
| "AllSlotsUnlocked", | |
| "BaseAutoPower", | |
| "BreakTechOnDamage", | |
| "ChargingRequirements", | |
| "CraftingIsFree", | |
| "CreatureHostility", | |
| "CurrencyCost", | |
| "DamageGiven", | |
| "DamageReceived", | |
| "DeathConsequences", | |
| "EnergyDrain", | |
| "FuelUse", | |
| "GroundCombatTimers", | |
| "HazardDrain", | |
| "InventoriesAlwaysInRange", | |
| "InventoryStackLimits", | |
| "ItemShopAvailability", | |
| "LaunchFuelCost", | |
| "ReputationGain", | |
| "ScannerRecharge", | |
| "SettingsLocked", | |
| "SpaceCombatTimers", | |
| "SprintingCost", | |
| "StartWithAllItemsKnown", | |
| "SubstanceCollection", | |
| "TutorialEnabled", | |
| "WarpDriveRequirements" | |
| ] | |
| }, | |
| "To;": { | |
| "type": "string" | |
| }, | |
| "DoCommunityMissionTextSubstitutions": { | |
| "type": "boolean" | |
| }, | |
| "DefaultToPvPOff": { | |
| "type": "boolean" | |
| }, | |
| "PSw": { | |
| "type": "boolean" | |
| }, | |
| "NeverTradeProducts": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| }, | |
| "FreighterBaseOverrideFilename": { | |
| "type": "string" | |
| }, | |
| "StartAboardFreighter": { | |
| "type": "boolean" | |
| }, | |
| "30;": { | |
| "type": "boolean" | |
| }, | |
| "LDi": { | |
| "type": "boolean" | |
| }, | |
| "ForceDeepSpaceAmbientFrigatesOnInfested": { | |
| "type": "boolean" | |
| }, | |
| "TechCostMultiplier": { | |
| "type": "integer" | |
| }, | |
| "NeverLearnableTech": { | |
| "type": "array" | |
| }, | |
| "ForgottenProducts": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| }, | |
| "IncreaseXClassTechOddsWithCommTier": { | |
| "type": "boolean" | |
| }, | |
| "AbandonedFreighterHazardProtectionMul": { | |
| "type": "number" | |
| }, | |
| "HazardProtectionDrainMultiplier": { | |
| "type": "number" | |
| }, | |
| "EnergyDrainMultiplier": { | |
| "type": "number" | |
| }, | |
| "QuestSubstanceReducer": { | |
| "type": "integer" | |
| }, | |
| "ResetSaveOnDeath": { | |
| "type": "boolean" | |
| }, | |
| "StatsToPersistOnReset": { | |
| "type": "array" | |
| }, | |
| "HasBeenConverted": { | |
| "type": "boolean" | |
| }, | |
| "TechnologyTable": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "4=k": { | |
| "type": "string" | |
| }, | |
| "Group": { | |
| "type": "string" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "BBw": { | |
| "type": "string" | |
| }, | |
| "Subtitle": { | |
| "type": "string" | |
| }, | |
| "Description": { | |
| "type": "string" | |
| }, | |
| "SCS": { | |
| "type": "boolean" | |
| }, | |
| "i7<": { | |
| "type": "string" | |
| }, | |
| "gWW": { | |
| "type": "string" | |
| }, | |
| "Icon": { | |
| "type": "object", | |
| "properties": { | |
| "Filename": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "Filename" | |
| ] | |
| }, | |
| "Colour": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| }, | |
| "4Yf": { | |
| "type": "boolean" | |
| }, | |
| "y=c": { | |
| "type": "integer" | |
| }, | |
| "uK<": { | |
| "type": "object", | |
| "properties": { | |
| "J>I": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "J>I" | |
| ] | |
| }, | |
| "Gc7": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| }, | |
| "cQc": { | |
| "type": "number" | |
| }, | |
| "7dP": { | |
| "type": "boolean" | |
| }, | |
| "67b": { | |
| "type": "boolean" | |
| }, | |
| "02l": { | |
| "type": "string" | |
| }, | |
| "qbd": { | |
| "type": "boolean" | |
| }, | |
| "8L;": { | |
| "type": "boolean" | |
| }, | |
| "3ol": { | |
| "type": "boolean" | |
| }, | |
| "WAV": { | |
| "type": "boolean" | |
| }, | |
| "YIB": { | |
| "type": "boolean" | |
| }, | |
| "LFj": { | |
| "type": "object", | |
| "properties": { | |
| "TechnologyCategory": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "TechnologyCategory" | |
| ] | |
| }, | |
| "hQ1": { | |
| "type": "object", | |
| "properties": { | |
| "UtG": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "UtG" | |
| ] | |
| }, | |
| "Value": { | |
| "type": "number" | |
| }, | |
| "9J<": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "4=k": { | |
| "type": "string" | |
| }, | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "4=k", | |
| "Amount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "huR": { | |
| "type": "object", | |
| "properties": { | |
| "N=w": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "N=w" | |
| ] | |
| }, | |
| "txU": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Kex": { | |
| "type": "object", | |
| "properties": { | |
| "N=w": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "N=w" | |
| ] | |
| }, | |
| "B29": { | |
| "type": "number" | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "B29", | |
| "Kex", | |
| "Level" | |
| ] | |
| } | |
| }, | |
| "Ubj": { | |
| "type": "string" | |
| }, | |
| "nW;": { | |
| "type": "integer" | |
| }, | |
| "mRF": { | |
| "type": "string" | |
| }, | |
| "7pJ": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "CX9": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "753": { | |
| "type": "string" | |
| }, | |
| "GFy": { | |
| "type": "integer" | |
| }, | |
| "s;F": { | |
| "type": "object", | |
| "properties": { | |
| "gsT": { | |
| "type": "number" | |
| }, | |
| "aS@": { | |
| "type": "number" | |
| }, | |
| "TuK": { | |
| "type": "number" | |
| }, | |
| "xFq": { | |
| "type": "number" | |
| }, | |
| "uEG": { | |
| "type": "number" | |
| } | |
| }, | |
| "required": [ | |
| "TuK", | |
| "aS@", | |
| "gsT", | |
| "uEG", | |
| "xFq" | |
| ] | |
| }, | |
| "vnq": { | |
| "type": "integer" | |
| }, | |
| ">TS": { | |
| "type": "object", | |
| "properties": { | |
| "AlienRace": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "AlienRace" | |
| ] | |
| }, | |
| "2mY": { | |
| "type": "integer" | |
| }, | |
| "Z@U": { | |
| "type": "object", | |
| "properties": { | |
| "UtG": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "UtG" | |
| ] | |
| }, | |
| "QqY": { | |
| "type": "boolean" | |
| }, | |
| "BQo": { | |
| "type": "string" | |
| }, | |
| "ByQ": { | |
| "type": "string" | |
| }, | |
| "5;w": { | |
| "type": "boolean" | |
| } | |
| }, | |
| "required": [ | |
| "02l", | |
| "2mY", | |
| "3ol", | |
| "4=k", | |
| "4Yf", | |
| "5;w", | |
| "67b", | |
| "753", | |
| "7dP", | |
| "7pJ", | |
| "8L;", | |
| "9J<", | |
| ">TS", | |
| "BBw", | |
| "BQo", | |
| "ByQ", | |
| "CX9", | |
| "Colour", | |
| "Description", | |
| "GFy", | |
| "Gc7", | |
| "Group", | |
| "Icon", | |
| "LFj", | |
| "Level", | |
| "Name", | |
| "QqY", | |
| "SCS", | |
| "Subtitle", | |
| "Ubj", | |
| "Value", | |
| "WAV", | |
| "YIB", | |
| "Z@U", | |
| "cQc", | |
| "gWW", | |
| "hQ1", | |
| "huR", | |
| "i7<", | |
| "mRF", | |
| "nW;", | |
| "qbd", | |
| "s;F", | |
| "txU", | |
| "uK<", | |
| "vnq", | |
| "y=c" | |
| ] | |
| } | |
| }, | |
| "ProductTable": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "4=k": { | |
| "type": "string" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "BBw": { | |
| "type": "string" | |
| }, | |
| "Subtitle": { | |
| "type": "string" | |
| }, | |
| "Description": { | |
| "type": "string" | |
| }, | |
| "33q": { | |
| "type": "string" | |
| }, | |
| "S2k": { | |
| "type": "string" | |
| }, | |
| "@xZ": { | |
| "type": "object", | |
| "properties": { | |
| "Filename": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "Filename" | |
| ] | |
| }, | |
| "GFy": { | |
| "type": "integer" | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| }, | |
| "Icon": { | |
| "type": "object", | |
| "properties": { | |
| "Filename": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "Filename" | |
| ] | |
| }, | |
| "WoW": { | |
| "type": "object", | |
| "properties": { | |
| "Filename": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "Filename" | |
| ] | |
| }, | |
| "Colour": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "LFj": { | |
| "type": "object", | |
| "properties": { | |
| "J>I": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "J>I" | |
| ] | |
| }, | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "eem": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "eem" | |
| ] | |
| }, | |
| "hQ1": { | |
| "type": "object", | |
| "properties": { | |
| "hQ1": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "hQ1" | |
| ] | |
| }, | |
| "MLJ": { | |
| "type": "object", | |
| "properties": { | |
| "MLJ": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "MLJ" | |
| ] | |
| }, | |
| "l?S": { | |
| "type": "boolean" | |
| }, | |
| "TbT": { | |
| "type": "integer" | |
| }, | |
| "Zq4": { | |
| "type": "integer" | |
| }, | |
| "TlS": { | |
| "type": "integer" | |
| }, | |
| "W=G": { | |
| "type": "integer" | |
| }, | |
| "@xT": { | |
| "type": "integer" | |
| }, | |
| "9J<": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "4=k": { | |
| "type": "string" | |
| }, | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "4=k", | |
| "Amount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "c=A": { | |
| "type": "array" | |
| }, | |
| "s;F": { | |
| "type": "object", | |
| "properties": { | |
| "gsT": { | |
| "type": "number" | |
| }, | |
| "aS@": { | |
| "type": "number" | |
| }, | |
| "TuK": { | |
| "type": "number" | |
| }, | |
| "xFq": { | |
| "type": "number" | |
| }, | |
| "uEG": { | |
| "type": "number" | |
| } | |
| }, | |
| "required": [ | |
| "TuK", | |
| "aS@", | |
| "gsT", | |
| "uEG", | |
| "xFq" | |
| ] | |
| }, | |
| "iBF": { | |
| "type": "integer" | |
| }, | |
| "kOX": { | |
| "type": "boolean" | |
| }, | |
| "H:b": { | |
| "type": "number" | |
| }, | |
| "KxX": { | |
| "type": "number" | |
| }, | |
| "6:a": { | |
| "type": "object", | |
| "properties": { | |
| "6:a": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "6:a" | |
| ] | |
| }, | |
| "TOS": { | |
| "type": "string" | |
| }, | |
| "wFw": { | |
| "type": "boolean" | |
| }, | |
| "Ch:": { | |
| "type": "string" | |
| }, | |
| "VUh": { | |
| "type": "number" | |
| }, | |
| "H9K": { | |
| "type": "string" | |
| }, | |
| "ec8": { | |
| "type": "string" | |
| }, | |
| "rHh": { | |
| "type": "boolean" | |
| }, | |
| "e;b": { | |
| "type": "number" | |
| }, | |
| "E?H": { | |
| "type": "boolean" | |
| }, | |
| "LMQ": { | |
| "type": "string" | |
| }, | |
| "RxV": { | |
| "type": "boolean" | |
| }, | |
| "YeP": { | |
| "type": "boolean" | |
| }, | |
| "uWE": { | |
| "type": "boolean" | |
| } | |
| }, | |
| "required": [ | |
| "33q", | |
| "4=k", | |
| "6:a", | |
| "9J<", | |
| "@xT", | |
| "@xZ", | |
| "BBw", | |
| "Ch:", | |
| "Colour", | |
| "Description", | |
| "E?H", | |
| "GFy", | |
| "H9K", | |
| "H:b", | |
| "Icon", | |
| "KxX", | |
| "LFj", | |
| "LMQ", | |
| "Level", | |
| "MLJ", | |
| "Name", | |
| "RxV", | |
| "S2k", | |
| "Subtitle", | |
| "TOS", | |
| "TbT", | |
| "TlS", | |
| "Type", | |
| "VUh", | |
| "W=G", | |
| "WoW", | |
| "YeP", | |
| "Zq4", | |
| "c=A", | |
| "e;b", | |
| "ec8", | |
| "hQ1", | |
| "iBF", | |
| "kOX", | |
| "l?S", | |
| "rHh", | |
| "s;F", | |
| "uWE", | |
| "wFw" | |
| ] | |
| } | |
| }, | |
| "SubstanceTable": { | |
| "type": "array" | |
| }, | |
| "=:T": { | |
| "type": "object", | |
| "properties": { | |
| "KD8": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| }, | |
| "pwI": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| }, | |
| ";x>": { | |
| "type": "array" | |
| }, | |
| ";Ki": { | |
| "type": "array" | |
| }, | |
| "tLA": { | |
| "type": "integer" | |
| }, | |
| ";g=": { | |
| "type": "integer" | |
| }, | |
| "jZW": { | |
| "type": "number" | |
| }, | |
| "3V@": { | |
| "type": "number" | |
| }, | |
| "LAt": { | |
| "type": "number" | |
| }, | |
| "?JH": { | |
| "type": "number" | |
| }, | |
| "d<k": { | |
| "type": "number" | |
| }, | |
| "MwQ": { | |
| "type": "boolean" | |
| }, | |
| "ZM<": { | |
| "type": "array", | |
| "items": { | |
| "type": "integer" | |
| } | |
| }, | |
| "Eh=": { | |
| "type": "array", | |
| "items": { | |
| "type": "integer" | |
| } | |
| }, | |
| "Rlk": { | |
| "type": "array", | |
| "items": { | |
| "type": "integer" | |
| } | |
| }, | |
| "AiZ": { | |
| "type": "array", | |
| "items": { | |
| "type": "integer" | |
| } | |
| }, | |
| ">54": { | |
| "type": "array", | |
| "items": { | |
| "type": "integer" | |
| } | |
| }, | |
| "A14": { | |
| "type": "array", | |
| "items": { | |
| "type": "integer" | |
| } | |
| }, | |
| "K0h": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "3V@", | |
| ";Ki", | |
| ";g=", | |
| ";x>", | |
| ">54", | |
| "?JH", | |
| "A14", | |
| "AiZ", | |
| "Eh=", | |
| "K0h", | |
| "KD8", | |
| "LAt", | |
| "MwQ", | |
| "Rlk", | |
| "ZM<", | |
| "d<k", | |
| "jZW", | |
| "pwI", | |
| "tLA" | |
| ] | |
| }, | |
| "fdE": { | |
| "type": "boolean" | |
| } | |
| }, | |
| "required": [ | |
| "AdditionalTradeProducts", | |
| "AllowMissionDetailMessages", | |
| "CompatibleWithState", | |
| "Description", | |
| "DisplayNumber", | |
| "DistanceFromShipAtStartOfGame", | |
| "EndTimeUTC", | |
| "FinalCantRewardMessage", | |
| "FinalReward", | |
| "FinalRewardDescription", | |
| "FreighterRace", | |
| "GameMode", | |
| "Hash", | |
| "Inventory", | |
| "Inventory_Cargo", | |
| "Inventory_TechOnly", | |
| "MainIcon", | |
| "MainMissionMessage", | |
| "MainMissionTitle", | |
| "RandomPetConstraints", | |
| "RemixNumber", | |
| "SandwormGlobalOverride", | |
| "SandwormGlobalOverrideSpawnChance", | |
| "SandwormGlobalOverrideTimer", | |
| "SandwormOverrides", | |
| "ScanEventTable", | |
| "SeasonId", | |
| "SeasonName", | |
| "SeasonNameUpper", | |
| "SeasonNumber", | |
| "SeasonalUAOverride", | |
| "ShipInventory", | |
| "ShipInventoryLayout", | |
| "ShipSeed", | |
| "ShipStartsDamaged", | |
| "ShipTechInventoryLayout", | |
| "ShipType", | |
| "SpecificPets", | |
| "Stages", | |
| "StartNextToShip", | |
| "StartPlanetRareSubstanceOverride", | |
| "StartTimeUTC", | |
| "StartWithFreighter", | |
| "StartingSuitCargoSlots", | |
| "StartingSuitSlots", | |
| "StartingSuitTechSlots", | |
| "Subtitle", | |
| "Title", | |
| "UAOverrideValue", | |
| "UseDefaultAppearance", | |
| "UseRandomPet", | |
| "UseStartPlanetObjectListOverrides", | |
| "ValidSpawnBuildings", | |
| "WeaponInventory", | |
| "WeaponInventoryLayout", | |
| "WeaponSeed" | |
| ] | |
| }, | |
| "SeasonState": { | |
| "type": "object", | |
| "properties": { | |
| "MilestoneValues": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "RewardCollected": { | |
| "type": "array", | |
| "items": { | |
| "type": "integer" | |
| } | |
| }, | |
| "PinnedStage": { | |
| "type": "integer" | |
| }, | |
| "PinnedMilestone": { | |
| "type": "integer" | |
| }, | |
| "RendezvousUAs": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "HasCollectedFinalReward": { | |
| "type": "boolean" | |
| }, | |
| "ProtectedEvents": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "UA": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "ProtectedLocations": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Location": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "Radius": { | |
| "type": "number" | |
| } | |
| }, | |
| "required": [ | |
| "Location", | |
| "Radius" | |
| ] | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "ProtectedLocations", | |
| "UA" | |
| ] | |
| } | |
| }, | |
| "StateOnDeath": { | |
| "type": "object", | |
| "properties": { | |
| "SeasonSaveStateOnDeath": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "SeasonSaveStateOnDeath" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "HasCollectedFinalReward", | |
| "MilestoneValues", | |
| "PinnedMilestone", | |
| "PinnedStage", | |
| "ProtectedEvents", | |
| "RendezvousUAs", | |
| "RewardCollected" | |
| ] | |
| }, | |
| "RestartAllInactiveSeasonalMissions": { | |
| "type": "boolean" | |
| }, | |
| "RedeemedSeasonRewards": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| }, | |
| "RedeemedTwitchRewards": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| }, | |
| "SettlementStatesV2": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "UniqueId": { | |
| "type": "string" | |
| }, | |
| "UniverseAddress": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "Position": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "SeedValue": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "BuildingStates": { | |
| "type": "array", | |
| "items": { | |
| "type": "integer" | |
| } | |
| }, | |
| "LastBuildingUpgradesTimestamps": { | |
| "type": "array", | |
| "items": { | |
| "type": "integer" | |
| } | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Owner": { | |
| "type": "object", | |
| "properties": { | |
| "LID": { | |
| "type": "string" | |
| }, | |
| "UID": { | |
| "type": "string" | |
| }, | |
| "USN": { | |
| "type": "string" | |
| }, | |
| "PTK": { | |
| "type": "string" | |
| }, | |
| "TS": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "LID", | |
| "PTK", | |
| "TS", | |
| "UID", | |
| "USN" | |
| ] | |
| }, | |
| "PendingJudgementType": { | |
| "type": "object", | |
| "properties": { | |
| "SettlementJudgementType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "SettlementJudgementType" | |
| ] | |
| }, | |
| "PendingCustomJudgementID": { | |
| "type": "string" | |
| }, | |
| "Stats": { | |
| "type": "array", | |
| "items": { | |
| "type": "integer" | |
| } | |
| }, | |
| "Perks": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| }, | |
| "LastJudgementTime": { | |
| "type": "integer" | |
| }, | |
| "LastUpkeepDebtCheckTime": { | |
| "type": "integer" | |
| }, | |
| "LastDebtChangeTime": { | |
| "type": "integer" | |
| }, | |
| "LastAlertChangeTime": { | |
| "type": "integer" | |
| }, | |
| "DbResourceId": { | |
| "type": "string" | |
| }, | |
| "DbTimestamp": { | |
| "type": "integer" | |
| }, | |
| "DbVersion": { | |
| "type": "integer" | |
| }, | |
| "ProductionState": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "ElementId": { | |
| "type": "string" | |
| }, | |
| "LastChangeTimestamp": { | |
| "type": "integer" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "ElementId", | |
| "LastChangeTimestamp" | |
| ] | |
| } | |
| }, | |
| "IsReported": { | |
| "type": "boolean" | |
| }, | |
| "NextBuildingUpgradeIndex": { | |
| "type": "integer" | |
| }, | |
| "NextBuildingUpgradeClass": { | |
| "type": "object", | |
| "properties": { | |
| "BuildingClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "BuildingClass" | |
| ] | |
| }, | |
| "NextBuildingUpgradeSeedValue": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "BuildingStates", | |
| "DbResourceId", | |
| "DbTimestamp", | |
| "DbVersion", | |
| "IsReported", | |
| "LastAlertChangeTime", | |
| "LastBuildingUpgradesTimestamps", | |
| "LastDebtChangeTime", | |
| "LastJudgementTime", | |
| "LastUpkeepDebtCheckTime", | |
| "Name", | |
| "NextBuildingUpgradeClass", | |
| "NextBuildingUpgradeIndex", | |
| "NextBuildingUpgradeSeedValue", | |
| "Owner", | |
| "PendingCustomJudgementID", | |
| "PendingJudgementType", | |
| "Perks", | |
| "Position", | |
| "ProductionState", | |
| "SeedValue", | |
| "Stats", | |
| "UniqueId", | |
| "UniverseAddress" | |
| ] | |
| } | |
| }, | |
| "SettlementStateRingBufferIndexV2": { | |
| "type": "integer" | |
| }, | |
| "SaveName": { | |
| "type": "string" | |
| }, | |
| "SaveSummary": { | |
| "type": "string" | |
| }, | |
| "DifficultyState": { | |
| "type": "object", | |
| "properties": { | |
| "Preset": { | |
| "type": "object", | |
| "properties": { | |
| "DifficultyPresetType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "DifficultyPresetType" | |
| ] | |
| }, | |
| "EasiestUsedPreset": { | |
| "type": "object", | |
| "properties": { | |
| "DifficultyPresetType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "DifficultyPresetType" | |
| ] | |
| }, | |
| "HardestUsedPreset": { | |
| "type": "object", | |
| "properties": { | |
| "DifficultyPresetType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "DifficultyPresetType" | |
| ] | |
| }, | |
| "Settings": { | |
| "type": "object", | |
| "properties": { | |
| "SettingsLocked": { | |
| "type": "boolean" | |
| }, | |
| "InventoriesAlwaysInRange": { | |
| "type": "boolean" | |
| }, | |
| "AllSlotsUnlocked": { | |
| "type": "boolean" | |
| }, | |
| "WarpDriveRequirements": { | |
| "type": "boolean" | |
| }, | |
| "CraftingIsFree": { | |
| "type": "boolean" | |
| }, | |
| "TutorialEnabled": { | |
| "type": "boolean" | |
| }, | |
| "StartWithAllItemsKnown": { | |
| "type": "boolean" | |
| }, | |
| "BaseAutoPower": { | |
| "type": "boolean" | |
| }, | |
| "DeathConsequences": { | |
| "type": "object", | |
| "properties": { | |
| "DeathConsequencesDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "DeathConsequencesDifficulty" | |
| ] | |
| }, | |
| "DamageReceived": { | |
| "type": "object", | |
| "properties": { | |
| "DamageReceivedDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "DamageReceivedDifficulty" | |
| ] | |
| }, | |
| "DamageGiven": { | |
| "type": "object", | |
| "properties": { | |
| "DamageGivenDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "DamageGivenDifficulty" | |
| ] | |
| }, | |
| "ActiveSurvivalBars": { | |
| "type": "object", | |
| "properties": { | |
| "ActiveSurvivalBarsDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "ActiveSurvivalBarsDifficulty" | |
| ] | |
| }, | |
| "HazardDrain": { | |
| "type": "object", | |
| "properties": { | |
| "HazardDrainDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "HazardDrainDifficulty" | |
| ] | |
| }, | |
| "EnergyDrain": { | |
| "type": "object", | |
| "properties": { | |
| "EnergyDrainDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "EnergyDrainDifficulty" | |
| ] | |
| }, | |
| "SubstanceCollection": { | |
| "type": "object", | |
| "properties": { | |
| "SubstanceCollectionDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "SubstanceCollectionDifficulty" | |
| ] | |
| }, | |
| "InventoryStackLimits": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackLimitsDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackLimitsDifficulty" | |
| ] | |
| }, | |
| "ChargingRequirements": { | |
| "type": "object", | |
| "properties": { | |
| "ChargingRequirementsDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "ChargingRequirementsDifficulty" | |
| ] | |
| }, | |
| "FuelUse": { | |
| "type": "object", | |
| "properties": { | |
| "FuelUseDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "FuelUseDifficulty" | |
| ] | |
| }, | |
| "LaunchFuelCost": { | |
| "type": "object", | |
| "properties": { | |
| "LaunchFuelCostDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "LaunchFuelCostDifficulty" | |
| ] | |
| }, | |
| "CurrencyCost": { | |
| "type": "object", | |
| "properties": { | |
| "CurrencyCostDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "CurrencyCostDifficulty" | |
| ] | |
| }, | |
| "ItemShopAvailability": { | |
| "type": "object", | |
| "properties": { | |
| "ItemShopAvailabilityDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "ItemShopAvailabilityDifficulty" | |
| ] | |
| }, | |
| "ScannerRecharge": { | |
| "type": "object", | |
| "properties": { | |
| "ScannerRechargeDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "ScannerRechargeDifficulty" | |
| ] | |
| }, | |
| "ReputationGain": { | |
| "type": "object", | |
| "properties": { | |
| "ReputationGainDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "ReputationGainDifficulty" | |
| ] | |
| }, | |
| "CreatureHostility": { | |
| "type": "object", | |
| "properties": { | |
| "CreatureHostilityDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "CreatureHostilityDifficulty" | |
| ] | |
| }, | |
| "SpaceCombatTimers": { | |
| "type": "object", | |
| "properties": { | |
| "CombatTimerDifficultyOption": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "CombatTimerDifficultyOption" | |
| ] | |
| }, | |
| "GroundCombatTimers": { | |
| "type": "object", | |
| "properties": { | |
| "CombatTimerDifficultyOption": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "CombatTimerDifficultyOption" | |
| ] | |
| }, | |
| "SprintingCost": { | |
| "type": "object", | |
| "properties": { | |
| "SprintingCostDifficulty": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "SprintingCostDifficulty" | |
| ] | |
| }, | |
| "BreakTechOnDamage": { | |
| "type": "object", | |
| "properties": { | |
| "BreakTechOnDamageProbability": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "BreakTechOnDamageProbability" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "ActiveSurvivalBars", | |
| "AllSlotsUnlocked", | |
| "BaseAutoPower", | |
| "BreakTechOnDamage", | |
| "ChargingRequirements", | |
| "CraftingIsFree", | |
| "CreatureHostility", | |
| "CurrencyCost", | |
| "DamageGiven", | |
| "DamageReceived", | |
| "DeathConsequences", | |
| "EnergyDrain", | |
| "FuelUse", | |
| "GroundCombatTimers", | |
| "HazardDrain", | |
| "InventoriesAlwaysInRange", | |
| "InventoryStackLimits", | |
| "ItemShopAvailability", | |
| "LaunchFuelCost", | |
| "ReputationGain", | |
| "ScannerRecharge", | |
| "SettingsLocked", | |
| "SpaceCombatTimers", | |
| "SprintingCost", | |
| "StartWithAllItemsKnown", | |
| "SubstanceCollection", | |
| "TutorialEnabled", | |
| "WarpDriveRequirements" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "EasiestUsedPreset", | |
| "HardestUsedPreset", | |
| "Preset", | |
| "Settings" | |
| ] | |
| }, | |
| "FreighterCargoLayout": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "integer" | |
| }, | |
| "Seed": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "boolean", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "Level": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Level", | |
| "Seed", | |
| "Slots" | |
| ] | |
| }, | |
| "FreighterInventory_Cargo": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array" | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| }, | |
| "BaseStatValues": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "BaseStatID": { | |
| "type": "string" | |
| }, | |
| "Value": { | |
| "type": "number" | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatID", | |
| "Value" | |
| ] | |
| } | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "StackSizeGroup", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "FreighterLastSpawnTime": { | |
| "type": "integer" | |
| }, | |
| "FreighterDismissed": { | |
| "type": "boolean" | |
| }, | |
| "FreighterEngineEffect": { | |
| "type": "string" | |
| }, | |
| "RedeemedPlatformRewards": { | |
| "type": "array" | |
| }, | |
| "NextLoadSpawnsWithFreshStart": { | |
| "type": "boolean" | |
| }, | |
| "aVB": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "yF<": { | |
| "type": "array" | |
| } | |
| }, | |
| "required": [ | |
| "yF<" | |
| ] | |
| } | |
| }, | |
| "dgD": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "UqY": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "1OQ": { | |
| "type": "number" | |
| }, | |
| "y87": { | |
| "type": "boolean" | |
| } | |
| }, | |
| "required": [ | |
| "1OQ", | |
| "UqY", | |
| "y87" | |
| ] | |
| } | |
| }, | |
| "MZ1": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "UqY": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "1OQ": { | |
| "type": "number" | |
| }, | |
| "y87": { | |
| "type": "boolean" | |
| } | |
| }, | |
| "required": [ | |
| "1OQ", | |
| "UqY", | |
| "y87" | |
| ] | |
| } | |
| }, | |
| "fp9": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "UqY": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "1OQ": { | |
| "type": "number" | |
| }, | |
| "y87": { | |
| "type": "boolean" | |
| } | |
| }, | |
| "required": [ | |
| "1OQ", | |
| "UqY", | |
| "y87" | |
| ] | |
| } | |
| }, | |
| "bYs": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "UqY": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "1OQ": { | |
| "type": "number" | |
| }, | |
| "y87": { | |
| "type": "boolean" | |
| } | |
| }, | |
| "required": [ | |
| "1OQ", | |
| "UqY", | |
| "y87" | |
| ] | |
| } | |
| }, | |
| "e?Y": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "UqY": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| } | |
| }, | |
| "1OQ": { | |
| "type": "number" | |
| }, | |
| "y87": { | |
| "type": "boolean" | |
| } | |
| }, | |
| "required": [ | |
| "1OQ", | |
| "UqY", | |
| "y87" | |
| ] | |
| } | |
| }, | |
| "<8Q": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "UqY": { | |
| "type": "array", | |
| "items": { | |
| "type": "integer" | |
| } | |
| }, | |
| "1OQ": { | |
| "type": "number" | |
| }, | |
| "y87": { | |
| "type": "boolean" | |
| } | |
| }, | |
| "required": [ | |
| "1OQ", | |
| "UqY", | |
| "y87" | |
| ] | |
| } | |
| }, | |
| "DtV": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Data": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "?n7": { | |
| "type": "string" | |
| }, | |
| "heA": { | |
| "type": "string" | |
| }, | |
| "tj1": { | |
| "type": "string" | |
| }, | |
| "yqB": { | |
| "type": "integer" | |
| }, | |
| "Qb3": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "?n7", | |
| "Qb3", | |
| "heA", | |
| "tj1", | |
| "yqB" | |
| ] | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "Data" | |
| ] | |
| } | |
| }, | |
| "oR8": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Position": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "Location": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "Location", | |
| "Position" | |
| ] | |
| } | |
| }, | |
| "XeZ": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryContainer": { | |
| "type": "object", | |
| "properties": { | |
| "Slots": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryType" | |
| ] | |
| }, | |
| "Id": { | |
| "type": "string" | |
| }, | |
| "Amount": { | |
| "type": "integer" | |
| }, | |
| "MaxAmount": { | |
| "type": "integer" | |
| }, | |
| "DamageFactor": { | |
| "type": "number" | |
| }, | |
| "FullyInstalled": { | |
| "type": "boolean" | |
| }, | |
| "Index": { | |
| "type": "object", | |
| "properties": { | |
| "X": { | |
| "type": "integer" | |
| }, | |
| "Y": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "X", | |
| "Y" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "Amount", | |
| "DamageFactor", | |
| "FullyInstalled", | |
| "Id", | |
| "Index", | |
| "MaxAmount", | |
| "Type" | |
| ] | |
| } | |
| }, | |
| "ValidSlotIndices": { | |
| "type": "array" | |
| }, | |
| "Class": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryClass": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryClass" | |
| ] | |
| }, | |
| "StackSizeGroup": { | |
| "type": "object", | |
| "properties": { | |
| "InventoryStackSizeGroup": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "InventoryStackSizeGroup" | |
| ] | |
| }, | |
| "BaseStatValues": { | |
| "type": "array" | |
| }, | |
| "SpecialSlots": { | |
| "type": "array" | |
| }, | |
| "Width": { | |
| "type": "integer" | |
| }, | |
| "Height": { | |
| "type": "integer" | |
| }, | |
| "IsCool": { | |
| "type": "boolean" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "Version": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "BaseStatValues", | |
| "Class", | |
| "Height", | |
| "IsCool", | |
| "Name", | |
| "Slots", | |
| "SpecialSlots", | |
| "StackSizeGroup", | |
| "ValidSlotIndices", | |
| "Version", | |
| "Width" | |
| ] | |
| }, | |
| "LastUpdateTimestamp": { | |
| "type": "integer" | |
| }, | |
| "LastCompletedTimestamp": { | |
| "type": "integer" | |
| }, | |
| "LastBrokenTimestamp": { | |
| "type": "integer" | |
| }, | |
| "DamageTimers": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "AmountAccumulators": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "Flags": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "AmountAccumulators", | |
| "DamageTimers", | |
| "Flags", | |
| "InventoryContainer", | |
| "LastBrokenTimestamp", | |
| "LastCompletedTimestamp", | |
| "LastUpdateTimestamp" | |
| ] | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "ActiveMultioolIndex", | |
| "ActiveSpaceBattleUA", | |
| "AnomalyPositionOverride", | |
| "AtlasStationAdressData", | |
| "BannerBackgroundColour", | |
| "BannerIcon", | |
| "BannerMainColour", | |
| "BannerTitleId", | |
| "BaseBuildingObjects", | |
| "BoltAmmo", | |
| "ByteBeatLibrary", | |
| "CharacterCustomisationData", | |
| "Chest10Inventory", | |
| "Chest10Layout", | |
| "Chest1Inventory", | |
| "Chest1Layout", | |
| "Chest2Inventory", | |
| "Chest2Layout", | |
| "Chest3Inventory", | |
| "Chest3Layout", | |
| "Chest4Inventory", | |
| "Chest4Layout", | |
| "Chest5Inventory", | |
| "Chest5Layout", | |
| "Chest6Inventory", | |
| "Chest6Layout", | |
| "Chest7Inventory", | |
| "Chest7Layout", | |
| "Chest8Inventory", | |
| "Chest8Layout", | |
| "Chest9Inventory", | |
| "Chest9Layout", | |
| "ChestMagic2Inventory", | |
| "ChestMagic2Layout", | |
| "ChestMagicInventory", | |
| "ChestMagicLayout", | |
| "CookingIngredientsInventory", | |
| "CookingIngredientsLayout", | |
| "CurrentFreighter", | |
| "CurrentFreighterHomeSystemSeed", | |
| "CurrentFreighterNPC", | |
| "CurrentMissionID", | |
| "CurrentMissionSeed", | |
| "CurrentShip", | |
| "CurrentWeapon", | |
| "Eggs", | |
| "Energy", | |
| "ExpeditionSeedsSelectedToday", | |
| "FirstAtlasStationDiscovered", | |
| "FirstShipPosition", | |
| "FirstSpawnPosition", | |
| "FleetExpeditions", | |
| "FleetFrigates", | |
| "FleetSeed", | |
| "FreighterInventory", | |
| "FreighterInventory_TechOnly", | |
| "FreighterLayout", | |
| "FreighterMatrixAt", | |
| "FreighterMatrixPos", | |
| "FreighterMatrixUp", | |
| "FreighterUniverseAddress", | |
| "GalacticMapRequests", | |
| "GameStartAddress1", | |
| "GameStartAddress2", | |
| "GraveInventory", | |
| "GraveMatrixLookAt", | |
| "GraveMatrixUp", | |
| "GravePosition", | |
| "GraveUniverseAddress", | |
| "HasAccessToNexus", | |
| "Hazard", | |
| "HazardTimeAlive", | |
| "Health", | |
| "HoloExplorerInteraction", | |
| "HoloNooneInteraction", | |
| "HoloScepticInteraction", | |
| "HomeRealityIteration", | |
| "HotActions", | |
| "InteractionProgressTable", | |
| "Inventory", | |
| "Inventory_Cargo", | |
| "Inventory_TechOnly", | |
| "IsNew", | |
| "JetpackEffect", | |
| "KnownPortalRunes", | |
| "KnownProducts", | |
| "KnownRefinerRecipes", | |
| "KnownSpecials", | |
| "KnownTech", | |
| "KnownWordGroups", | |
| "KnownWords", | |
| "LaserAmmo", | |
| "LastKnownDay", | |
| "LastPortal", | |
| "LastUABeforePortalWarp", | |
| "MaintenanceInteractions", | |
| "MarkerStack", | |
| "MiniStationUA", | |
| "MissionProgress", | |
| "MissionRecurrences", | |
| "MissionVersion", | |
| "MultiShipEnabled", | |
| "MultiplayerLobbyID", | |
| "MultiplayerPrivileges", | |
| "MultiplayerSpawn", | |
| "MultiplayerUA", | |
| "Multitools", | |
| "NPCWorkers", | |
| "Nanites", | |
| "NewAtlasStationAdressData", | |
| "NewMPMarkerStack", | |
| "NextSurveyedEventPositionIndex", | |
| "NexusMatrixAt", | |
| "NexusMatrixPos", | |
| "NexusMatrixUp", | |
| "NexusUniverseAddress", | |
| "OnOtherSideOfPortal", | |
| "OtherSideOfPortalReturnBase", | |
| "Outfits", | |
| "PersistentPlayerBases", | |
| "PersonalMaintenanceInteractions", | |
| "PetAccessoryCustomisation", | |
| "Pets", | |
| "PhotoModeSettings", | |
| "PlanetPositions", | |
| "PlanetSeeds", | |
| "PlayerFreighterName", | |
| "PortalMarkerPosition_Local", | |
| "PortalMarkerPosition_Offset", | |
| "PostMissionIndex", | |
| "PreviousMissionID", | |
| "PreviousMissionSeed", | |
| "PreviousUniverseAddress", | |
| "PrimaryPlanet", | |
| "PrimaryShip", | |
| "PrimaryVehicle", | |
| "ProcTechIndex", | |
| "ProgressionLevel", | |
| "PulseAmmo", | |
| "RedeemedSeasonRewards", | |
| "RedeemedTwitchRewards", | |
| "RepairTechBuffer", | |
| "RestartAllInactiveSeasonalMissions", | |
| "RevealBlackHoles", | |
| "RocketLockerInventory", | |
| "RocketLockerLayout", | |
| "SavedInteractionDialogTable", | |
| "SavedInteractionIndicies", | |
| "ScatterAmmo", | |
| "SeasonData", | |
| "SeasonState", | |
| "SeenBaseBuildingObjects", | |
| "SettlementStateRingBufferIndexV2", | |
| "SettlementStatesV2", | |
| "Shield", | |
| "ShipHealth", | |
| "ShipInventory", | |
| "ShipLayout", | |
| "ShipNeedsTerrainPositioning", | |
| "ShipOwnership", | |
| "ShipShield", | |
| "ShipUsesLegacyColours", | |
| "ShopNumber", | |
| "ShopTier", | |
| "SpaceGrave", | |
| "SpawnGrave", | |
| "Specials", | |
| "StartGameShipPosition", | |
| "StartingPrimaryWeapon", | |
| "StartingSecondaryWeapon", | |
| "Stats", | |
| "StoredInteractions", | |
| "StoryPortalSeed", | |
| "SunTimer", | |
| "SurveyedEventPositions", | |
| "TelemetryStats", | |
| "TelemetryUploadVersion", | |
| "TeleportEndpoints", | |
| "TerrainEditData", | |
| "ThirdPersonShip", | |
| "TimeAlive", | |
| "TimeLastMiniStation", | |
| "TimeLastSpaceBattle", | |
| "TotalPlayTime", | |
| "TradingSupplyData", | |
| "TradingSupplyDataIndex", | |
| "Units", | |
| "UniverseAddress", | |
| "UnlockedPetSlots", | |
| "UseSmallerBlackholeJumps", | |
| "UsedEntitlements", | |
| "UsesThirdPersonCharacterCam", | |
| "UsesThirdPersonVehicleCam", | |
| "VRCameraOffset", | |
| "VehicleAIControlEnabled", | |
| "VehicleOwnership", | |
| "VisitedAtlasStationsData", | |
| "VisitedPortal", | |
| "VisitedSystems", | |
| "WarpsLastMiniStation", | |
| "WarpsLastSpaceBattle", | |
| "WeaponInventory", | |
| "WeaponLayout" | |
| ] | |
| }, | |
| "SpawnStateData": { | |
| "type": "object", | |
| "properties": { | |
| "PlayerPositionInSystem": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "PlayerTransformAt": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "ShipPositionInSystem": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "ShipTransformAt": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "LastKnownPlayerState": { | |
| "type": "string" | |
| }, | |
| "FreighterPositionInSystem": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "FreighterTransformAt": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "FreighterTransformUp": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "AbandonedFreighterPositionInSystem": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "AbandonedFreighterTransformAt": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "AbandonedFreighterTransformUp": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "PlayerDeathRespawnPositionInSystem": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| }, | |
| "PlayerDeathRespawnTransformAt": { | |
| "type": "array", | |
| "items": { | |
| "type": "number" | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "AbandonedFreighterPositionInSystem", | |
| "AbandonedFreighterTransformAt", | |
| "AbandonedFreighterTransformUp", | |
| "FreighterPositionInSystem", | |
| "FreighterTransformAt", | |
| "FreighterTransformUp", | |
| "LastKnownPlayerState", | |
| "PlayerPositionInSystem", | |
| "PlayerTransformAt", | |
| "ShipPositionInSystem", | |
| "ShipTransformAt" | |
| ] | |
| }, | |
| "GameKnowledgeData": { | |
| "type": "object", | |
| "properties": { | |
| "Waypoints": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "Address": { | |
| "type": "object", | |
| "properties": { | |
| "VoxelX": { | |
| "type": "integer" | |
| }, | |
| "VoxelY": { | |
| "type": "integer" | |
| }, | |
| "VoxelZ": { | |
| "type": "integer" | |
| }, | |
| "SolarSystemIndex": { | |
| "type": "integer" | |
| }, | |
| "PlanetIndex": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "PlanetIndex", | |
| "SolarSystemIndex", | |
| "VoxelX", | |
| "VoxelY", | |
| "VoxelZ" | |
| ] | |
| }, | |
| "Type": { | |
| "type": "object", | |
| "properties": { | |
| "GalaxyWaypointType": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "GalaxyWaypointType" | |
| ] | |
| }, | |
| "EventId": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "Address", | |
| "EventId", | |
| "Type" | |
| ] | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "Waypoints" | |
| ] | |
| }, | |
| "DiscoveryManagerData": { | |
| "type": "object", | |
| "properties": { | |
| "DiscoveryData-v1": { | |
| "type": "object", | |
| "properties": { | |
| "ReserveStore": { | |
| "type": "integer" | |
| }, | |
| "ReserveManaged": { | |
| "type": "integer" | |
| }, | |
| "Store": { | |
| "type": "object", | |
| "properties": { | |
| "Record": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "DD": { | |
| "type": "object", | |
| "properties": { | |
| "UA": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| }, | |
| "DT": { | |
| "type": "string" | |
| }, | |
| "VP": { | |
| "type": "array", | |
| "items": { | |
| "type": [ | |
| "integer", | |
| "string" | |
| ] | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "DT", | |
| "UA", | |
| "VP" | |
| ] | |
| }, | |
| "DM": { | |
| "type": "object", | |
| "properties": { | |
| "CN": { | |
| "type": "string" | |
| } | |
| } | |
| }, | |
| "OWS": { | |
| "type": "object", | |
| "properties": { | |
| "LID": { | |
| "type": "string" | |
| }, | |
| "UID": { | |
| "type": "string" | |
| }, | |
| "USN": { | |
| "type": "string" | |
| }, | |
| "PTK": { | |
| "type": "string" | |
| }, | |
| "TS": { | |
| "type": "integer" | |
| } | |
| }, | |
| "required": [ | |
| "LID", | |
| "PTK", | |
| "TS", | |
| "UID", | |
| "USN" | |
| ] | |
| }, | |
| "FL": { | |
| "type": "object", | |
| "properties": { | |
| "C": { | |
| "type": "integer" | |
| }, | |
| "U": { | |
| "type": "integer" | |
| } | |
| } | |
| }, | |
| "RID": { | |
| "type": "string" | |
| }, | |
| "PTK": { | |
| "type": "string" | |
| } | |
| }, | |
| "required": [ | |
| "DD", | |
| "DM", | |
| "OWS" | |
| ] | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "Record" | |
| ] | |
| }, | |
| "Available": { | |
| "type": "array", | |
| "items": { | |
| "type": "object", | |
| "properties": { | |
| "TSrec": { | |
| "type": "integer" | |
| }, | |
| "DD": { | |
| "type": "object", | |
| "properties": { | |
| "UA": { | |
| "type": "integer" | |
| }, | |
| "DT": { | |
| "type": "string" | |
| }, | |
| "VP": { | |
| "type": "array", | |
| "items": { | |
| "type": "string" | |
| } | |
| } | |
| }, | |
| "required": [ | |
| "DT", | |
| "UA", | |
| "VP" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "DD", | |
| "TSrec" | |
| ] | |
| } | |
| }, | |
| "Enqueued": { | |
| "type": "array" | |
| } | |
| }, | |
| "required": [ | |
| "Available", | |
| "Enqueued", | |
| "ReserveManaged", | |
| "ReserveStore", | |
| "Store" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "DiscoveryData-v1" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "DiscoveryManagerData", | |
| "GameKnowledgeData", | |
| "Platform", | |
| "PlayerStateData", | |
| "SpawnStateData", | |
| "Version" | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment