api-docs/models/ShipMount.json

71 lines
1.8 KiB
JSON
Raw Permalink Normal View History

2022-09-18 17:49:41 +02:00
{
"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",
2022-12-23 16:25:29 +01:00
"MOUNT_SURVEYOR_I",
"MOUNT_SURVEYOR_II",
"MOUNT_SURVEYOR_III",
2022-09-18 17:49:41 +02:00
"MOUNT_SENSOR_ARRAY_I",
"MOUNT_SENSOR_ARRAY_II",
"MOUNT_SENSOR_ARRAY_III",
"MOUNT_MINING_LASER_I",
"MOUNT_MINING_LASER_II",
2022-12-04 17:38:00 +01:00
"MOUNT_MINING_LASER_III",
"MOUNT_LASER_CANNON_I",
"MOUNT_MISSILE_LAUNCHER_I",
"MOUNT_TURRET_I"
2023-06-09 22:50:36 +02:00
],
"description": "Symbo of this mount."
2022-09-18 17:49:41 +02:00
},
"name": {
2023-06-09 22:50:36 +02:00
"type": "string",
"description": "Name of this mount."
2022-09-18 17:49:41 +02:00
},
2022-12-04 17:38:00 +01:00
"description": {
2023-06-09 22:50:36 +02:00
"type": "string",
"description": "Description of this mount."
2022-12-04 17:38:00 +01:00
},
2022-12-17 17:16:01 +01:00
"strength": {
"type": "integer",
2023-06-09 22:50:36 +02:00
"minimum": 0,
"description": "Mounts that have this value, such as mining lasers, denote how powerful this mount's capabilities are."
2022-12-17 17:16:01 +01:00
},
2022-12-23 16:25:29 +01:00
"deposits": {
"type": "array",
2023-06-09 22:50:36 +02:00
"description": "Mounts that have this value denote what goods can be produced from using the mount.",
2022-12-23 16:25:29 +01:00
"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"
]
}
},
2022-09-18 17:49:41 +02:00
"requirements": {
"$ref": "./ShipRequirements.json"
}
2022-10-22 18:05:01 +02:00
},
"required": [
"symbol",
"name",
"requirements"
]
2022-09-18 17:49:41 +02:00
}