api-docs/models/ShipEngine.json

34 lines
617 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": [
"IMPULSE_DRIVE",
"ION_DRIVE_I",
"ION_DRIVE_II",
"HYPER_DRIVE"
]
},
"name": {
2022-10-22 18:05:01 +02:00
"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",
"speed",
"requirements"
]
2022-09-18 17:49:41 +02:00
}