mirror of
https://github.com/SpaceTradersAPI/api-docs.git
synced 2024-11-15 06:40:51 +01:00
71 lines
1.8 KiB
JSON
71 lines
1.8 KiB
JSON
{
|
|
"type": "object",
|
|
"description": "A mount is installed on the exterier of a ship.",
|
|
"properties": {
|
|
"symbol": {
|
|
"type": "string",
|
|
"enum": [
|
|
"MOUNT_GAS_SIPHON_I",
|
|
"MOUNT_GAS_SIPHON_II",
|
|
"MOUNT_GAS_SIPHON_III",
|
|
"MOUNT_SURVEYOR_I",
|
|
"MOUNT_SURVEYOR_II",
|
|
"MOUNT_SURVEYOR_III",
|
|
"MOUNT_SENSOR_ARRAY_I",
|
|
"MOUNT_SENSOR_ARRAY_II",
|
|
"MOUNT_SENSOR_ARRAY_III",
|
|
"MOUNT_MINING_LASER_I",
|
|
"MOUNT_MINING_LASER_II",
|
|
"MOUNT_MINING_LASER_III",
|
|
"MOUNT_LASER_CANNON_I",
|
|
"MOUNT_MISSILE_LAUNCHER_I",
|
|
"MOUNT_TURRET_I"
|
|
],
|
|
"description": "Symbo of this mount."
|
|
},
|
|
"name": {
|
|
"type": "string",
|
|
"description": "Name of this mount."
|
|
},
|
|
"description": {
|
|
"type": "string",
|
|
"description": "Description of this mount."
|
|
},
|
|
"strength": {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"description": "Mounts that have this value, such as mining lasers, denote how powerful this mount's capabilities are."
|
|
},
|
|
"deposits": {
|
|
"type": "array",
|
|
"description": "Mounts that have this value denote what goods can be produced from using the mount.",
|
|
"items": {
|
|
"type": "string",
|
|
"enum": [
|
|
"QUARTZ_SAND",
|
|
"SILICON_CRYSTALS",
|
|
"PRECIOUS_STONES",
|
|
"ICE_WATER",
|
|
"AMMONIA_ICE",
|
|
"IRON_ORE",
|
|
"COPPER_ORE",
|
|
"SILVER_ORE",
|
|
"ALUMINUM_ORE",
|
|
"GOLD_ORE",
|
|
"PLATINUM_ORE",
|
|
"DIAMONDS",
|
|
"URANITE_ORE",
|
|
"MERITIUM_ORE"
|
|
]
|
|
}
|
|
},
|
|
"requirements": {
|
|
"$ref": "./ShipRequirements.json"
|
|
}
|
|
},
|
|
"required": [
|
|
"symbol",
|
|
"name",
|
|
"requirements"
|
|
]
|
|
} |