mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
93 lines
2.8 KiB
JSON
93 lines
2.8 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"title": "Star System Schema",
|
|
"type": "object",
|
|
"description": "Configuration for a specific star system",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"canEnterViaWarpDrive": {
|
|
"type": "boolean",
|
|
"description": "Whether this system can be warped to via the warp drive"
|
|
},
|
|
"coords": {
|
|
"description": "[DEPRECATED] Not implemented",
|
|
"$ref": "#/definitions/NomaiCoordinates"
|
|
},
|
|
"destroyStockPlanets": {
|
|
"type": "boolean",
|
|
"description": "Do you want a clean slate for this star system? Or will it be a modified version of the original."
|
|
},
|
|
"enableTimeLoop": {
|
|
"type": "boolean",
|
|
"description": "Should the time loop be enabled in this system?",
|
|
"default": true
|
|
},
|
|
"factRequiredForWarp": {
|
|
"type": "string",
|
|
"description": "Set to the FactID that must be revealed before it can be warped to. Don't set `CanEnterViaWarpDrive` to `false` if\nyou're using this, that would make no sense."
|
|
},
|
|
"mapRestricted": {
|
|
"type": "boolean",
|
|
"description": "Should the player not be able to view the map in this system?"
|
|
},
|
|
"skybox": {
|
|
"description": "Customize the skybox for this system",
|
|
"$ref": "#/definitions/SkyboxConfig"
|
|
},
|
|
"startHere": {
|
|
"type": "boolean",
|
|
"description": "Set to `true` if you want to spawn here after dying, not Timber Hearth. You can still warp back to the main star\nsystem."
|
|
},
|
|
"subtitle": {
|
|
"type": "string",
|
|
"description": "Relative path to the image file to use as the subtitle image (replaces the eote banner)"
|
|
}
|
|
},
|
|
"definitions": {
|
|
"NomaiCoordinates": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"x": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "integer",
|
|
"format": "int32"
|
|
}
|
|
},
|
|
"y": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "integer",
|
|
"format": "int32"
|
|
}
|
|
},
|
|
"z": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "integer",
|
|
"format": "int32"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"SkyboxConfig": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"assetBundle": {
|
|
"type": "string",
|
|
"description": "Path to the Unity asset bundle to load the skybox material from"
|
|
},
|
|
"destroyStarField": {
|
|
"type": "boolean",
|
|
"description": "Whether to destroy the star field around the player"
|
|
},
|
|
"path": {
|
|
"type": "string",
|
|
"description": "Path to the material within the asset bundle specified by `assetBundle` to use for the skybox"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |