api-docs/models/ShipReactor.json
2024-03-10 11:46:12 -07:00

48 lines
1.2 KiB
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": [
"REACTOR_SOLAR_I",
"REACTOR_FUSION_I",
"REACTOR_FISSION_I",
"REACTOR_CHEMICAL_I",
"REACTOR_ANTIMATTER_I"
],
"description": "Symbol of the reactor."
},
"name": {
"type": "string",
"description": "Name of the reactor."
},
"description": {
"type": "string",
"description": "Description of the reactor."
},
"condition": {
"$ref": "./ShipComponentCondition.json"
},
"integrity": {
"$ref": "./ShipComponentIntegrity.json"
},
"powerOutput": {
"type": "integer",
"minimum": 1,
"description": "The amount of power provided by this reactor. The more power a reactor provides to the ship, the lower the cooldown it gets when using a module or mount that taxes the ship's power."
},
"requirements": {
"$ref": "./ShipRequirements.json"
}
},
"required": [
"symbol",
"name",
"condition",
"integrity",
"description",
"powerOutput",
"requirements"
]
}