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,13 +3613,19 @@
"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",
"$ref": "#/definitions/PlayerSpawnPoint" "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"
}
}, },
"shipSpawn": { "shipSpawnPoints": {
"description": "Required for the system to be accessible by warp drive.", "type": "array",
"$ref": "#/definitions/ShipSpawnPoint" "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"
}
} }
} }
}, },