api-docs/models/ShipReactor.json
2022-12-07 22:41:33 -08:00

36 lines
718 B
JSON

{
"type": "object",
"description": "The reactor of the ship. The reactor is responsible for powering the ship's systems and weapons.",
"properties": {
"symbol": {
"type": "string",
"enum": [
"SOLAR_REACTOR",
"FUSION_REACTOR",
"FISSION_REACTOR",
"CHEMICAL_REACTOR",
"DARK_MATTER_REACTOR"
]
},
"name": {
"type": "string"
},
"condition": {
"$ref": "./ShipCondition.json"
},
"powerOutput": {
"type": "integer",
"minimum": 1
},
"requirements": {
"$ref": "./ShipRequirements.json"
}
},
"required": [
"symbol",
"name",
"condition",
"powerOutput",
"requirements"
]
}