2022-09-18 17:49:41 +02:00
|
|
|
{
|
|
|
|
"type": "object",
|
2022-10-06 01:42:15 +02:00
|
|
|
"description": "The engine determines how quickly a ship travels between waypoints.",
|
2022-09-18 17:49:41 +02:00
|
|
|
"properties": {
|
|
|
|
"symbol": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": [
|
2022-12-19 00:04:13 +01:00
|
|
|
"ENGINE_IMPULSE_DRIVE_I",
|
2022-12-04 17:38:00 +01:00
|
|
|
"ENGINE_ION_DRIVE_I",
|
|
|
|
"ENGINE_ION_DRIVE_II",
|
2022-12-19 00:04:13 +01:00
|
|
|
"ENGINE_HYPER_DRIVE_I"
|
2022-09-18 17:49:41 +02:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"name": {
|
2022-10-22 18:05:01 +02:00
|
|
|
"type": "string"
|
2022-09-18 17:49:41 +02:00
|
|
|
},
|
2022-12-04 17:38:00 +01:00
|
|
|
"description": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
2022-09-18 17:49:41 +02:00
|
|
|
"condition": {
|
|
|
|
"$ref": "./ShipCondition.json"
|
|
|
|
},
|
|
|
|
"speed": {
|
|
|
|
"type": "number",
|
|
|
|
"minimum": 1
|
|
|
|
},
|
|
|
|
"requirements": {
|
|
|
|
"$ref": "./ShipRequirements.json"
|
|
|
|
}
|
2022-10-22 18:05:01 +02:00
|
|
|
},
|
|
|
|
"required": [
|
|
|
|
"symbol",
|
|
|
|
"name",
|
2022-12-05 18:54:01 +01:00
|
|
|
"description",
|
2022-10-22 18:05:01 +02:00
|
|
|
"speed",
|
|
|
|
"requirements"
|
|
|
|
]
|
2022-09-18 17:49:41 +02:00
|
|
|
}
|