Updated Schemas

This commit is contained in:
Ben C 2025-02-23 09:46:56 +00:00
parent d8027fa901
commit 7ecdb5352d

View File

@ -29,12 +29,12 @@
}, },
"canEnterViaWarpDrive": { "canEnterViaWarpDrive": {
"type": "boolean", "type": "boolean",
"description": "Whether this system can be warped to via the warp drive. If you set `factRequiredForWarp`, this will be true.\nDoes NOT effect the base SolarSystem. For that, see `canExitViaWarpDrive` and `factRequiredToExitViaWarpDrive`", "description": "Whether this system can be warped to via the warp drive. If you set `factRequiredToEnterViaWarpDrive`, this will be true.\nDoes NOT effect the base SolarSystem. For that, see `canExitViaWarpDrive` and `factRequiredToExitViaWarpDrive`",
"default": true "default": true
}, },
"factRequiredForWarp": { "factRequiredToEnterViaWarpDrive": {
"type": "string", "type": "string",
"description": "The FactID that must be revealed before it can be warped to. Don't set `canEnterViaWarpDrive` to `false` if\nyou're using this, because it will be overwritten." "description": "The FactID that must be revealed before it can be warped to via the warp drive. Don't set `canEnterViaWarpDrive` to `false` if\nyou're using this, because it will be overwritten."
}, },
"canExitViaWarpDrive": { "canExitViaWarpDrive": {
"type": "boolean", "type": "boolean",
@ -43,7 +43,25 @@
}, },
"factRequiredToExitViaWarpDrive": { "factRequiredToExitViaWarpDrive": {
"type": "string", "type": "string",
"description": "The FactID that must be revealed for you to warp back to the main solar system from here. Don't set `canWarpHome`\nto `false` if you're using this, because it will be overwritten." "description": "The FactID that must be revealed for you to warp to any star system from here via the warp drive. Don't set `canExitViaWarpDrive`\nto `false` if you're using this, because it will be overwritten."
},
"canEnterViaVessel": {
"type": "boolean",
"description": "Whether this system can be warped to via the warp drive. If you set `factRequiredToEnterViaVessel`, this will be true.\nDoes NOT effect the base SolarSystem. For that, see `canExitViaVessel` and `factRequiredToExitViaVessel`",
"default": true
},
"factRequiredToEnterViaVessel": {
"type": "string",
"description": "The FactID that must be revealed before it can be warped to via the Vessel. Don't set `canEnterViaVessel` to `false` if\nyou're using this, because it will be overwritten."
},
"canExitViaVessel": {
"type": "boolean",
"description": "Can you use the warp drive to leave this system? If you set `factRequiredToExitViaVessel`\nthis will be true.",
"default": true
},
"factRequiredToExitViaVessel": {
"type": "string",
"description": "The FactID that must be revealed for you to warp to any star system from here via the warp drive. Don't set `canExitViaVessel`\nto `false` if you're using this, because it will be overwritten."
}, },
"destroyStockPlanets": { "destroyStockPlanets": {
"type": "boolean", "type": "boolean",