new-horizons/NewHorizons/star_system_schema.json
2022-03-02 23:24:17 -05:00

21 lines
770 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"title": "Star System",
"description": "Configuration for a specific star system",
"properties": {
"canEnterViaWarpDrive": {
"type": "boolean",
"description": "Whether this system can be warped to via the warp drive"
},
"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 system."
},
"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 you're using this, that would make no sense."
}
}
}