Split viewer and simulation into separate apps
This commit is contained in:
98
shared/data/ships.json
Normal file
98
shared/data/ships.json
Normal file
@@ -0,0 +1,98 @@
|
||||
[
|
||||
{
|
||||
"id": "frigate",
|
||||
"label": "Vanguard Frigate",
|
||||
"role": "military",
|
||||
"shipClass": "frigate",
|
||||
"speed": 50,
|
||||
"ftlSpeed": 3200,
|
||||
"spoolTime": 2.2,
|
||||
"cargoCapacity": 0,
|
||||
"color": "#7ed4ff",
|
||||
"hullColor": "#1f4f78",
|
||||
"size": 4,
|
||||
"maxHealth": 100,
|
||||
"modules": ["command-bridge", "ion-drive", "ftl-core", "turret-grid"]
|
||||
},
|
||||
{
|
||||
"id": "destroyer",
|
||||
"label": "Bulwark Destroyer",
|
||||
"role": "military",
|
||||
"shipClass": "destroyer",
|
||||
"speed": 34,
|
||||
"ftlSpeed": 2900,
|
||||
"spoolTime": 2.8,
|
||||
"cargoCapacity": 0,
|
||||
"color": "#ff8f70",
|
||||
"hullColor": "#6a2e26",
|
||||
"size": 7,
|
||||
"maxHealth": 240,
|
||||
"modules": ["command-bridge", "ion-drive", "ftl-core", "turret-grid", "turret-grid"]
|
||||
},
|
||||
{
|
||||
"id": "cruiser",
|
||||
"label": "Aegis Cruiser",
|
||||
"role": "military",
|
||||
"shipClass": "cruiser",
|
||||
"speed": 28,
|
||||
"ftlSpeed": 2750,
|
||||
"spoolTime": 3.1,
|
||||
"cargoCapacity": 0,
|
||||
"color": "#9ec1ff",
|
||||
"hullColor": "#314562",
|
||||
"size": 10,
|
||||
"maxHealth": 340,
|
||||
"modules": ["command-bridge", "ion-drive", "ftl-core", "turret-grid", "turret-grid", "docking-clamps"]
|
||||
},
|
||||
{
|
||||
"id": "carrier",
|
||||
"label": "Citadel Carrier",
|
||||
"role": "military",
|
||||
"shipClass": "capital",
|
||||
"speed": 18,
|
||||
"ftlSpeed": 2500,
|
||||
"spoolTime": 4.1,
|
||||
"cargoCapacity": 0,
|
||||
"color": "#c6f4ff",
|
||||
"hullColor": "#35586d",
|
||||
"size": 16,
|
||||
"maxHealth": 900,
|
||||
"modules": ["command-bridge", "ion-drive", "ftl-core", "carrier-bay", "carrier-bay", "turret-grid", "habitat-ring"],
|
||||
"dockingCapacity": 6,
|
||||
"dockingClasses": ["frigate", "destroyer", "cruiser"]
|
||||
},
|
||||
{
|
||||
"id": "hauler",
|
||||
"label": "Atlas Hauler",
|
||||
"role": "transport",
|
||||
"shipClass": "industrial",
|
||||
"speed": 22,
|
||||
"ftlSpeed": 2600,
|
||||
"spoolTime": 3.3,
|
||||
"cargoCapacity": 180,
|
||||
"cargoKind": "container",
|
||||
"cargoItemId": "drone-parts",
|
||||
"color": "#b0ff8d",
|
||||
"hullColor": "#365f2a",
|
||||
"size": 8,
|
||||
"maxHealth": 180,
|
||||
"modules": ["command-bridge", "ion-drive", "ftl-core", "container-bay", "docking-clamps"]
|
||||
},
|
||||
{
|
||||
"id": "miner",
|
||||
"label": "Prospector Miner",
|
||||
"role": "mining",
|
||||
"shipClass": "industrial",
|
||||
"speed": 26,
|
||||
"ftlSpeed": 2400,
|
||||
"spoolTime": 3.1,
|
||||
"cargoCapacity": 120,
|
||||
"cargoKind": "bulk-solid",
|
||||
"cargoItemId": "ore",
|
||||
"color": "#ffdd75",
|
||||
"hullColor": "#68552b",
|
||||
"size": 6,
|
||||
"maxHealth": 150,
|
||||
"modules": ["command-bridge", "ion-drive", "ftl-core", "strip-miner", "bulk-bay", "docking-clamps"]
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user