api-docs/models/ShipEngine.json

38 lines
719 B
JSON
Raw Normal View History

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": [
"ENGINE_IMPULSE_DRIVE_I",
2022-12-04 17:38:00 +01:00
"ENGINE_ION_DRIVE_I",
"ENGINE_ION_DRIVE_II",
"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
}