Updated Schemas

This commit is contained in:
github-actions[bot] 2022-05-23 12:46:27 +00:00
parent 88258a6be7
commit 942371bc40

View File

@ -513,14 +513,16 @@
}
},
"FunnelModule": {
"allOf": [
{
"$ref": "#/definitions/VariableSizeModule"
},
{
"type": "object",
"additionalProperties": false,
"properties": {
"Curve": {
"type": "array",
"description": "Scale this module over time",
"items": {
"$ref": "#/definitions/TimeValuePair"
}
},
"target": {
"type": "string",
"description": "The planet the funnel will flow to"
@ -542,8 +544,20 @@
]
}
}
},
"TimeValuePair": {
"type": "object",
"additionalProperties": false,
"properties": {
"Time": {
"type": "number",
"format": "float"
},
"Value": {
"type": "number",
"format": "float"
}
}
]
},
"FunnelType": {
"type": "string",
@ -561,33 +575,6 @@
"Star"
]
},
"VariableSizeModule": {
"type": "object",
"additionalProperties": false,
"properties": {
"Curve": {
"type": "array",
"description": "Scale this module over time",
"items": {
"$ref": "#/definitions/TimeValuePair"
}
}
}
},
"TimeValuePair": {
"type": "object",
"additionalProperties": false,
"properties": {
"Time": {
"type": "number",
"format": "float"
},
"Value": {
"type": "number",
"format": "float"
}
}
},
"HeightMapModule": {
"type": "object",
"additionalProperties": false,
@ -623,14 +610,16 @@
}
},
"LavaModule": {
"allOf": [
{
"$ref": "#/definitions/VariableSizeModule"
},
{
"type": "object",
"additionalProperties": false,
"properties": {
"Curve": {
"type": "array",
"description": "Scale this module over time",
"items": {
"$ref": "#/definitions/TimeValuePair"
}
},
"size": {
"type": "number",
"description": "Size of the lava sphere",
@ -645,8 +634,6 @@
]
}
}
}
]
},
"OrbitModule": {
"type": "object",
@ -1476,14 +1463,16 @@
}
},
"RingModule": {
"allOf": [
{
"$ref": "#/definitions/VariableSizeModule"
},
{
"type": "object",
"additionalProperties": false,
"properties": {
"Curve": {
"type": "array",
"description": "Scale this module over time",
"items": {
"$ref": "#/definitions/TimeValuePair"
}
},
"fluidType": {
"description": "Fluid type for sounds/effects when colliding with this ring.",
"oneOf": [
@ -1531,8 +1520,6 @@
"description": "Should this ring be unlit?"
}
}
}
]
},
"CloudFluidType2": {
"type": "integer",
@ -1553,14 +1540,16 @@
]
},
"SandModule": {
"allOf": [
{
"$ref": "#/definitions/VariableSizeModule"
},
{
"type": "object",
"additionalProperties": false,
"properties": {
"Curve": {
"type": "array",
"description": "Scale this module over time",
"items": {
"$ref": "#/definitions/TimeValuePair"
}
},
"Size": {
"type": "number",
"description": "Size of the sand",
@ -1575,8 +1564,6 @@
]
}
}
}
]
},
"ShipLogModule": {
"type": "object",
@ -1837,14 +1824,16 @@
}
},
"SingularityModule": {
"allOf": [
{
"$ref": "#/definitions/VariableSizeModule"
},
{
"type": "object",
"additionalProperties": false,
"properties": {
"Curve": {
"type": "array",
"description": "Scale this module over time",
"items": {
"$ref": "#/definitions/TimeValuePair"
}
},
"makeZeroGVolume": {
"type": "boolean",
"description": "Only for White Holes. Should this white hole repel the player from it.",
@ -1881,8 +1870,6 @@
]
}
}
}
]
},
"SingularityType": {
"type": "string",
@ -1939,14 +1926,16 @@
}
},
"StarModule": {
"allOf": [
{
"$ref": "#/definitions/VariableSizeModule"
},
{
"type": "object",
"additionalProperties": false,
"properties": {
"Curve": {
"type": "array",
"description": "Scale this module over time",
"items": {
"$ref": "#/definitions/TimeValuePair"
}
},
"endTint": {
"description": "Colour of the star at the end of its life.",
"oneOf": [
@ -2004,18 +1993,18 @@
]
}
}
}
]
},
"WaterModule": {
"allOf": [
{
"$ref": "#/definitions/VariableSizeModule"
},
{
"type": "object",
"additionalProperties": false,
"properties": {
"Curve": {
"type": "array",
"description": "Scale this module over time",
"items": {
"$ref": "#/definitions/TimeValuePair"
}
},
"size": {
"type": "number",
"description": "Size of the water sphere",
@ -2031,7 +2020,5 @@
}
}
}
]
}
}
}