Updated Schemas

This commit is contained in:
Ben C 2022-11-25 22:25:38 +00:00
parent 49996e5f48
commit b1338002ec

View File

@ -2544,6 +2544,10 @@
"$ref": "#/definitions/OxygenVolumeInfo"
}
},
"probe": {
"description": "Add probe-specific volumes to this planet.",
"$ref": "#/definitions/ProbeModule"
},
"revealVolumes": {
"type": "array",
"description": "Add triggers that reveal parts of the ship log on this planet.",
@ -3017,6 +3021,26 @@
}
}
},
"ProbeModule": {
"type": "object",
"additionalProperties": false,
"properties": {
"destructionVolumes": {
"type": "array",
"description": "Add probe destruction volumes to this planet. These will delete your probe.",
"items": {
"$ref": "#/definitions/VolumeInfo"
}
},
"safetyVolumes": {
"type": "array",
"description": "Add probe safety volumes to this planet. These will stop the probe destruction volumes from working.",
"items": {
"$ref": "#/definitions/VolumeInfo"
}
}
}
},
"RevealVolumeInfo": {
"type": "object",
"additionalProperties": false,