feat: rework modules, items and fuel
This commit is contained in:
@@ -6,12 +6,5 @@
|
||||
"transferRate": 56,
|
||||
"dockingDuration": 1.2,
|
||||
"undockingDuration": 1.2,
|
||||
"undockDistance": 42,
|
||||
"energy": {
|
||||
"idleDrain": 0.7,
|
||||
"moveDrain": 1.8,
|
||||
"warpDrain": 7,
|
||||
"shipRechargeRate": 10,
|
||||
"stationSolarCharge": 5
|
||||
}
|
||||
"undockDistance": 42
|
||||
}
|
||||
|
||||
@@ -1,87 +0,0 @@
|
||||
[
|
||||
{
|
||||
"id": "station-core",
|
||||
"label": "Orbital Station",
|
||||
"category": "station",
|
||||
"color": "#8df0d2",
|
||||
"radius": 24,
|
||||
"dockingCapacity": 4,
|
||||
"storage": {
|
||||
"bulk-solid": 2000,
|
||||
"manufactured": 1200,
|
||||
"bulk-liquid": 600,
|
||||
"bulk-gas": 600
|
||||
},
|
||||
"modules": ["dock-bay-small", "power-core", "bulk-bay", "liquid-tank"]
|
||||
},
|
||||
{
|
||||
"id": "trade-hub",
|
||||
"label": "Trade Hub",
|
||||
"category": "station",
|
||||
"color": "#8bd3ff",
|
||||
"radius": 20,
|
||||
"dockingCapacity": 4,
|
||||
"storage": { "container": 1200, "manufactured": 800 },
|
||||
"modules": ["habitat-ring", "container-bay"]
|
||||
},
|
||||
{
|
||||
"id": "refinery",
|
||||
"label": "Refining Station",
|
||||
"category": "station",
|
||||
"color": "#ffb86c",
|
||||
"radius": 24,
|
||||
"dockingCapacity": 3,
|
||||
"storage": { "bulk-solid": 2000, "manufactured": 1000, "bulk-liquid": 400, "bulk-gas": 400 },
|
||||
"modules": ["power-core", "bulk-bay", "liquid-tank", "gas-tank", "refinery-stack", "fuel-processor"]
|
||||
},
|
||||
{
|
||||
"id": "farm-ring",
|
||||
"label": "Farm Station",
|
||||
"category": "farm",
|
||||
"color": "#92ef8a",
|
||||
"radius": 22,
|
||||
"dockingCapacity": 2,
|
||||
"storage": { "bulk-liquid": 600, "container": 400 },
|
||||
"modules": ["habitat-ring", "fabricator-array", "container-bay"]
|
||||
},
|
||||
{
|
||||
"id": "manufactory",
|
||||
"label": "Orbital Manufactory",
|
||||
"category": "station",
|
||||
"color": "#8df0d2",
|
||||
"radius": 24,
|
||||
"dockingCapacity": 3,
|
||||
"storage": { "manufactured": 2200, "container": 1600 },
|
||||
"modules": ["fabricator-array", "fabricator-array", "container-bay"]
|
||||
},
|
||||
{
|
||||
"id": "shipyard",
|
||||
"label": "Orbital Shipyard",
|
||||
"category": "shipyard",
|
||||
"color": "#d0a2ff",
|
||||
"radius": 28,
|
||||
"dockingCapacity": 5,
|
||||
"storage": { "manufactured": 1800, "container": 1200 },
|
||||
"modules": ["component-factory", "ship-factory", "container-bay", "dock-bay-small", "power-core"]
|
||||
},
|
||||
{
|
||||
"id": "defense-grid",
|
||||
"label": "Defense Platform",
|
||||
"category": "defense",
|
||||
"color": "#ff7a95",
|
||||
"radius": 18,
|
||||
"dockingCapacity": 1,
|
||||
"storage": { "manufactured": 300 },
|
||||
"modules": ["turret-grid", "command-bridge"]
|
||||
},
|
||||
{
|
||||
"id": "stargate",
|
||||
"label": "Stargate",
|
||||
"category": "gate",
|
||||
"color": "#76f0ff",
|
||||
"radius": 34,
|
||||
"dockingCapacity": 0,
|
||||
"storage": { "manufactured": 2400, "container": 800 },
|
||||
"modules": ["ftl-core", "fabricator-array"]
|
||||
}
|
||||
]
|
||||
@@ -1,206 +1,630 @@
|
||||
[
|
||||
{
|
||||
"id": "ore",
|
||||
"label": "Raw Ore",
|
||||
"storage": "bulk-solid",
|
||||
"summary": "Unprocessed asteroid ore used as the main industrial feedstock."
|
||||
},
|
||||
{
|
||||
"id": "refined-metals",
|
||||
"label": "Refined Metals",
|
||||
"storage": "manufactured",
|
||||
"summary": "Processed structural metals used by stations and shipyards."
|
||||
},
|
||||
{
|
||||
"id": "hull-sections",
|
||||
"label": "Hull Sections",
|
||||
"storage": "manufactured",
|
||||
"summary": "Prefabricated structural assemblies for ships and stations."
|
||||
},
|
||||
{
|
||||
"id": "ammo-crates",
|
||||
"label": "Ammo Crates",
|
||||
"storage": "container",
|
||||
"summary": "Containerized magazines for turrets, launchers, and point defense."
|
||||
},
|
||||
{
|
||||
"id": "naval-guns",
|
||||
"label": "Naval Guns",
|
||||
"storage": "manufactured",
|
||||
"summary": "Shipboard turret and cannon assemblies."
|
||||
},
|
||||
{
|
||||
"id": "ship-equipment",
|
||||
"label": "Ship Equipment",
|
||||
"storage": "container",
|
||||
"summary": "Shield emitters, avionics, cooling loops, and service kits."
|
||||
},
|
||||
{
|
||||
"id": "ship-parts",
|
||||
"label": "Ship Parts",
|
||||
"storage": "manufactured",
|
||||
"summary": "High-value integration kits for hull fitting and final assembly."
|
||||
},
|
||||
{
|
||||
"id": "command-bridge-module",
|
||||
"label": "Command Bridge Module",
|
||||
"storage": "container",
|
||||
"summary": "Packaged bridge and combat-information-center assembly for final ship integration."
|
||||
},
|
||||
{
|
||||
"id": "reactor-core-module",
|
||||
"label": "Reactor Core Module",
|
||||
"storage": "container",
|
||||
"summary": "Contained ship reactor package ready for installation into a hull."
|
||||
},
|
||||
{
|
||||
"id": "capacitor-bank-module",
|
||||
"label": "Capacitor Bank Module",
|
||||
"storage": "container",
|
||||
"summary": "Buffered capacitor section for propulsion, weapons, and industrial loads."
|
||||
},
|
||||
{
|
||||
"id": "ion-drive-module",
|
||||
"label": "Ion Drive Module",
|
||||
"storage": "container",
|
||||
"summary": "Preassembled sublight engine unit."
|
||||
},
|
||||
{
|
||||
"id": "ftl-core-module",
|
||||
"label": "FTL Core Module",
|
||||
"storage": "container",
|
||||
"summary": "Integrated FTL drive package for inter-system transit."
|
||||
},
|
||||
{
|
||||
"id": "gun-turret-module",
|
||||
"label": "Gun Turret Module",
|
||||
"storage": "container",
|
||||
"summary": "Shipboard turret mount and fire-control package."
|
||||
},
|
||||
{
|
||||
"id": "carrier-bay-module",
|
||||
"label": "Carrier Bay Module",
|
||||
"storage": "container",
|
||||
"summary": "Hangar and launch-recovery assembly for capital ship integration."
|
||||
},
|
||||
{
|
||||
"id": "habitat-ring-module",
|
||||
"label": "Habitat Ring Module",
|
||||
"storage": "container",
|
||||
"summary": "Crew habitat section packaged for large ship installation."
|
||||
},
|
||||
{
|
||||
"id": "bulk-bay-module",
|
||||
"label": "Bulk Bay Module",
|
||||
"storage": "container",
|
||||
"summary": "Industrial cargo hold segment for raw-solid hauling ships."
|
||||
},
|
||||
{
|
||||
"id": "container-bay-module",
|
||||
"label": "Container Bay Module",
|
||||
"storage": "container",
|
||||
"summary": "Freight rack segment for manufactured and palletized cargo."
|
||||
},
|
||||
{
|
||||
"id": "liquid-tank-module",
|
||||
"label": "Liquid Tank Module",
|
||||
"storage": "container",
|
||||
"summary": "Pressurized liquid storage segment for fuel and energy logistics."
|
||||
},
|
||||
{
|
||||
"id": "gas-tank-module",
|
||||
"label": "Gas Tank Module",
|
||||
"storage": "container",
|
||||
"summary": "Pressurized gas storage segment for volatile cargo hauling."
|
||||
},
|
||||
{
|
||||
"id": "mining-turret-module",
|
||||
"label": "Mining Turret Module",
|
||||
"storage": "container",
|
||||
"summary": "Ship-mounted hard-rock extraction head."
|
||||
},
|
||||
{
|
||||
"id": "gas-extractor-module",
|
||||
"label": "Gas Extractor Module",
|
||||
"storage": "container",
|
||||
"summary": "Cryogenic intake and compression package for gas harvesting ships."
|
||||
},
|
||||
{
|
||||
"id": "fabricator-array-module",
|
||||
"label": "Fabricator Array Module",
|
||||
"storage": "container",
|
||||
"summary": "Mobile industrial fabrication block for constructors."
|
||||
},
|
||||
{
|
||||
"id": "gas",
|
||||
"label": "Volatile Gas",
|
||||
"storage": "bulk-gas",
|
||||
"summary": "Compressed gas reserves for future chemical and fuel chains."
|
||||
},
|
||||
{
|
||||
"id": "fuel",
|
||||
"label": "Reactor Fuel",
|
||||
"storage": "bulk-liquid",
|
||||
"summary": "Processed liquid fuel consumed by ships and station power systems."
|
||||
},
|
||||
{
|
||||
"id": "energy-cell",
|
||||
"label": "Energy Cell",
|
||||
"storage": "bulk-liquid",
|
||||
"summary": "Charged energy reserves that can be stored, traded, and discharged into station power grids."
|
||||
"name": "Raw Ore",
|
||||
"description": "Unprocessed asteroid ore used as the main industrial feedstock.",
|
||||
"type": "resource",
|
||||
"cargoKind": "bulk-solid",
|
||||
"volume": 1.2
|
||||
},
|
||||
{
|
||||
"id": "water",
|
||||
"label": "Water",
|
||||
"storage": "bulk-liquid",
|
||||
"summary": "Life-support and agricultural input."
|
||||
"name": "Water",
|
||||
"description": "Life-support and agricultural input.",
|
||||
"type": "commodity",
|
||||
"cargoKind": "bulk-liquid",
|
||||
"volume": 1.0,
|
||||
"construction": {
|
||||
"recipeId": "water-reclamation",
|
||||
"facilityCategory": "farm",
|
||||
"requiredModules": ["liquid-tank", "solar-array"],
|
||||
"requirements": [],
|
||||
"cycleTime": 6,
|
||||
"batchSize": 12,
|
||||
"productsPerHour": 7200,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 14
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "refined-metals",
|
||||
"name": "Refined Metals",
|
||||
"description": "Processed structural metals used by stations and shipyards.",
|
||||
"type": "material",
|
||||
"cargoKind": "manufactured",
|
||||
"volume": 1.0,
|
||||
"construction": {
|
||||
"recipeId": "ore-refining",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["refinery-stack"],
|
||||
"requirements": [
|
||||
{ "itemId": "ore", "amount": 60 }
|
||||
],
|
||||
"cycleTime": 8,
|
||||
"batchSize": 60,
|
||||
"productsPerHour": 27000,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 100
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "hull-sections",
|
||||
"name": "Hull Sections",
|
||||
"description": "Prefabricated structural assemblies for ships and stations.",
|
||||
"type": "component",
|
||||
"cargoKind": "manufactured",
|
||||
"volume": 1.5,
|
||||
"construction": {
|
||||
"recipeId": "hull-fabrication",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["fabricator-array"],
|
||||
"requirements": [
|
||||
{ "itemId": "refined-metals", "amount": 70 }
|
||||
],
|
||||
"cycleTime": 10,
|
||||
"batchSize": 35,
|
||||
"productsPerHour": 12600,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 40
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "ammo-crates",
|
||||
"name": "Ammo Crates",
|
||||
"description": "Containerized magazines for turrets, launchers, and point defense.",
|
||||
"type": "component",
|
||||
"cargoKind": "container",
|
||||
"volume": 1.0,
|
||||
"construction": {
|
||||
"recipeId": "ammo-fabrication",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["fabricator-array"],
|
||||
"requirements": [
|
||||
{ "itemId": "refined-metals", "amount": 24 }
|
||||
],
|
||||
"cycleTime": 6,
|
||||
"batchSize": 30,
|
||||
"productsPerHour": 18000,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 34
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "naval-guns",
|
||||
"name": "Naval Guns",
|
||||
"description": "Shipboard turret and cannon assemblies.",
|
||||
"type": "component",
|
||||
"cargoKind": "manufactured",
|
||||
"volume": 1.4,
|
||||
"construction": {
|
||||
"recipeId": "gun-assembly",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["fabricator-array"],
|
||||
"requirements": [
|
||||
{ "itemId": "refined-metals", "amount": 36 }
|
||||
],
|
||||
"cycleTime": 9,
|
||||
"batchSize": 12,
|
||||
"productsPerHour": 4800,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 32
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "ship-equipment",
|
||||
"name": "Ship Equipment",
|
||||
"description": "Shield emitters, avionics, cooling loops, and service kits.",
|
||||
"type": "component",
|
||||
"cargoKind": "container",
|
||||
"volume": 1.0,
|
||||
"construction": {
|
||||
"recipeId": "equipment-assembly",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["fabricator-array"],
|
||||
"requirements": [
|
||||
{ "itemId": "refined-metals", "amount": 28 },
|
||||
{ "itemId": "water", "amount": 8 }
|
||||
],
|
||||
"cycleTime": 11,
|
||||
"batchSize": 18,
|
||||
"productsPerHour": 5890.9,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 30
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "ship-parts",
|
||||
"name": "Ship Parts",
|
||||
"description": "High-value integration kits for hull fitting and final assembly.",
|
||||
"type": "component",
|
||||
"cargoKind": "manufactured",
|
||||
"volume": 1.3,
|
||||
"construction": {
|
||||
"recipeId": "ship-parts-integration",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["fabricator-array"],
|
||||
"requirements": [
|
||||
{ "itemId": "hull-sections", "amount": 24 },
|
||||
{ "itemId": "naval-guns", "amount": 6 },
|
||||
{ "itemId": "ship-equipment", "amount": 10 }
|
||||
],
|
||||
"cycleTime": 14,
|
||||
"batchSize": 20,
|
||||
"productsPerHour": 5142.9,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 50
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "drone-parts",
|
||||
"label": "Drone Parts",
|
||||
"storage": "container",
|
||||
"summary": "Containerized industrial freight."
|
||||
"name": "Drone Parts",
|
||||
"description": "Containerized industrial freight for construction support.",
|
||||
"type": "component",
|
||||
"cargoKind": "container",
|
||||
"volume": 1.0,
|
||||
"construction": {
|
||||
"recipeId": "drone-parts-assembly",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["fabricator-array"],
|
||||
"requirements": [
|
||||
{ "itemId": "refined-metals", "amount": 12 },
|
||||
{ "itemId": "ship-equipment", "amount": 6 }
|
||||
],
|
||||
"cycleTime": 7,
|
||||
"batchSize": 16,
|
||||
"productsPerHour": 8228.6,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 18
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "command-bridge-module",
|
||||
"name": "Command Bridge Module",
|
||||
"description": "Packaged bridge and combat-information-center assembly for final ship integration.",
|
||||
"type": "ship-module",
|
||||
"cargoKind": "container",
|
||||
"volume": 2.0,
|
||||
"construction": {
|
||||
"recipeId": "command-bridge-module-assembly",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["component-factory", "container-bay"],
|
||||
"requirements": [
|
||||
{ "itemId": "refined-metals", "amount": 20 },
|
||||
{ "itemId": "ship-equipment", "amount": 10 }
|
||||
],
|
||||
"cycleTime": 9,
|
||||
"batchSize": 1,
|
||||
"productsPerHour": 400,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 52
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "reactor-core-module",
|
||||
"name": "Reactor Core Module",
|
||||
"description": "Contained ship reactor package ready for installation into a hull.",
|
||||
"type": "ship-module",
|
||||
"cargoKind": "container",
|
||||
"volume": 2.2,
|
||||
"construction": {
|
||||
"recipeId": "reactor-core-module-assembly",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["component-factory", "container-bay"],
|
||||
"requirements": [
|
||||
{ "itemId": "refined-metals", "amount": 30 },
|
||||
{ "itemId": "ship-equipment", "amount": 8 }
|
||||
],
|
||||
"cycleTime": 10,
|
||||
"batchSize": 1,
|
||||
"productsPerHour": 360,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 54
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "capacitor-bank-module",
|
||||
"name": "Capacitor Bank Module",
|
||||
"description": "Buffered capacitor section for propulsion, weapons, and industrial loads.",
|
||||
"type": "ship-module",
|
||||
"cargoKind": "container",
|
||||
"volume": 1.8,
|
||||
"construction": {
|
||||
"recipeId": "capacitor-bank-module-assembly",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["component-factory", "container-bay"],
|
||||
"requirements": [
|
||||
{ "itemId": "refined-metals", "amount": 18 },
|
||||
{ "itemId": "ship-equipment", "amount": 4 }
|
||||
],
|
||||
"cycleTime": 9,
|
||||
"batchSize": 1,
|
||||
"productsPerHour": 400,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 52
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "ion-drive-module",
|
||||
"name": "Ion Drive Module",
|
||||
"description": "Preassembled sublight engine unit.",
|
||||
"type": "ship-module",
|
||||
"cargoKind": "container",
|
||||
"volume": 2.0,
|
||||
"construction": {
|
||||
"recipeId": "ion-drive-module-assembly",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["component-factory", "container-bay"],
|
||||
"requirements": [
|
||||
{ "itemId": "refined-metals", "amount": 22 },
|
||||
{ "itemId": "ship-equipment", "amount": 8 }
|
||||
],
|
||||
"cycleTime": 10,
|
||||
"batchSize": 1,
|
||||
"productsPerHour": 360,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 53
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "ftl-core-module",
|
||||
"name": "FTL Core Module",
|
||||
"description": "Integrated FTL drive package for inter-system transit.",
|
||||
"type": "ship-module",
|
||||
"cargoKind": "container",
|
||||
"volume": 2.4,
|
||||
"construction": {
|
||||
"recipeId": "ftl-core-module-assembly",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["component-factory", "container-bay"],
|
||||
"requirements": [
|
||||
{ "itemId": "refined-metals", "amount": 34 },
|
||||
{ "itemId": "ship-equipment", "amount": 14 }
|
||||
],
|
||||
"cycleTime": 12,
|
||||
"batchSize": 1,
|
||||
"productsPerHour": 300,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 56
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "gun-turret-module",
|
||||
"name": "Gun Turret Module",
|
||||
"description": "Shipboard turret mount and fire-control package.",
|
||||
"type": "ship-module",
|
||||
"cargoKind": "container",
|
||||
"volume": 1.6,
|
||||
"construction": {
|
||||
"recipeId": "gun-turret-module-assembly",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["component-factory", "container-bay"],
|
||||
"requirements": [
|
||||
{ "itemId": "naval-guns", "amount": 8 },
|
||||
{ "itemId": "refined-metals", "amount": 12 }
|
||||
],
|
||||
"cycleTime": 8,
|
||||
"batchSize": 1,
|
||||
"productsPerHour": 450,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 58
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "carrier-bay-module",
|
||||
"name": "Carrier Bay Module",
|
||||
"description": "Hangar and launch-recovery assembly for capital ship integration.",
|
||||
"type": "ship-module",
|
||||
"cargoKind": "container",
|
||||
"volume": 3.0,
|
||||
"construction": {
|
||||
"recipeId": "carrier-bay-module-assembly",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["component-factory", "container-bay"],
|
||||
"requirements": [
|
||||
{ "itemId": "hull-sections", "amount": 18 },
|
||||
{ "itemId": "refined-metals", "amount": 18 },
|
||||
{ "itemId": "ship-equipment", "amount": 10 }
|
||||
],
|
||||
"cycleTime": 14,
|
||||
"batchSize": 1,
|
||||
"productsPerHour": 257.1,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 40
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "habitat-ring-module",
|
||||
"name": "Habitat Ring Module",
|
||||
"description": "Crew habitat section packaged for large ship installation.",
|
||||
"type": "ship-module",
|
||||
"cargoKind": "container",
|
||||
"volume": 2.6,
|
||||
"construction": {
|
||||
"recipeId": "habitat-ring-module-assembly",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["component-factory", "container-bay"],
|
||||
"requirements": [
|
||||
{ "itemId": "hull-sections", "amount": 14 },
|
||||
{ "itemId": "ship-equipment", "amount": 8 },
|
||||
{ "itemId": "water", "amount": 10 }
|
||||
],
|
||||
"cycleTime": 12,
|
||||
"batchSize": 1,
|
||||
"productsPerHour": 300,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 22
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "bulk-bay-module",
|
||||
"name": "Bulk Bay Module",
|
||||
"description": "Industrial cargo hold segment for raw-solid hauling ships.",
|
||||
"type": "ship-module",
|
||||
"cargoKind": "container",
|
||||
"volume": 2.0,
|
||||
"construction": {
|
||||
"recipeId": "bulk-bay-module-assembly",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["component-factory", "container-bay"],
|
||||
"requirements": [
|
||||
{ "itemId": "refined-metals", "amount": 16 },
|
||||
{ "itemId": "hull-sections", "amount": 10 }
|
||||
],
|
||||
"cycleTime": 8,
|
||||
"batchSize": 1,
|
||||
"productsPerHour": 450,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 18
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "container-bay-module",
|
||||
"name": "Container Bay Module",
|
||||
"description": "Freight rack segment for manufactured and palletized cargo.",
|
||||
"type": "ship-module",
|
||||
"cargoKind": "container",
|
||||
"volume": 2.0,
|
||||
"construction": {
|
||||
"recipeId": "container-bay-module-assembly",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["component-factory", "container-bay"],
|
||||
"requirements": [
|
||||
{ "itemId": "refined-metals", "amount": 12 },
|
||||
{ "itemId": "ship-equipment", "amount": 4 }
|
||||
],
|
||||
"cycleTime": 8,
|
||||
"batchSize": 1,
|
||||
"productsPerHour": 450,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 18
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "liquid-tank-module",
|
||||
"name": "Liquid Tank Module",
|
||||
"description": "Pressurized liquid storage segment for water and liquid logistics.",
|
||||
"type": "ship-module",
|
||||
"cargoKind": "container",
|
||||
"volume": 2.0,
|
||||
"construction": {
|
||||
"recipeId": "liquid-tank-module-assembly",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["component-factory", "container-bay"],
|
||||
"requirements": [
|
||||
{ "itemId": "refined-metals", "amount": 14 },
|
||||
{ "itemId": "ship-equipment", "amount": 4 }
|
||||
],
|
||||
"cycleTime": 8,
|
||||
"batchSize": 1,
|
||||
"productsPerHour": 450,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 18
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "mining-turret-module",
|
||||
"name": "Mining Turret Module",
|
||||
"description": "Ship-mounted hard-rock extraction head.",
|
||||
"type": "ship-module",
|
||||
"cargoKind": "container",
|
||||
"volume": 1.8,
|
||||
"construction": {
|
||||
"recipeId": "mining-turret-module-assembly",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["component-factory", "container-bay"],
|
||||
"requirements": [
|
||||
{ "itemId": "refined-metals", "amount": 18 },
|
||||
{ "itemId": "ship-equipment", "amount": 6 }
|
||||
],
|
||||
"cycleTime": 9,
|
||||
"batchSize": 1,
|
||||
"productsPerHour": 400,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 24
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "fabricator-array-module",
|
||||
"name": "Fabricator Array Module",
|
||||
"description": "Mobile industrial fabrication block for constructors.",
|
||||
"type": "ship-module",
|
||||
"cargoKind": "container",
|
||||
"volume": 2.4,
|
||||
"construction": {
|
||||
"recipeId": "fabricator-array-module-assembly",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["component-factory", "container-bay"],
|
||||
"requirements": [
|
||||
{ "itemId": "refined-metals", "amount": 24 },
|
||||
{ "itemId": "ship-equipment", "amount": 10 }
|
||||
],
|
||||
"cycleTime": 11,
|
||||
"batchSize": 1,
|
||||
"productsPerHour": 327.3,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 20
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "trade-hub-kit",
|
||||
"label": "Trade Hub Kit",
|
||||
"storage": "manufactured",
|
||||
"summary": "Deployable prefab package for a trade hub station."
|
||||
"name": "Trade Hub Kit",
|
||||
"description": "Deployable prefab package for a trade hub station.",
|
||||
"type": "kit",
|
||||
"cargoKind": "manufactured",
|
||||
"volume": 6.0,
|
||||
"construction": {
|
||||
"recipeId": "trade-hub-assembly",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["fabricator-array"],
|
||||
"requirements": [
|
||||
{ "itemId": "ship-parts", "amount": 26 },
|
||||
{ "itemId": "ship-equipment", "amount": 16 },
|
||||
{ "itemId": "drone-parts", "amount": 10 }
|
||||
],
|
||||
"cycleTime": 18,
|
||||
"batchSize": 1,
|
||||
"productsPerHour": 200,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 24
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "refinery-kit",
|
||||
"label": "Refinery Kit",
|
||||
"storage": "manufactured",
|
||||
"summary": "Deployable prefab package for a refining station."
|
||||
"name": "Refinery Kit",
|
||||
"description": "Deployable prefab package for a refining station.",
|
||||
"type": "kit",
|
||||
"cargoKind": "manufactured",
|
||||
"volume": 6.5,
|
||||
"construction": {
|
||||
"recipeId": "refinery-assembly",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["fabricator-array"],
|
||||
"requirements": [
|
||||
{ "itemId": "ship-parts", "amount": 32 },
|
||||
{ "itemId": "hull-sections", "amount": 24 },
|
||||
{ "itemId": "ship-equipment", "amount": 14 }
|
||||
],
|
||||
"cycleTime": 20,
|
||||
"batchSize": 1,
|
||||
"productsPerHour": 180,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 26
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "farm-ring-kit",
|
||||
"label": "Farm Ring Kit",
|
||||
"storage": "manufactured",
|
||||
"summary": "Deployable prefab package for a farm station."
|
||||
"name": "Farm Ring Kit",
|
||||
"description": "Deployable prefab package for a farm station.",
|
||||
"type": "kit",
|
||||
"cargoKind": "manufactured",
|
||||
"volume": 6.0,
|
||||
"construction": {
|
||||
"recipeId": "farm-ring-assembly",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["fabricator-array"],
|
||||
"requirements": [
|
||||
{ "itemId": "ship-parts", "amount": 22 },
|
||||
{ "itemId": "ship-equipment", "amount": 18 },
|
||||
{ "itemId": "water", "amount": 22 }
|
||||
],
|
||||
"cycleTime": 18,
|
||||
"batchSize": 1,
|
||||
"productsPerHour": 200,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 22
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "manufactory-kit",
|
||||
"label": "Manufactory Kit",
|
||||
"storage": "manufactured",
|
||||
"summary": "Deployable prefab package for an orbital manufactory."
|
||||
"name": "Manufactory Kit",
|
||||
"description": "Deployable prefab package for an orbital manufactory.",
|
||||
"type": "kit",
|
||||
"cargoKind": "manufactured",
|
||||
"volume": 7.0,
|
||||
"construction": {
|
||||
"recipeId": "manufactory-assembly",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["fabricator-array"],
|
||||
"requirements": [
|
||||
{ "itemId": "ship-parts", "amount": 34 },
|
||||
{ "itemId": "hull-sections", "amount": 16 },
|
||||
{ "itemId": "ship-equipment", "amount": 18 }
|
||||
],
|
||||
"cycleTime": 22,
|
||||
"batchSize": 1,
|
||||
"productsPerHour": 163.6,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 28
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "shipyard-kit",
|
||||
"label": "Shipyard Kit",
|
||||
"storage": "manufactured",
|
||||
"summary": "Deployable prefab package for an orbital shipyard."
|
||||
"name": "Shipyard Kit",
|
||||
"description": "Deployable prefab package for an orbital shipyard.",
|
||||
"type": "kit",
|
||||
"cargoKind": "manufactured",
|
||||
"volume": 8.0,
|
||||
"construction": {
|
||||
"recipeId": "shipyard-assembly",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["fabricator-array"],
|
||||
"requirements": [
|
||||
{ "itemId": "ship-parts", "amount": 42 },
|
||||
{ "itemId": "hull-sections", "amount": 30 },
|
||||
{ "itemId": "naval-guns", "amount": 10 }
|
||||
],
|
||||
"cycleTime": 26,
|
||||
"batchSize": 1,
|
||||
"productsPerHour": 138.5,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 30
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "defense-grid-kit",
|
||||
"label": "Defense Grid Kit",
|
||||
"storage": "manufactured",
|
||||
"summary": "Deployable prefab package for a defense platform."
|
||||
"name": "Defense Grid Kit",
|
||||
"description": "Deployable prefab package for a defense platform.",
|
||||
"type": "kit",
|
||||
"cargoKind": "manufactured",
|
||||
"volume": 7.0,
|
||||
"construction": {
|
||||
"recipeId": "defense-grid-assembly",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["fabricator-array"],
|
||||
"requirements": [
|
||||
{ "itemId": "ship-parts", "amount": 18 },
|
||||
{ "itemId": "naval-guns", "amount": 12 },
|
||||
{ "itemId": "ammo-crates", "amount": 18 }
|
||||
],
|
||||
"cycleTime": 16,
|
||||
"batchSize": 1,
|
||||
"productsPerHour": 225,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 20
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "stargate-kit",
|
||||
"label": "Stargate Kit",
|
||||
"storage": "manufactured",
|
||||
"summary": "Deployable prefab package for a stargate structure."
|
||||
"name": "Stargate Kit",
|
||||
"description": "Deployable prefab package for a stargate structure.",
|
||||
"type": "kit",
|
||||
"cargoKind": "manufactured",
|
||||
"volume": 10.0,
|
||||
"construction": {
|
||||
"recipeId": "stargate-assembly",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": ["fabricator-array"],
|
||||
"requirements": [
|
||||
{ "itemId": "ship-parts", "amount": 60 },
|
||||
{ "itemId": "hull-sections", "amount": 44 },
|
||||
{ "itemId": "ship-equipment", "amount": 26 },
|
||||
{ "itemId": "naval-guns", "amount": 8 }
|
||||
],
|
||||
"cycleTime": 34,
|
||||
"batchSize": 1,
|
||||
"productsPerHour": 105.9,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 36
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
@@ -1,68 +0,0 @@
|
||||
[
|
||||
{
|
||||
"moduleId": "dock-bay-small",
|
||||
"duration": 12,
|
||||
"inputs": [
|
||||
{ "itemId": "refined-metals", "amount": 34 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"moduleId": "gas-tank",
|
||||
"duration": 10,
|
||||
"inputs": [
|
||||
{ "itemId": "refined-metals", "amount": 30 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"moduleId": "container-bay",
|
||||
"duration": 10,
|
||||
"inputs": [
|
||||
{ "itemId": "refined-metals", "amount": 26 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"moduleId": "fuel-processor",
|
||||
"duration": 14,
|
||||
"inputs": [
|
||||
{ "itemId": "refined-metals", "amount": 42 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"moduleId": "refinery-stack",
|
||||
"duration": 14,
|
||||
"inputs": [
|
||||
{ "itemId": "refined-metals", "amount": 38 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"moduleId": "fabricator-array",
|
||||
"duration": 16,
|
||||
"inputs": [
|
||||
{ "itemId": "refined-metals", "amount": 48 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"moduleId": "component-factory",
|
||||
"duration": 18,
|
||||
"inputs": [
|
||||
{ "itemId": "refined-metals", "amount": 54 },
|
||||
{ "itemId": "ship-equipment", "amount": 12 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"moduleId": "ship-factory",
|
||||
"duration": 22,
|
||||
"inputs": [
|
||||
{ "itemId": "refined-metals", "amount": 60 },
|
||||
{ "itemId": "hull-sections", "amount": 24 },
|
||||
{ "itemId": "ship-equipment", "amount": 14 }
|
||||
]
|
||||
},
|
||||
{
|
||||
"moduleId": "solar-array",
|
||||
"duration": 12,
|
||||
"inputs": [
|
||||
{ "itemId": "refined-metals", "amount": 28 }
|
||||
]
|
||||
}
|
||||
]
|
||||
247
shared/data/modules.json
Normal file
247
shared/data/modules.json
Normal file
@@ -0,0 +1,247 @@
|
||||
[
|
||||
{
|
||||
"id": "dock-bay-small",
|
||||
"name": "Small Dock Bay",
|
||||
"description": "External docking pad cluster for small and medium hulls.",
|
||||
"type": "Dock",
|
||||
"hull": 160,
|
||||
"workforceNeeded": 10,
|
||||
"construction": {
|
||||
"productionTime": 12,
|
||||
"requirements": [
|
||||
{
|
||||
"itemId": "refined-metals",
|
||||
"amount": 34
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "container-bay",
|
||||
"name": "Container Bay",
|
||||
"description": "Manufactured cargo storage and container handling racks.",
|
||||
"type": "Storage",
|
||||
"hull": 140,
|
||||
"workforceNeeded": 8,
|
||||
"construction": {
|
||||
"productionTime": 10,
|
||||
"requirements": [
|
||||
{
|
||||
"itemId": "refined-metals",
|
||||
"amount": 26
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "bulk-bay",
|
||||
"name": "Bulk Bay",
|
||||
"description": "Raw solid storage and ore handling volume.",
|
||||
"type": "Storage",
|
||||
"hull": 140,
|
||||
"workforceNeeded": 8
|
||||
},
|
||||
{
|
||||
"id": "liquid-tank",
|
||||
"name": "Liquid Tank",
|
||||
"description": "Liquid cargo and water tankage.",
|
||||
"type": "Storage",
|
||||
"hull": 130,
|
||||
"workforceNeeded": 6,
|
||||
"construction": {
|
||||
"productionTime": 10,
|
||||
"requirements": [
|
||||
{
|
||||
"itemId": "refined-metals",
|
||||
"amount": 20
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "refinery-stack",
|
||||
"name": "Refinery Stack",
|
||||
"description": "Heavy refining line for ore to refined metals.",
|
||||
"type": "Production",
|
||||
"product": "refined-metals",
|
||||
"hull": 180,
|
||||
"workforceNeeded": 18,
|
||||
"construction": {
|
||||
"productionTime": 14,
|
||||
"requirements": [
|
||||
{
|
||||
"itemId": "refined-metals",
|
||||
"amount": 38
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "solar-array",
|
||||
"name": "Solar Array",
|
||||
"description": "Orbital solar generation and utility frame.",
|
||||
"type": "Production",
|
||||
"hull": 110,
|
||||
"workforceNeeded": 6,
|
||||
"construction": {
|
||||
"productionTime": 12,
|
||||
"requirements": [
|
||||
{
|
||||
"itemId": "refined-metals",
|
||||
"amount": 28
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "fabricator-array",
|
||||
"name": "Fabricator Array",
|
||||
"description": "General fabrication line for industrial goods and prefab kits.",
|
||||
"type": "Build Module",
|
||||
"hull": 200,
|
||||
"workforceNeeded": 20,
|
||||
"construction": {
|
||||
"productionTime": 16,
|
||||
"requirements": [
|
||||
{
|
||||
"itemId": "refined-metals",
|
||||
"amount": 48
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "component-factory",
|
||||
"name": "Component Factory",
|
||||
"description": "Assembly line for ship-grade modules and integrated components.",
|
||||
"type": "Build Module",
|
||||
"hull": 220,
|
||||
"workforceNeeded": 24,
|
||||
"construction": {
|
||||
"productionTime": 18,
|
||||
"requirements": [
|
||||
{
|
||||
"itemId": "refined-metals",
|
||||
"amount": 54
|
||||
},
|
||||
{
|
||||
"itemId": "ship-equipment",
|
||||
"amount": 12
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "ship-factory",
|
||||
"name": "Ship Factory",
|
||||
"description": "Slip-line and integration yard for final ship assembly.",
|
||||
"type": "Build Module",
|
||||
"hull": 260,
|
||||
"workforceNeeded": 28,
|
||||
"construction": {
|
||||
"productionTime": 22,
|
||||
"requirements": [
|
||||
{
|
||||
"itemId": "refined-metals",
|
||||
"amount": 60
|
||||
},
|
||||
{
|
||||
"itemId": "hull-sections",
|
||||
"amount": 24
|
||||
},
|
||||
{
|
||||
"itemId": "ship-equipment",
|
||||
"amount": 14
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "power-core",
|
||||
"name": "Power Core",
|
||||
"description": "Station backbone for power routing and core services.",
|
||||
"type": "Connection",
|
||||
"hull": 220,
|
||||
"workforceNeeded": 10
|
||||
},
|
||||
{
|
||||
"id": "habitat-ring",
|
||||
"name": "Habitat Ring",
|
||||
"description": "Crew habitation and life-support section.",
|
||||
"type": "Habitation",
|
||||
"hull": 180,
|
||||
"workforceNeeded": 12
|
||||
},
|
||||
{
|
||||
"id": "turret-grid",
|
||||
"name": "Turret Grid",
|
||||
"description": "Defensive hardpoints and fire-control grid.",
|
||||
"type": "Defense",
|
||||
"hull": 180,
|
||||
"workforceNeeded": 10
|
||||
},
|
||||
{
|
||||
"id": "command-bridge",
|
||||
"name": "Command Bridge",
|
||||
"description": "Command-and-control section for stations and capital structures.",
|
||||
"type": "Connection",
|
||||
"hull": 150,
|
||||
"workforceNeeded": 8
|
||||
},
|
||||
{
|
||||
"id": "reactor-core",
|
||||
"name": "Reactor Core",
|
||||
"description": "Primary reactor and power conversion system.",
|
||||
"type": "Connection",
|
||||
"hull": 150,
|
||||
"workforceNeeded": 8
|
||||
},
|
||||
{
|
||||
"id": "capacitor-bank",
|
||||
"name": "Capacitor Bank",
|
||||
"description": "Energy buffering and discharge system.",
|
||||
"type": "Connection",
|
||||
"hull": 120,
|
||||
"workforceNeeded": 4
|
||||
},
|
||||
{
|
||||
"id": "ion-drive",
|
||||
"name": "Ion Drive",
|
||||
"description": "Primary sublight propulsion module.",
|
||||
"type": "Connection",
|
||||
"hull": 120,
|
||||
"workforceNeeded": 4
|
||||
},
|
||||
{
|
||||
"id": "ftl-core",
|
||||
"name": "FTL Core",
|
||||
"description": "Inter-system transit drive core.",
|
||||
"type": "Connection",
|
||||
"hull": 140,
|
||||
"workforceNeeded": 6
|
||||
},
|
||||
{
|
||||
"id": "gun-turret",
|
||||
"name": "Gun Turret",
|
||||
"description": "General purpose shipboard turret.",
|
||||
"type": "Defense",
|
||||
"hull": 100,
|
||||
"workforceNeeded": 3
|
||||
},
|
||||
{
|
||||
"id": "carrier-bay",
|
||||
"name": "Carrier Bay",
|
||||
"description": "Launch and recovery bay for carried craft.",
|
||||
"type": "Pier",
|
||||
"hull": 160,
|
||||
"workforceNeeded": 8
|
||||
},
|
||||
{
|
||||
"id": "mining-turret",
|
||||
"name": "Mining Turret",
|
||||
"description": "Hard-rock extraction head for mining hulls.",
|
||||
"type": "Production",
|
||||
"hull": 90,
|
||||
"workforceNeeded": 3
|
||||
}
|
||||
]
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,13 @@
|
||||
{
|
||||
"initialStations": [
|
||||
{
|
||||
"constructibleId": "station-core",
|
||||
"label": "Orbital Station",
|
||||
"startingModules": [
|
||||
"dock-bay-small",
|
||||
"power-core",
|
||||
"bulk-bay",
|
||||
"liquid-tank"
|
||||
],
|
||||
"systemId": "helios",
|
||||
"planetIndex": 2,
|
||||
"lagrangeSide": -1
|
||||
@@ -29,7 +35,7 @@
|
||||
"systemId": "helios"
|
||||
},
|
||||
{
|
||||
"shipId": "gas-miner",
|
||||
"shipId": "hauler",
|
||||
"count": 1,
|
||||
"center": [
|
||||
60,
|
||||
@@ -37,16 +43,6 @@
|
||||
28
|
||||
],
|
||||
"systemId": "helios"
|
||||
},
|
||||
{
|
||||
"shipId": "gas-miner",
|
||||
"count": 1,
|
||||
"center": [
|
||||
60,
|
||||
0,
|
||||
32
|
||||
],
|
||||
"systemId": "helios"
|
||||
}
|
||||
],
|
||||
"patrolRoutes": [],
|
||||
|
||||
@@ -13,7 +13,58 @@
|
||||
"hullColor": "#1f4f78",
|
||||
"size": 4,
|
||||
"maxHealth": 100,
|
||||
"modules": ["command-bridge", "reactor-core", "capacitor-bank", "ion-drive", "ftl-core", "gun-turret"]
|
||||
"modules": [
|
||||
"command-bridge",
|
||||
"reactor-core",
|
||||
"capacitor-bank",
|
||||
"ion-drive",
|
||||
"ftl-core",
|
||||
"gun-turret"
|
||||
],
|
||||
"construction": {
|
||||
"recipeId": "frigate-construction",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": [
|
||||
"ship-factory",
|
||||
"dock-bay-small",
|
||||
"container-bay",
|
||||
"power-core"
|
||||
],
|
||||
"requirements": [
|
||||
{
|
||||
"itemId": "hull-sections",
|
||||
"amount": 26
|
||||
},
|
||||
{
|
||||
"itemId": "command-bridge-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "reactor-core-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "capacitor-bank-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "ion-drive-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "ftl-core-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "gun-turret-module",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
"cycleTime": 24,
|
||||
"productsPerHour": 150,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 90
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "destroyer",
|
||||
@@ -29,7 +80,59 @@
|
||||
"hullColor": "#6a2e26",
|
||||
"size": 7,
|
||||
"maxHealth": 240,
|
||||
"modules": ["command-bridge", "reactor-core", "capacitor-bank", "ion-drive", "ftl-core", "gun-turret", "gun-turret"]
|
||||
"modules": [
|
||||
"command-bridge",
|
||||
"reactor-core",
|
||||
"capacitor-bank",
|
||||
"ion-drive",
|
||||
"ftl-core",
|
||||
"gun-turret",
|
||||
"gun-turret"
|
||||
],
|
||||
"construction": {
|
||||
"recipeId": "destroyer-construction",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": [
|
||||
"ship-factory",
|
||||
"dock-bay-small",
|
||||
"container-bay",
|
||||
"power-core"
|
||||
],
|
||||
"requirements": [
|
||||
{
|
||||
"itemId": "hull-sections",
|
||||
"amount": 44
|
||||
},
|
||||
{
|
||||
"itemId": "command-bridge-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "reactor-core-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "capacitor-bank-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "ion-drive-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "ftl-core-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "gun-turret-module",
|
||||
"amount": 2
|
||||
}
|
||||
],
|
||||
"cycleTime": 34,
|
||||
"productsPerHour": 105.9,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 70
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "cruiser",
|
||||
@@ -45,7 +148,59 @@
|
||||
"hullColor": "#314562",
|
||||
"size": 10,
|
||||
"maxHealth": 340,
|
||||
"modules": ["command-bridge", "reactor-core", "capacitor-bank", "ion-drive", "ftl-core", "gun-turret", "gun-turret"]
|
||||
"modules": [
|
||||
"command-bridge",
|
||||
"reactor-core",
|
||||
"capacitor-bank",
|
||||
"ion-drive",
|
||||
"ftl-core",
|
||||
"gun-turret",
|
||||
"gun-turret"
|
||||
],
|
||||
"construction": {
|
||||
"recipeId": "cruiser-construction",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": [
|
||||
"ship-factory",
|
||||
"dock-bay-small",
|
||||
"container-bay",
|
||||
"power-core"
|
||||
],
|
||||
"requirements": [
|
||||
{
|
||||
"itemId": "hull-sections",
|
||||
"amount": 60
|
||||
},
|
||||
{
|
||||
"itemId": "command-bridge-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "reactor-core-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "capacitor-bank-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "ion-drive-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "ftl-core-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "gun-turret-module",
|
||||
"amount": 2
|
||||
}
|
||||
],
|
||||
"cycleTime": 42,
|
||||
"productsPerHour": 85.7,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 54
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "carrier",
|
||||
@@ -61,9 +216,75 @@
|
||||
"hullColor": "#35586d",
|
||||
"size": 16,
|
||||
"maxHealth": 900,
|
||||
"modules": ["command-bridge", "reactor-core", "capacitor-bank", "ion-drive", "ftl-core", "carrier-bay", "carrier-bay", "gun-turret", "habitat-ring"],
|
||||
"modules": [
|
||||
"command-bridge",
|
||||
"reactor-core",
|
||||
"capacitor-bank",
|
||||
"ion-drive",
|
||||
"ftl-core",
|
||||
"carrier-bay",
|
||||
"carrier-bay",
|
||||
"gun-turret",
|
||||
"habitat-ring"
|
||||
],
|
||||
"dockingCapacity": 6,
|
||||
"dockingClasses": ["frigate", "destroyer", "cruiser"]
|
||||
"dockingClasses": [
|
||||
"frigate",
|
||||
"destroyer",
|
||||
"cruiser"
|
||||
],
|
||||
"construction": {
|
||||
"recipeId": "carrier-construction",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": [
|
||||
"ship-factory",
|
||||
"dock-bay-small",
|
||||
"container-bay",
|
||||
"power-core"
|
||||
],
|
||||
"requirements": [
|
||||
{
|
||||
"itemId": "hull-sections",
|
||||
"amount": 120
|
||||
},
|
||||
{
|
||||
"itemId": "command-bridge-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "reactor-core-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "capacitor-bank-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "ion-drive-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "ftl-core-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "carrier-bay-module",
|
||||
"amount": 2
|
||||
},
|
||||
{
|
||||
"itemId": "gun-turret-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "habitat-ring-module",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
"cycleTime": 60,
|
||||
"productsPerHour": 60,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 28
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "hauler",
|
||||
@@ -75,13 +296,63 @@
|
||||
"ftlSpeed": 0.55,
|
||||
"spoolTime": 3.3,
|
||||
"cargoCapacity": 180,
|
||||
"cargoKind": "bulk-liquid",
|
||||
"cargoItemId": "energy-cell",
|
||||
"cargoKind": "container",
|
||||
"color": "#b0ff8d",
|
||||
"hullColor": "#365f2a",
|
||||
"size": 8,
|
||||
"maxHealth": 180,
|
||||
"modules": ["command-bridge", "reactor-core", "capacitor-bank", "ion-drive", "ftl-core", "liquid-tank"]
|
||||
"modules": [
|
||||
"command-bridge",
|
||||
"reactor-core",
|
||||
"capacitor-bank",
|
||||
"ion-drive",
|
||||
"ftl-core",
|
||||
"container-bay"
|
||||
],
|
||||
"construction": {
|
||||
"recipeId": "hauler-construction",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": [
|
||||
"ship-factory",
|
||||
"dock-bay-small",
|
||||
"container-bay",
|
||||
"power-core"
|
||||
],
|
||||
"requirements": [
|
||||
{
|
||||
"itemId": "hull-sections",
|
||||
"amount": 34
|
||||
},
|
||||
{
|
||||
"itemId": "command-bridge-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "reactor-core-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "capacitor-bank-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "ion-drive-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "ftl-core-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "container-bay-module",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
"cycleTime": 26,
|
||||
"productsPerHour": 138.5,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 8
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "constructor",
|
||||
@@ -99,7 +370,63 @@
|
||||
"hullColor": "#2d5d47",
|
||||
"size": 9,
|
||||
"maxHealth": 220,
|
||||
"modules": ["command-bridge", "reactor-core", "capacitor-bank", "ion-drive", "ftl-core", "fabricator-array", "container-bay"]
|
||||
"modules": [
|
||||
"command-bridge",
|
||||
"reactor-core",
|
||||
"capacitor-bank",
|
||||
"ion-drive",
|
||||
"ftl-core",
|
||||
"fabricator-array",
|
||||
"container-bay"
|
||||
],
|
||||
"construction": {
|
||||
"recipeId": "constructor-construction",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": [
|
||||
"ship-factory",
|
||||
"dock-bay-small",
|
||||
"container-bay",
|
||||
"power-core"
|
||||
],
|
||||
"requirements": [
|
||||
{
|
||||
"itemId": "hull-sections",
|
||||
"amount": 42
|
||||
},
|
||||
{
|
||||
"itemId": "command-bridge-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "reactor-core-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "capacitor-bank-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "ion-drive-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "ftl-core-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "fabricator-array-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "container-bay-module",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
"cycleTime": 30,
|
||||
"productsPerHour": 120,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 8
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "miner",
|
||||
@@ -117,24 +444,62 @@
|
||||
"hullColor": "#68552b",
|
||||
"size": 6,
|
||||
"maxHealth": 150,
|
||||
"modules": ["command-bridge", "reactor-core", "capacitor-bank", "ion-drive", "ftl-core", "mining-turret", "bulk-bay"]
|
||||
},
|
||||
{
|
||||
"id": "gas-miner",
|
||||
"label": "Nimbus Gas Harvester",
|
||||
"role": "mining",
|
||||
"shipClass": "industrial",
|
||||
"speed": 72000,
|
||||
"warpSpeed": 0.145,
|
||||
"ftlSpeed": 0.49,
|
||||
"spoolTime": 3.2,
|
||||
"cargoCapacity": 120,
|
||||
"cargoKind": "bulk-gas",
|
||||
"cargoItemId": "gas",
|
||||
"color": "#8ce5ff",
|
||||
"hullColor": "#2a5668",
|
||||
"size": 6,
|
||||
"maxHealth": 150,
|
||||
"modules": ["command-bridge", "reactor-core", "capacitor-bank", "ion-drive", "ftl-core", "gas-extractor", "gas-tank"]
|
||||
"modules": [
|
||||
"command-bridge",
|
||||
"reactor-core",
|
||||
"capacitor-bank",
|
||||
"ion-drive",
|
||||
"ftl-core",
|
||||
"mining-turret",
|
||||
"bulk-bay"
|
||||
],
|
||||
"construction": {
|
||||
"recipeId": "miner-construction",
|
||||
"facilityCategory": "station",
|
||||
"requiredModules": [
|
||||
"ship-factory",
|
||||
"dock-bay-small",
|
||||
"container-bay",
|
||||
"power-core"
|
||||
],
|
||||
"requirements": [
|
||||
{
|
||||
"itemId": "hull-sections",
|
||||
"amount": 34
|
||||
},
|
||||
{
|
||||
"itemId": "command-bridge-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "reactor-core-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "capacitor-bank-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "ion-drive-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "ftl-core-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "mining-turret-module",
|
||||
"amount": 1
|
||||
},
|
||||
{
|
||||
"itemId": "bulk-bay-module",
|
||||
"amount": 1
|
||||
}
|
||||
],
|
||||
"cycleTime": 28,
|
||||
"productsPerHour": 128.6,
|
||||
"maxEfficiency": 1,
|
||||
"priority": 8
|
||||
}
|
||||
}
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user