Merge branch 'ship-spawn-facts' of https://github.com/Outer-Wilds-New-Horizons/new-horizons into ship-spawn-facts

This commit is contained in:
xen-42 2024-10-04 13:25:37 -04:00
commit 9b7438d5d1

View File

@ -3613,15 +3613,21 @@
"type": "object", "type": "object",
"additionalProperties": false, "additionalProperties": false,
"properties": { "properties": {
"playerSpawn": { "playerSpawnPoints": {
"description": "If you want the player to spawn on the new body, set a value for this.", "type": "array",
"description": "If you want the player to spawn on the new body, set a value for this.\nDifferent spawns can be unlocked with persistent conditions and facts",
"items": {
"$ref": "#/definitions/PlayerSpawnPoint" "$ref": "#/definitions/PlayerSpawnPoint"
}
}, },
"shipSpawn": { "shipSpawnPoints": {
"description": "Required for the system to be accessible by warp drive.", "type": "array",
"description": "Required for the system to be accessible by warp drive.\nDifferent spawns can be unlocked with persistent conditions and facts",
"items": {
"$ref": "#/definitions/ShipSpawnPoint" "$ref": "#/definitions/ShipSpawnPoint"
} }
} }
}
}, },
"PlayerSpawnPoint": { "PlayerSpawnPoint": {
"type": "object", "type": "object",