Updated Schemas

This commit is contained in:
github-actions[bot] 2022-06-14 00:23:00 +00:00
parent b0bc48465c
commit 038275eb11
2 changed files with 5 additions and 35 deletions

View File

@ -1240,10 +1240,6 @@
"type": "object",
"additionalProperties": false,
"properties": {
"downwards": {
"type": "boolean",
"description": "[DEPRECATED] Should this tornado shoot you down instead of up?"
},
"elevation": {
"type": "number",
"description": "Alternative to setting the position. Will choose a random place at this elevation.",
@ -1283,6 +1279,11 @@
"type": "number",
"description": "The rate at which the tornado will wander around the planet. Set to 0 for it to be stationary. Should be around\n0.1.",
"format": "float"
},
"audioDistance": {
"type": "number",
"description": "The maximum distance at which you'll hear the sounds of the cyclone. If not set it will scale relative to the size of the cyclone.",
"format": "float"
}
}
},

View File

@ -9,10 +9,6 @@
"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."
@ -52,33 +48,6 @@
}
},
"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,