mirror of
https://github.com/SpaceTradersAPI/api-docs.git
synced 2024-11-14 22:30:51 +01:00
48 lines
1.2 KiB
JSON
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",
|
|
"performance",
|
|
"description",
|
|
"powerOutput",
|
|
"requirements"
|
|
]
|
|
} |