api-docs/models/ShipReactor.json

38 lines
761 B
JSON
Raw Normal View History

2022-09-18 17:49:41 +02:00
{
"type": "object",
2022-10-22 18:05:01 +02:00
"description": "The reactor of the ship. The reactor is responsible for powering the ship's systems and weapons.",
2022-09-18 17:49:41 +02:00
"properties": {
"symbol": {
"type": "string",
"enum": [
2022-12-04 17:38:00 +01:00
"REACTOR_SOLAR_I",
"REACTOR_FUSION_I",
"REACTOR_FISSION_I",
"REACTOR_CHEMICAL_I",
"REACTOR_ANTIMATTER_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"
},
"powerOutput": {
"type": "integer",
"minimum": 1
},
"requirements": {
"$ref": "./ShipRequirements.json"
}
2022-10-22 18:05:01 +02:00
},
"required": [
"symbol",
"name",
"powerOutput",
"requirements"
]
2022-09-18 17:49:41 +02:00
}