From 0bb72bee356b5e3d46fcf9e837550073fff7bc99 Mon Sep 17 00:00:00 2001 From: Jonathan Bourdon Date: Sun, 29 Mar 2026 13:22:48 -0400 Subject: [PATCH] Refactor world bootstrap and allow empty startup worlds --- AGENTS.md | 29 + apps/backend/Definitions/WorldDefinitions.cs | 218 +- .../Simulation/PlayerFactionService.cs | 9 +- apps/backend/Program.cs | 43 +- .../backend/Ships/Simulation/ShipAiService.cs | 33 +- .../Ships/Simulation/ShipBootstrapPolicy.cs | 16 + .../Simulation/Core/SimulationEngine.cs | 12 +- .../Simulation/StationLifecycleService.cs | 3 +- .../backend/Universe/Api/GetBalanceHandler.cs | 4 +- .../Universe/Api/UpdateBalanceHandler.cs | 4 +- .../Universe/Bootstrap/IStaticDataProvider.cs | 14 + .../Universe/Bootstrap/StaticDataCatalog.cs | 9 - .../Universe/Bootstrap/StaticDataOptions.cs | 2 +- ...ticDataLoader.cs => StaticDataProvider.cs} | 104 +- .../Bootstrap/SystemTemplateLoader.cs | 20 - .../Universe/Bootstrap/WorldBootstrapper.cs | 48 - .../Universe/Scenario/LoaderSupport.cs | 3 +- .../Scenario/ScenarioContentBuilder.cs | 289 + .../Universe/Scenario/ScenarioLoader.cs | 8 +- .../Scenario/ScenarioValidationService.cs | 111 + .../Universe/Scenario/ScenarioWorldContent.cs | 5 + .../Universe/Scenario/SpatialBuilder.cs | 8 +- .../Scenario/StarterStationLayoutResolver.cs | 145 + .../Scenario/SystemGenerationService.cs | 161 +- .../Scenario/SystemSelectionPolicy.cs | 23 - .../Universe/Scenario/WorldBuildTopology.cs | 7 + .../backend/Universe/Scenario/WorldBuilder.cs | 391 +- .../Scenario/WorldRuntimeAssembler.cs | 62 + .../Universe/Scenario/WorldSeedingService.cs | 228 +- .../Universe/Scenario/WorldTopologyBuilder.cs | 29 + .../Universe/Simulation/BalanceService.cs | 165 + .../Universe/Simulation/IBalanceService.cs | 16 + .../Universe/Simulation/ITimeService.cs | 13 + .../Universe/Simulation/TimeService.cs | 23 + .../Simulation/WorldGenerationOptions.cs | 2 + .../Universe/Simulation/WorldService.cs | 182 +- apps/backend/appsettings.Development.json | 2 +- apps/backend/appsettings.json | 5 +- shared/data/cargo-types.json | 18 + shared/data/effects.json | 4 + shared/data/equipment-classes.json | 14 + shared/data/equipment-types.json | 11 + shared/data/equipment.json | 24596 ++++++++++ shared/data/factions.json | 2136 + shared/data/items.json | 1034 +- shared/data/module-types.json | 26 + shared/data/modules.json | 14050 +++--- shared/data/production-methods.json | 7 + shared/data/races.json | 55 + shared/data/scenarios/empty.json | 12 + .../{scenario.json => scenarios/testbed.json} | 374 +- shared/data/ship-purposes.json | 9 + shared/data/ship-types.json | 24 + shared/data/ships-data.ts | 0 shared/data/ships.json | 39839 +++++++++++++++- shared/data/sizes.json | 7 + shared/data/transport-types.json | 5 + shared/data/turret-types.json | 5 + shared/data/ware-groups.json | 76 + shared/data/workers.json | 94 + shared/export/cargo-types-data.json | 18 + shared/export/effects-data.json | 4 + shared/export/equipment-class-data.json | 14 + shared/export/equipment-data.json | 24596 ++++++++++ shared/export/equipment-type-data.json | 11 + shared/export/factions-data.json | 2136 + shared/export/module-types-data.json | 26 + shared/export/modules-data.json | 28373 +++++++++++ shared/export/production-method-data.json | 7 + shared/export/race-data.json | 55 + shared/export/ship-purpose-data.json | 9 + shared/export/ship-type-data.json | 24 + shared/export/ships-data.json | 39382 +++++++++++++++ shared/export/size-data.json | 7 + shared/export/transport-data.json | 5 + shared/export/turret-type-data.json | 5 + shared/export/ware-groups-data.json | 76 + shared/export/wares-data.json | 2697 ++ shared/export/workers-data.json | 94 + 79 files changed, 173146 insertions(+), 9235 deletions(-) create mode 100644 AGENTS.md create mode 100644 apps/backend/Ships/Simulation/ShipBootstrapPolicy.cs create mode 100644 apps/backend/Universe/Bootstrap/IStaticDataProvider.cs delete mode 100644 apps/backend/Universe/Bootstrap/StaticDataCatalog.cs rename apps/backend/Universe/Bootstrap/{StaticDataLoader.cs => StaticDataProvider.cs} (68%) delete mode 100644 apps/backend/Universe/Bootstrap/SystemTemplateLoader.cs delete mode 100644 apps/backend/Universe/Bootstrap/WorldBootstrapper.cs create mode 100644 apps/backend/Universe/Scenario/ScenarioContentBuilder.cs create mode 100644 apps/backend/Universe/Scenario/ScenarioValidationService.cs create mode 100644 apps/backend/Universe/Scenario/ScenarioWorldContent.cs create mode 100644 apps/backend/Universe/Scenario/StarterStationLayoutResolver.cs delete mode 100644 apps/backend/Universe/Scenario/SystemSelectionPolicy.cs create mode 100644 apps/backend/Universe/Scenario/WorldBuildTopology.cs create mode 100644 apps/backend/Universe/Scenario/WorldRuntimeAssembler.cs create mode 100644 apps/backend/Universe/Scenario/WorldTopologyBuilder.cs create mode 100644 apps/backend/Universe/Simulation/BalanceService.cs create mode 100644 apps/backend/Universe/Simulation/IBalanceService.cs create mode 100644 apps/backend/Universe/Simulation/ITimeService.cs create mode 100644 apps/backend/Universe/Simulation/TimeService.cs create mode 100644 shared/data/cargo-types.json create mode 100644 shared/data/effects.json create mode 100644 shared/data/equipment-classes.json create mode 100644 shared/data/equipment-types.json create mode 100644 shared/data/equipment.json create mode 100644 shared/data/factions.json create mode 100644 shared/data/module-types.json create mode 100644 shared/data/production-methods.json create mode 100644 shared/data/races.json create mode 100644 shared/data/scenarios/empty.json rename shared/data/{scenario.json => scenarios/testbed.json} (54%) create mode 100644 shared/data/ship-purposes.json create mode 100644 shared/data/ship-types.json create mode 100644 shared/data/ships-data.ts create mode 100644 shared/data/sizes.json create mode 100644 shared/data/transport-types.json create mode 100644 shared/data/turret-types.json create mode 100644 shared/data/ware-groups.json create mode 100644 shared/data/workers.json create mode 100644 shared/export/cargo-types-data.json create mode 100644 shared/export/effects-data.json create mode 100644 shared/export/equipment-class-data.json create mode 100644 shared/export/equipment-data.json create mode 100644 shared/export/equipment-type-data.json create mode 100644 shared/export/factions-data.json create mode 100644 shared/export/module-types-data.json create mode 100644 shared/export/modules-data.json create mode 100644 shared/export/production-method-data.json create mode 100644 shared/export/race-data.json create mode 100644 shared/export/ship-purpose-data.json create mode 100644 shared/export/ship-type-data.json create mode 100644 shared/export/ships-data.json create mode 100644 shared/export/size-data.json create mode 100644 shared/export/transport-data.json create mode 100644 shared/export/turret-type-data.json create mode 100644 shared/export/ware-groups-data.json create mode 100644 shared/export/wares-data.json create mode 100644 shared/export/workers-data.json diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..1d00088 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,29 @@ +# Pair Programming Mode + +When working in this repository, act as a pair programming partner by default. + +## Collaboration Rules + +- Do not broaden scope on your own. +- Before coding, restate the request in your own words. +- Ask clarifying questions when scope, ownership, or design intent is ambiguous. +- Push back on weak assumptions, risky changes, or hidden refactors. +- Prefer discussion first, implementation second. +- Do not refactor adjacent code unless explicitly approved. +- Separate proposed work into: + - required + - optional + - recommended +- After scope is agreed, implement only that scope. + +## Ambiguity Rules + +- If the request is underspecified, stop and ask instead of assuming. +- If the requested change may interfere with an in-progress refactor, call that out before editing. +- If a request sounds small, keep the first response small and scoped unless asked to expand. + +## Working Style + +- Treat the user as an active collaborator, not a ticket queue. +- Surface tradeoffs before making structural changes. +- Prefer explicit approval before changing architecture, bootstrapping, dependency wiring, or data flow. diff --git a/apps/backend/Definitions/WorldDefinitions.cs b/apps/backend/Definitions/WorldDefinitions.cs index 4bb66e1..28010bf 100644 --- a/apps/backend/Definitions/WorldDefinitions.cs +++ b/apps/backend/Definitions/WorldDefinitions.cs @@ -75,6 +75,39 @@ public sealed class SolarSystemDefinition public required List Planets { get; set; } } +public sealed class RaceDefinition +{ + public required string Id { get; set; } + public required string Name { get; set; } + public string Description { get; set; } = string.Empty; + public string Icon { get; set; } = string.Empty; + [JsonIgnore] + public string Label => Name; +} + +public sealed class FactionDefinition +{ + public required string Id { get; set; } + public int Version { get; set; } + public required string Name { get; set; } + public string Description { get; set; } = string.Empty; + public string Icon { get; set; } = string.Empty; + public string? Race { get; set; } + public List Licenses { get; set; } = []; + [JsonIgnore] + public string Label => Name; + [JsonIgnore] + public string? RaceId => Race; +} + +public sealed class FactionLicenseDefinition +{ + public required string Type { get; set; } + public string Name { get; set; } = string.Empty; + public string Icon { get; set; } = string.Empty; + public float Price { get; set; } +} + public sealed class AsteroidFieldDefinition { public int DecorationCount { get; set; } @@ -338,43 +371,174 @@ public sealed class PlanetDefinition public sealed class ShipDefinition { public required string Id { get; set; } - public required string Label { get; set; } - public required string Kind { get; set; } - public required string Class { get; set; } - public float Speed { get; set; } - public float WarpSpeed { get; set; } - public float FtlSpeed { get; set; } - public float SpoolTime { get; set; } - public float CargoCapacity { get; set; } + public int Version { get; set; } + public required string Name { get; set; } + public string Description { get; set; } = string.Empty; + public string Size { get; set; } = string.Empty; + public float ExplosionDamage { get; set; } + public float Hull { get; set; } + public Dictionary Storage { get; set; } = new(StringComparer.Ordinal); + public int People { get; set; } + public string Purpose { get; set; } = string.Empty; + public string Thruster { get; set; } = string.Empty; + public string Type { get; set; } = string.Empty; + public float Mass { get; set; } + public ShipInertiaDefinition? Inertia { get; set; } + public ShipDragDefinition? Drag { get; set; } + public List Engines { get; set; } = []; + public List Shields { get; set; } = []; + public List Weapons { get; set; } = []; + public List Turrets { get; set; } = []; + public List Cargo { get; set; } = []; + public List Docks { get; set; } = []; + public List Owners { get; set; } = []; + public ItemPriceDefinition? Price { get; set; } + public List Production { get; set; } = []; [JsonIgnore] - public StorageKind? CargoKind { get; set; } - [JsonPropertyName("cargoKind")] - public string? SerializedCargoKind + public string Label => Name; + [JsonIgnore] + public string Kind => InferKind(Purpose); + [JsonIgnore] + public string Class => Type; + [JsonIgnore] + public float Speed => InferLocalSpeed(Size); + [JsonIgnore] + public float WarpSpeed => InferWarpSpeed(Size); + [JsonIgnore] + public float FtlSpeed => InferFtlSpeed(Size); + [JsonIgnore] + public float SpoolTime => InferSpoolTime(Size); + [JsonIgnore] + public float CargoCapacity => Cargo.Sum(entry => entry.Max); + [JsonIgnore] + public StorageKind? CargoKind => Cargo + .SelectMany(entry => entry.Types) + .Select(type => type.ToNullableStorageKind()) + .FirstOrDefault(kind => kind is not null); + [JsonIgnore] + public float MaxHealth => Hull; + [JsonIgnore] + public IReadOnlyList Capabilities => InferCapabilities(Purpose, Type, Cargo, Turrets); + + private static string InferKind(string purpose) => + purpose switch + { + "build" => "construction", + "trade" => "transport", + "mine" => "mining", + "fight" => "military", + "auxiliary" => "military", + _ => purpose, + }; + + private static List InferCapabilities( + string purpose, + string type, + IReadOnlyCollection cargo, + IReadOnlyCollection turrets) { - get => CargoKind?.ToDataValue(); - set => CargoKind = value.ToNullableStorageKind(); + var capabilities = new List { "warp", "ftl" }; + + if (string.Equals(purpose, "mine", StringComparison.Ordinal) + || type.Contains("miner", StringComparison.Ordinal) + || turrets.Any(turret => turret.Types.Contains("mining", StringComparer.Ordinal))) + { + capabilities.Add("mining"); + } + + if (cargo.Any(entry => entry.Types.Contains("container", StringComparer.Ordinal) + || entry.Types.Contains("solid", StringComparer.Ordinal) + || entry.Types.Contains("liquid", StringComparer.Ordinal))) + { + capabilities.Add("cargo"); + } + + return capabilities; } - public required string Color { get; set; } - public required string HullColor { get; set; } - public float Size { get; set; } - public float MaxHealth { get; set; } - public List Capabilities { get; set; } = []; - public ConstructionDefinition? Construction { get; set; } + + private static float InferWarpSpeed(string size) => + size switch + { + "extrasmall" => 4.8f, + "small" => 4.2f, + "medium" => 3.4f, + "large" => 2.4f, + "extralarge" => 1.8f, + _ => 3f, + }; + + private static float InferLocalSpeed(string size) => + size switch + { + "extrasmall" => 420f, + "small" => 320f, + "medium" => 230f, + "large" => 150f, + "extralarge" => 110f, + _ => 200f, + }; + + private static float InferFtlSpeed(string size) => + size switch + { + "extrasmall" => 1f, + "small" => 0.85f, + "medium" => 0.7f, + "large" => 0.55f, + "extralarge" => 0.45f, + _ => 0.6f, + }; + + private static float InferSpoolTime(string size) => + size switch + { + "extrasmall" => 0.8f, + "small" => 1f, + "medium" => 1.4f, + "large" => 2f, + "extralarge" => 2.6f, + _ => 1.5f, + }; } -public sealed class GameStartOptionsDefinition +public sealed class ShipInertiaDefinition { - public int Seed { get; set; } = 1; - public WorldGenerationOptions WorldGeneration { get; set; } = new(); + public float Pitch { get; set; } + public float Yaw { get; set; } + public float Roll { get; set; } +} + +public sealed class ShipDragDefinition +{ + public float Forward { get; set; } + public float Reverse { get; set; } + public float Horizontal { get; set; } + public float Vertical { get; set; } + public float Pitch { get; set; } + public float Yaw { get; set; } + public float Roll { get; set; } +} + +public sealed class ShipMountDefinition +{ + public string? Group { get; set; } + public required string Size { get; set; } + public bool Hittable { get; set; } + public List Types { get; set; } = []; +} + +public sealed class ShipCargoDefinition +{ + public float Max { get; set; } + public List Types { get; set; } = []; } public sealed class ScenarioDefinition { - public GameStartOptionsDefinition GameStartOptions { get; set; } = new(); + public required WorldGenerationOptions WorldGeneration { get; set; } public required List InitialStations { get; set; } public required List ShipFormations { get; set; } public required List PatrolRoutes { get; set; } - public required MiningDefaultsDefinition MiningDefaults { get; set; } } public sealed class InitialStationDefinition @@ -405,9 +569,3 @@ public sealed class PatrolRouteDefinition public required string SystemId { get; set; } public required List Points { get; set; } } - -public sealed class MiningDefaultsDefinition -{ - public required string NodeSystemId { get; set; } - public required string RefinerySystemId { get; set; } -} diff --git a/apps/backend/PlayerFaction/Simulation/PlayerFactionService.cs b/apps/backend/PlayerFaction/Simulation/PlayerFactionService.cs index a6533fd..56b54ab 100644 --- a/apps/backend/PlayerFaction/Simulation/PlayerFactionService.cs +++ b/apps/backend/PlayerFaction/Simulation/PlayerFactionService.cs @@ -16,8 +16,8 @@ internal sealed class PlayerFactionService return world.PlayerFaction; } - var sovereignFaction = world.Factions.FirstOrDefault(faction => string.Equals(faction.Id, LoaderSupport.DefaultFactionId, StringComparison.Ordinal)) - ?? world.Factions.OrderBy(faction => faction.Id, StringComparer.Ordinal).First(); + var sovereignFaction = world.Factions.OrderBy(faction => faction.Id, StringComparer.Ordinal).FirstOrDefault() + ?? throw new InvalidOperationException("Cannot create a player faction domain without any factions in the world."); world.PlayerFaction = new PlayerFactionRuntime { @@ -35,6 +35,11 @@ internal sealed class PlayerFactionService internal void Update(SimulationWorld world, float _deltaSeconds, ICollection events) { + if (world.PlayerFaction is null && world.Factions.Count == 0) + { + return; + } + var player = EnsureDomain(world); EnsureBaseStructures(world, player); SyncRegistry(world, player); diff --git a/apps/backend/Program.cs b/apps/backend/Program.cs index 4978f0c..1d7e2ea 100644 --- a/apps/backend/Program.cs +++ b/apps/backend/Program.cs @@ -1,10 +1,11 @@ using FastEndpoints; using FastEndpoints.Swagger; -using Microsoft.Extensions.Options; +using SpaceGame.Api.Universe.Scenario; using SpaceGame.Api.Universe.Bootstrap; using SpaceGame.Api.Universe.Simulation; var builder = WebApplication.CreateBuilder(args); +const string StartupScenarioPath = "scenarios/empty.json"; builder.Services.AddCors((options) => { @@ -17,21 +18,48 @@ builder.Services.AddCors((options) => }); }); builder.Services - .AddOptions() - .Bind(builder.Configuration.GetSection("StaticData")) - .Validate(options => !string.IsNullOrWhiteSpace(options.DataRoot), "StaticData:DataRoot must be configured.") - .ValidateOnStart(); + .AddOptions() + .Bind(builder.Configuration.GetSection("StaticData")) + .Validate(options => !string.IsNullOrWhiteSpace(options.DataRoot), "StaticData:DataRoot must be configured.") + .PostConfigure(options => + { + if (Path.IsPathRooted(options.DataRoot)) + { + options.DataRoot = Path.GetFullPath(options.DataRoot); + return; + } + + var candidatePaths = new[] + { + Path.GetFullPath(options.DataRoot), + Path.GetFullPath(Path.Combine(builder.Environment.ContentRootPath, options.DataRoot)), + Path.GetFullPath(Path.Combine(builder.Environment.ContentRootPath, "..", "..", options.DataRoot)), + }; + + var resolvedPath = candidatePaths.FirstOrDefault(Directory.Exists); + if (resolvedPath is null) + { + throw new InvalidOperationException($"StaticData:DataRoot '{options.DataRoot}' could not be resolved to an existing directory."); + } + + options.DataRoot = resolvedPath; + }) + .ValidateOnStart(); builder.Services.Configure(builder.Configuration.GetSection("Balance")); builder.Services.Configure(builder.Configuration.GetSection("WorldGeneration")); builder.Services.Configure(builder.Configuration.GetSection("OrbitalSimulation")); +builder.Services.AddSingleton(); builder.Services.AddTransient(); builder.Services.AddTransient(); builder.Services.AddTransient(); +builder.Services.AddTransient(); +builder.Services.AddTransient(); builder.Services.AddTransient(); -builder.Services.AddTransient(); +builder.Services.AddTransient(); +builder.Services.AddTransient(); builder.Services.AddTransient(); -builder.Services.AddSingleton(); +builder.Services.AddSingleton(); builder.Services.AddSingleton(); builder.Services.AddSingleton(); builder.Services.AddHostedService(); @@ -40,6 +68,7 @@ builder.Services.AddFastEndpoints(); builder.Services.SwaggerDocument(); var app = builder.Build(); +app.Services.GetRequiredService().LoadFromScenario(StartupScenarioPath); app.UseCors(); app.UseFastEndpoints(); diff --git a/apps/backend/Ships/Simulation/ShipAiService.cs b/apps/backend/Ships/Simulation/ShipAiService.cs index 97e6864..1b6ab52 100644 --- a/apps/backend/Ships/Simulation/ShipAiService.cs +++ b/apps/backend/Ships/Simulation/ShipAiService.cs @@ -1,4 +1,3 @@ -using Microsoft.Extensions.Options; using static SpaceGame.Api.Shared.Runtime.SimulationRuntimeSupport; using static SpaceGame.Api.Stations.Simulation.InfrastructureSimulationService; using static SpaceGame.Api.Stations.Simulation.StationSimulationService; @@ -6,7 +5,7 @@ using static SpaceGame.Api.Stations.Simulation.StationSimulationService; namespace SpaceGame.Api.Ships.Simulation; public sealed class ShipAiService( - IOptions balance) + IBalanceService balance) { private const float WarpEngageDistanceKilometers = 250_000f; private const float FrigateDps = 7f; @@ -249,7 +248,7 @@ public sealed class ShipAiService( plan.Steps.Add(CreateStep("step-flee-travel", "travel", "Travel to safe station", [ - CreateSubTask("sub-flee-travel", ShipTaskKinds.Travel, $"Travel to {safeStation.Label}", safeStation.SystemId, safeStation.Position, safeStation.Id, MathF.Max(world.Balance.ArrivalThreshold, safeStation.Radius + 12f), 0f) + CreateSubTask("sub-flee-travel", ShipTaskKinds.Travel, $"Travel to {safeStation.Label}", safeStation.SystemId, safeStation.Position, safeStation.Id, MathF.Max(balance.ArrivalThreshold, safeStation.Radius + 12f), 0f) ])); plan.Steps.Add(CreateStep("step-flee-dock", "dock", "Dock at safe station", [ @@ -353,7 +352,7 @@ public sealed class ShipAiService( [ CreateStep("step-dock-travel", "travel", $"Travel to {station.Label}", [ - CreateSubTask("sub-dock-travel", ShipTaskKinds.Travel, $"Travel to {station.Label}", station.SystemId, station.Position, station.Id, MathF.Max(world.Balance.ArrivalThreshold, station.Radius + 12f), 0f) + CreateSubTask("sub-dock-travel", ShipTaskKinds.Travel, $"Travel to {station.Label}", station.SystemId, station.Position, station.Id, MathF.Max(balance.ArrivalThreshold, station.Radius + 12f), 0f) ]), CreateStep("step-dock", "dock", $"Dock at {station.Label}", [ @@ -1220,13 +1219,13 @@ public sealed class ShipAiService( } ship.State = ShipState.Mining; - if (!AdvanceTimedSubTask(subTask, deltaSeconds, world.Balance.MiningCycleSeconds)) + if (!AdvanceTimedSubTask(subTask, deltaSeconds, balance.MiningCycleSeconds)) { return SubTaskOutcome.Active; } var remainingCapacity = MathF.Max(0f, ship.Definition.CargoCapacity - cargoAmount); - var mined = MathF.Min(world.Balance.MiningRate * GetSkillFactor(ship.Skills.Mining), remainingCapacity); + var mined = MathF.Min(balance.MiningRate * GetSkillFactor(ship.Skills.Mining), remainingCapacity); mined = MathF.Min(mined, node.OreRemaining); if (mined <= 0.01f) { @@ -1282,7 +1281,7 @@ public sealed class ShipAiService( } ship.State = ShipState.Docking; - if (!AdvanceTimedSubTask(subTask, deltaSeconds, world.Balance.DockingDuration)) + if (!AdvanceTimedSubTask(subTask, deltaSeconds, balance.DockingDuration)) { return SubTaskOutcome.Active; } @@ -1311,16 +1310,16 @@ public sealed class ShipAiService( return SubTaskOutcome.Completed; } - var undockTarget = GetUndockTargetPosition(station, ship.AssignedDockingPadIndex, world.Balance.UndockDistance); + var undockTarget = GetUndockTargetPosition(station, ship.AssignedDockingPadIndex, balance.UndockDistance); ship.TargetPosition = undockTarget; ship.State = ShipState.Undocking; - if (!AdvanceTimedSubTask(subTask, deltaSeconds, world.Balance.UndockingDuration)) + if (!AdvanceTimedSubTask(subTask, deltaSeconds, balance.UndockingDuration)) { ship.Position = GetShipDockedPosition(ship, station); return SubTaskOutcome.Active; } - ship.Position = ship.Position.MoveToward(undockTarget, world.Balance.UndockDistance); + ship.Position = ship.Position.MoveToward(undockTarget, balance.UndockDistance); if (ship.Position.DistanceTo(undockTarget) > MathF.Max(subTask.Threshold, 4f)) { return SubTaskOutcome.Active; @@ -1359,7 +1358,7 @@ public sealed class ShipAiService( var desiredAmount = subTask.Amount > 0f ? subTask.Amount : ship.Definition.CargoCapacity; var availableCapacity = MathF.Max(0f, ship.Definition.CargoCapacity - GetShipCargoAmount(ship)); - var transferRate = world.Balance.TransferRate * GetSkillFactor(ship.Skills.Trade); + var transferRate = balance.TransferRate * GetSkillFactor(ship.Skills.Trade); var moved = MathF.Min(transferRate * deltaSeconds, MathF.Min(availableCapacity, GetInventoryAmount(station.Inventory, itemId))); if (moved > 0.01f) { @@ -1392,7 +1391,7 @@ public sealed class ShipAiService( ship.TargetPosition = GetShipDockedPosition(ship, station); ship.Position = ship.TargetPosition; ship.State = ShipState.Transferring; - var transferRate = world.Balance.TransferRate * GetSkillFactor(Math.Max(ship.Skills.Trade, ship.Skills.Mining)); + var transferRate = balance.TransferRate * GetSkillFactor(Math.Max(ship.Skills.Trade, ship.Skills.Mining)); if (subTask.ItemId is not null) { @@ -1451,7 +1450,7 @@ public sealed class ShipAiService( return SubTaskOutcome.Failed; } - var transferRate = world.Balance.TransferRate * GetSkillFactor(Math.Max(ship.Skills.Trade, ship.Skills.Navigation)); + var transferRate = balance.TransferRate * GetSkillFactor(Math.Max(ship.Skills.Trade, ship.Skills.Navigation)); var desiredAmount = subTask.Amount > 0f ? subTask.Amount : GetInventoryAmount(ship.Inventory, subTask.ItemId); var moved = MathF.Min(transferRate * deltaSeconds, MathF.Min(targetCapacity, GetInventoryAmount(ship.Inventory, subTask.ItemId))); if (moved > 0.01f) @@ -1491,12 +1490,12 @@ public sealed class ShipAiService( return SubTaskOutcome.Completed; } - if (!AdvanceTimedSubTask(subTask, deltaSeconds, MathF.Max(0.4f, world.Balance.MiningCycleSeconds * 0.8f))) + if (!AdvanceTimedSubTask(subTask, deltaSeconds, MathF.Max(0.4f, balance.MiningCycleSeconds * 0.8f))) { return SubTaskOutcome.Active; } - var salvageRate = world.Balance.TransferRate * GetSkillFactor(Math.Max(ship.Skills.Mining, ship.Skills.Trade)); + var salvageRate = balance.TransferRate * GetSkillFactor(Math.Max(ship.Skills.Mining, ship.Skills.Trade)); var recovered = MathF.Min(salvageRate, MathF.Min(remainingCapacity, wreck.RemainingAmount)); if (recovered > 0.01f) { @@ -1537,7 +1536,7 @@ public sealed class ShipAiService( ship.TargetPosition = supportPosition; ship.Position = supportPosition; ship.State = ShipState.DeliveringConstruction; - var transferRate = world.Balance.TransferRate * GetSkillFactor(ship.Skills.Construction); + var transferRate = balance.TransferRate * GetSkillFactor(ship.Skills.Construction); foreach (var required in site.RequiredItems.OrderBy(entry => entry.Key, StringComparer.Ordinal)) { var delivered = GetInventoryAmount(site.DeliveredItems, required.Key); @@ -1654,7 +1653,7 @@ public sealed class ShipAiService( ship.SpatialState.DestinationNodeId = targetCelestial?.Id; subTask.Progress = Math.Clamp(1f - (distance / MathF.Max(distance + GetLocalTravelSpeed(ship), 1f)), 0f, 1f); - if (distance <= MathF.Max(subTask.Threshold, world.Balance.ArrivalThreshold)) + if (distance <= MathF.Max(subTask.Threshold, balance.ArrivalThreshold)) { ship.Position = targetPosition; ship.TargetPosition = targetPosition; diff --git a/apps/backend/Ships/Simulation/ShipBootstrapPolicy.cs b/apps/backend/Ships/Simulation/ShipBootstrapPolicy.cs new file mode 100644 index 0000000..523fb84 --- /dev/null +++ b/apps/backend/Ships/Simulation/ShipBootstrapPolicy.cs @@ -0,0 +1,16 @@ +namespace SpaceGame.Api.Ships.Simulation; + +internal static class ShipBootstrapPolicy +{ + internal static ShipSkillProfileRuntime CreateSkills(ShipDefinition definition) + { + return definition.Kind switch + { + "transport" => new ShipSkillProfileRuntime { Navigation = 3, Trade = 4, Mining = 1, Combat = 1, Construction = 1 }, + "construction" => new ShipSkillProfileRuntime { Navigation = 3, Trade = 1, Mining = 1, Combat = 1, Construction = 4 }, + "military" => new ShipSkillProfileRuntime { Navigation = 4, Trade = 1, Mining = 1, Combat = 4, Construction = 1 }, + _ when SpaceGame.Api.Universe.Scenario.LoaderSupport.HasCapabilities(definition, "mining") => new ShipSkillProfileRuntime { Navigation = 3, Trade = 1, Mining = 4, Combat = 1, Construction = 1 }, + _ => new ShipSkillProfileRuntime { Navigation = 3, Trade = 2, Mining = 1, Combat = 1, Construction = 1 }, + }; + } +} diff --git a/apps/backend/Simulation/Core/SimulationEngine.cs b/apps/backend/Simulation/Core/SimulationEngine.cs index db24855..3692ba6 100644 --- a/apps/backend/Simulation/Core/SimulationEngine.cs +++ b/apps/backend/Simulation/Core/SimulationEngine.cs @@ -1,7 +1,8 @@ namespace SpaceGame.Api.Simulation.Core; -public sealed class SimulationEngine +internal sealed class SimulationEngine { + private readonly IBalanceService _balance; private readonly OrbitalSimulationOptions _orbitalSimulation; private readonly OrbitalStateUpdater _orbitalStateUpdater; private readonly InfrastructureSimulationService _infrastructureSimulation; @@ -13,9 +14,10 @@ public sealed class SimulationEngine private readonly ShipAiService _shipAi; private readonly SimulationProjectionService _projection; - public SimulationEngine(OrbitalSimulationOptions? orbitalSimulation = null) + internal SimulationEngine(OrbitalSimulationOptions orbitalSimulation, IBalanceService balance) { - _orbitalSimulation = orbitalSimulation ?? new OrbitalSimulationOptions(); + _balance = balance; + _orbitalSimulation = orbitalSimulation; _orbitalStateUpdater = new OrbitalStateUpdater(_orbitalSimulation); _infrastructureSimulation = new InfrastructureSimulationService(); _geopolitics = new GeopoliticalSimulationService(); @@ -23,7 +25,7 @@ public sealed class SimulationEngine _playerFaction = new PlayerFactionService(); _stationSimulation = new StationSimulationService(); _stationLifecycle = new StationLifecycleService(_stationSimulation); - _shipAi = new ShipAiService(); + _shipAi = new ShipAiService(balance); _projection = new SimulationProjectionService(_orbitalSimulation); } @@ -31,7 +33,7 @@ public sealed class SimulationEngine { var nowUtc = DateTimeOffset.UtcNow; var events = new List(); - var simulationDeltaSeconds = deltaSeconds * MathF.Max(world.Balance.SimulationSpeedMultiplier, 0.01f); + var simulationDeltaSeconds = deltaSeconds * MathF.Max(_balance.SimulationSpeedMultiplier, 0.01f); world.GeneratedAtUtc = nowUtc; world.OrbitalTimeSeconds += simulationDeltaSeconds * _orbitalSimulation.SimulatedSecondsPerRealSecond; diff --git a/apps/backend/Stations/Simulation/StationLifecycleService.cs b/apps/backend/Stations/Simulation/StationLifecycleService.cs index 5494ef8..b4ca6af 100644 --- a/apps/backend/Stations/Simulation/StationLifecycleService.cs +++ b/apps/backend/Stations/Simulation/StationLifecycleService.cs @@ -1,4 +1,5 @@ using SpaceGame.Api.Shared.Runtime; +using SpaceGame.Api.Ships.Simulation; using static SpaceGame.Api.Shared.Runtime.SimulationRuntimeSupport; namespace SpaceGame.Api.Stations.Simulation; @@ -79,7 +80,7 @@ internal sealed class StationLifecycleService TargetPosition = spawnPosition, SpatialState = CreateSpawnedShipSpatialState(station, spawnPosition), DefaultBehavior = CreateSpawnedShipBehavior(definition, station), - Skills = WorldSeedingService.CreateSkills(definition), + Skills = ShipBootstrapPolicy.CreateSkills(definition), Health = definition.MaxHealth, }; diff --git a/apps/backend/Universe/Api/GetBalanceHandler.cs b/apps/backend/Universe/Api/GetBalanceHandler.cs index d49d856..0f3d674 100644 --- a/apps/backend/Universe/Api/GetBalanceHandler.cs +++ b/apps/backend/Universe/Api/GetBalanceHandler.cs @@ -3,7 +3,7 @@ using SpaceGame.Api.Universe.Simulation; namespace SpaceGame.Api.Universe.Api; -public sealed class GetBalanceHandler(WorldService worldService) : EndpointWithoutRequest +public sealed class GetBalanceHandler(IBalanceService balanceService) : EndpointWithoutRequest { public override void Configure() { @@ -12,5 +12,5 @@ public sealed class GetBalanceHandler(WorldService worldService) : EndpointWitho } public override Task HandleAsync(CancellationToken cancellationToken) => - SendOkAsync(worldService.GetBalance(), cancellationToken); + SendOkAsync(balanceService.GetCurrent(), cancellationToken); } diff --git a/apps/backend/Universe/Api/UpdateBalanceHandler.cs b/apps/backend/Universe/Api/UpdateBalanceHandler.cs index 085aa2a..05bc4d6 100644 --- a/apps/backend/Universe/Api/UpdateBalanceHandler.cs +++ b/apps/backend/Universe/Api/UpdateBalanceHandler.cs @@ -3,7 +3,7 @@ using SpaceGame.Api.Universe.Simulation; namespace SpaceGame.Api.Universe.Api; -public sealed class UpdateBalanceHandler(WorldService worldService) : Endpoint +public sealed class UpdateBalanceHandler(IBalanceService balanceService) : Endpoint { public override void Configure() { @@ -13,7 +13,7 @@ public sealed class UpdateBalanceHandler(WorldService worldService) : Endpoint KnownSystems { get; } + IReadOnlyDictionary RaceDefinitions { get; } + IReadOnlyDictionary FactionDefinitions { get; } + IReadOnlyDictionary ModuleDefinitions { get; } + IReadOnlyDictionary ShipDefinitions { get; } + IReadOnlyDictionary ItemDefinitions { get; } + IReadOnlyDictionary Recipes { get; } + IReadOnlyDictionary ModuleRecipes { get; } + ProductionGraph ProductionGraph { get; } +} diff --git a/apps/backend/Universe/Bootstrap/StaticDataCatalog.cs b/apps/backend/Universe/Bootstrap/StaticDataCatalog.cs deleted file mode 100644 index 6e75555..0000000 --- a/apps/backend/Universe/Bootstrap/StaticDataCatalog.cs +++ /dev/null @@ -1,9 +0,0 @@ -namespace SpaceGame.Api.Universe.Bootstrap; - -public sealed record StaticDataCatalog( - IReadOnlyDictionary ModuleDefinitions, - IReadOnlyDictionary ShipDefinitions, - IReadOnlyDictionary ItemDefinitions, - IReadOnlyDictionary Recipes, - IReadOnlyDictionary ModuleRecipes, - ProductionGraph ProductionGraph); diff --git a/apps/backend/Universe/Bootstrap/StaticDataOptions.cs b/apps/backend/Universe/Bootstrap/StaticDataOptions.cs index 5dfe9ea..c0a764a 100644 --- a/apps/backend/Universe/Bootstrap/StaticDataOptions.cs +++ b/apps/backend/Universe/Bootstrap/StaticDataOptions.cs @@ -2,5 +2,5 @@ namespace SpaceGame.Api.Universe.Bootstrap; public sealed class StaticDataOptions { - public required string DataRoot { get; init; } + public required string DataRoot { get; set; } } diff --git a/apps/backend/Universe/Bootstrap/StaticDataLoader.cs b/apps/backend/Universe/Bootstrap/StaticDataProvider.cs similarity index 68% rename from apps/backend/Universe/Bootstrap/StaticDataLoader.cs rename to apps/backend/Universe/Bootstrap/StaticDataProvider.cs index 3e733fa..a1a2583 100644 --- a/apps/backend/Universe/Bootstrap/StaticDataLoader.cs +++ b/apps/backend/Universe/Bootstrap/StaticDataProvider.cs @@ -4,34 +4,59 @@ using SpaceGame.Api.Shared.Runtime; namespace SpaceGame.Api.Universe.Bootstrap; -internal sealed class StaticDataLoader(IOptions staticDataOptions) +public sealed class StaticDataProvider : IStaticDataProvider { + private readonly string _dataRoot; private readonly JsonSerializerOptions _jsonOptions = new() { PropertyNameCaseInsensitive = true, }; - internal StaticDataCatalog Load() + public StaticDataProvider(IOptions staticDataOptions) { + _dataRoot = staticDataOptions.Value.DataRoot; + + var knownSystems = Read>("systems.json"); + var races = Read>("races.json"); + var factions = Read>("factions.json"); var modules = NormalizeModules(Read>("modules.json")); var ships = Read>("ships.json"); var items = Read>("items.json"); var recipes = BuildRecipes(items, ships, modules); var moduleRecipes = BuildModuleRecipes(modules); - var productionGraph = ProductionGraphBuilder.Build(items, recipes, modules); - return new StaticDataCatalog( - modules.ToDictionary(definition => definition.Id, StringComparer.Ordinal), - ships.ToDictionary(definition => definition.Id, StringComparer.Ordinal), - items.ToDictionary(definition => definition.Id, StringComparer.Ordinal), - recipes.ToDictionary(definition => definition.Id, StringComparer.Ordinal), - moduleRecipes.ToDictionary(definition => definition.ModuleId, StringComparer.Ordinal), - productionGraph); + KnownSystems = knownSystems; + RaceDefinitions = races.ToDictionary(definition => definition.Id, StringComparer.Ordinal); + FactionDefinitions = factions.ToDictionary(definition => definition.Id, StringComparer.Ordinal); + ModuleDefinitions = modules.ToDictionary(definition => definition.Id, StringComparer.Ordinal); + ShipDefinitions = ships.ToDictionary(definition => definition.Id, StringComparer.Ordinal); + ItemDefinitions = items.ToDictionary(definition => definition.Id, StringComparer.Ordinal); + Recipes = recipes.ToDictionary(definition => definition.Id, StringComparer.Ordinal); + ModuleRecipes = moduleRecipes.ToDictionary(definition => definition.ModuleId, StringComparer.Ordinal); + ProductionGraph = ProductionGraphBuilder.Build(items, recipes, modules); } + public IReadOnlyList KnownSystems { get; } + + public IReadOnlyDictionary RaceDefinitions { get; } + + public IReadOnlyDictionary FactionDefinitions { get; } + + public IReadOnlyDictionary ModuleDefinitions { get; } + + public IReadOnlyDictionary ShipDefinitions { get; } + + public IReadOnlyDictionary ItemDefinitions { get; } + + public IReadOnlyDictionary Recipes { get; } + + public IReadOnlyDictionary ModuleRecipes { get; } + + public ProductionGraph ProductionGraph { get; } + private T Read(string fileName) { - var path = Path.Combine(staticDataOptions.Value.DataRoot, fileName); + var path = Path.Combine(_dataRoot, fileName); var json = File.ReadAllText(path); return JsonSerializer.Deserialize(json, _jsonOptions) ?? throw new InvalidOperationException($"Unable to read {fileName}."); @@ -133,28 +158,26 @@ internal sealed class StaticDataLoader(IOptions staticDataOpt foreach (var ship in ships) { - if (ship.Construction is null) + foreach (var production in ship.Production) { - continue; - } - - recipes.Add(new RecipeDefinition - { - Id = ship.Construction.RecipeId ?? $"{ship.Id}-construction", - Label = $"{ship.Label} Construction", - FacilityCategory = ship.Construction.FacilityCategory, - Duration = ship.Construction.CycleTime, - Priority = ship.Construction.Priority, - RequiredModules = ship.Construction.RequiredModules.ToList(), - Inputs = ship.Construction.Requirements - .Select(input => new RecipeInputDefinition + recipes.Add(new RecipeDefinition { - ItemId = input.ItemId, - Amount = input.Amount, - }) - .ToList(), - ShipOutputId = ship.Id, - }); + Id = $"{ship.Id}-{production.Method}-construction", + Label = $"{ship.Label} Construction", + FacilityCategory = "shipyard", + Duration = production.Time, + Priority = InferShipRecipePriority(ship), + RequiredModules = InferShipBuildModules(ship), + Inputs = production.Wares + .Select(input => new RecipeInputDefinition + { + ItemId = input.ItemId, + Amount = input.Amount, + }) + .ToList(), + ShipOutputId = ship.Id, + }); + } } return recipes; @@ -191,6 +214,25 @@ internal sealed class StaticDataLoader(IOptions staticDataOpt _ => 60, }; + private static List InferShipBuildModules(ShipDefinition ship) => + ship.Size switch + { + "extrasmall" or "small" or "medium" => ["module_gen_build_dockarea_m_01"], + "large" => ["module_gen_build_l_01"], + "extralarge" => ["module_gen_build_xl_01"], + _ => ["module_gen_build_dockarea_m_01"], + }; + + private static int InferShipRecipePriority(ShipDefinition ship) => + ship.Kind switch + { + "military" => 170, + "construction" => 140, + "transport" => 120, + "mining" => 110, + _ => 100, + }; + private static List NormalizeModules(List modules) { for (var index = 0; index < modules.Count; index += 1) diff --git a/apps/backend/Universe/Bootstrap/SystemTemplateLoader.cs b/apps/backend/Universe/Bootstrap/SystemTemplateLoader.cs deleted file mode 100644 index 0cc97c5..0000000 --- a/apps/backend/Universe/Bootstrap/SystemTemplateLoader.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System.Text.Json; -using Microsoft.Extensions.Options; - -namespace SpaceGame.Api.Universe.Bootstrap; - -public sealed class SystemTemplateLoader(IOptions staticDataOptions) -{ - private readonly JsonSerializerOptions _jsonOptions = new() - { - PropertyNameCaseInsensitive = true, - }; - - internal List Load() - { - var path = Path.Combine(staticDataOptions.Value.DataRoot, "systems.json"); - var json = File.ReadAllText(path); - return JsonSerializer.Deserialize>(json, _jsonOptions) - ?? throw new InvalidOperationException("Unable to read systems.json."); - } -} diff --git a/apps/backend/Universe/Bootstrap/WorldBootstrapper.cs b/apps/backend/Universe/Bootstrap/WorldBootstrapper.cs deleted file mode 100644 index 1a5cf69..0000000 --- a/apps/backend/Universe/Bootstrap/WorldBootstrapper.cs +++ /dev/null @@ -1,48 +0,0 @@ -using Microsoft.Extensions.Options; -using SpaceGame.Api.Universe.Scenario; -using SpaceGame.Api.Universe.Simulation; - -namespace SpaceGame.Api.Universe.Bootstrap; - -public sealed class WorldBootstrapper -{ - private readonly BalanceOptions _defaultBalance; - private readonly WorldGenerationOptions _defaultWorldGeneration; - private readonly StaticDataCatalog _staticData; - private readonly ScenarioLoader _scenarioLoader; - private readonly SystemTemplateLoader _systemTemplateLoader; - private readonly WorldBuilder _worldBuilder; - - public WorldBootstrapper( - StaticDataCatalog staticData, - ScenarioLoader scenarioLoader, - SystemTemplateLoader systemTemplateLoader, - WorldBuilder worldBuilder, - IOptions defaultBalanceOptions, - IOptions defaultWorldGenerationOptions) - { - _defaultBalance = defaultBalanceOptions.Value; - _defaultWorldGeneration = defaultWorldGenerationOptions.Value; - _staticData = staticData; - _scenarioLoader = scenarioLoader; - _systemTemplateLoader = systemTemplateLoader; - _worldBuilder = worldBuilder; - } - - public SimulationWorld Bootstrap() - { - var scenario = _scenarioLoader.Load(); - var gameStartOptions = scenario?.GameStartOptions ?? new GameStartOptionsDefinition - { - Seed = 1, - WorldGeneration = _defaultWorldGeneration, - }; - - return _worldBuilder.Build( - _staticData, - _defaultBalance, - _systemTemplateLoader.Load(), - gameStartOptions, - scenario); - } -} diff --git a/apps/backend/Universe/Scenario/LoaderSupport.cs b/apps/backend/Universe/Scenario/LoaderSupport.cs index d36dbd9..305ba45 100644 --- a/apps/backend/Universe/Scenario/LoaderSupport.cs +++ b/apps/backend/Universe/Scenario/LoaderSupport.cs @@ -5,7 +5,6 @@ namespace SpaceGame.Api.Universe.Scenario; internal static class LoaderSupport { - internal const string DefaultFactionId = "sol-dominion"; internal const float MinimumFactionCredits = 0f; internal const float MinimumRefineryOre = 0f; internal const float MinimumRefineryStock = 0f; @@ -97,7 +96,7 @@ internal static class LoaderSupport { if (!moduleDefinitions.TryGetValue(moduleId, out var definition)) { - return; + throw new InvalidOperationException($"Module '{moduleId}' is not defined in static data."); } station.Modules.Add(StationModuleRuntime.Create($"{station.Id}-module-{station.Modules.Count + 1}", definition)); diff --git a/apps/backend/Universe/Scenario/ScenarioContentBuilder.cs b/apps/backend/Universe/Scenario/ScenarioContentBuilder.cs new file mode 100644 index 0000000..1ec754c --- /dev/null +++ b/apps/backend/Universe/Scenario/ScenarioContentBuilder.cs @@ -0,0 +1,289 @@ +using SpaceGame.Api.Universe.Bootstrap; +using SpaceGame.Api.Ships.Simulation; +using static SpaceGame.Api.Universe.Scenario.LoaderSupport; + +namespace SpaceGame.Api.Universe.Scenario; + +public sealed class ScenarioContentBuilder( + IStaticDataProvider staticData, + IBalanceService balance) +{ + public ScenarioWorldContent Build( + ScenarioDefinition scenario, + WorldBuildTopology topology) + { + var stations = CreateStations( + scenario, + topology.SystemsById, + topology.SpatialLayout.SystemGraphs, + topology.SpatialLayout.Celestials); + + var patrolRoutes = BuildPatrolRoutes(scenario, topology.SystemsById); + var ships = CreateShips( + scenario, + topology.SystemsById, + topology.SpatialLayout.Celestials, + patrolRoutes, + stations); + + return new ScenarioWorldContent(stations, ships); + } + + private List CreateStations( + ScenarioDefinition scenario, + IReadOnlyDictionary systemsById, + IReadOnlyDictionary systemGraphs, + IReadOnlyCollection celestials) + { + var stations = new List(); + var stationIdCounter = 0; + + foreach (var plan in scenario.InitialStations) + { + if (!systemsById.TryGetValue(plan.SystemId, out var system)) + { + throw new InvalidOperationException($"Scenario station '{plan.Label}' references unknown system '{plan.SystemId}'."); + } + + var placement = SpatialBuilder.ResolveStationPlacement(plan, system, systemGraphs[system.Definition.Id], celestials); + var station = new StationRuntime + { + Id = $"station-{++stationIdCounter}", + SystemId = system.Definition.Id, + Label = plan.Label, + Color = plan.Color, + Objective = StationSimulationService.NormalizeStationObjective(plan.Objective), + Position = placement.Position, + FactionId = GetRequiredFactionId(plan.FactionId, $"station '{plan.Label}'"), + CelestialId = placement.AnchorCelestial.Id, + Health = 600f, + MaxHealth = 600f, + }; + + stations.Add(station); + placement.AnchorCelestial.OccupyingStructureId = station.Id; + + var startingModules = BuildStartingModules(plan); + foreach (var moduleId in startingModules) + { + AddStationModule(station, staticData.ModuleDefinitions, moduleId); + } + } + + return stations; + } + + private IReadOnlyList BuildStartingModules(InitialStationDefinition plan) + { + var startingModules = new List(plan.StartingModules.Count > 0 + ? plan.StartingModules + : []); + + EnsureStartingModule(startingModules, StarterStationLayoutResolver.ResolveDockModuleId(plan.FactionId, staticData.ModuleDefinitions)); + + var powerModuleId = StarterStationLayoutResolver.ResolvePowerModuleId(plan.FactionId, staticData.ModuleDefinitions); + EnsureStartingModule(startingModules, powerModuleId); + + var defaultContainerStorageModuleId = StarterStationLayoutResolver.ResolveRequiredStorageModuleIds( + powerModuleId, + plan.FactionId, + staticData.ModuleDefinitions, + staticData.ItemDefinitions) + .FirstOrDefault(moduleId => + { + return staticData.ModuleDefinitions.TryGetValue(moduleId, out var definition) + && definition is StorageModuleDefinition storageDefinition + && storageDefinition.StorageKind == StorageKind.Container; + }); + + if (defaultContainerStorageModuleId is not null) + { + EnsureStartingModule(startingModules, defaultContainerStorageModuleId); + } + + var objectiveModuleId = StarterStationLayoutResolver.ResolveObjectiveModuleId(plan.Objective, plan.FactionId, staticData.ModuleDefinitions); + if (!string.IsNullOrWhiteSpace(objectiveModuleId)) + { + EnsureStartingModule(startingModules, objectiveModuleId); + + if (!string.Equals(objectiveModuleId, powerModuleId, StringComparison.Ordinal)) + { + EnsureStartingModule(startingModules, powerModuleId); + } + + foreach (var storageModuleId in StarterStationLayoutResolver.ResolveRequiredStorageModuleIds( + objectiveModuleId, + plan.FactionId, + staticData.ModuleDefinitions, + staticData.ItemDefinitions)) + { + EnsureStartingModule(startingModules, storageModuleId); + } + } + + foreach (var moduleId in startingModules) + { + if (!staticData.ModuleDefinitions.ContainsKey(moduleId)) + { + throw new InvalidOperationException($"Station '{plan.Label}' requires module '{moduleId}', but it is not defined in static data."); + } + } + + return startingModules; + } + + private static void EnsureStartingModule(List modules, string moduleId) + { + if (!modules.Contains(moduleId, StringComparer.Ordinal)) + { + modules.Add(moduleId); + } + } + + private static Dictionary> BuildPatrolRoutes( + ScenarioDefinition scenario, + IReadOnlyDictionary systemsById) + { + return scenario.PatrolRoutes + .GroupBy(route => route.SystemId, StringComparer.Ordinal) + .ToDictionary( + group => group.Key, + group => group + .SelectMany(route => route.Points) + .Select(point => NormalizeScenarioPoint(systemsById[group.Key], point)) + .ToList(), + StringComparer.Ordinal); + } + + private List CreateShips( + ScenarioDefinition scenario, + IReadOnlyDictionary systemsById, + IReadOnlyCollection celestials, + IReadOnlyDictionary> patrolRoutes, + IReadOnlyCollection stations) + { + var ships = new List(); + var shipIdCounter = 0; + + foreach (var formation in scenario.ShipFormations) + { + if (!staticData.ShipDefinitions.TryGetValue(formation.ShipId, out var definition)) + { + throw new InvalidOperationException($"Scenario ship formation references unknown ship '{formation.ShipId}'."); + } + + for (var index = 0; index < formation.Count; index += 1) + { + var offset = new Vector3((index % 3) * 18f, balance.YPlane, (index / 3) * 18f); + var position = Add(NormalizeScenarioPoint(systemsById[formation.SystemId], formation.Center), offset); + var factionId = GetRequiredFactionId(formation.FactionId, $"ship formation '{formation.ShipId}' in system '{formation.SystemId}'"); + + ships.Add(new ShipRuntime + { + Id = $"ship-{++shipIdCounter}", + SystemId = formation.SystemId, + Definition = definition, + FactionId = factionId, + Position = position, + TargetPosition = position, + SpatialState = SpatialBuilder.CreateInitialShipSpatialState(formation.SystemId, position, celestials), + DefaultBehavior = CreateBehavior( + definition, + formation.SystemId, + factionId, + patrolRoutes, + stations), + Skills = ShipBootstrapPolicy.CreateSkills(definition), + Health = definition.MaxHealth, + }); + + foreach (var (itemId, amount) in formation.StartingInventory) + { + if (amount > 0f) + { + ships[^1].Inventory[itemId] = amount; + } + } + } + } + + return ships; + } + + private static string GetRequiredFactionId(string? factionId, string context) + { + if (!string.IsNullOrWhiteSpace(factionId)) + { + return factionId; + } + + throw new InvalidOperationException($"Scenario {context} is missing a factionId."); + } + + private static DefaultBehaviorRuntime CreateBehavior( + ShipDefinition definition, + string systemId, + string factionId, + IReadOnlyDictionary> patrolRoutes, + IReadOnlyCollection stations) + { + var homeStation = stations.FirstOrDefault(station => + string.Equals(station.FactionId, factionId, StringComparison.Ordinal) + && string.Equals(station.SystemId, systemId, StringComparison.Ordinal)) + ?? stations.FirstOrDefault(station => string.Equals(station.FactionId, factionId, StringComparison.Ordinal)); + + if (string.Equals(definition.Kind, "construction", StringComparison.Ordinal) && homeStation is not null) + { + return new DefaultBehaviorRuntime + { + Kind = "construct-station", + HomeSystemId = homeStation.SystemId, + HomeStationId = homeStation.Id, + PreferredConstructionSiteId = null, + }; + } + + if (LoaderSupport.HasCapabilities(definition, "mining") && homeStation is not null) + { + return new DefaultBehaviorRuntime + { + Kind = definition.CargoCapacity >= 120f ? "expert-auto-mine" : "advanced-auto-mine", + HomeSystemId = homeStation.SystemId, + HomeStationId = homeStation.Id, + AreaSystemId = homeStation.SystemId, + MaxSystemRange = definition.CargoCapacity >= 120f ? 3 : 1, + }; + } + + if (string.Equals(definition.Kind, "transport", StringComparison.Ordinal)) + { + return new DefaultBehaviorRuntime + { + Kind = "advanced-auto-trade", + HomeSystemId = homeStation?.SystemId ?? systemId, + HomeStationId = homeStation?.Id, + MaxSystemRange = 2, + }; + } + + if (string.Equals(definition.Kind, "military", StringComparison.Ordinal) && patrolRoutes.TryGetValue(systemId, out var route)) + { + return new DefaultBehaviorRuntime + { + Kind = "patrol", + HomeSystemId = homeStation?.SystemId ?? systemId, + HomeStationId = homeStation?.Id, + AreaSystemId = systemId, + PatrolPoints = route, + PatrolIndex = 0, + }; + } + + return new DefaultBehaviorRuntime + { + Kind = "idle", + HomeSystemId = homeStation?.SystemId ?? systemId, + HomeStationId = homeStation?.Id, + }; + } +} diff --git a/apps/backend/Universe/Scenario/ScenarioLoader.cs b/apps/backend/Universe/Scenario/ScenarioLoader.cs index 31bf7fb..362378e 100644 --- a/apps/backend/Universe/Scenario/ScenarioLoader.cs +++ b/apps/backend/Universe/Scenario/ScenarioLoader.cs @@ -12,16 +12,16 @@ public sealed class ScenarioLoader(IOptions staticDataOptions PropertyNameCaseInsensitive = true, }; - public ScenarioDefinition? Load() + public ScenarioDefinition Load(string relativePath) { - var scenarioPath = Path.Combine(staticDataOptions.Value.DataRoot, "scenario.json"); + var scenarioPath = Path.Combine(staticDataOptions.Value.DataRoot, relativePath); if (!File.Exists(scenarioPath)) { - return null; + throw new FileNotFoundException($"Scenario file was not found: {relativePath}", scenarioPath); } var json = File.ReadAllText(scenarioPath); return JsonSerializer.Deserialize(json, _jsonOptions) - ?? throw new InvalidOperationException("Unable to read scenario.json."); + ?? throw new InvalidOperationException($"Unable to read {relativePath}."); } } diff --git a/apps/backend/Universe/Scenario/ScenarioValidationService.cs b/apps/backend/Universe/Scenario/ScenarioValidationService.cs new file mode 100644 index 0000000..f4f87e4 --- /dev/null +++ b/apps/backend/Universe/Scenario/ScenarioValidationService.cs @@ -0,0 +1,111 @@ +using SpaceGame.Api.Universe.Bootstrap; + +namespace SpaceGame.Api.Universe.Scenario; + +public sealed class ScenarioValidationService(IStaticDataProvider staticData) +{ + public ScenarioDefinition CreateEmptyScenario( + WorldGenerationOptions worldGenerationOptions, + IReadOnlyList systems) + { + if (systems.Count == 0) + { + throw new InvalidOperationException("World generation produced no systems."); + } + + return new ScenarioDefinition + { + WorldGeneration = worldGenerationOptions, + InitialStations = [], + ShipFormations = [], + PatrolRoutes = [], + }; + } + + public void Validate( + ScenarioDefinition scenario, + IReadOnlySet availableSystemIds) + { + foreach (var station in scenario.InitialStations) + { + ValidateSystemExists(station.SystemId, $"station '{station.Label}' system", availableSystemIds); + ValidateFactionId(station.FactionId, $"station '{station.Label}'"); + + foreach (var moduleId in station.StartingModules) + { + ValidateModuleId(moduleId, $"station '{station.Label}' starting module"); + } + } + + foreach (var formation in scenario.ShipFormations) + { + ValidateSystemExists(formation.SystemId, $"ship formation '{formation.ShipId}' system", availableSystemIds); + ValidateFactionId(formation.FactionId, $"ship formation '{formation.ShipId}' in system '{formation.SystemId}'"); + ValidateShipId(formation.ShipId, $"ship formation in system '{formation.SystemId}'"); + + foreach (var itemId in formation.StartingInventory.Keys) + { + ValidateItemId(itemId, $"ship formation '{formation.ShipId}' starting inventory"); + } + } + + foreach (var route in scenario.PatrolRoutes) + { + ValidateSystemExists(route.SystemId, "patrol route system", availableSystemIds); + } + } + + private static string GetRequiredFactionId(string? factionId, string context) + { + if (!string.IsNullOrWhiteSpace(factionId)) + { + return factionId; + } + + throw new InvalidOperationException($"Scenario {context} is missing a factionId."); + } + + private static void ValidateSystemExists( + string systemId, + string context, + IReadOnlySet availableSystemIds) + { + if (!availableSystemIds.Contains(systemId)) + { + throw new InvalidOperationException($"Scenario {context} references unknown generated system '{systemId}'."); + } + } + + private void ValidateFactionId(string? factionId, string context) + { + var requiredFactionId = GetRequiredFactionId(factionId, context); + if (!staticData.FactionDefinitions.ContainsKey(requiredFactionId)) + { + throw new InvalidOperationException($"Scenario {context} references unknown faction '{requiredFactionId}'."); + } + } + + private void ValidateModuleId(string moduleId, string context) + { + if (!staticData.ModuleDefinitions.ContainsKey(moduleId)) + { + throw new InvalidOperationException($"Scenario {context} references unknown module '{moduleId}'."); + } + } + + private void ValidateShipId(string shipId, string context) + { + if (!staticData.ShipDefinitions.ContainsKey(shipId)) + { + throw new InvalidOperationException($"Scenario {context} references unknown ship '{shipId}'."); + } + } + + private void ValidateItemId(string itemId, string context) + { + if (!staticData.ItemDefinitions.ContainsKey(itemId)) + { + throw new InvalidOperationException($"Scenario {context} references unknown item '{itemId}'."); + } + } +} diff --git a/apps/backend/Universe/Scenario/ScenarioWorldContent.cs b/apps/backend/Universe/Scenario/ScenarioWorldContent.cs new file mode 100644 index 0000000..a53a895 --- /dev/null +++ b/apps/backend/Universe/Scenario/ScenarioWorldContent.cs @@ -0,0 +1,5 @@ +namespace SpaceGame.Api.Universe.Scenario; + +public sealed record ScenarioWorldContent( + IReadOnlyList Stations, + IReadOnlyList Ships); diff --git a/apps/backend/Universe/Scenario/SpatialBuilder.cs b/apps/backend/Universe/Scenario/SpatialBuilder.cs index b03d6e2..00f7d66 100644 --- a/apps/backend/Universe/Scenario/SpatialBuilder.cs +++ b/apps/backend/Universe/Scenario/SpatialBuilder.cs @@ -2,9 +2,9 @@ using static SpaceGame.Api.Universe.Scenario.LoaderSupport; namespace SpaceGame.Api.Universe.Scenario; -public sealed class SpatialBuilder +public sealed class SpatialBuilder(IBalanceService balance) { - internal ScenarioSpatialLayout BuildLayout(IReadOnlyList systems, BalanceOptions balance) + internal ScenarioSpatialLayout BuildLayout(IReadOnlyList systems) { var systemGraphs = systems.ToDictionary( system => system.Definition.Id, @@ -305,12 +305,12 @@ public sealed class SpatialBuilder } } -internal sealed record ScenarioSpatialLayout( +public sealed record ScenarioSpatialLayout( IReadOnlyDictionary SystemGraphs, List Celestials, List Nodes); -internal sealed record SystemSpatialGraph( +public sealed record SystemSpatialGraph( string SystemId, List Celestials, Dictionary> LagrangeNodesByPlanetIndex); diff --git a/apps/backend/Universe/Scenario/StarterStationLayoutResolver.cs b/apps/backend/Universe/Scenario/StarterStationLayoutResolver.cs new file mode 100644 index 0000000..181ccb7 --- /dev/null +++ b/apps/backend/Universe/Scenario/StarterStationLayoutResolver.cs @@ -0,0 +1,145 @@ +using SpaceGame.Api.Shared.Runtime; + +namespace SpaceGame.Api.Universe.Scenario; + +internal static class StarterStationLayoutResolver +{ + internal static string ResolveDockModuleId( + string? factionId, + IReadOnlyDictionary moduleDefinitions) => + SelectPreferredModule( + moduleDefinitions.Values.Where(definition => definition.ModuleType == ModuleType.DockArea), + factionId, + "starter dock module").Id; + + internal static string ResolvePowerModuleId( + string? factionId, + IReadOnlyDictionary moduleDefinitions) => + ResolveProducerModuleId("energycells", factionId, moduleDefinitions); + + internal static string? ResolveObjectiveModuleId( + string? objective, + string? factionId, + IReadOnlyDictionary moduleDefinitions) + { + var targetWareId = ResolveObjectiveWareId(objective); + return targetWareId is null ? null : ResolveProducerModuleId(targetWareId, factionId, moduleDefinitions); + } + + internal static IEnumerable ResolveRequiredStorageModuleIds( + string moduleId, + string? factionId, + IReadOnlyDictionary moduleDefinitions, + IReadOnlyDictionary itemDefinitions) + { + if (!moduleDefinitions.TryGetValue(moduleId, out var moduleDefinition)) + { + throw new InvalidOperationException($"Module '{moduleId}' is not defined in static data."); + } + + foreach (var wareId in moduleDefinition.BuildRecipes + .SelectMany(production => production.Wares.Select(ware => ware.ItemId)) + .Concat(moduleDefinition.ProductItemIds) + .Distinct(StringComparer.Ordinal)) + { + if (!itemDefinitions.TryGetValue(wareId, out var itemDefinition)) + { + throw new InvalidOperationException($"Module '{moduleId}' references unknown ware '{wareId}'."); + } + + if (itemDefinition.CargoKind is not { } storageKind) + { + continue; + } + + yield return ResolveStorageModuleId(storageKind, factionId, moduleDefinitions); + } + } + + private static string? ResolveObjectiveWareId(string? objective) => + StationSimulationService.NormalizeStationObjective(objective) switch + { + "power" => "energycells", + "refinery" => "refinedmetals", + "graphene" => "graphene", + "siliconwafers" => "siliconwafers", + "hullparts" => "hullparts", + "claytronics" => "claytronics", + "quantumtubes" => "quantumtubes", + "antimattercells" => "antimattercells", + "superfluidcoolant" => "superfluidcoolant", + "water" => "water", + _ => null, + }; + + private static string ResolveProducerModuleId( + string wareId, + string? factionId, + IReadOnlyDictionary moduleDefinitions) => + SelectPreferredModule( + moduleDefinitions.Values + .OfType() + .Where(definition => definition.ProductItemIds.Contains(wareId, StringComparer.Ordinal)), + factionId, + $"producer module for ware '{wareId}'").Id; + + private static string ResolveStorageModuleId( + StorageKind storageKind, + string? factionId, + IReadOnlyDictionary moduleDefinitions) => + SelectPreferredModule( + moduleDefinitions.Values + .OfType() + .Where(definition => definition.StorageKind == storageKind), + factionId, + $"storage module for cargo kind '{storageKind.ToDataValue()}'").Id; + + private static T SelectPreferredModule( + IEnumerable candidates, + string? factionId, + string context) + where T : ModuleDefinition + { + var ordered = candidates + .OrderBy(definition => ComputeOwnerRank(definition, factionId)) + .ThenBy(definition => ComputeModuleRank(definition)) + .ThenBy(definition => definition.Id, StringComparer.Ordinal) + .ToList(); + + return ordered.FirstOrDefault() + ?? throw new InvalidOperationException($"Unable to resolve {context}."); + } + + private static int ComputeOwnerRank(ModuleDefinition definition, string? factionId) + { + if (string.IsNullOrWhiteSpace(factionId)) + { + return 1; + } + + return definition.Owners.Contains(factionId, StringComparer.Ordinal) ? 0 : 1; + } + + private static int ComputeModuleRank(ModuleDefinition definition) + { + if (definition.ModuleType is ModuleType.DockArea or ModuleType.Storage) + { + if (definition.Id.Contains("_m_", StringComparison.Ordinal)) + { + return 0; + } + + if (definition.Id.Contains("_s_", StringComparison.Ordinal)) + { + return 1; + } + + if (definition.Id.Contains("_l_", StringComparison.Ordinal)) + { + return 2; + } + } + + return 3; + } +} diff --git a/apps/backend/Universe/Scenario/SystemGenerationService.cs b/apps/backend/Universe/Scenario/SystemGenerationService.cs index 5ea53fb..c217380 100644 --- a/apps/backend/Universe/Scenario/SystemGenerationService.cs +++ b/apps/backend/Universe/Scenario/SystemGenerationService.cs @@ -4,114 +4,65 @@ namespace SpaceGame.Api.Universe.Scenario; public sealed class SystemGenerationService { - internal List PrepareAuthoredSystems(IReadOnlyList authoredSystems) => - authoredSystems + private const float KnownSystemSelectionChance = 0.5f; + + internal List PrepareKnownSystems(IReadOnlyList knownSystems) => + knownSystems .Select((system, index) => EnsureStrategicResourceCoverage(CloneSystemDefinition(system), index)) .ToList(); - internal List ExpandSystems( - IReadOnlyList authoredSystems, - int targetSystemCount) + internal List GenerateSystems( + IReadOnlyList knownSystems, + WorldGenerationOptions worldGenerationOptions) { - var systems = authoredSystems - .Select(CloneSystemDefinition) - .ToList(); - - if (targetSystemCount <= 0) + if (worldGenerationOptions.TargetSystemCount <= 0) { return []; } - if (systems.Count > targetSystemCount) + if (knownSystems.Count == 0) { - return TrimSystemsToTarget(systems, targetSystemCount); + throw new InvalidOperationException("World generation requires at least one known system template."); } - if (systems.Count >= targetSystemCount || authoredSystems.Count == 0) - { - return systems; - } + var systems = new List(worldGenerationOptions.TargetSystemCount); + var availableKnownSystems = knownSystems.Select(CloneSystemDefinition).ToList(); + var templateSystems = knownSystems.Select(CloneSystemDefinition).ToList(); - var existingIds = systems - .Select(system => system.Id) - .ToHashSet(StringComparer.Ordinal); - var generatedPositions = BuildGalaxyPositions( - authoredSystems.Select(system => ToVector(system.Position)).ToList(), - targetSystemCount - systems.Count); + var existingIds = new HashSet(StringComparer.Ordinal); + var occupiedPositions = new List(); + var generatedSystemCount = 0; - for (var index = systems.Count; index < targetSystemCount; index += 1) + for (var slotIndex = 0; slotIndex < worldGenerationOptions.TargetSystemCount; slotIndex += 1) { - var template = authoredSystems[index % authoredSystems.Count]; - var name = GeneratedSystemNames[(index - authoredSystems.Count) % GeneratedSystemNames.Length]; - var id = BuildGeneratedSystemId(name, index + 1); + if (ShouldUseKnownSystem(worldGenerationOptions, slotIndex, availableKnownSystems.Count)) + { + var knownSystemIndex = SelectKnownSystemIndex(worldGenerationOptions.Seed, slotIndex, availableKnownSystems.Count); + var knownSystem = availableKnownSystems[knownSystemIndex]; + availableKnownSystems.RemoveAt(knownSystemIndex); + systems.Add(knownSystem); + existingIds.Add(knownSystem.Id); + occupiedPositions.Add(ToVector(knownSystem.Position)); + continue; + } + + var template = templateSystems[generatedSystemCount % templateSystems.Count]; + var name = GeneratedSystemNames[generatedSystemCount % GeneratedSystemNames.Length]; + var id = BuildGeneratedSystemId(name, generatedSystemCount + 1); while (!existingIds.Add(id)) { id = $"{id}-x"; } - systems.Add(CreateGeneratedSystem(template, name, id, index - authoredSystems.Count, generatedPositions[index - authoredSystems.Count])); + var position = BuildGeneratedSystemPosition(occupiedPositions, generatedSystemCount); + systems.Add(CreateGeneratedSystem(template, name, id, generatedSystemCount, position)); + occupiedPositions.Add(position); + generatedSystemCount += 1; } return systems; } - private static List TrimSystemsToTarget(IReadOnlyList systems, int targetSystemCount) - { - var selected = new List(targetSystemCount); - - void AddById(string systemId) - { - var system = systems.FirstOrDefault(candidate => string.Equals(candidate.Id, systemId, StringComparison.Ordinal)); - if (system is not null && selected.All(candidate => !string.Equals(candidate.Id, systemId, StringComparison.Ordinal))) - { - selected.Add(system); - } - } - - foreach (var preferredSystemId in SystemSelectionPolicy.PreferredSystemIds) - { - AddById(preferredSystemId); - } - - foreach (var system in systems) - { - if (selected.Count >= targetSystemCount) - { - break; - } - - if (selected.Any(candidate => string.Equals(candidate.Id, system.Id, StringComparison.Ordinal))) - { - continue; - } - - selected.Add(system); - } - - if (selected.Count > 0 && selected.Count <= 4) - { - ApplyCompactGalaxyLayout(selected); - } - - return selected; - } - - private static void ApplyCompactGalaxyLayout(IReadOnlyList systems) - { - var compactPositions = new[] - { - new[] { 0f, 0f, 0f }, - new[] { 2.6f, 0.02f, -0.42f }, - new[] { -2.4f, -0.04f, 0.56f }, - new[] { 0.52f, 0.04f, 2.48f }, - }; - - for (var index = 0; index < systems.Count && index < compactPositions.Length; index += 1) - { - systems[index].Position = compactPositions[index]; - } - } - private static SolarSystemDefinition CreateGeneratedSystem( SolarSystemDefinition template, string label, @@ -260,30 +211,38 @@ public sealed class SystemGenerationService return system; } - private static List BuildGalaxyPositions(IReadOnlyCollection occupiedPositions, int count) + private static Vector3 BuildGeneratedSystemPosition(IReadOnlyCollection occupiedPositions, int generatedIndex) { var allPositions = occupiedPositions.ToList(); - var generated = new List(count); - - for (var index = 0; index < count; index += 1) + for (var attempt = 0; attempt < 64; attempt += 1) { - Vector3? accepted = null; - for (var attempt = 0; attempt < 64; attempt += 1) + var candidate = ComputeGeneratedSystemPosition(generatedIndex, attempt); + if (allPositions.All(existing => existing.DistanceTo(candidate) >= MinimumSystemSeparation)) { - var candidate = ComputeGeneratedSystemPosition(index, attempt); - if (allPositions.All(existing => existing.DistanceTo(candidate) >= MinimumSystemSeparation)) - { - accepted = candidate; - break; - } + return candidate; } - - accepted ??= ComputeFallbackGeneratedSystemPosition(index); - generated.Add(accepted.Value); - allPositions.Add(accepted.Value); } - return generated; + return ComputeFallbackGeneratedSystemPosition(generatedIndex); + } + + private static bool ShouldUseKnownSystem( + WorldGenerationOptions worldGenerationOptions, + int slotIndex, + int remainingKnownSystemCount) + { + if (!worldGenerationOptions.UseKnownSystems || remainingKnownSystemCount <= 0) + { + return false; + } + + return Hash01(worldGenerationOptions.Seed, 700 + slotIndex) >= KnownSystemSelectionChance; + } + + private static int SelectKnownSystemIndex(int seed, int slotIndex, int remainingKnownSystemCount) + { + var selection = Hash01(seed, 900 + slotIndex); + return Math.Min((int)(selection * remainingKnownSystemCount), remainingKnownSystemCount - 1); } private static Vector3 ComputeGeneratedSystemPosition(int generatedIndex, int attempt) diff --git a/apps/backend/Universe/Scenario/SystemSelectionPolicy.cs b/apps/backend/Universe/Scenario/SystemSelectionPolicy.cs deleted file mode 100644 index 8c98bce..0000000 --- a/apps/backend/Universe/Scenario/SystemSelectionPolicy.cs +++ /dev/null @@ -1,23 +0,0 @@ -namespace SpaceGame.Api.Universe.Scenario; - -internal static class SystemSelectionPolicy -{ - internal static readonly string[] PreferredSystemIds = - [ - "sol", - "helios", - ]; - - internal static string SelectFallbackSystemId(IReadOnlyList availableSystemIds) - { - foreach (var preferredSystemId in PreferredSystemIds) - { - if (availableSystemIds.Contains(preferredSystemId, StringComparer.Ordinal)) - { - return preferredSystemId; - } - } - - return availableSystemIds.FirstOrDefault() ?? string.Empty; - } -} diff --git a/apps/backend/Universe/Scenario/WorldBuildTopology.cs b/apps/backend/Universe/Scenario/WorldBuildTopology.cs new file mode 100644 index 0000000..593c4dd --- /dev/null +++ b/apps/backend/Universe/Scenario/WorldBuildTopology.cs @@ -0,0 +1,7 @@ +namespace SpaceGame.Api.Universe.Scenario; + +public sealed record WorldBuildTopology( + IReadOnlyList Systems, + IReadOnlyList SystemRuntimes, + IReadOnlyDictionary SystemsById, + ScenarioSpatialLayout SpatialLayout); diff --git a/apps/backend/Universe/Scenario/WorldBuilder.cs b/apps/backend/Universe/Scenario/WorldBuilder.cs index 361183a..9d58bc2 100644 --- a/apps/backend/Universe/Scenario/WorldBuilder.cs +++ b/apps/backend/Universe/Scenario/WorldBuilder.cs @@ -1,383 +1,26 @@ -using static SpaceGame.Api.Universe.Scenario.LoaderSupport; -using SpaceGame.Api.Universe.Bootstrap; -using Microsoft.Extensions.Options; - namespace SpaceGame.Api.Universe.Scenario; public sealed class WorldBuilder( - StaticDataCatalog staticData, - IOptions balance, - SystemGenerationService generationService, - SpatialBuilder spatialBuilder, - WorldSeedingService seedingService) + WorldTopologyBuilder topologyBuilder, + ScenarioValidationService scenarioValidationService, + ScenarioContentBuilder contentBuilder, + WorldRuntimeAssembler runtimeAssembler) { - public SimulationWorld Build( - GameStartOptionsDefinition gameStartOptions, + public SimulationWorld BuildFromGeneration(WorldGenerationOptions worldGenerationOptions) => + BuildWorld(worldGenerationOptions, null); + + public SimulationWorld BuildFromScenario(ScenarioDefinition scenarioDefinition) => + BuildWorld(scenarioDefinition.WorldGeneration, scenarioDefinition); + + private SimulationWorld BuildWorld( + WorldGenerationOptions worldGenerationOptions, ScenarioDefinition? scenarioDefinition) { - var systems = generationService.ExpandSystems( - generationService.PrepareAuthoredSystems(authoredSystems), - gameStartOptions.WorldGeneration.TargetSystemCount); + var topology = topologyBuilder.Build(worldGenerationOptions); + var scenario = scenarioDefinition ?? scenarioValidationService.CreateEmptyScenario(worldGenerationOptions, topology.Systems); + scenarioValidationService.Validate(scenario, topology.Systems.Select(system => system.Id).ToHashSet(StringComparer.Ordinal)); - var scenario = NormalizeScenarioToAvailableSystems( - scenarioDefinition, - systems.Select(system => system.Id).ToList()); - - var systemRuntimes = systems - .Select(definition => new SystemRuntime - { - Definition = definition, - Position = ToVector(definition.Position), - }) - .ToList(); - var systemsById = systemRuntimes.ToDictionary(system => system.Definition.Id, StringComparer.Ordinal); - var spatialLayout = spatialBuilder.BuildLayout(systemRuntimes, balance.Value); - - var stations = CreateStations( - scenario, - systemsById, - spatialLayout.SystemGraphs, - spatialLayout.Celestials, - staticData.ModuleDefinitions, - staticData.ItemDefinitions); - - seedingService.InitializeStationStockpiles(stations, staticData.ModuleDefinitions); - var refinery = seedingService.SelectRefineryStation(stations, scenario); - var patrolRoutes = BuildPatrolRoutes(scenario, systemsById); - var ships = CreateShips(scenario, systemsById, spatialLayout.Celestials, staticData.ShipDefinitions, patrolRoutes, stations, refinery); - - if (gameStartOptions.WorldGeneration.AiControllerFactionCount < int.MaxValue) - { - var aiFactionIds = stations - .Select(s => s.FactionId) - .Concat(ships.Select(s => s.FactionId)) - .Where(id => !string.IsNullOrWhiteSpace(id) && !string.Equals(id, DefaultFactionId, StringComparison.Ordinal)) - .Distinct(StringComparer.Ordinal) - .OrderBy(id => id, StringComparer.Ordinal) - .Take(gameStartOptions.WorldGeneration.AiControllerFactionCount) - .ToHashSet(StringComparer.Ordinal); - aiFactionIds.Add(DefaultFactionId); - stations = stations.Where(s => aiFactionIds.Contains(s.FactionId)).ToList(); - ships = ships.Where(s => aiFactionIds.Contains(s.FactionId)).ToList(); - } - - var factions = seedingService.CreateFactions(stations, ships); - seedingService.BootstrapFactionEconomy(factions, stations); - var policies = seedingService.CreatePolicies(factions); - var commanders = seedingService.CreateCommanders(factions, stations, ships); - var nowUtc = DateTimeOffset.UtcNow; - var playerFaction = gameStartOptions.WorldGeneration.GeneratePlayerFaction - ? seedingService.CreatePlayerFaction(factions, stations, ships, commanders, policies, nowUtc) - : null; - var claims = seedingService.CreateClaims(stations, spatialLayout.Celestials, nowUtc); - var world = new SimulationWorld - { - Label = "Split Viewer / Simulation World", - Seed = gameStartOptions.Seed, - Systems = systemRuntimes, - Celestials = spatialLayout.Celestials, - Nodes = spatialLayout.Nodes, - Wrecks = [], - Stations = stations, - Ships = ships, - Factions = factions, - PlayerFaction = playerFaction, - Geopolitics = null, - Commanders = commanders, - Claims = claims, - ConstructionSites = [], - MarketOrders = [], - Policies = policies, - ShipDefinitions = new Dictionary(staticData.ShipDefinitions, StringComparer.Ordinal), - ItemDefinitions = new Dictionary(staticData.ItemDefinitions, StringComparer.Ordinal), - ModuleDefinitions = new Dictionary(staticData.ModuleDefinitions, StringComparer.Ordinal), - ModuleRecipes = new Dictionary(staticData.ModuleRecipes, StringComparer.Ordinal), - Recipes = new Dictionary(staticData.Recipes, StringComparer.Ordinal), - ProductionGraph = staticData.ProductionGraph, - OrbitalTimeSeconds = gameStartOptions.Seed * 97d, - GeneratedAtUtc = nowUtc, - }; - - var (constructionSites, marketOrders) = seedingService.CreateConstructionSites(world); - world.ConstructionSites.AddRange(constructionSites); - world.MarketOrders.AddRange(marketOrders); - - var geopolitics = new GeopoliticalSimulationService(); - geopolitics.Update(world, 0f, []); - return world; - } - - private static ScenarioDefinition NormalizeScenarioToAvailableSystems( - ScenarioDefinition? scenario, - IReadOnlyList availableSystemIds) - { - var fallbackSystemId = SystemSelectionPolicy.SelectFallbackSystemId(availableSystemIds); - - if (scenario is null) - { - return new ScenarioDefinition - { - GameStartOptions = new GameStartOptionsDefinition(), - InitialStations = [], - ShipFormations = [], - PatrolRoutes = [], - MiningDefaults = new MiningDefaultsDefinition - { - NodeSystemId = fallbackSystemId, - RefinerySystemId = fallbackSystemId, - }, - }; - } - - if (availableSystemIds.Count == 0) - { - return scenario; - } - - string ResolveSystemId(string systemId) => - availableSystemIds.Contains(systemId, StringComparer.Ordinal) ? systemId : fallbackSystemId; - - return new ScenarioDefinition - { - GameStartOptions = scenario.GameStartOptions, - InitialStations = scenario.InitialStations - .Select(station => new InitialStationDefinition - { - SystemId = ResolveSystemId(station.SystemId), - Label = station.Label, - Color = station.Color, - Objective = station.Objective, - StartingModules = station.StartingModules.ToList(), - FactionId = station.FactionId, - PlanetIndex = station.PlanetIndex, - LagrangeSide = station.LagrangeSide, - Position = station.Position?.ToArray(), - }) - .ToList(), - ShipFormations = scenario.ShipFormations - .Select(formation => new ShipFormationDefinition - { - ShipId = formation.ShipId, - Count = formation.Count, - Center = formation.Center.ToArray(), - SystemId = ResolveSystemId(formation.SystemId), - FactionId = formation.FactionId, - StartingInventory = new Dictionary(formation.StartingInventory, StringComparer.Ordinal), - }) - .ToList(), - PatrolRoutes = scenario.PatrolRoutes - .Select(route => new PatrolRouteDefinition - { - SystemId = ResolveSystemId(route.SystemId), - Points = route.Points.Select(point => point.ToArray()).ToList(), - }) - .ToList(), - MiningDefaults = new MiningDefaultsDefinition - { - NodeSystemId = ResolveSystemId(scenario.MiningDefaults.NodeSystemId), - RefinerySystemId = ResolveSystemId(scenario.MiningDefaults.RefinerySystemId), - }, - }; - } - - private static List CreateStations( - ScenarioDefinition scenario, - IReadOnlyDictionary systemsById, - IReadOnlyDictionary systemGraphs, - IReadOnlyCollection celestials, - IReadOnlyDictionary moduleDefinitions, - IReadOnlyDictionary itemDefinitions) - { - var stations = new List(); - var stationIdCounter = 0; - - foreach (var plan in scenario.InitialStations) - { - if (!systemsById.TryGetValue(plan.SystemId, out var system)) - { - continue; - } - - var placement = SpatialBuilder.ResolveStationPlacement(plan, system, systemGraphs[system.Definition.Id], celestials); - var station = new StationRuntime - { - Id = $"station-{++stationIdCounter}", - SystemId = system.Definition.Id, - Label = plan.Label, - Color = plan.Color, - Objective = StationSimulationService.NormalizeStationObjective(plan.Objective), - Position = placement.Position, - FactionId = plan.FactionId ?? DefaultFactionId, - CelestialId = placement.AnchorCelestial.Id, - Health = 600f, - MaxHealth = 600f, - }; - - stations.Add(station); - placement.AnchorCelestial.OccupyingStructureId = station.Id; - - var startingModules = BuildStartingModules(plan, moduleDefinitions, itemDefinitions); - - foreach (var moduleId in startingModules) - { - AddStationModule(station, moduleDefinitions, moduleId); - } - } - - return stations; - } - - private static IReadOnlyList BuildStartingModules( - InitialStationDefinition plan, - IReadOnlyDictionary moduleDefinitions, - IReadOnlyDictionary itemDefinitions) - { - var startingModules = new List(plan.StartingModules.Count > 0 - ? plan.StartingModules - : ["module_arg_dock_m_01_lowtech", "module_gen_prod_energycells_01", "module_arg_stor_container_m_01"]); - - EnsureStartingModule(startingModules, "module_arg_dock_m_01_lowtech"); - - var objectiveModuleId = GetObjectiveStartingModuleId(plan.Objective); - if (!string.IsNullOrWhiteSpace(objectiveModuleId)) - { - EnsureStartingModule(startingModules, objectiveModuleId); - - if (!string.Equals(objectiveModuleId, "module_gen_prod_energycells_01", StringComparison.Ordinal)) - { - EnsureStartingModule(startingModules, "module_gen_prod_energycells_01"); - } - - foreach (var storageModuleId in GetRequiredStartingStorageModules(objectiveModuleId, moduleDefinitions, itemDefinitions)) - { - EnsureStartingModule(startingModules, storageModuleId); - } - } - - return startingModules; - } - - private static string? GetObjectiveStartingModuleId(string? objective) => - StationSimulationService.NormalizeStationObjective(objective) switch - { - "power" => "module_gen_prod_energycells_01", - "refinery" => "module_gen_ref_ore_01", - "graphene" => "module_gen_prod_graphene_01", - "siliconwafers" => "module_gen_prod_siliconwafers_01", - "hullparts" => "module_gen_prod_hullparts_01", - "claytronics" => "module_gen_prod_claytronics_01", - "quantumtubes" => "module_gen_prod_quantumtubes_01", - "antimattercells" => "module_gen_prod_antimattercells_01", - "superfluidcoolant" => "module_gen_prod_superfluidcoolant_01", - "water" => "module_gen_prod_water_01", - _ => null, - }; - - private static IEnumerable GetRequiredStartingStorageModules( - string moduleId, - IReadOnlyDictionary moduleDefinitions, - IReadOnlyDictionary itemDefinitions) - { - if (!moduleDefinitions.TryGetValue(moduleId, out var moduleDefinition)) - { - yield break; - } - - foreach (var wareId in moduleDefinition.BuildRecipes - .SelectMany(production => production.Wares.Select(ware => ware.ItemId)) - .Concat(moduleDefinition.ProductItemIds) - .Distinct(StringComparer.Ordinal)) - { - if (!itemDefinitions.TryGetValue(wareId, out var itemDefinition)) - { - continue; - } - - if (SpaceGame.Api.Shared.Runtime.SimulationRuntimeSupport.GetStorageRequirement(moduleDefinitions, itemDefinition.CargoKind) is { } storageModuleId) - { - yield return storageModuleId; - } - } - } - - private static void EnsureStartingModule(List modules, string moduleId) - { - if (!modules.Contains(moduleId, StringComparer.Ordinal)) - { - modules.Add(moduleId); - } - } - - private static Dictionary> BuildPatrolRoutes( - ScenarioDefinition scenario, - IReadOnlyDictionary systemsById) - { - return scenario.PatrolRoutes - .GroupBy(route => route.SystemId, StringComparer.Ordinal) - .ToDictionary( - group => group.Key, - group => group - .SelectMany(route => route.Points) - .Select(point => NormalizeScenarioPoint(systemsById[group.Key], point)) - .ToList(), - StringComparer.Ordinal); - } - - private List CreateShips( - ScenarioDefinition scenario, - IReadOnlyDictionary systemsById, - IReadOnlyCollection celestials, - IReadOnlyDictionary shipDefinitions, - IReadOnlyDictionary> patrolRoutes, - IReadOnlyCollection stations, - StationRuntime? refinery) - { - var ships = new List(); - var shipIdCounter = 0; - - foreach (var formation in scenario.ShipFormations) - { - if (!shipDefinitions.TryGetValue(formation.ShipId, out var definition)) - { - continue; - } - - for (var index = 0; index < formation.Count; index += 1) - { - var offset = new Vector3((index % 3) * 18f, balance.Value.YPlane, (index / 3) * 18f); - var position = Add(NormalizeScenarioPoint(systemsById[formation.SystemId], formation.Center), offset); - - ships.Add(new ShipRuntime - { - Id = $"ship-{++shipIdCounter}", - SystemId = formation.SystemId, - Definition = definition, - FactionId = formation.FactionId ?? DefaultFactionId, - Position = position, - TargetPosition = position, - SpatialState = SpatialBuilder.CreateInitialShipSpatialState(formation.SystemId, position, celestials), - DefaultBehavior = WorldSeedingService.CreateBehavior( - definition, - formation.SystemId, - formation.FactionId ?? DefaultFactionId, - scenario, - patrolRoutes, - stations, - refinery), - Skills = WorldSeedingService.CreateSkills(definition), - Health = definition.MaxHealth, - }); - - foreach (var (itemId, amount) in formation.StartingInventory) - { - if (amount > 0f) - { - ships[^1].Inventory[itemId] = amount; - } - } - } - } - - return ships; + var content = contentBuilder.Build(scenario, topology); + return runtimeAssembler.Assemble(worldGenerationOptions, topology, content); } } diff --git a/apps/backend/Universe/Scenario/WorldRuntimeAssembler.cs b/apps/backend/Universe/Scenario/WorldRuntimeAssembler.cs new file mode 100644 index 0000000..1e5a820 --- /dev/null +++ b/apps/backend/Universe/Scenario/WorldRuntimeAssembler.cs @@ -0,0 +1,62 @@ +using SpaceGame.Api.Universe.Bootstrap; + +namespace SpaceGame.Api.Universe.Scenario; + +public sealed class WorldRuntimeAssembler( + IStaticDataProvider staticData, + WorldSeedingService seedingService) +{ + public SimulationWorld Assemble( + WorldGenerationOptions worldGenerationOptions, + WorldBuildTopology topology, + ScenarioWorldContent content) + { + seedingService.InitializeStationStockpiles(content.Stations, staticData.ModuleDefinitions); + + var factions = seedingService.CreateFactions(content.Stations, content.Ships); + seedingService.BootstrapFactionEconomy(factions, content.Stations); + var policies = seedingService.CreatePolicies(factions); + var commanders = seedingService.CreateCommanders(factions, content.Stations, content.Ships); + var nowUtc = DateTimeOffset.UtcNow; + var playerFaction = worldGenerationOptions.GeneratePlayerFaction + ? seedingService.CreatePlayerFaction(factions, content.Stations, content.Ships, commanders, policies, nowUtc) + : null; + var claims = seedingService.CreateClaims(content.Stations, topology.SpatialLayout.Celestials, nowUtc); + + var world = new SimulationWorld + { + Label = "Split Viewer / Simulation World", + Seed = worldGenerationOptions.Seed, + Systems = topology.SystemRuntimes.ToList(), + Celestials = topology.SpatialLayout.Celestials, + Nodes = topology.SpatialLayout.Nodes, + Wrecks = [], + Stations = content.Stations.ToList(), + Ships = content.Ships.ToList(), + Factions = factions, + PlayerFaction = playerFaction, + Geopolitics = null, + Commanders = commanders, + Claims = claims, + ConstructionSites = [], + MarketOrders = [], + Policies = policies, + ShipDefinitions = new Dictionary(staticData.ShipDefinitions, StringComparer.Ordinal), + ItemDefinitions = new Dictionary(staticData.ItemDefinitions, StringComparer.Ordinal), + ModuleDefinitions = new Dictionary(staticData.ModuleDefinitions, StringComparer.Ordinal), + ModuleRecipes = new Dictionary(staticData.ModuleRecipes, StringComparer.Ordinal), + Recipes = new Dictionary(staticData.Recipes, StringComparer.Ordinal), + ProductionGraph = staticData.ProductionGraph, + OrbitalTimeSeconds = worldGenerationOptions.Seed * 97d, + GeneratedAtUtc = nowUtc, + }; + + var (constructionSites, marketOrders) = seedingService.CreateConstructionSites(world); + world.ConstructionSites.AddRange(constructionSites); + world.MarketOrders.AddRange(marketOrders); + + var geopolitics = new GeopoliticalSimulationService(); + geopolitics.Update(world, 0f, []); + return world; + } +} diff --git a/apps/backend/Universe/Scenario/WorldSeedingService.cs b/apps/backend/Universe/Scenario/WorldSeedingService.cs index 6df9265..1f1c9e2 100644 --- a/apps/backend/Universe/Scenario/WorldSeedingService.cs +++ b/apps/backend/Universe/Scenario/WorldSeedingService.cs @@ -1,8 +1,9 @@ +using SpaceGame.Api.Universe.Bootstrap; using static SpaceGame.Api.Universe.Scenario.LoaderSupport; namespace SpaceGame.Api.Universe.Scenario; -public sealed class WorldSeedingService +public sealed class WorldSeedingService(IStaticDataProvider staticData) { internal List CreateFactions( IReadOnlyCollection stations, @@ -18,7 +19,7 @@ public sealed class WorldSeedingService if (factionIds.Count == 0) { - factionIds.Add(DefaultFactionId); + return []; } return factionIds.Select(CreateFaction).ToList(); @@ -70,15 +71,6 @@ public sealed class WorldSeedingService } } - internal StationRuntime? SelectRefineryStation(IReadOnlyCollection stations, ScenarioDefinition scenario) - { - return stations.FirstOrDefault(station => - string.Equals(StationSimulationService.DetermineStationRole(station), "refinery", StringComparison.Ordinal) && - station.SystemId == scenario.MiningDefaults.RefinerySystemId) - ?? stations.FirstOrDefault(station => - string.Equals(StationSimulationService.DetermineStationRole(station), "refinery", StringComparison.Ordinal)); - } - internal List CreateClaims( IReadOnlyCollection stations, IReadOnlyCollection celestials, @@ -183,39 +175,32 @@ public sealed class WorldSeedingService private static bool HasSatisfiedStarterObjectiveLayout(SimulationWorld world, StationRuntime station) { var role = StationSimulationService.DetermineStationRole(station); - var objectiveModuleId = role switch - { - "power" => "module_gen_prod_energycells_01", - "refinery" => "module_gen_prod_refinedmetals_01", - "graphene" => "module_gen_prod_graphene_01", - "siliconwafers" => "module_gen_prod_siliconwafers_01", - "hullparts" => "module_gen_prod_hullparts_01", - "claytronics" => "module_gen_prod_claytronics_01", - "quantumtubes" => "module_gen_prod_quantumtubes_01", - "antimattercells" => "module_gen_prod_antimattercells_01", - "superfluidcoolant" => "module_gen_prod_superfluidcoolant_01", - "water" => "module_gen_prod_water_01", - _ => null, - }; + var objectiveModuleId = StarterStationLayoutResolver.ResolveObjectiveModuleId(role, station.FactionId, world.ModuleDefinitions); if (objectiveModuleId is null) { return false; } - if (!station.InstalledModules.Contains("module_arg_dock_m_01_lowtech", StringComparer.Ordinal) + var requiredDockModuleId = StarterStationLayoutResolver.ResolveDockModuleId(station.FactionId, world.ModuleDefinitions); + if (!station.InstalledModules.Contains(requiredDockModuleId, StringComparer.Ordinal) || !station.InstalledModules.Contains(objectiveModuleId, StringComparer.Ordinal)) { return false; } - if (!string.Equals(objectiveModuleId, "module_gen_prod_energycells_01", StringComparison.Ordinal) - && !station.InstalledModules.Contains("module_gen_prod_energycells_01", StringComparer.Ordinal)) + var powerModuleId = StarterStationLayoutResolver.ResolvePowerModuleId(station.FactionId, world.ModuleDefinitions); + if (!string.Equals(objectiveModuleId, powerModuleId, StringComparison.Ordinal) + && !station.InstalledModules.Contains(powerModuleId, StringComparer.Ordinal)) { return false; } - foreach (var storageModuleId in GetRequiredStorageModulesForInstalledObjective(world, objectiveModuleId)) + foreach (var storageModuleId in StarterStationLayoutResolver.ResolveRequiredStorageModuleIds( + objectiveModuleId, + station.FactionId, + world.ModuleDefinitions, + world.ItemDefinitions)) { if (!station.InstalledModules.Contains(storageModuleId, StringComparer.Ordinal)) { @@ -226,30 +211,6 @@ public sealed class WorldSeedingService return true; } - private static IEnumerable GetRequiredStorageModulesForInstalledObjective(SimulationWorld world, string moduleId) - { - if (!world.ModuleDefinitions.TryGetValue(moduleId, out var moduleDefinition)) - { - yield break; - } - - foreach (var wareId in moduleDefinition.BuildRecipes - .SelectMany(production => production.Wares.Select(ware => ware.ItemId)) - .Concat(moduleDefinition.ProductItemIds) - .Distinct(StringComparer.Ordinal)) - { - if (!world.ItemDefinitions.TryGetValue(wareId, out var itemDefinition)) - { - continue; - } - - if (SpaceGame.Api.Shared.Runtime.SimulationRuntimeSupport.GetStorageRequirement(world.ModuleDefinitions, itemDefinition.CargoKind) is { } storageModuleId) - { - yield return storageModuleId; - } - } - } - internal List CreatePolicies(IReadOnlyCollection factions) { var policies = new List(factions.Count); @@ -355,8 +316,8 @@ public sealed class WorldSeedingService IReadOnlyCollection policies, DateTimeOffset nowUtc) { - var sovereignFaction = factions.FirstOrDefault(faction => string.Equals(faction.Id, DefaultFactionId, StringComparison.Ordinal)) - ?? factions.OrderBy(faction => faction.Id, StringComparer.Ordinal).First(); + var sovereignFaction = factions.OrderBy(faction => faction.Id, StringComparer.Ordinal).FirstOrDefault() + ?? throw new InvalidOperationException("Cannot create a player faction without at least one faction in the world."); var player = new PlayerFactionRuntime { @@ -434,122 +395,55 @@ public sealed class WorldSeedingService return player; } - internal static DefaultBehaviorRuntime CreateBehavior( - ShipDefinition definition, - string systemId, - string factionId, - ScenarioDefinition scenario, - IReadOnlyDictionary> patrolRoutes, - IReadOnlyCollection stations, - StationRuntime? refinery) + private FactionRuntime CreateFaction(string factionId) { - var homeStation = stations.FirstOrDefault(station => - string.Equals(station.FactionId, factionId, StringComparison.Ordinal) - && string.Equals(station.SystemId, systemId, StringComparison.Ordinal)) - ?? stations.FirstOrDefault(station => string.Equals(station.FactionId, factionId, StringComparison.Ordinal)) - ?? refinery; - - if (string.Equals(definition.Kind, "construction", StringComparison.Ordinal) && homeStation is not null) + if (!staticData.FactionDefinitions.TryGetValue(factionId, out var definition)) { - return new DefaultBehaviorRuntime - { - Kind = "construct-station", - HomeSystemId = homeStation.SystemId, - HomeStationId = homeStation.Id, - PreferredConstructionSiteId = null, - }; + throw new InvalidOperationException($"Faction '{factionId}' is not defined in static data."); } - if (HasCapabilities(definition, "mining") && homeStation is not null) + return new FactionRuntime { - return new DefaultBehaviorRuntime - { - Kind = definition.CargoCapacity >= 120f ? "expert-auto-mine" : "advanced-auto-mine", - HomeSystemId = homeStation.SystemId, - HomeStationId = homeStation.Id, - AreaSystemId = scenario.MiningDefaults.NodeSystemId, - MaxSystemRange = definition.CargoCapacity >= 120f ? 3 : 1, - }; - } - - if (string.Equals(definition.Kind, "transport", StringComparison.Ordinal)) - { - return new DefaultBehaviorRuntime - { - Kind = "advanced-auto-trade", - HomeSystemId = homeStation?.SystemId ?? systemId, - HomeStationId = homeStation?.Id, - MaxSystemRange = 2, - }; - } - - if (string.Equals(definition.Kind, "military", StringComparison.Ordinal) && patrolRoutes.TryGetValue(systemId, out var route)) - { - return new DefaultBehaviorRuntime - { - Kind = "patrol", - HomeSystemId = homeStation?.SystemId ?? systemId, - HomeStationId = homeStation?.Id, - AreaSystemId = systemId, - PatrolPoints = route, - PatrolIndex = 0, - }; - } - - return new DefaultBehaviorRuntime - { - Kind = "idle", - HomeSystemId = homeStation?.SystemId ?? systemId, - HomeStationId = homeStation?.Id, + Id = definition.Id, + Label = definition.Label, + Color = ResolveFactionColor(definition), + Credits = MinimumFactionCredits, }; } - internal static ShipSkillProfileRuntime CreateSkills(ShipDefinition definition) - { - return definition.Kind switch - { - "transport" => new ShipSkillProfileRuntime { Navigation = 3, Trade = 4, Mining = 1, Combat = 1, Construction = 1 }, - "construction" => new ShipSkillProfileRuntime { Navigation = 3, Trade = 1, Mining = 1, Combat = 1, Construction = 4 }, - "military" => new ShipSkillProfileRuntime { Navigation = 4, Trade = 1, Mining = 1, Combat = 4, Construction = 1 }, - _ when HasCapabilities(definition, "mining") => new ShipSkillProfileRuntime { Navigation = 3, Trade = 1, Mining = 4, Combat = 1, Construction = 1 }, - _ => new ShipSkillProfileRuntime { Navigation = 3, Trade = 2, Mining = 1, Combat = 1, Construction = 1 }, - }; - } - - private static FactionRuntime CreateFaction(string factionId) - { - return factionId switch - { - DefaultFactionId => new FactionRuntime - { - Id = factionId, - Label = "Sol Dominion", - Color = "#7ed4ff", - Credits = MinimumFactionCredits, - }, - "asterion-league" => new FactionRuntime - { - Id = factionId, - Label = "Asterion League", - Color = "#ff8f70", - Credits = MinimumFactionCredits, - }, - "nadir-syndicate" => new FactionRuntime - { - Id = factionId, - Label = "Nadir Syndicate", - Color = "#91e6a8", - Credits = MinimumFactionCredits, - }, - _ => new FactionRuntime - { - Id = factionId, - Label = ToFactionLabel(factionId), - Color = "#c7d2e0", - Credits = MinimumFactionCredits, - }, - }; - } + private static string ResolveFactionColor(FactionDefinition definition) => + definition.Id switch + { + "alliance" => "#c084fc", + "antigone" => "#f97316", + "argon" => "#3b82f6", + "boron" => "#14b8a6", + "freesplit" => "#ef4444", + "hatikvah" => "#84cc16", + "holyorder" => "#d97706", + "loanshark" => "#f59e0b", + "ministry" => "#a3e635", + "paranid" => "#eab308", + "pioneers" => "#60a5fa", + "scaleplate" => "#94a3b8", + "scavenger" => "#64748b", + "split" => "#b91c1c", + "teladi" => "#22c55e", + "terran" => "#38bdf8", + "trinity" => "#2dd4bf", + "xenon" => "#9ca3af", + _ => definition.RaceId switch + { + "argon" => "#3b82f6", + "boron" => "#14b8a6", + "paranid" => "#eab308", + "split" => "#b91c1c", + "teladi" => "#22c55e", + "terran" => "#38bdf8", + "xenon" => "#9ca3af", + _ => "#94a3b8", + }, + }; private static void InitializeStationPopulation( StationRuntime station, @@ -563,12 +457,4 @@ public sealed class WorldSeedingService station.WorkforceEffectiveRatio = ComputeWorkforceRatio(station.Population, station.WorkforceRequired); } - private static string ToFactionLabel(string factionId) - { - return string.Join(" ", - factionId - .Split('-', StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries) - .Select(segment => char.ToUpperInvariant(segment[0]) + segment[1..])); - } - } diff --git a/apps/backend/Universe/Scenario/WorldTopologyBuilder.cs b/apps/backend/Universe/Scenario/WorldTopologyBuilder.cs new file mode 100644 index 0000000..662bebb --- /dev/null +++ b/apps/backend/Universe/Scenario/WorldTopologyBuilder.cs @@ -0,0 +1,29 @@ +using SpaceGame.Api.Universe.Bootstrap; + +namespace SpaceGame.Api.Universe.Scenario; + +public sealed class WorldTopologyBuilder( + IStaticDataProvider staticData, + SystemGenerationService generationService, + SpatialBuilder spatialBuilder) +{ + public WorldBuildTopology Build(WorldGenerationOptions worldGenerationOptions) + { + var systems = generationService.GenerateSystems( + generationService.PrepareKnownSystems(staticData.KnownSystems), + worldGenerationOptions); + + var systemRuntimes = systems + .Select(definition => new SystemRuntime + { + Definition = definition, + Position = LoaderSupport.ToVector(definition.Position), + }) + .ToList(); + + var systemsById = systemRuntimes.ToDictionary(system => system.Definition.Id, StringComparer.Ordinal); + var spatialLayout = spatialBuilder.BuildLayout(systemRuntimes); + + return new WorldBuildTopology(systems, systemRuntimes, systemsById, spatialLayout); + } +} diff --git a/apps/backend/Universe/Simulation/BalanceService.cs b/apps/backend/Universe/Simulation/BalanceService.cs new file mode 100644 index 0000000..ddd996f --- /dev/null +++ b/apps/backend/Universe/Simulation/BalanceService.cs @@ -0,0 +1,165 @@ +using Microsoft.Extensions.Options; + +namespace SpaceGame.Api.Universe.Simulation; + +public sealed class BalanceService : IBalanceService +{ + private readonly Lock _sync = new(); + private BalanceOptions _current; + + public BalanceService(IOptions defaults) + { + _current = Sanitize(defaults.Value); + } + + public float SimulationSpeedMultiplier + { + get + { + lock (_sync) + { + return _current.SimulationSpeedMultiplier; + } + } + } + + public float YPlane + { + get + { + lock (_sync) + { + return _current.YPlane; + } + } + } + + public float ArrivalThreshold + { + get + { + lock (_sync) + { + return _current.ArrivalThreshold; + } + } + } + + public float MiningRate + { + get + { + lock (_sync) + { + return _current.MiningRate; + } + } + } + + public float MiningCycleSeconds + { + get + { + lock (_sync) + { + return _current.MiningCycleSeconds; + } + } + } + + public float TransferRate + { + get + { + lock (_sync) + { + return _current.TransferRate; + } + } + } + + public float DockingDuration + { + get + { + lock (_sync) + { + return _current.DockingDuration; + } + } + } + + public float UndockingDuration + { + get + { + lock (_sync) + { + return _current.UndockingDuration; + } + } + } + + public float UndockDistance + { + get + { + lock (_sync) + { + return _current.UndockDistance; + } + } + } + + public BalanceOptions GetCurrent() + { + lock (_sync) + { + return Clone(_current); + } + } + + public BalanceOptions Update(BalanceOptions candidate) + { + lock (_sync) + { + _current = Sanitize(candidate); + return Clone(_current); + } + } + + private static BalanceOptions Clone(BalanceOptions value) + { + return new BalanceOptions + { + SimulationSpeedMultiplier = value.SimulationSpeedMultiplier, + YPlane = value.YPlane, + ArrivalThreshold = value.ArrivalThreshold, + MiningRate = value.MiningRate, + MiningCycleSeconds = value.MiningCycleSeconds, + TransferRate = value.TransferRate, + DockingDuration = value.DockingDuration, + UndockingDuration = value.UndockingDuration, + UndockDistance = value.UndockDistance, + }; + } + + private static BalanceOptions Sanitize(BalanceOptions candidate) + { + static float finiteOr(float value, float fallback) => + float.IsFinite(value) ? value : fallback; + + return new BalanceOptions + { + SimulationSpeedMultiplier = MathF.Max(0.01f, finiteOr(candidate.SimulationSpeedMultiplier, 1f)), + YPlane = MathF.Max(0f, finiteOr(candidate.YPlane, 0f)), + ArrivalThreshold = MathF.Max(0.1f, finiteOr(candidate.ArrivalThreshold, 16f)), + MiningRate = MathF.Max(0f, finiteOr(candidate.MiningRate, 10f)), + MiningCycleSeconds = MathF.Max(0.1f, finiteOr(candidate.MiningCycleSeconds, 10f)), + TransferRate = MathF.Max(0f, finiteOr(candidate.TransferRate, 56f)), + DockingDuration = MathF.Max(0.1f, finiteOr(candidate.DockingDuration, 1.2f)), + UndockingDuration = MathF.Max(0.1f, finiteOr(candidate.UndockingDuration, 1.2f)), + UndockDistance = MathF.Max(0f, finiteOr(candidate.UndockDistance, 42f)), + }; + } +} diff --git a/apps/backend/Universe/Simulation/IBalanceService.cs b/apps/backend/Universe/Simulation/IBalanceService.cs new file mode 100644 index 0000000..7a3f058 --- /dev/null +++ b/apps/backend/Universe/Simulation/IBalanceService.cs @@ -0,0 +1,16 @@ +namespace SpaceGame.Api.Universe.Simulation; + +public interface IBalanceService +{ + float SimulationSpeedMultiplier { get; } + float YPlane { get; } + float ArrivalThreshold { get; } + float MiningRate { get; } + float MiningCycleSeconds { get; } + float TransferRate { get; } + float DockingDuration { get; } + float UndockingDuration { get; } + float UndockDistance { get; } + BalanceOptions GetCurrent(); + BalanceOptions Update(BalanceOptions candidate); +} diff --git a/apps/backend/Universe/Simulation/ITimeService.cs b/apps/backend/Universe/Simulation/ITimeService.cs new file mode 100644 index 0000000..918c3c7 --- /dev/null +++ b/apps/backend/Universe/Simulation/ITimeService.cs @@ -0,0 +1,13 @@ +namespace SpaceGame.Api.Universe.Simulation; + +public interface ITimeService +{ + int TickIntervalMs { get; } + TimeSpan TickInterval { get; } + float TickDeltaSeconds { get; } + double SimulatedSecondsPerRealSecond { get; } + DateTimeOffset UtcNow(); + float ScaleSimulationDelta(float realDeltaSeconds); + double ScaleOrbitalDelta(float simulationDeltaSeconds); + double CreateInitialOrbitalTimeSeconds(int seed); +} diff --git a/apps/backend/Universe/Simulation/TimeService.cs b/apps/backend/Universe/Simulation/TimeService.cs new file mode 100644 index 0000000..cc9d143 --- /dev/null +++ b/apps/backend/Universe/Simulation/TimeService.cs @@ -0,0 +1,23 @@ +using Microsoft.Extensions.Options; + +namespace SpaceGame.Api.Universe.Simulation; + +public sealed class TimeService( + IBalanceService balance, + IOptions orbitalSimulation) : ITimeService +{ + public int TickIntervalMs => 200; + public TimeSpan TickInterval => TimeSpan.FromMilliseconds(TickIntervalMs); + public float TickDeltaSeconds => TickIntervalMs / 1000f; + public double SimulatedSecondsPerRealSecond => orbitalSimulation.Value.SimulatedSecondsPerRealSecond; + + public DateTimeOffset UtcNow() => DateTimeOffset.UtcNow; + + public float ScaleSimulationDelta(float realDeltaSeconds) => + realDeltaSeconds * MathF.Max(balance.SimulationSpeedMultiplier, 0.01f); + + public double ScaleOrbitalDelta(float simulationDeltaSeconds) => + simulationDeltaSeconds * SimulatedSecondsPerRealSecond; + + public double CreateInitialOrbitalTimeSeconds(int seed) => seed * 97d; +} diff --git a/apps/backend/Universe/Simulation/WorldGenerationOptions.cs b/apps/backend/Universe/Simulation/WorldGenerationOptions.cs index 989b66b..b8875e4 100644 --- a/apps/backend/Universe/Simulation/WorldGenerationOptions.cs +++ b/apps/backend/Universe/Simulation/WorldGenerationOptions.cs @@ -2,7 +2,9 @@ namespace SpaceGame.Api.Universe.Simulation; public sealed class WorldGenerationOptions { + public int Seed { get; init; } public int TargetSystemCount { get; init; } + public bool UseKnownSystems { get; init; } public int AiControllerFactionCount { get; init; } public bool GeneratePlayerFaction { get; init; } } diff --git a/apps/backend/Universe/Simulation/WorldService.cs b/apps/backend/Universe/Simulation/WorldService.cs index 273aef7..0edfc34 100644 --- a/apps/backend/Universe/Simulation/WorldService.cs +++ b/apps/backend/Universe/Simulation/WorldService.cs @@ -1,26 +1,57 @@ using System.Threading.Channels; using Microsoft.Extensions.Options; -using SpaceGame.Api.Universe.Bootstrap; +using SpaceGame.Api.Universe.Scenario; namespace SpaceGame.Api.Universe.Simulation; -public sealed class WorldService( - WorldBootstrapper worldBootstrapper, - IOptions balance, - IOptions orbitalSimulationOptions) +public sealed class WorldService { private const int DeltaHistoryLimit = 256; private readonly Lock _sync = new(); - private readonly OrbitalSimulationSnapshot _orbitalSimulation = new(orbitalSimulationOptions.Value.SimulatedSecondsPerRealSecond); - private readonly WorldBootstrapper _bootstrapper = worldBootstrapper; - private readonly SimulationEngine _engine = new(orbitalSimulationOptions.Value); + private readonly OrbitalSimulationSnapshot _orbitalSimulation; + private readonly SimulationEngine _engine; + private readonly ScenarioLoader _scenarioLoader; + private readonly WorldBuilder _worldBuilder; private readonly PlayerFactionService _playerFaction = new(); private readonly Dictionary _subscribers = []; private readonly Queue _history = []; - private SimulationWorld _world = worldBootstrapper.Bootstrap(); + private SimulationWorld _world = null!; + private string? _currentScenarioPath; + private WorldGenerationOptions? _currentWorldGenerationOptions; private long _sequence; - private BalanceOptions? _balanceOverride; + + public WorldService( + ScenarioLoader scenarioLoader, + WorldBuilder worldBuilder, + IBalanceService balance, + IOptions orbitalSimulationOptions) + { + _orbitalSimulation = new OrbitalSimulationSnapshot(orbitalSimulationOptions.Value.SimulatedSecondsPerRealSecond); + _scenarioLoader = scenarioLoader; + _worldBuilder = worldBuilder; + _engine = new SimulationEngine(orbitalSimulationOptions.Value, balance); + } + + public void New(WorldGenerationOptions options) + { + lock (_sync) + { + _currentScenarioPath = null; + _currentWorldGenerationOptions = options; + ReplaceWorldUnsafe(_worldBuilder.BuildFromGeneration(options), "new", "Generated new world"); + } + } + + public void LoadFromScenario(string scenarioPath) + { + lock (_sync) + { + _currentScenarioPath = scenarioPath; + _currentWorldGenerationOptions = null; + ReplaceWorldUnsafe(_worldBuilder.BuildFromScenario(_scenarioLoader.Load(scenarioPath)), "load-scenario", $"Loaded scenario {scenarioPath}"); + } + } public WorldSnapshot GetSnapshot() { @@ -46,35 +77,6 @@ public sealed class WorldService( } } - public BalanceOptions GetBalance() - { - lock (_sync) - { - return new BalanceOptions - { - SimulationSpeedMultiplier = balance.Value.SimulationSpeedMultiplier, - YPlane = balance.Value.YPlane, - ArrivalThreshold = balance.Value.ArrivalThreshold, - MiningRate = balance.Value.MiningRate, - MiningCycleSeconds = balance.Value.MiningCycleSeconds, - TransferRate = balance.Value.TransferRate, - DockingDuration = balance.Value.DockingDuration, - UndockingDuration = balance.Value.UndockingDuration, - UndockDistance = balance.Value.UndockDistance, - }; - } - } - - public BalanceOptions UpdateBalance(BalanceOptions balance) - { - lock (_sync) - { - _balanceOverride = SanitizeBalance(balance); - ApplyBalance(_balanceOverride); - return GetBalance(); - } - } - public ShipSnapshot? EnqueueShipOrder(string shipId, ShipOrderCommandRequest request) { lock (_sync) @@ -121,6 +123,11 @@ public sealed class WorldService( { lock (_sync) { + if (_world.PlayerFaction is null && _world.Factions.Count == 0) + { + return null; + } + _playerFaction.EnsureDomain(_world); return GetPlayerFactionSnapshotUnsafe(); } @@ -285,74 +292,61 @@ public sealed class WorldService( { lock (_sync) { - _world = _bootstrapper.Bootstrap(); - if (_balanceOverride is not null) + if (_currentScenarioPath is not null) { - ApplyBalance(_balanceOverride); + ReplaceWorldUnsafe( + _worldBuilder.BuildFromScenario(_scenarioLoader.Load(_currentScenarioPath)), + "reset", + "World reset requested"); } - _sequence += 1; - _history.Clear(); - - var resetDelta = new WorldDelta( - _sequence, - _world.TickIntervalMs, - _world.OrbitalTimeSeconds, - _orbitalSimulation, - DateTimeOffset.UtcNow, - true, - [new SimulationEventRecord("world", "world", "reset", "World reset requested", DateTimeOffset.UtcNow, "world", "universe", "world")], - [], - [], - [], - [], - [], - [], - [], - [], - [], - null, - null); - - _history.Enqueue(resetDelta); - foreach (var subscriber in _subscribers.Values.ToList()) + else if (_currentWorldGenerationOptions is not null) { - subscriber.Channel.Writer.TryWrite(FilterDeltaForScope(resetDelta, subscriber.Scope)); + ReplaceWorldUnsafe( + _worldBuilder.BuildFromGeneration(_currentWorldGenerationOptions), + "reset", + "World reset requested"); + } + else + { + throw new InvalidOperationException("No world source is configured."); } return _engine.BuildSnapshot(_world, _sequence); } } - private void ApplyBalance(BalanceOptions value) + private void ReplaceWorldUnsafe(SimulationWorld world, string eventKind, string eventMessage) { - balance.Value.SimulationSpeedMultiplier = value.SimulationSpeedMultiplier; - balance.Value.YPlane = value.YPlane; - balance.Value.ArrivalThreshold = value.ArrivalThreshold; - balance.Value.MiningRate = value.MiningRate; - balance.Value.MiningCycleSeconds = value.MiningCycleSeconds; - balance.Value.TransferRate = value.TransferRate; - balance.Value.DockingDuration = value.DockingDuration; - balance.Value.UndockingDuration = value.UndockingDuration; - balance.Value.UndockDistance = value.UndockDistance; - } + _world = world; + _sequence += 1; + _history.Clear(); - private static BalanceOptions SanitizeBalance(BalanceOptions candidate) - { - static float finiteOr(float value, float fallback) => - float.IsFinite(value) ? value : fallback; + var eventTime = DateTimeOffset.UtcNow; + var worldDelta = new WorldDelta( + _sequence, + _world.TickIntervalMs, + _world.OrbitalTimeSeconds, + _orbitalSimulation, + eventTime, + true, + [new SimulationEventRecord("world", "world", eventKind, eventMessage, eventTime, "world", "universe", "world")], + [], + [], + [], + [], + [], + [], + [], + [], + [], + null, + null); - return new BalanceOptions + _history.Enqueue(worldDelta); + foreach (var subscriber in _subscribers.Values.ToList()) { - SimulationSpeedMultiplier = MathF.Max(0.01f, finiteOr(candidate.SimulationSpeedMultiplier, 1f)), - YPlane = MathF.Max(0f, finiteOr(candidate.YPlane, 0f)), - ArrivalThreshold = MathF.Max(0.1f, finiteOr(candidate.ArrivalThreshold, 16f)), - MiningRate = MathF.Max(0f, finiteOr(candidate.MiningRate, 10f)), - MiningCycleSeconds = MathF.Max(0.1f, finiteOr(candidate.MiningCycleSeconds, 10f)), - TransferRate = MathF.Max(0f, finiteOr(candidate.TransferRate, 56f)), - DockingDuration = MathF.Max(0.1f, finiteOr(candidate.DockingDuration, 1.2f)), - UndockingDuration = MathF.Max(0.1f, finiteOr(candidate.UndockingDuration, 1.2f)), - UndockDistance = MathF.Max(0f, finiteOr(candidate.UndockDistance, 42f)), - }; + subscriber.Channel.Writer.TryWrite(FilterDeltaForScope(worldDelta, subscriber.Scope)); + } } private ShipSnapshot? GetShipSnapshotUnsafe(string shipId) => diff --git a/apps/backend/appsettings.Development.json b/apps/backend/appsettings.Development.json index 9b0d1f4..0cc03e9 100644 --- a/apps/backend/appsettings.Development.json +++ b/apps/backend/appsettings.Development.json @@ -7,7 +7,7 @@ }, "WorldGeneration": { "TargetSystemCount": 2, - "IncludeSolSystem": true, + "UseKnownSystems": true, "AiControllerFactionCount": 0, "GeneratePlayerFaction": false }, diff --git a/apps/backend/appsettings.json b/apps/backend/appsettings.json index c4d8fe7..9f83ed7 100644 --- a/apps/backend/appsettings.json +++ b/apps/backend/appsettings.json @@ -5,9 +5,12 @@ "Microsoft.AspNetCore": "Warning" } }, + "StaticData": { + "DataRoot": "../../shared/data/" + }, "WorldGeneration": { "TargetSystemCount": 160, - "IncludeSolSystem": true + "UseKnownSystems": true }, "Balance": { "SimulationSpeedMultiplier": 1.5, diff --git a/shared/data/cargo-types.json b/shared/data/cargo-types.json new file mode 100644 index 0000000..b936353 --- /dev/null +++ b/shared/data/cargo-types.json @@ -0,0 +1,18 @@ +[ + { + "id": "liquid", + "name": "Liquid" + }, + { + "id": "solid", + "name": "Solid" + }, + { + "id": "container", + "name": "Container" + }, + { + "id": "condensate", + "name": "Condensate" + } +] \ No newline at end of file diff --git a/shared/data/effects.json b/shared/data/effects.json new file mode 100644 index 0000000..1d9331d --- /dev/null +++ b/shared/data/effects.json @@ -0,0 +1,4 @@ +[ + "work", + "sunlight" +] \ No newline at end of file diff --git a/shared/data/equipment-classes.json b/shared/data/equipment-classes.json new file mode 100644 index 0000000..8fb3400 --- /dev/null +++ b/shared/data/equipment-classes.json @@ -0,0 +1,14 @@ +[ + "countermeasure", + "weapon", + "missileturret", + "turret", + "engine", + "missile", + "shieldgenerator", + "scanner", + "mine", + "missilelauncher", + "ship_s", + "ship_xs" +] \ No newline at end of file diff --git a/shared/data/equipment-types.json b/shared/data/equipment-types.json new file mode 100644 index 0000000..039e911 --- /dev/null +++ b/shared/data/equipment-types.json @@ -0,0 +1,11 @@ +[ + "countermeasures", + "drones", + "engines", + "missiles", + "shields", + "software", + "thrusters", + "turrets", + "weapons" +] \ No newline at end of file diff --git a/shared/data/equipment.json b/shared/data/equipment.json new file mode 100644 index 0000000..d7cc181 --- /dev/null +++ b/shared/data/equipment.json @@ -0,0 +1,24596 @@ +[ + { + "id": "countermeasure_flares_01", + "version": 0, + "name": "Flares", + "description": "A piece of equipment tried and tested over hundreds of years, the modern flare has continued to be a boon for many a combat pilot in recent years. Forcibly ejected from a compartment of a ship, flares then explode so that the sudden heat signature may distract a guided missile from its original target, and before exploding additionally send out a small electro-magnetic signature that can disrupt a target lock before a missile is even fired.", + "type": "countermeasures", + "equipmentClass": "countermeasure", + "price": { + "min": 2179, + "max": 2663, + "avg": 2421 + }, + "production": [ + { + "time": 1, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedcomposites", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 9 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "ore", + "amount": 4 + }, + { + "ware": "silicon", + "amount": 3 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 90 + }, + { + "ware": "metallicmicrolattice", + "amount": 20 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "hullparts", + "amount": 1 + } + ] + } + ] + }, + { + "id": "engine_arg_l_allround_01_mk1", + "version": 0, + "name": "ARG L All-round Engine Mk1", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "large", + "hull": 4033, + "price": { + "min": 321518, + "max": 392966, + "avg": 357242 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 4206, + "reverse": 4627 + }, + "travel": { + "thrust": 31, + "attack": 75, + "charge": 20, + "release": 0 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 147 + }, + { + "ware": "energycells", + "amount": 25 + }, + { + "ware": "engineparts", + "amount": 67 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 19 + }, + { + "ware": "energycells", + "amount": 206 + }, + { + "ware": "hullparts", + "amount": 108 + } + ] + } + ] + }, + { + "id": "engine_arg_l_travel_01_mk1", + "version": 0, + "name": "ARG L Travel Engine Mk1", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "large", + "hull": 4033, + "price": { + "min": 337593, + "max": 412614, + "avg": 375104 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 4006, + "reverse": 3605 + }, + "travel": { + "thrust": 33, + "attack": 85, + "charge": 20, + "release": 0 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 148 + }, + { + "ware": "energycells", + "amount": 37 + }, + { + "ware": "engineparts", + "amount": 76 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 19 + }, + { + "ware": "energycells", + "amount": 304 + }, + { + "ware": "hullparts", + "amount": 111 + } + ] + } + ] + }, + { + "id": "engine_arg_m_allround_01_mk1", + "version": 0, + "name": "ARG M All-round Engine Mk1", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 11767, + "max": 14382, + "avg": 13074 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 1002, + "reverse": 952 + }, + "travel": { + "thrust": 9, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "engineparts", + "amount": 5 + } + ] + }, + { + "time": 15, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 99 + }, + { + "ware": "hullparts", + "amount": 3 + } + ] + } + ] + }, + { + "id": "engine_arg_m_allround_01_mk2", + "version": 0, + "name": "ARG M All-round Engine Mk2", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 58166, + "max": 71092, + "avg": 64629 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 1212, + "reverse": 1228 + }, + "travel": { + "thrust": 9, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 18 + }, + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "engineparts", + "amount": 22 + } + ] + }, + { + "time": 15, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 61 + }, + { + "ware": "hullparts", + "amount": 18 + } + ] + } + ] + }, + { + "id": "engine_arg_m_allround_01_mk3", + "version": 0, + "name": "ARG M All-round Engine Mk3", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 287722, + "max": 351660, + "avg": 319691 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 1353, + "reverse": 1413 + }, + "travel": { + "thrust": 9, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 90 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "engineparts", + "amount": 110 + } + ] + }, + { + "time": 15, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 15 + }, + { + "ware": "energycells", + "amount": 241 + }, + { + "ware": "hullparts", + "amount": 88 + } + ] + } + ] + }, + { + "id": "engine_arg_m_combat_01_mk1", + "version": 0, + "name": "ARG M Combat Engine Mk1", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 14357, + "max": 17547, + "avg": 15952 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 1052, + "reverse": 1105 + }, + "travel": { + "thrust": 8, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "engineparts", + "amount": 7 + } + ] + }, + { + "time": 15, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 109 + }, + { + "ware": "hullparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "engine_arg_m_combat_01_mk2", + "version": 0, + "name": "ARG M Combat Engine Mk2", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 69711, + "max": 85202, + "avg": 77457 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "yaki", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 1273, + "reverse": 1471 + }, + "travel": { + "thrust": 8, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 22 + }, + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "engineparts", + "amount": 26 + } + ] + }, + { + "time": 15, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 156 + }, + { + "ware": "hullparts", + "amount": 21 + } + ] + } + ] + }, + { + "id": "engine_arg_m_combat_01_mk3", + "version": 0, + "name": "ARG M Combat Engine Mk3", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 345444, + "max": 422209, + "avg": 383827 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "yaki", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 1420, + "reverse": 1715 + }, + "travel": { + "thrust": 8, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 110 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "engineparts", + "amount": 130 + } + ] + }, + { + "time": 15, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 18 + }, + { + "ware": "energycells", + "amount": 293 + }, + { + "ware": "hullparts", + "amount": 106 + } + ] + } + ] + }, + { + "id": "engine_arg_m_travel_01_mk1", + "version": 0, + "name": "ARG M Travel Engine Mk1", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 13062, + "max": 15964, + "avg": 14513 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 1002, + "reverse": 902 + }, + "travel": { + "thrust": 12, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "engineparts", + "amount": 6 + } + ] + }, + { + "time": 15, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 97 + }, + { + "ware": "hullparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "engine_arg_m_travel_01_mk2", + "version": 0, + "name": "ARG M Travel Engine Mk2", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 65234, + "max": 79730, + "avg": 72482 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 1212, + "reverse": 1091 + }, + "travel": { + "thrust": 12, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 20 + }, + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "engineparts", + "amount": 25 + } + ] + }, + { + "time": 15, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 113 + }, + { + "ware": "hullparts", + "amount": 20 + } + ] + } + ] + }, + { + "id": "engine_arg_m_travel_01_mk3", + "version": 0, + "name": "ARG M Travel Engine Mk3", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 331013, + "max": 404572, + "avg": 367793 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 1353, + "reverse": 1217 + }, + "travel": { + "thrust": 12, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 105 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "engineparts", + "amount": 125 + } + ] + }, + { + "time": 15, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 17 + }, + { + "ware": "energycells", + "amount": 318 + }, + { + "ware": "hullparts", + "amount": 101 + } + ] + } + ] + }, + { + "id": "engine_arg_s_allround_01_mk1", + "version": 0, + "name": "ARG S All-round Engine Mk1", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 5526, + "max": 6754, + "avg": 6140 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 396, + "reverse": 416 + }, + "travel": { + "thrust": 14, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 4 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 42 + }, + { + "ware": "hullparts", + "amount": 1 + } + ] + } + ] + }, + { + "id": "engine_arg_s_allround_01_mk2", + "version": 0, + "name": "ARG S All-round Engine Mk2", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 26370, + "max": 32230, + "avg": 29300 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 479, + "reverse": 574 + }, + "travel": { + "thrust": 14, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 10 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 79 + }, + { + "ware": "hullparts", + "amount": 8 + } + ] + } + ] + }, + { + "id": "engine_arg_s_allround_01_mk3", + "version": 0, + "name": "ARG S All-round Engine Mk3", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 123301, + "max": 150701, + "avg": 137001 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 535, + "reverse": 679 + }, + "travel": { + "thrust": 14, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 40 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "engineparts", + "amount": 45 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 176 + }, + { + "ware": "hullparts", + "amount": 38 + } + ] + } + ] + }, + { + "id": "engine_arg_s_combat_01_mk1", + "version": 0, + "name": "ARG S Combat Engine Mk1", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 8116, + "max": 9919, + "avg": 9017 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "yaki", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 416, + "reverse": 499 + }, + "travel": { + "thrust": 12, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 6 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 52 + }, + { + "ware": "hullparts", + "amount": 2 + } + ] + } + ] + }, + { + "id": "engine_arg_s_combat_01_mk2", + "version": 0, + "name": "ARG S Combat Engine Mk2", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 40504, + "max": 49505, + "avg": 45005 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 503, + "reverse": 710 + }, + "travel": { + "thrust": 12, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 12 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 16 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 56 + }, + { + "ware": "hullparts", + "amount": 12 + } + ] + } + ] + }, + { + "id": "engine_arg_s_combat_01_mk3", + "version": 0, + "name": "ARG S Combat Engine Mk3", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 181023, + "max": 221250, + "avg": 201137 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 561, + "reverse": 850 + }, + "travel": { + "thrust": 12, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 60 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "engineparts", + "amount": 65 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 9 + }, + { + "ware": "energycells", + "amount": 228 + }, + { + "ware": "hullparts", + "amount": 56 + } + ] + } + ] + }, + { + "id": "engine_arg_s_travel_01_mk1", + "version": 0, + "name": "ARG S Travel Engine Mk1", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 6821, + "max": 8336, + "avg": 7579 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 396, + "reverse": 396 + }, + "travel": { + "thrust": 18, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 54 + }, + { + "ware": "hullparts", + "amount": 1 + } + ] + } + ] + }, + { + "id": "engine_arg_s_travel_01_mk2", + "version": 0, + "name": "ARG S Travel Engine Mk2", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 34732, + "max": 42450, + "avg": 38591 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 479, + "reverse": 499 + }, + "travel": { + "thrust": 18, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 10 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 14 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 142 + }, + { + "ware": "hullparts", + "amount": 10 + } + ] + } + ] + }, + { + "id": "engine_arg_s_travel_01_mk3", + "version": 0, + "name": "ARG S Travel Engine Mk3", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 166592, + "max": 203613, + "avg": 185103 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 535, + "reverse": 568 + }, + "travel": { + "thrust": 18, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 55 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "engineparts", + "amount": 60 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 9 + }, + { + "ware": "energycells", + "amount": 126 + }, + { + "ware": "hullparts", + "amount": 51 + } + ] + } + ] + }, + { + "id": "engine_arg_xl_allround_01_mk1", + "version": 0, + "name": "ARG XL All-round Engine Mk1", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "extralarge", + "hull": 12193, + "price": { + "min": 424061, + "max": 518297, + "avg": 471179 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 11076, + "reverse": 12184 + }, + "travel": { + "thrust": 31, + "attack": 75, + "charge": 30, + "release": 0 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 193 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "engineparts", + "amount": 89 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 25 + }, + { + "ware": "energycells", + "amount": 290 + }, + { + "ware": "hullparts", + "amount": 142 + } + ] + } + ] + }, + { + "id": "engine_arg_xl_travel_01_mk1", + "version": 0, + "name": "ARG XL Travel Engine Mk1", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "extralarge", + "hull": 9955, + "price": { + "min": 445263, + "max": 544210, + "avg": 494737 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 10549, + "reverse": 9494 + }, + "travel": { + "thrust": 33, + "attack": 85, + "charge": 30, + "release": 0 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 195 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "engineparts", + "amount": 101 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 25 + }, + { + "ware": "energycells", + "amount": 406 + }, + { + "ware": "hullparts", + "amount": 147 + } + ] + } + ] + }, + { + "id": "engine_kha_m_combat_01_mk1", + "version": 0, + "name": "KHA M Combat Engine Mk1", + "description": "No information available", + "race": "khaak", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "owners": [ + "khaak" + ], + "thrust": { + "forward": 1400, + "reverse": 1600 + }, + "travel": { + "thrust": 7, + "attack": 10, + "charge": 3, + "release": 0 + }, + "production": [] + }, + { + "id": "engine_kha_m_combat_02_mk1", + "version": 0, + "name": "KHA M Combat Engine Array Mk1", + "description": "No information available", + "race": "khaak", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "owners": [ + "khaak" + ], + "thrust": { + "forward": 1400, + "reverse": 1662 + }, + "travel": { + "thrust": 7, + "attack": 10, + "charge": 3, + "release": 0 + }, + "production": [] + }, + { + "id": "engine_kha_s_combat_01_mk1", + "version": 0, + "name": "KHA S Combat Engine Mk1", + "description": "No information available", + "race": "khaak", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "owners": [ + "khaak" + ], + "thrust": { + "forward": 500, + "reverse": 770 + }, + "travel": { + "thrust": 7, + "attack": 10, + "charge": 2, + "release": 0 + }, + "production": [] + }, + { + "id": "engine_par_l_allround_01_mk1", + "version": 0, + "name": "PAR L All-round Engine Mk1", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "large", + "hull": 4018, + "price": { + "min": 324732, + "max": 396895, + "avg": 360814 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 4332, + "reverse": 4766 + }, + "travel": { + "thrust": 29, + "attack": 75, + "charge": 20, + "release": 0 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 147 + }, + { + "ware": "energycells", + "amount": 25 + }, + { + "ware": "engineparts", + "amount": 67 + } + ] + } + ] + }, + { + "id": "engine_par_l_travel_01_mk1", + "version": 0, + "name": "PAR L Travel Engine Mk1", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "large", + "hull": 4018, + "price": { + "min": 340969, + "max": 416740, + "avg": 378855 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 4126, + "reverse": 3713 + }, + "travel": { + "thrust": 31, + "attack": 85, + "charge": 20, + "release": 0 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 148 + }, + { + "ware": "energycells", + "amount": 37 + }, + { + "ware": "engineparts", + "amount": 76 + } + ] + } + ] + }, + { + "id": "engine_par_m_allround_01_mk1", + "version": 0, + "name": "PAR M All-round Engine Mk1", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 11767, + "max": 14382, + "avg": 13074 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 1032, + "reverse": 980 + }, + "travel": { + "thrust": 8, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "engineparts", + "amount": 5 + } + ] + } + ] + }, + { + "id": "engine_par_m_allround_01_mk2", + "version": 0, + "name": "PAR M All-round Engine Mk2", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 58166, + "max": 71092, + "avg": 64629 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 1249, + "reverse": 1265 + }, + "travel": { + "thrust": 8, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 18 + }, + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "engineparts", + "amount": 22 + } + ] + } + ] + }, + { + "id": "engine_par_m_allround_01_mk3", + "version": 0, + "name": "PAR M All-round Engine Mk3", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 287722, + "max": 351660, + "avg": 319691 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 1393, + "reverse": 1455 + }, + "travel": { + "thrust": 8, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 90 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "engineparts", + "amount": 110 + } + ] + } + ] + }, + { + "id": "engine_par_m_combat_01_mk1", + "version": 0, + "name": "PAR M Combat Engine Mk1", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 14357, + "max": 17547, + "avg": 15952 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity", + "yaki" + ], + "thrust": { + "forward": 1084, + "reverse": 1138 + }, + "travel": { + "thrust": 7, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "engineparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "engine_par_m_combat_01_mk2", + "version": 0, + "name": "PAR M Combat Engine Mk2", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 69711, + "max": 85202, + "avg": 77457 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 1311, + "reverse": 1515 + }, + "travel": { + "thrust": 7, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 22 + }, + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "engineparts", + "amount": 26 + } + ] + } + ] + }, + { + "id": "engine_par_m_combat_01_mk3", + "version": 0, + "name": "PAR M Combat Engine Mk3", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 345444, + "max": 422209, + "avg": 383827 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 1463, + "reverse": 1766 + }, + "travel": { + "thrust": 7, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 110 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "engineparts", + "amount": 130 + } + ] + } + ] + }, + { + "id": "engine_par_m_travel_01_mk1", + "version": 0, + "name": "PAR M Travel Engine Mk1", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 13062, + "max": 15964, + "avg": 14513 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 1032, + "reverse": 929 + }, + "travel": { + "thrust": 11, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "engineparts", + "amount": 6 + } + ] + } + ] + }, + { + "id": "engine_par_m_travel_01_mk2", + "version": 0, + "name": "PAR M Travel Engine Mk2", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 65234, + "max": 79730, + "avg": 72482 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 1249, + "reverse": 1124 + }, + "travel": { + "thrust": 11, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 20 + }, + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "engineparts", + "amount": 25 + } + ] + } + ] + }, + { + "id": "engine_par_m_travel_01_mk3", + "version": 0, + "name": "PAR M Travel Engine Mk3", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 331013, + "max": 404572, + "avg": 367793 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 1393, + "reverse": 1254 + }, + "travel": { + "thrust": 11, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 105 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "engineparts", + "amount": 125 + } + ] + } + ] + }, + { + "id": "engine_par_s_allround_01_mk1", + "version": 0, + "name": "PAR S All-round Engine Mk1", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 5526, + "max": 6754, + "avg": 6140 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 408, + "reverse": 428 + }, + "travel": { + "thrust": 13, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "engine_par_s_allround_01_mk2", + "version": 0, + "name": "PAR S All-round Engine Mk2", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 26370, + "max": 32230, + "avg": 29300 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 494, + "reverse": 591 + }, + "travel": { + "thrust": 13, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 10 + } + ] + } + ] + }, + { + "id": "engine_par_s_allround_01_mk3", + "version": 0, + "name": "PAR S All-round Engine Mk3", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 123301, + "max": 150701, + "avg": 137001 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 551, + "reverse": 700 + }, + "travel": { + "thrust": 13, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 40 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "engineparts", + "amount": 45 + } + ] + } + ] + }, + { + "id": "engine_par_s_combat_01_mk1", + "version": 0, + "name": "PAR S Combat Engine Mk1", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 8116, + "max": 9919, + "avg": 9017 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 428, + "reverse": 514 + }, + "travel": { + "thrust": 11, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 6 + } + ] + } + ] + }, + { + "id": "engine_par_s_combat_01_mk2", + "version": 0, + "name": "PAR S Combat Engine Mk2", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 40504, + "max": 49505, + "avg": 45005 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity", + "yaki" + ], + "thrust": { + "forward": 518, + "reverse": 731 + }, + "travel": { + "thrust": 11, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 12 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 16 + } + ] + } + ] + }, + { + "id": "engine_par_s_combat_01_mk3", + "version": 0, + "name": "PAR S Combat Engine Mk3", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 181023, + "max": 221250, + "avg": 201137 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity", + "yaki" + ], + "thrust": { + "forward": 578, + "reverse": 876 + }, + "travel": { + "thrust": 11, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 60 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "engineparts", + "amount": 65 + } + ] + } + ] + }, + { + "id": "engine_par_s_travel_01_mk1", + "version": 0, + "name": "PAR S Travel Engine Mk1", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 6821, + "max": 8336, + "avg": 7579 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 408, + "reverse": 408 + }, + "travel": { + "thrust": 17, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 5 + } + ] + } + ] + }, + { + "id": "engine_par_s_travel_01_mk2", + "version": 0, + "name": "PAR S Travel Engine Mk2", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 34732, + "max": 42450, + "avg": 38591 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 494, + "reverse": 514 + }, + "travel": { + "thrust": 17, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 10 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 14 + } + ] + } + ] + }, + { + "id": "engine_par_s_travel_01_mk3", + "version": 0, + "name": "PAR S Travel Engine Mk3", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 166592, + "max": 203613, + "avg": 185103 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 551, + "reverse": 585 + }, + "travel": { + "thrust": 17, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 55 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "engineparts", + "amount": 60 + } + ] + } + ] + }, + { + "id": "engine_par_xl_allround_01_mk1", + "version": 0, + "name": "PAR XL All-round Engine Mk1", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "extralarge", + "hull": 9899, + "price": { + "min": 428301, + "max": 523479, + "avg": 475890 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 11408, + "reverse": 12549 + }, + "travel": { + "thrust": 29, + "attack": 75, + "charge": 30, + "release": 0 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 193 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "engineparts", + "amount": 89 + } + ] + } + ] + }, + { + "id": "engine_par_xl_travel_01_mk1", + "version": 0, + "name": "PAR XL Travel Engine Mk1", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "extralarge", + "hull": 9955, + "price": { + "min": 449716, + "max": 549653, + "avg": 499685 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 10865, + "reverse": 9779 + }, + "travel": { + "thrust": 31, + "attack": 85, + "charge": 30, + "release": 0 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 205 + }, + { + "ware": "energycells", + "amount": 56 + }, + { + "ware": "engineparts", + "amount": 91 + } + ] + } + ] + }, + { + "id": "engine_tel_l_allround_01_mk1", + "version": 0, + "name": "TEL L All-round Engine Mk1", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "large", + "hull": 4018, + "price": { + "min": 321235, + "max": 392621, + "avg": 356928 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "thrust": { + "forward": 4080, + "reverse": 4488 + }, + "travel": { + "thrust": 31, + "attack": 60, + "charge": 20, + "release": 0 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 147 + }, + { + "ware": "energycells", + "amount": 25 + }, + { + "ware": "engineparts", + "amount": 67 + } + ] + } + ] + }, + { + "id": "engine_tel_l_travel_01_mk1", + "version": 0, + "name": "TEL L Travel Engine Mk1", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "large", + "hull": 4018, + "price": { + "min": 337296, + "max": 412251, + "avg": 374774 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 3886, + "reverse": 3497 + }, + "travel": { + "thrust": 33, + "attack": 68, + "charge": 20, + "release": 0 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 148 + }, + { + "ware": "energycells", + "amount": 39 + }, + { + "ware": "engineparts", + "amount": 76 + } + ] + } + ] + }, + { + "id": "engine_tel_m_allround_01_mk1", + "version": 0, + "name": "TEL M All-round Engine Mk1", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 11757, + "max": 14370, + "avg": 13064 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "thrust": { + "forward": 972, + "reverse": 923 + }, + "travel": { + "thrust": 9, + "attack": 24, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "engineparts", + "amount": 5 + } + ] + } + ] + }, + { + "id": "engine_tel_m_allround_01_mk2", + "version": 0, + "name": "TEL M All-round Engine Mk2", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 58118, + "max": 71033, + "avg": 64575 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 1176, + "reverse": 1192 + }, + "travel": { + "thrust": 9, + "attack": 24, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 18 + }, + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "engineparts", + "amount": 22 + } + ] + }, + { + "time": 15, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 61 + }, + { + "ware": "hullparts", + "amount": 18 + } + ] + } + ] + }, + { + "id": "engine_tel_m_allround_01_mk3", + "version": 0, + "name": "TEL M All-round Engine Mk3", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 287479, + "max": 351363, + "avg": 319421 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 1312, + "reverse": 1370 + }, + "travel": { + "thrust": 9, + "attack": 24, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 90 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "engineparts", + "amount": 110 + } + ] + } + ] + }, + { + "id": "engine_tel_m_combat_01_mk1", + "version": 0, + "name": "TEL M Combat Engine Mk1", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 14345, + "max": 17533, + "avg": 15939 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "thrust": { + "forward": 1021, + "reverse": 1072 + }, + "travel": { + "thrust": 8, + "attack": 12, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "engineparts", + "amount": 7 + } + ] + }, + { + "time": 15, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 109 + }, + { + "ware": "hullparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "engine_tel_m_combat_01_mk2", + "version": 0, + "name": "TEL M Combat Engine Mk2", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 69652, + "max": 85131, + "avg": 77391 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "thrust": { + "forward": 1235, + "reverse": 1427 + }, + "travel": { + "thrust": 8, + "attack": 12, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 22 + }, + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "engineparts", + "amount": 26 + } + ] + } + ] + }, + { + "id": "engine_tel_m_combat_01_mk3", + "version": 0, + "name": "TEL M Combat Engine Mk3", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 345151, + "max": 421851, + "avg": 383501 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 1378, + "reverse": 1663 + }, + "travel": { + "thrust": 8, + "attack": 12, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 110 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "engineparts", + "amount": 130 + } + ] + } + ] + }, + { + "id": "engine_tel_m_travel_01_mk1", + "version": 0, + "name": "TEL M Travel Engine Mk1", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 13051, + "max": 15952, + "avg": 14501 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "thrust": { + "forward": 972, + "reverse": 875 + }, + "travel": { + "thrust": 12, + "attack": 36, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "engineparts", + "amount": 6 + } + ] + } + ] + }, + { + "id": "engine_tel_m_travel_01_mk2", + "version": 0, + "name": "TEL M Travel Engine Mk2", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 65179, + "max": 79663, + "avg": 72421 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 1176, + "reverse": 1058 + }, + "travel": { + "thrust": 12, + "attack": 36, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 20 + }, + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "engineparts", + "amount": 25 + } + ] + } + ] + }, + { + "id": "engine_tel_m_travel_01_mk3", + "version": 0, + "name": "TEL M Travel Engine Mk3", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 330733, + "max": 404229, + "avg": 367481 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 1312, + "reverse": 1181 + }, + "travel": { + "thrust": 12, + "attack": 30, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 105 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "engineparts", + "amount": 125 + } + ] + }, + { + "time": 15, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 17 + }, + { + "ware": "energycells", + "amount": 318 + }, + { + "ware": "hullparts", + "amount": 101 + } + ] + } + ] + }, + { + "id": "engine_tel_s_allround_01_mk1", + "version": 0, + "name": "TEL S All-round Engine Mk1", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 5522, + "max": 6749, + "avg": 6135 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "thrust": { + "forward": 384, + "reverse": 403 + }, + "travel": { + "thrust": 14, + "attack": 24, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "engine_tel_s_allround_01_mk2", + "version": 0, + "name": "TEL S All-round Engine Mk2", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 26348, + "max": 32203, + "avg": 29276 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 465, + "reverse": 557 + }, + "travel": { + "thrust": 14, + "attack": 24, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 10 + } + ] + } + ] + }, + { + "id": "engine_tel_s_allround_01_mk3", + "version": 0, + "name": "TEL S All-round Engine Mk3", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 123197, + "max": 150574, + "avg": 136885 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 519, + "reverse": 659 + }, + "travel": { + "thrust": 14, + "attack": 24, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 40 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "engineparts", + "amount": 45 + } + ] + } + ] + }, + { + "id": "engine_tel_s_combat_01_mk1", + "version": 0, + "name": "TEL S Combat Engine Mk1", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 8110, + "max": 9912, + "avg": 9011 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "thrust": { + "forward": 403, + "reverse": 484 + }, + "travel": { + "thrust": 12, + "attack": 12, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 6 + } + ] + } + ] + }, + { + "id": "engine_tel_s_combat_01_mk2", + "version": 0, + "name": "TEL S Combat Engine Mk2", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 40471, + "max": 49464, + "avg": 44967 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "thrust": { + "forward": 488, + "reverse": 688 + }, + "travel": { + "thrust": 12, + "attack": 12, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 12 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 16 + } + ] + } + ] + }, + { + "id": "engine_tel_s_combat_01_mk3", + "version": 0, + "name": "TEL S Combat Engine Mk3", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 180869, + "max": 221062, + "avg": 200966 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 544, + "reverse": 825 + }, + "travel": { + "thrust": 12, + "attack": 12, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 60 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "engineparts", + "amount": 65 + } + ] + } + ] + }, + { + "id": "engine_tel_s_travel_01_mk1", + "version": 0, + "name": "TEL S Travel Engine Mk1", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 6816, + "max": 8330, + "avg": 7573 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "thrust": { + "forward": 384, + "reverse": 384 + }, + "travel": { + "thrust": 18, + "attack": 36, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 5 + } + ] + } + ] + }, + { + "id": "engine_tel_s_travel_01_mk2", + "version": 0, + "name": "TEL S Travel Engine Mk2", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 34703, + "max": 42415, + "avg": 38559 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 465, + "reverse": 484 + }, + "travel": { + "thrust": 18, + "attack": 36, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 10 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 14 + } + ] + } + ] + }, + { + "id": "engine_tel_s_travel_01_mk3", + "version": 0, + "name": "TEL S Travel Engine Mk3", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 166451, + "max": 203440, + "avg": 184946 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 519, + "reverse": 551 + }, + "travel": { + "thrust": 18, + "attack": 36, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 55 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "engineparts", + "amount": 60 + } + ] + } + ] + }, + { + "id": "engine_tel_xl_allround_01_mk1", + "version": 0, + "name": "TEL XL All-round Engine Mk1", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "extralarge", + "hull": 9939, + "price": { + "min": 423689, + "max": 517843, + "avg": 470766 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 10744, + "reverse": 11818 + }, + "travel": { + "thrust": 31, + "attack": 60, + "charge": 30, + "release": 0 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 193 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "engineparts", + "amount": 89 + } + ] + } + ] + }, + { + "id": "engine_tel_xl_travel_01_mk1", + "version": 0, + "name": "TEL XL Travel Engine Mk1", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "extralarge", + "hull": 9955, + "price": { + "min": 444873, + "max": 543734, + "avg": 494304 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 10232, + "reverse": 9209 + }, + "travel": { + "thrust": 33, + "attack": 68, + "charge": 30, + "release": 0 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 196 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "engineparts", + "amount": 100 + } + ] + } + ] + }, + { + "id": "engine_xen_l_allround_01_mk1", + "version": 0, + "name": "XEN L All-round Engine Mk1", + "description": "No information available", + "race": "xenon", + "type": "engines", + "equipmentClass": "engine", + "size": "large", + "hull": 4033, + "price": { + "min": 321322, + "max": 392726, + "avg": 357024 + }, + "owners": [ + "xenon" + ], + "thrust": { + "forward": 4206, + "reverse": 4627 + }, + "travel": { + "thrust": 25, + "attack": 49, + "charge": 20, + "release": 0 + }, + "production": [ + { + "time": 8, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 25 + }, + { + "ware": "ore", + "amount": 411 + }, + { + "ware": "silicon", + "amount": 411 + } + ] + } + ] + }, + { + "id": "engine_xen_m_combat_01_mk1", + "version": 0, + "name": "XEN M Combat Engine Mk1", + "description": "No information available", + "race": "xenon", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 15811, + "max": 19325, + "avg": 17568 + }, + "owners": [ + "xenon" + ], + "thrust": { + "forward": 1286, + "reverse": 1486 + }, + "travel": { + "thrust": 8, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 4, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "ore", + "amount": 19 + }, + { + "ware": "silicon", + "amount": 19 + } + ] + } + ] + }, + { + "id": "engine_xen_m_travel_01_mk1", + "version": 0, + "name": "XEN M Travel Engine Mk1", + "description": "No information available", + "race": "xenon", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 14256, + "max": 17424, + "avg": 15840 + }, + "owners": [ + "xenon" + ], + "thrust": { + "forward": 1224, + "reverse": 1102 + }, + "travel": { + "thrust": 12, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "ore", + "amount": 17 + }, + { + "ware": "silicon", + "amount": 17 + } + ] + } + ] + }, + { + "id": "engine_xen_s_combat_01_mk1", + "version": 0, + "name": "XEN S Combat Engine Mk1", + "description": "No information available", + "race": "xenon", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 6134, + "max": 7498, + "avg": 6816 + }, + "owners": [ + "xenon" + ], + "thrust": { + "forward": 503, + "reverse": 768 + }, + "travel": { + "thrust": 18, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 2, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 7 + }, + { + "ware": "silicon", + "amount": 7 + } + ] + } + ] + }, + { + "id": "engine_xen_xl_allround_01_mk1", + "version": 0, + "name": "XEN XL All-round Engine Mk1", + "description": "No information available", + "race": "xenon", + "type": "engines", + "equipmentClass": "engine", + "size": "extralarge", + "hull": 29561, + "price": { + "min": 424138, + "max": 518390, + "avg": 471264 + }, + "owners": [ + "xenon" + ], + "thrust": { + "forward": 11076, + "reverse": 12184 + }, + "travel": { + "thrust": 25, + "attack": 49, + "charge": 30, + "release": 0 + }, + "production": [ + { + "time": 16, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "ore", + "amount": 541 + }, + { + "ware": "silicon", + "amount": 541 + } + ] + } + ] + }, + { + "id": "missile_cluster_heavy_mk1", + "version": 0, + "name": "Heavy Cluster Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 12141, + "hull": 2, + "price": { + "min": 1530, + "max": 2070, + "avg": 1800 + }, + "production": [ + { + "time": 3, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "missilecomponents", + "amount": 12 + } + ] + }, + { + "time": 3, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 8 + }, + { + "ware": "ore", + "amount": 4 + }, + { + "ware": "silicon", + "amount": 3 + } + ] + }, + { + "time": 3, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "metallicmicrolattice", + "amount": 27 + } + ] + }, + { + "time": 3, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 37 + } + ] + } + ] + }, + { + "id": "missile_cluster_light_mk1", + "version": 0, + "name": "Light Cluster Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 2361, + "hull": 1, + "price": { + "min": 680, + "max": 920, + "avg": 800 + }, + "production": [ + { + "time": 1.5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "missilecomponents", + "amount": 4 + } + ] + }, + { + "time": 2, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 6 + }, + { + "ware": "ore", + "amount": 2 + }, + { + "ware": "silicon", + "amount": 1 + } + ] + }, + { + "time": 1.5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "metallicmicrolattice", + "amount": 12 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 17 + } + ] + } + ] + }, + { + "id": "missile_dumbfire_heavy_mk1", + "version": 0, + "name": "Heavy Dumbfire Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 3960, + "hull": 2, + "price": { + "min": 451, + "max": 610, + "avg": 530 + }, + "production": [ + { + "time": 1, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 7 + }, + { + "ware": "missilecomponents", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 2 + }, + { + "ware": "ore", + "amount": 1 + }, + { + "ware": "silicon", + "amount": 1 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 7 + }, + { + "ware": "metallicmicrolattice", + "amount": 31 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 10 + } + ] + } + ] + }, + { + "id": "missile_dumbfire_heavy_mk2", + "version": 0, + "name": "Heavy Dumbfire Missile Mk2", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 4320, + "hull": 3, + "price": { + "min": 1539, + "max": 2082, + "avg": 1810 + }, + "production": [ + { + "time": 1.5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 14 + }, + { + "ware": "missilecomponents", + "amount": 25 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 9 + }, + { + "ware": "ore", + "amount": 4 + }, + { + "ware": "silicon", + "amount": 3 + } + ] + }, + { + "time": 1.5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 14 + }, + { + "ware": "metallicmicrolattice", + "amount": 32 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 28 + } + ] + } + ] + }, + { + "id": "missile_dumbfire_light_mk1", + "version": 0, + "name": "Light Dumbfire Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 1100, + "hull": 1, + "price": { + "min": 213, + "max": 288, + "avg": 250 + }, + "production": [ + { + "time": 1, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "missilecomponents", + "amount": 1 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 1 + }, + { + "ware": "ore", + "amount": 1 + }, + { + "ware": "silicon", + "amount": 1 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "metallicmicrolattice", + "amount": 4 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 6 + } + ] + } + ] + }, + { + "id": "missile_dumbfire_light_mk2", + "version": 0, + "name": "Light Dumbfire Missile Mk2", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 1200, + "hull": 1, + "price": { + "min": 553, + "max": 748, + "avg": 650 + }, + "production": [ + { + "time": 1.5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "missilecomponents", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 2 + }, + { + "ware": "ore", + "amount": 2 + }, + { + "ware": "silicon", + "amount": 1 + } + ] + }, + { + "time": 1.5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "metallicmicrolattice", + "amount": 10 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 13 + } + ] + } + ] + }, + { + "id": "missile_emp_mk1", + "version": 0, + "name": "EMP Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 0, + "hull": 1, + "price": { + "min": 808, + "max": 1093, + "avg": 950 + }, + "production": [ + { + "time": 1, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "missilecomponents", + "amount": 11 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 2 + }, + { + "ware": "silicon", + "amount": 1 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "metallicmicrolattice", + "amount": 16 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 16 + } + ] + } + ] + }, + { + "id": "missile_guided_heavy_mk1", + "version": 0, + "name": "Heavy Guided Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 3520, + "hull": 3, + "price": { + "min": 1915, + "max": 2590, + "avg": 2253 + }, + "production": [ + { + "time": 2, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 16 + }, + { + "ware": "missilecomponents", + "amount": 3 + }, + { + "ware": "smartchips", + "amount": 3 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 16 + }, + { + "ware": "ore", + "amount": 5 + }, + { + "ware": "silicon", + "amount": 3 + } + ] + }, + { + "time": 2, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 16 + }, + { + "ware": "metallicmicrolattice", + "amount": 12 + }, + { + "ware": "siliconcarbide", + "amount": 1 + } + ] + }, + { + "time": 2, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 28 + } + ] + } + ] + }, + { + "id": "missile_guided_light_mk1", + "version": 0, + "name": "Light Guided Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 685, + "hull": 1, + "price": { + "min": 729, + "max": 986, + "avg": 858 + }, + "production": [ + { + "time": 1, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 8 + }, + { + "ware": "missilecomponents", + "amount": 1 + }, + { + "ware": "smartchips", + "amount": 1 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 2 + }, + { + "ware": "silicon", + "amount": 1 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 8 + }, + { + "ware": "metallicmicrolattice", + "amount": 15 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 12 + } + ] + } + ] + }, + { + "id": "missile_heatseeker_heavy_mk1", + "version": 0, + "name": "Heavy Heatseeker Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 3592, + "hull": 2, + "price": { + "min": 2178, + "max": 2947, + "avg": 2563 + }, + "production": [ + { + "time": 4, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "missilecomponents", + "amount": 6 + }, + { + "ware": "smartchips", + "amount": 3 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "ore", + "amount": 5 + }, + { + "ware": "silicon", + "amount": 4 + } + ] + }, + { + "time": 4, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "metallicmicrolattice", + "amount": 17 + }, + { + "ware": "siliconcarbide", + "amount": 1 + } + ] + }, + { + "time": 4, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 34 + } + ] + } + ] + }, + { + "id": "missile_heatseeker_light_mk1", + "version": 0, + "name": "Light Heatseeker Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 698, + "hull": 1, + "price": { + "min": 839, + "max": 1136, + "avg": 988 + }, + "production": [ + { + "time": 2, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "missilecomponents", + "amount": 2 + }, + { + "ware": "smartchips", + "amount": 1 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "ore", + "amount": 1 + }, + { + "ware": "silicon", + "amount": 1 + } + ] + }, + { + "time": 2, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "metallicmicrolattice", + "amount": 17 + } + ] + }, + { + "time": 2, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 15 + } + ] + } + ] + }, + { + "id": "missile_smart_heavy_mk1", + "version": 0, + "name": "Heavy Smart Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 3378, + "hull": 3, + "price": { + "min": 2465, + "max": 3335, + "avg": 2900 + }, + "production": [ + { + "time": 2, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "missilecomponents", + "amount": 3 + }, + { + "ware": "smartchips", + "amount": 4 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "ore", + "amount": 6 + }, + { + "ware": "silicon", + "amount": 5 + } + ] + }, + { + "time": 2, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "metallicmicrolattice", + "amount": 24 + }, + { + "ware": "siliconcarbide", + "amount": 1 + } + ] + }, + { + "time": 2, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 36 + } + ] + } + ] + }, + { + "id": "missile_smart_light_mk1", + "version": 0, + "name": "Light Smart Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 657, + "hull": 1, + "price": { + "min": 1211, + "max": 1639, + "avg": 1425 + }, + "production": [ + { + "time": 1, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "missilecomponents", + "amount": 1 + }, + { + "ware": "smartchips", + "amount": 2 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 3 + }, + { + "ware": "silicon", + "amount": 2 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "metallicmicrolattice", + "amount": 26 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 18 + } + ] + } + ] + }, + { + "id": "missile_swarm_heavy_mk1", + "version": 0, + "name": "Heavy Swarm Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 690, + "hull": 3, + "price": { + "min": 1934, + "max": 2616, + "avg": 2275 + }, + "production": [ + { + "time": 2, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "missilecomponents", + "amount": 10 + }, + { + "ware": "smartchips", + "amount": 2 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "ore", + "amount": 4 + }, + { + "ware": "silicon", + "amount": 3 + } + ] + }, + { + "time": 2, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "metallicmicrolattice", + "amount": 11 + }, + { + "ware": "siliconcarbide", + "amount": 1 + } + ] + }, + { + "time": 2, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 33 + } + ] + } + ] + }, + { + "id": "missile_swarm_light_mk1", + "version": 0, + "name": "Light Swarm Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 134, + "hull": 1, + "price": { + "min": 967, + "max": 1308, + "avg": 1138 + }, + "production": [ + { + "time": 1, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "missilecomponents", + "amount": 5 + }, + { + "ware": "smartchips", + "amount": 1 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 2 + }, + { + "ware": "silicon", + "amount": 2 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "metallicmicrolattice", + "amount": 20 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 16 + } + ] + } + ] + }, + { + "id": "missile_torpedo_heavy_mk1", + "version": 0, + "name": "Heavy Torpedo Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 17246, + "hull": 38, + "price": { + "min": 17563, + "max": 23762, + "avg": 20663 + }, + "production": [ + { + "time": 6, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "missilecomponents", + "amount": 40 + }, + { + "ware": "smartchips", + "amount": 35 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "ore", + "amount": 30 + }, + { + "ware": "silicon", + "amount": 20 + } + ] + }, + { + "time": 6, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "metallicmicrolattice", + "amount": 13 + }, + { + "ware": "siliconcarbide", + "amount": 2 + } + ] + }, + { + "time": 6, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 122 + }, + { + "ware": "hullparts", + "amount": 5 + } + ] + } + ] + }, + { + "id": "missile_torpedo_light_mk1", + "version": 0, + "name": "Light Torpedo Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 4791, + "hull": 8, + "price": { + "min": 3921, + "max": 5304, + "avg": 4613 + }, + "production": [ + { + "time": 3, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "missilecomponents", + "amount": 8 + }, + { + "ware": "smartchips", + "amount": 7 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "ore", + "amount": 20 + }, + { + "ware": "silicon", + "amount": 15 + } + ] + }, + { + "time": 3, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "metallicmicrolattice", + "amount": 30 + }, + { + "ware": "siliconcarbide", + "amount": 2 + } + ] + }, + { + "time": 3, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 36 + }, + { + "ware": "hullparts", + "amount": 1 + } + ] + } + ] + }, + { + "id": "shield_arg_l_standard_01_mk1", + "version": 0, + "name": "ARG L Shield Generator Mk1", + "description": "No information available", + "race": "argon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 2000, + "recharge": { + "max": 38844, + "rate": 173, + "delay": 0 + }, + "price": { + "min": 42166, + "max": 51536, + "avg": 46851 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "fieldcoils", + "amount": 13 + }, + { + "ware": "shieldcomponents", + "amount": 10 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 77 + }, + { + "ware": "hullparts", + "amount": 13 + } + ] + } + ] + }, + { + "id": "shield_arg_l_standard_01_mk2", + "version": 0, + "name": "ARG L Shield Generator Mk2", + "description": "No information available", + "race": "argon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 2000, + "recharge": { + "max": 46282, + "rate": 268, + "delay": 0 + }, + "price": { + "min": 205644, + "max": 251343, + "avg": 228494 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "fieldcoils", + "amount": 65 + }, + { + "ware": "shieldcomponents", + "amount": 50 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 11 + }, + { + "ware": "energycells", + "amount": 136 + }, + { + "ware": "hullparts", + "amount": 63 + } + ] + } + ] + }, + { + "id": "shield_arg_m_standard_01_mk1", + "version": 0, + "name": "ARG M Shield Generator Mk1", + "description": "No information available", + "race": "argon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 5147, + "rate": 26, + "delay": 0.5 + }, + "price": { + "min": 12838, + "max": 15691, + "avg": 14264 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "fieldcoils", + "amount": 3 + }, + { + "ware": "shieldcomponents", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 104 + }, + { + "ware": "hullparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "shield_arg_m_standard_01_mk2", + "version": 0, + "name": "ARG M Shield Generator Mk2", + "description": "No information available", + "race": "argon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 6133, + "rate": 41, + "delay": 0.5 + }, + "price": { + "min": 62115, + "max": 75918, + "avg": 69017 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "fieldcoils", + "amount": 15 + }, + { + "ware": "shieldcomponents", + "amount": 25 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 89 + }, + { + "ware": "hullparts", + "amount": 19 + } + ] + } + ] + }, + { + "id": "shield_arg_m_standard_02_mk1", + "version": 0, + "name": "ARG M Shield Generator Mk1", + "description": "No information available", + "race": "argon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 5147, + "rate": 26, + "delay": 0.5 + }, + "price": { + "min": 12838, + "max": 15691, + "avg": 14264 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "fieldcoils", + "amount": 3 + }, + { + "ware": "shieldcomponents", + "amount": 5 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 104 + }, + { + "ware": "hullparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "shield_arg_m_standard_02_mk2", + "version": 0, + "name": "ARG M Shield Generator Mk2", + "description": "No information available", + "race": "argon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 6133, + "rate": 41, + "delay": 0.5 + }, + "price": { + "min": 61597, + "max": 75285, + "avg": 68441 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "fieldcoils", + "amount": 15 + }, + { + "ware": "shieldcomponents", + "amount": 25 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 89 + }, + { + "ware": "hullparts", + "amount": 19 + } + ] + } + ] + }, + { + "id": "shield_arg_s_standard_01_mk1", + "version": 0, + "name": "ARG S Shield Generator Mk1", + "description": "No information available", + "race": "argon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 827, + "rate": 82, + "delay": 12.1 + }, + "price": { + "min": 1218, + "max": 1489, + "avg": 1354 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "shieldcomponents", + "amount": 1 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 17 + } + ] + } + ] + }, + { + "id": "shield_arg_s_standard_01_mk2", + "version": 0, + "name": "ARG S Shield Generator Mk2", + "description": "No information available", + "race": "argon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 988, + "rate": 128, + "delay": 12.1 + }, + "price": { + "min": 10186, + "max": 12449, + "avg": 11318 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "fieldcoils", + "amount": 2 + }, + { + "ware": "shieldcomponents", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 81 + }, + { + "ware": "hullparts", + "amount": 3 + } + ] + } + ] + }, + { + "id": "shield_arg_s_standard_01_mk3", + "version": 0, + "name": "ARG S Shield Generator Mk3", + "description": "No information available", + "race": "argon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 1411, + "rate": 219, + "delay": 12.1 + }, + "price": { + "min": 49892, + "max": 60979, + "avg": 55436 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "fieldcoils", + "amount": 10 + }, + { + "ware": "shieldcomponents", + "amount": 25 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 120 + }, + { + "ware": "hullparts", + "amount": 15 + } + ] + } + ] + }, + { + "id": "shield_arg_xl_standard_01_mk1", + "version": 0, + "name": "ARG XL Shield Generator Mk1", + "description": "No information available", + "race": "argon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "extralarge", + "hull": 6000, + "recharge": { + "max": 129481, + "rate": 492, + "delay": 0 + }, + "price": { + "min": 225671, + "max": 275820, + "avg": 250745 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 150 + }, + { + "ware": "fieldcoils", + "amount": 82 + }, + { + "ware": "shieldcomponents", + "amount": 30 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 12 + }, + { + "ware": "energycells", + "amount": 170 + }, + { + "ware": "hullparts", + "amount": 70 + } + ] + } + ] + }, + { + "id": "shield_kha_m_standard_01_mk1", + "version": 0, + "name": "KHA M Shield Generator Mk1", + "description": "No information available", + "race": "khaak", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "recharge": { + "max": 4632, + "rate": 25, + "delay": 0.57 + }, + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "owners": [ + "khaak" + ], + "production": [] + }, + { + "id": "shield_kha_m_standard_02_mk1", + "version": 0, + "name": "KHA M Shield Generator Mk1", + "description": "No information available", + "race": "khaak", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "recharge": { + "max": 4632, + "rate": 25, + "delay": 0.57 + }, + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "owners": [ + "khaak" + ], + "production": [] + }, + { + "id": "shield_kha_s_standard_01_mk1", + "version": 0, + "name": "KHA S Shield Generator Mk1", + "description": "No information available", + "race": "khaak", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 745, + "rate": 79, + "delay": 13.9 + }, + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "owners": [ + "khaak" + ], + "production": [] + }, + { + "id": "shield_par_l_standard_01_mk1", + "version": 0, + "name": "PAR L Shield Generator Mk1", + "description": "No information available", + "race": "paranid", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 2000, + "recharge": { + "max": 34960, + "rate": 184, + "delay": 0 + }, + "price": { + "min": 42166, + "max": 51536, + "avg": 46851 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "fieldcoils", + "amount": 13 + }, + { + "ware": "shieldcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "shield_par_l_standard_01_mk2", + "version": 0, + "name": "PAR L Shield Generator Mk2", + "description": "No information available", + "race": "paranid", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 2000, + "recharge": { + "max": 41654, + "rate": 284, + "delay": 0 + }, + "price": { + "min": 205644, + "max": 251343, + "avg": 228494 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "fieldcoils", + "amount": 65 + }, + { + "ware": "shieldcomponents", + "amount": 50 + } + ] + } + ] + }, + { + "id": "shield_par_m_standard_01_mk1", + "version": 0, + "name": "PAR M Shield Generator Mk1", + "description": "No information available", + "race": "paranid", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 4632, + "rate": 28, + "delay": 0.42 + }, + "price": { + "min": 12838, + "max": 15691, + "avg": 14264 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "fieldcoils", + "amount": 3 + }, + { + "ware": "shieldcomponents", + "amount": 5 + } + ] + } + ] + }, + { + "id": "shield_par_m_standard_01_mk2", + "version": 0, + "name": "PAR M Shield Generator Mk2", + "description": "No information available", + "race": "paranid", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 5520, + "rate": 43, + "delay": 0.42 + }, + "price": { + "min": 62115, + "max": 75918, + "avg": 69017 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "fieldcoils", + "amount": 15 + }, + { + "ware": "shieldcomponents", + "amount": 25 + } + ] + } + ] + }, + { + "id": "shield_par_m_standard_02_mk1", + "version": 0, + "name": "PAR M Shield Generator Mk1", + "description": "No information available", + "race": "paranid", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 4632, + "rate": 28, + "delay": 0.42 + }, + "price": { + "min": 12015, + "max": 14685, + "avg": 13350 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "fieldcoils", + "amount": 3 + }, + { + "ware": "shieldcomponents", + "amount": 5 + } + ] + } + ] + }, + { + "id": "shield_par_m_standard_02_mk2", + "version": 0, + "name": "PAR M Shield Generator Mk2", + "description": "No information available", + "race": "paranid", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 5520, + "rate": 43, + "delay": 0.42 + }, + "price": { + "min": 26058, + "max": 31849, + "avg": 28954 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "fieldcoils", + "amount": 15 + }, + { + "ware": "shieldcomponents", + "amount": 25 + } + ] + } + ] + }, + { + "id": "shield_par_s_standard_01_mk1", + "version": 0, + "name": "PAR S Shield Generator Mk1", + "description": "No information available", + "race": "paranid", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 745, + "rate": 87, + "delay": 10.2 + }, + "price": { + "min": 1218, + "max": 1489, + "avg": 1354 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "shieldcomponents", + "amount": 1 + } + ] + } + ] + }, + { + "id": "shield_par_s_standard_01_mk2", + "version": 0, + "name": "PAR S Shield Generator Mk2", + "description": "No information available", + "race": "paranid", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 889, + "rate": 135, + "delay": 10.2 + }, + "price": { + "min": 10186, + "max": 12449, + "avg": 11318 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "fieldcoils", + "amount": 2 + }, + { + "ware": "shieldcomponents", + "amount": 5 + } + ] + } + ] + }, + { + "id": "shield_par_s_standard_01_mk3", + "version": 0, + "name": "PAR S Shield Generator Mk3", + "description": "No information available", + "race": "paranid", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 1270, + "rate": 232, + "delay": 10.2 + }, + "price": { + "min": 49892, + "max": 60979, + "avg": 55436 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "fieldcoils", + "amount": 10 + }, + { + "ware": "shieldcomponents", + "amount": 25 + } + ] + } + ] + }, + { + "id": "shield_par_xl_standard_01_mk1", + "version": 0, + "name": "PAR XL Shield Generator Mk1", + "description": "No information available", + "race": "paranid", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "extralarge", + "hull": 6000, + "recharge": { + "max": 116532, + "rate": 521, + "delay": 0 + }, + "price": { + "min": 225671, + "max": 275820, + "avg": 250745 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 150 + }, + { + "ware": "fieldcoils", + "amount": 82 + }, + { + "ware": "shieldcomponents", + "amount": 30 + } + ] + } + ] + }, + { + "id": "shield_tel_l_standard_01_mk1", + "version": 0, + "name": "TEL L Shield Generator Mk1", + "description": "No information available", + "race": "teladi", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 2000, + "recharge": { + "max": 42729, + "rate": 166, + "delay": 0 + }, + "price": { + "min": 42166, + "max": 51536, + "avg": 46851 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "fieldcoils", + "amount": 13 + }, + { + "ware": "shieldcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "shield_tel_l_standard_01_mk2", + "version": 0, + "name": "TEL L Shield Generator Mk2", + "description": "No information available", + "race": "teladi", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 2000, + "recharge": { + "max": 50911, + "rate": 257, + "delay": 0 + }, + "price": { + "min": 205644, + "max": 251343, + "avg": 228494 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "fieldcoils", + "amount": 65 + }, + { + "ware": "shieldcomponents", + "amount": 50 + } + ] + } + ] + }, + { + "id": "shield_tel_m_standard_01_mk1", + "version": 0, + "name": "TEL M Shield Generator Mk1", + "description": "No information available", + "race": "teladi", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 5662, + "rate": 25, + "delay": 0.57 + }, + "price": { + "min": 12838, + "max": 15691, + "avg": 14264 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "fieldcoils", + "amount": 3 + }, + { + "ware": "shieldcomponents", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 104 + }, + { + "ware": "hullparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "shield_tel_m_standard_01_mk2", + "version": 0, + "name": "TEL M Shield Generator Mk2", + "description": "No information available", + "race": "teladi", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 6746, + "rate": 39, + "delay": 0.57 + }, + "price": { + "min": 62115, + "max": 75918, + "avg": 69017 + }, + "owners": [ + "alliance", + "ministry", + "teladi", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "fieldcoils", + "amount": 15 + }, + { + "ware": "shieldcomponents", + "amount": 25 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 89 + }, + { + "ware": "hullparts", + "amount": 19 + } + ] + } + ] + }, + { + "id": "shield_tel_m_standard_02_mk1", + "version": 0, + "name": "TEL M Shield Generator Mk1", + "description": "No information available", + "race": "teladi", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 5662, + "rate": 25, + "delay": 0.57 + }, + "price": { + "min": 12015, + "max": 14685, + "avg": 13350 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "fieldcoils", + "amount": 3 + }, + { + "ware": "shieldcomponents", + "amount": 5 + } + ] + } + ] + }, + { + "id": "shield_tel_m_standard_02_mk2", + "version": 0, + "name": "TEL M Shield Generator Mk2", + "description": "No information available", + "race": "teladi", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 6746, + "rate": 39, + "delay": 0.57 + }, + "price": { + "min": 26058, + "max": 31849, + "avg": 28954 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "fieldcoils", + "amount": 15 + }, + { + "ware": "shieldcomponents", + "amount": 25 + } + ] + } + ] + }, + { + "id": "shield_tel_s_standard_01_mk1", + "version": 0, + "name": "TEL S Shield Generator Mk1", + "description": "No information available", + "race": "teladi", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 910, + "rate": 79, + "delay": 13.9 + }, + "price": { + "min": 1218, + "max": 1489, + "avg": 1354 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "shieldcomponents", + "amount": 1 + } + ] + } + ] + }, + { + "id": "shield_tel_s_standard_01_mk2", + "version": 0, + "name": "TEL S Shield Generator Mk2", + "description": "No information available", + "race": "teladi", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 1087, + "rate": 122, + "delay": 13.9 + }, + "price": { + "min": 10186, + "max": 12449, + "avg": 11318 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "fieldcoils", + "amount": 2 + }, + { + "ware": "shieldcomponents", + "amount": 5 + } + ] + } + ] + }, + { + "id": "shield_tel_s_standard_01_mk3", + "version": 0, + "name": "TEL S Shield Generator Mk3", + "description": "No information available", + "race": "teladi", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 1552, + "rate": 210, + "delay": 13.9 + }, + "price": { + "min": 49892, + "max": 60979, + "avg": 55436 + }, + "owners": [ + "alliance", + "ministry", + "teladi", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "fieldcoils", + "amount": 10 + }, + { + "ware": "shieldcomponents", + "amount": 25 + } + ] + } + ] + }, + { + "id": "shield_tel_xl_standard_01_mk1", + "version": 0, + "name": "TEL XL Shield Generator Mk1", + "description": "No information available", + "race": "teladi", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "extralarge", + "hull": 6000, + "recharge": { + "max": 142429, + "rate": 470, + "delay": 0 + }, + "price": { + "min": 225671, + "max": 275820, + "avg": 250745 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 150 + }, + { + "ware": "fieldcoils", + "amount": 82 + }, + { + "ware": "shieldcomponents", + "amount": 30 + } + ] + } + ] + }, + { + "id": "shield_xen_l_standard_01_mk1", + "version": 0, + "name": "XEN L Shield Generator Mk1", + "description": "No information available", + "race": "xenon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 2000, + "recharge": { + "max": 36902, + "rate": 194, + "delay": 0 + }, + "price": { + "min": 41386, + "max": 50582, + "avg": 45984 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 25 + }, + { + "ware": "ore", + "amount": 51 + }, + { + "ware": "silicon", + "amount": 51 + } + ] + } + ] + }, + { + "id": "shield_xen_l_standard_01_mk2", + "version": 0, + "name": "XEN L Shield Generator Mk2", + "description": "No information available", + "race": "xenon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 2000, + "recharge": { + "max": 43968, + "rate": 300, + "delay": 0 + }, + "price": { + "min": 110765, + "max": 135379, + "avg": 123072 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "ore", + "amount": 138 + }, + { + "ware": "silicon", + "amount": 138 + } + ] + } + ] + }, + { + "id": "shield_xen_m_standard_01_mk1", + "version": 0, + "name": "XEN M Shield Generator Mk1", + "description": "No information available", + "race": "xenon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 4890, + "rate": 29, + "delay": 0.55 + }, + "price": { + "min": 13478, + "max": 16474, + "avg": 14976 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "ore", + "amount": 16 + }, + { + "ware": "silicon", + "amount": 16 + } + ] + } + ] + }, + { + "id": "shield_xen_m_standard_01_mk2", + "version": 0, + "name": "XEN M Shield Generator Mk2", + "description": "No information available", + "race": "xenon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 5826, + "rate": 45, + "delay": 0.55 + }, + "price": { + "min": 27821, + "max": 34003, + "avg": 30912 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "ore", + "amount": 34 + }, + { + "ware": "silicon", + "amount": 34 + } + ] + } + ] + }, + { + "id": "shield_xen_m_standard_02_mk1", + "version": 0, + "name": "XEN M Shield Generator Mk1", + "description": "No information available", + "race": "xenon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 4890, + "rate": 29, + "delay": 0.55 + }, + "price": { + "min": 13478, + "max": 16474, + "avg": 14976 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "ore", + "amount": 16 + }, + { + "ware": "silicon", + "amount": 16 + } + ] + } + ] + }, + { + "id": "shield_xen_m_standard_02_mk2", + "version": 0, + "name": "XEN M Shield Generator Mk2", + "description": "No information available", + "race": "xenon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 5826, + "rate": 45, + "delay": 0.55 + }, + "price": { + "min": 27821, + "max": 34003, + "avg": 30912 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "ore", + "amount": 34 + }, + { + "ware": "silicon", + "amount": 34 + } + ] + } + ] + }, + { + "id": "shield_xen_s_standard_01_mk1", + "version": 0, + "name": "XEN S Shield Generator Mk1", + "description": "No information available", + "race": "xenon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 786, + "rate": 92, + "delay": 13.3 + }, + "price": { + "min": 1901, + "max": 2323, + "avg": 2112 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "ore", + "amount": 2 + }, + { + "ware": "silicon", + "amount": 2 + } + ] + } + ] + }, + { + "id": "shield_xen_s_standard_01_mk2", + "version": 0, + "name": "XEN S Shield Generator Mk2", + "description": "No information available", + "race": "xenon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 938, + "rate": 143, + "delay": 13.3 + }, + "price": { + "min": 4579, + "max": 5597, + "avg": 5088 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 5 + }, + { + "ware": "silicon", + "amount": 5 + } + ] + } + ] + }, + { + "id": "shield_xen_xl_standard_01_mk1", + "version": 0, + "name": "XEN XL Shield Generator Mk1", + "description": "No information available", + "race": "xenon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "extralarge", + "hull": 6000, + "recharge": { + "max": 123007, + "rate": 550, + "delay": 0 + }, + "price": { + "min": 221493, + "max": 270714, + "avg": 246104 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 77 + }, + { + "ware": "ore", + "amount": 278 + }, + { + "ware": "silicon", + "amount": 278 + } + ] + } + ] + }, + { + "id": "ship_arg_xs_police_01_a", + "version": 0, + "name": "Argon Station Security Vessel", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_xs", + "hull": 281, + "price": { + "min": 9707, + "max": 13133, + "avg": 11420 + }, + "owners": [ + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 60, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "dronecomponents", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "smartchips", + "amount": 10 + } + ] + }, + { + "time": 60, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 104 + }, + { + "ware": "hullparts", + "amount": 3 + } + ] + } + ] + }, + { + "id": "ship_gen_s_fightingdrone_01_a", + "version": 0, + "name": "Defence Drone", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_s", + "hull": 1900, + "price": { + "min": 11611, + "max": 15709, + "avg": 13660 + }, + "production": [ + { + "time": 90, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "dronecomponents", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "smartchips", + "amount": 30 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "ore", + "amount": 10 + }, + { + "ware": "silicon", + "amount": 10 + } + ] + }, + { + "time": 90, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 500 + }, + { + "ware": "metallicmicrolattice", + "amount": 29 + }, + { + "ware": "siliconcarbide", + "amount": 3 + } + ] + }, + { + "time": 90, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 21 + }, + { + "ware": "hullparts", + "amount": 5 + } + ] + } + ] + }, + { + "id": "ship_gen_s_miningdrone_liquid_01_a", + "version": 0, + "name": "Gas Collector Drone", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_s", + "hull": 1700, + "price": { + "min": 11781, + "max": 15939, + "avg": 13860 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "dronecomponents", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "smartchips", + "amount": 20 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "ore", + "amount": 15 + }, + { + "ware": "silicon", + "amount": 10 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 500 + }, + { + "ware": "metallicmicrolattice", + "amount": 33 + }, + { + "ware": "siliconcarbide", + "amount": 3 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 126 + }, + { + "ware": "hullparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "ship_gen_s_miningdrone_solid_01_a", + "version": 0, + "name": "Mining Drone", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_s", + "hull": 1700, + "price": { + "min": 11781, + "max": 15939, + "avg": 13860 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "dronecomponents", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "smartchips", + "amount": 20 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "ore", + "amount": 15 + }, + { + "ware": "silicon", + "amount": 10 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 500 + }, + { + "ware": "metallicmicrolattice", + "amount": 33 + }, + { + "ware": "siliconcarbide", + "amount": 3 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 126 + }, + { + "ware": "hullparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "ship_gen_xs_buildingdrone_01_a", + "version": 0, + "name": "Building Drone", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_xs", + "hull": 207, + "price": { + "min": 12980, + "max": 17561, + "avg": 15270 + }, + "production": [ + { + "time": 60, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "dronecomponents", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "smartchips", + "amount": 10 + } + ] + }, + { + "time": 3, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 14 + }, + { + "ware": "ore", + "amount": 20 + }, + { + "ware": "silicon", + "amount": 20 + } + ] + }, + { + "time": 60, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 500 + }, + { + "ware": "metallicmicrolattice", + "amount": 33 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + }, + { + "time": 60, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 104 + }, + { + "ware": "hullparts", + "amount": 3 + } + ] + } + ] + }, + { + "id": "ship_gen_xs_cargodrone_empty_01_a", + "version": 0, + "name": "Cargo Drone", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_xs", + "hull": 523, + "price": { + "min": 13728, + "max": 18573, + "avg": 16150 + }, + "production": [ + { + "time": 60, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "dronecomponents", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "smartchips", + "amount": 10 + } + ] + }, + { + "time": 6, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 36 + }, + { + "ware": "ore", + "amount": 20 + }, + { + "ware": "silicon", + "amount": 20 + } + ] + }, + { + "time": 60, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 500 + }, + { + "ware": "metallicmicrolattice", + "amount": 51 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + }, + { + "time": 60, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 104 + }, + { + "ware": "hullparts", + "amount": 3 + } + ] + } + ] + }, + { + "id": "ship_gen_xs_repairdrone_01_a", + "version": 0, + "name": "Repair Drone", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_xs", + "hull": 207, + "price": { + "min": 12980, + "max": 17561, + "avg": 15270 + }, + "production": [ + { + "time": 60, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "dronecomponents", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "smartchips", + "amount": 10 + } + ] + }, + { + "time": 3, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 14 + }, + { + "ware": "ore", + "amount": 20 + }, + { + "ware": "silicon", + "amount": 20 + } + ] + }, + { + "time": 60, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 500 + }, + { + "ware": "metallicmicrolattice", + "amount": 33 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + }, + { + "time": 60, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 104 + }, + { + "ware": "hullparts", + "amount": 3 + } + ] + } + ] + }, + { + "id": "ship_par_xs_police_01_a", + "version": 0, + "name": "Paranid Station Security Vessel", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_xs", + "hull": 281, + "price": { + "min": 9707, + "max": 13133, + "avg": 11420 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 60, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "dronecomponents", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "smartchips", + "amount": 10 + } + ] + } + ] + }, + { + "id": "ship_tel_xs_police_01_a", + "version": 0, + "name": "Teladi Station Security Vessel A", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_xs", + "hull": 281, + "price": { + "min": 9707, + "max": 13133, + "avg": 11420 + }, + "owners": [ + "ministry", + "teladi" + ], + "production": [ + { + "time": 60, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "dronecomponents", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "smartchips", + "amount": 10 + } + ] + } + ] + }, + { + "id": "ship_tel_xs_police_02_a", + "version": 0, + "name": "Teladi Station Security Vessel B", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_xs", + "hull": 281, + "price": { + "min": 9707, + "max": 13133, + "avg": 11420 + }, + "owners": [ + "ministry", + "teladi" + ], + "production": [ + { + "time": 60, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "dronecomponents", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "smartchips", + "amount": 10 + } + ] + } + ] + }, + { + "id": "ship_tel_xs_police_03_a", + "version": 0, + "name": "Teladi Station Security Vessel C", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_xs", + "hull": 281, + "price": { + "min": 9707, + "max": 13133, + "avg": 11420 + }, + "owners": [ + "ministry", + "teladi" + ], + "production": [ + { + "time": 60, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "dronecomponents", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "smartchips", + "amount": 10 + } + ] + } + ] + }, + { + "id": "software_dockmk1", + "version": 0, + "name": "Docking Computer Mk1", + "description": "This flight software automates the final stages of the docking procedure.", + "type": "software", + "price": { + "min": 5000, + "max": 10000, + "avg": 7500 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [] + } + ] + }, + { + "id": "software_dockmk2", + "version": 0, + "name": "Docking Computer Mk2", + "description": "This flight software increases the range at which the docking procedure can be automated.", + "type": "software", + "price": { + "min": 24576, + "max": 40960, + "avg": 32768 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [] + } + ] + }, + { + "id": "software_flightassistmk1", + "version": 0, + "name": "Flight Assist Software Mk1", + "description": "This flight software assists a pilot by automatically compensating for drift when changing flight direction.", + "type": "software", + "price": { + "min": 6825, + "max": 11375, + "avg": 9100 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [] + } + ] + }, + { + "id": "software_scannerlongrangemk1", + "version": 0, + "name": "Long-range Scanner Software Mk1", + "description": "This scanning software provides a means to detect objects at great distances.", + "type": "software", + "equipmentClass": "scanner", + "price": { + "min": 29274, + "max": 35779, + "avg": 32526 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [] + } + ] + }, + { + "id": "software_scannerlongrangemk2", + "version": 0, + "name": "Long-range Scanner Software Mk2", + "description": "This scanning software increases scan resolution, allowing more accurate identification of certain types of objects.", + "type": "software", + "equipmentClass": "scanner", + "price": { + "min": 58547, + "max": 71558, + "avg": 65052 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [] + } + ] + }, + { + "id": "software_scannerobjectmk1", + "version": 0, + "name": "Basic Scanner", + "description": "This scanning software provides basic identification of nearby objects.", + "type": "software", + "equipmentClass": "scanner", + "price": { + "min": 10907, + "max": 13331, + "avg": 12119 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [] + } + ] + }, + { + "id": "software_scannerobjectmk2", + "version": 0, + "name": "Police Scanner", + "description": "This scanning software allows a pilot to inspect the contents of the cargo hold of another ship. Its use is illegal unless an appropriate police licence has been obtained.", + "type": "software", + "equipmentClass": "scanner", + "price": { + "min": 36733, + "max": 44896, + "avg": 40815 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [] + } + ] + }, + { + "id": "software_targetmk1", + "version": 0, + "name": "Targeting Computer Extension Mk1", + "description": "This targeting software allows a ship's targeting system to lock on to small objects such as debris and floating containers.", + "type": "software", + "price": { + "min": 6144, + "max": 10240, + "avg": 8192 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [] + } + ] + }, + { + "id": "software_trademk1", + "version": 0, + "name": "Trading Computer Extension Mk1", + "description": "This trading software maintains a link to potential buyers and sellers for a limited time, to provide current trade offer information.", + "type": "software", + "price": { + "min": 8438, + "max": 14063, + "avg": 11250 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [] + } + ] + }, + { + "id": "thruster_gen_l_allround_01_mk1", + "version": 0, + "name": "L All-round Thrusters Mk1", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "large", + "price": { + "min": 253435, + "max": 309754, + "avg": 281595 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 120 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 48 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 324 + }, + { + "ware": "silicon", + "amount": 324 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 28 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 173 + }, + { + "ware": "siliconcarbide", + "amount": 28 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 15 + }, + { + "ware": "energycells", + "amount": 175 + }, + { + "ware": "hullparts", + "amount": 86 + } + ] + } + ] + }, + { + "id": "thruster_gen_l_allround_01_mk2", + "version": 0, + "name": "L All-round Thrusters Mk2", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "large", + "price": { + "min": 1266139, + "max": 1547503, + "avg": 1406821 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 600 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 240 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "ore", + "amount": 648 + }, + { + "ware": "silicon", + "amount": 648 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 144 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 724 + }, + { + "ware": "siliconcarbide", + "amount": 124 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 75 + }, + { + "ware": "energycells", + "amount": 859 + }, + { + "ware": "hullparts", + "amount": 429 + } + ] + } + ] + }, + { + "id": "thruster_gen_l_allround_01_mk3", + "version": 0, + "name": "L All-round Thrusters Mk3", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "large", + "price": { + "min": 6328619, + "max": 7734979, + "avg": 7031799 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 3000 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "engineparts", + "amount": 1200 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "ore", + "amount": 1296 + }, + { + "ware": "silicon", + "amount": 1296 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 721 + }, + { + "ware": "energycells", + "amount": 400 + }, + { + "ware": "metallicmicrolattice", + "amount": 3571 + }, + { + "ware": "siliconcarbide", + "amount": 621 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 376 + }, + { + "ware": "energycells", + "amount": 4106 + }, + { + "ware": "hullparts", + "amount": 2145 + } + ] + } + ] + }, + { + "id": "thruster_gen_m_allround_01_mk1", + "version": 0, + "name": "M All-round Thrusters Mk1", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 11717, + "max": 14321, + "avg": 13019 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "engineparts", + "amount": 4 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "ore", + "amount": 15 + }, + { + "ware": "silicon", + "amount": 15 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 23 + }, + { + "ware": "siliconcarbide", + "amount": 2 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "hullparts", + "amount": 3 + } + ] + } + ] + }, + { + "id": "thruster_gen_m_allround_01_mk2", + "version": 0, + "name": "M All-round Thrusters Mk2", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 58067, + "max": 70971, + "avg": 64519 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 20 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 20 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 30 + }, + { + "ware": "silicon", + "amount": 30 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 68 + }, + { + "ware": "siliconcarbide", + "amount": 7 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 62 + }, + { + "ware": "hullparts", + "amount": 18 + } + ] + } + ] + }, + { + "id": "thruster_gen_m_allround_01_mk3", + "version": 0, + "name": "M All-round Thrusters Mk3", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 289300, + "max": 353589, + "avg": 321445 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 100 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 100 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "ore", + "amount": 60 + }, + { + "ware": "silicon", + "amount": 60 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 32 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 191 + }, + { + "ware": "siliconcarbide", + "amount": 31 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 15 + }, + { + "ware": "energycells", + "amount": 282 + }, + { + "ware": "hullparts", + "amount": 90 + } + ] + } + ] + }, + { + "id": "thruster_gen_m_combat_01_mk1", + "version": 0, + "name": "M Combat Thrusters Mk1", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 14899, + "max": 18210, + "avg": 16555 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "engineparts", + "amount": 4 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "ore", + "amount": 19 + }, + { + "ware": "silicon", + "amount": 19 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 37 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 131 + }, + { + "ware": "hullparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "thruster_gen_m_combat_01_mk2", + "version": 0, + "name": "M Combat Thrusters Mk2", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 73978, + "max": 90418, + "avg": 82198 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 30 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 20 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 38 + }, + { + "ware": "silicon", + "amount": 38 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 62 + }, + { + "ware": "siliconcarbide", + "amount": 8 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 78 + }, + { + "ware": "hullparts", + "amount": 24 + } + ] + } + ] + }, + { + "id": "thruster_gen_m_combat_01_mk3", + "version": 0, + "name": "M Combat Thrusters Mk3", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 368854, + "max": 450821, + "avg": 409838 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 150 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 100 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "ore", + "amount": 76 + }, + { + "ware": "silicon", + "amount": 76 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 41 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 242 + }, + { + "ware": "siliconcarbide", + "amount": 39 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 21 + }, + { + "ware": "energycells", + "amount": 244 + }, + { + "ware": "hullparts", + "amount": 119 + } + ] + } + ] + }, + { + "id": "thruster_gen_s_allround_01_mk1", + "version": 0, + "name": "S All-round Thrusters Mk1", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 5353, + "max": 6542, + "avg": 5948 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "engineparts", + "amount": 4 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "ore", + "amount": 7 + }, + { + "ware": "silicon", + "amount": 7 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 19 + }, + { + "ware": "siliconcarbide", + "amount": 3 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 37 + }, + { + "ware": "hullparts", + "amount": 1 + } + ] + } + ] + }, + { + "id": "thruster_gen_s_allround_01_mk2", + "version": 0, + "name": "S All-round Thrusters Mk2", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 83968, + "max": 102627, + "avg": 93298 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 20 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 40 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 14 + }, + { + "ware": "silicon", + "amount": 14 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 9 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 62 + }, + { + "ware": "siliconcarbide", + "amount": 10 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 84 + }, + { + "ware": "hullparts", + "amount": 24 + } + ] + } + ] + }, + { + "id": "thruster_gen_s_allround_01_mk3", + "version": 0, + "name": "S All-round Thrusters Mk3", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 199757, + "max": 244147, + "avg": 221952 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 60 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 80 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "ore", + "amount": 28 + }, + { + "ware": "silicon", + "amount": 28 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 22 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 139 + }, + { + "ware": "siliconcarbide", + "amount": 21 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 10 + }, + { + "ware": "energycells", + "amount": 199 + }, + { + "ware": "hullparts", + "amount": 60 + } + ] + } + ] + }, + { + "id": "thruster_gen_s_combat_01_mk1", + "version": 0, + "name": "S Combat Thrusters Mk1", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 6241, + "max": 7628, + "avg": 6934 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "engineparts", + "amount": 1 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "ore", + "amount": 8 + }, + { + "ware": "silicon", + "amount": 8 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 39 + }, + { + "ware": "siliconcarbide", + "amount": 3 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 57 + }, + { + "ware": "hullparts", + "amount": 2 + } + ] + } + ] + }, + { + "id": "thruster_gen_s_combat_01_mk2", + "version": 0, + "name": "S Combat Thrusters Mk2", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 39752, + "max": 48586, + "avg": 44169 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 15 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 12 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 16 + }, + { + "ware": "silicon", + "amount": 16 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 48 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 67 + }, + { + "ware": "hullparts", + "amount": 12 + } + ] + } + ] + }, + { + "id": "thruster_gen_s_combat_01_mk3", + "version": 0, + "name": "S Combat Thrusters Mk3", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 157946, + "max": 193045, + "avg": 175495 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 50 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 60 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "ore", + "amount": 32 + }, + { + "ware": "silicon", + "amount": 32 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 17 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 123 + }, + { + "ware": "siliconcarbide", + "amount": 18 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 162 + }, + { + "ware": "hullparts", + "amount": 48 + } + ] + } + ] + }, + { + "id": "thruster_gen_xl_allround_01_mk1", + "version": 0, + "name": "XL All-round Thrusters Mk1", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "extralarge", + "price": { + "min": 538346, + "max": 657978, + "avg": 598162 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 260 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 96 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 687 + }, + { + "ware": "silicon", + "amount": 687 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 61 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 333 + }, + { + "ware": "siliconcarbide", + "amount": 53 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 32 + }, + { + "ware": "energycells", + "amount": 384 + }, + { + "ware": "hullparts", + "amount": 183 + } + ] + } + ] + }, + { + "id": "thruster_gen_xl_allround_01_mk2", + "version": 0, + "name": "XL All-round Thrusters Mk2", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "extralarge", + "price": { + "min": 2690693, + "max": 3288625, + "avg": 2989659 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 1300 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 480 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "ore", + "amount": 1374 + }, + { + "ware": "silicon", + "amount": 1374 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 306 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 1543 + }, + { + "ware": "siliconcarbide", + "amount": 266 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 161 + }, + { + "ware": "energycells", + "amount": 1737 + }, + { + "ware": "hullparts", + "amount": 917 + } + ] + } + ] + }, + { + "id": "thruster_gen_xl_allround_01_mk3", + "version": 0, + "name": "XL All-round Thrusters Mk3", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "extralarge", + "price": { + "min": 13451392, + "max": 16440590, + "avg": 14945991 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 6500 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "engineparts", + "amount": 2400 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "ore", + "amount": 2748 + }, + { + "ware": "silicon", + "amount": 2748 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1533 + }, + { + "ware": "energycells", + "amount": 400 + }, + { + "ware": "metallicmicrolattice", + "amount": 7559 + }, + { + "ware": "siliconcarbide", + "amount": 1323 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 805 + }, + { + "ware": "energycells", + "amount": 8623 + }, + { + "ware": "hullparts", + "amount": 4585 + } + ] + } + ] + }, + { + "id": "turret_arg_l_beam_01_mk1", + "version": 0, + "name": "ARG L Beam Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 2300, + "price": { + "min": 135464, + "max": 165567, + "avg": 150515 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 18 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 30 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 7 + }, + { + "ware": "energycells", + "amount": 195 + }, + { + "ware": "hullparts", + "amount": 44 + } + ] + } + ] + }, + { + "id": "turret_arg_l_dumbfire_01_mk1", + "version": 0, + "name": "ARG L Dumbfire Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "large", + "hull": 5000, + "price": { + "min": 67905, + "max": 82995, + "avg": 75450 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 9 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 15 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 166 + }, + { + "ware": "hullparts", + "amount": 22 + } + ] + } + ] + }, + { + "id": "turret_arg_l_guided_01_mk1", + "version": 0, + "name": "ARG L Tracking Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "large", + "hull": 5000, + "price": { + "min": 78261, + "max": 95652, + "avg": 86957 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 30 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 79 + }, + { + "ware": "hullparts", + "amount": 24 + } + ] + } + ] + }, + { + "id": "turret_arg_l_laser_01_mk1", + "version": 0, + "name": "ARG L Pulse Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 2300, + "price": { + "min": 52289, + "max": 63909, + "avg": 58099 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 20 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 141 + }, + { + "ware": "hullparts", + "amount": 16 + } + ] + } + ] + }, + { + "id": "turret_arg_l_mining_01_mk1", + "version": 0, + "name": "ARG L Mining Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 2300, + "price": { + "min": 49166, + "max": 60092, + "avg": 54629 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 21 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 121 + }, + { + "ware": "hullparts", + "amount": 14 + } + ] + } + ] + }, + { + "id": "turret_arg_l_plasma_01_mk1", + "version": 0, + "name": "ARG L Plasma Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 2300, + "price": { + "min": 93055, + "max": 113734, + "avg": 103395 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 39 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 180 + }, + { + "ware": "hullparts", + "amount": 28 + } + ] + } + ] + }, + { + "id": "turret_arg_m_beam_01_mk1", + "version": 0, + "name": "ARG M Beam Turret Mk1", + "description": "Beam Turret", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 45385, + "max": 55471, + "avg": 50428 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 110 + }, + { + "ware": "hullparts", + "amount": 15 + } + ] + } + ] + }, + { + "id": "turret_arg_m_beam_02_mk1", + "version": 0, + "name": "ARG M Beam Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 500, + "price": { + "min": 45385, + "max": 55471, + "avg": 50428 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 110 + }, + { + "ware": "hullparts", + "amount": 15 + } + ] + } + ] + }, + { + "id": "turret_arg_m_dumbfire_02_mk1", + "version": 0, + "name": "ARG M Dumbfire Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "medium", + "hull": 1100, + "price": { + "min": 22865, + "max": 27946, + "avg": 25406 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 67 + }, + { + "ware": "hullparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "turret_arg_m_flak_01_mk1", + "version": 0, + "name": "ARG M Flak Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 41730, + "max": 87581, + "avg": 64655 + }, + "owners": [ + "alliance", + "argon", + "buccaneers" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 18 + }, + { + "ware": "turretcomponents", + "amount": 21 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 76 + }, + { + "ware": "hullparts", + "amount": 18 + } + ] + } + ] + }, + { + "id": "turret_arg_m_flak_02_mk1", + "version": 0, + "name": "ARG M Flak Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 500, + "price": { + "min": 41730, + "max": 87581, + "avg": 64655 + }, + "owners": [ + "alliance", + "argon", + "buccaneers" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 18 + }, + { + "ware": "turretcomponents", + "amount": 21 + } + ] + } + ] + }, + { + "id": "turret_arg_m_gatling_01_mk1", + "version": 0, + "name": "ARG M Bolt Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 24665, + "max": 30147, + "avg": 27406 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 12 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 54 + }, + { + "ware": "hullparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "turret_arg_m_gatling_02_mk1", + "version": 0, + "name": "ARG M Bolt Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 500, + "price": { + "min": 22857, + "max": 27936, + "avg": 25397 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 8 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 49 + }, + { + "ware": "hullparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "turret_arg_m_guided_02_mk1", + "version": 0, + "name": "ARG M Tracking Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "medium", + "hull": 1100, + "price": { + "min": 26317, + "max": 32166, + "avg": 29242 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 75 + }, + { + "ware": "hullparts", + "amount": 8 + } + ] + } + ] + }, + { + "id": "turret_arg_m_laser_01_mk1", + "version": 0, + "name": "ARG M Pulse Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 21378, + "max": 26128, + "avg": 23753 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 33 + }, + { + "ware": "hullparts", + "amount": 6 + } + ] + } + ] + }, + { + "id": "turret_arg_m_laser_02_mk1", + "version": 0, + "name": "ARG M Pulse Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 500, + "price": { + "min": 21378, + "max": 26128, + "avg": 23753 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 33 + }, + { + "ware": "hullparts", + "amount": 6 + } + ] + } + ] + }, + { + "id": "turret_arg_m_mining_01_mk1", + "version": 0, + "name": "ARG M Mining Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 16446, + "max": 20101, + "avg": 18274 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 7 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 123 + }, + { + "ware": "hullparts", + "amount": 5 + } + ] + } + ] + }, + { + "id": "turret_arg_m_mining_02_mk1", + "version": 0, + "name": "ARG M Mining Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 500, + "price": { + "min": 16446, + "max": 20101, + "avg": 18274 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 7 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 123 + }, + { + "ware": "hullparts", + "amount": 5 + } + ] + } + ] + }, + { + "id": "turret_arg_m_plasma_01_mk1", + "version": 0, + "name": "ARG M Plasma Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 31249, + "max": 38193, + "avg": 34721 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 13 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 114 + }, + { + "ware": "hullparts", + "amount": 9 + } + ] + } + ] + }, + { + "id": "turret_arg_m_plasma_02_mk1", + "version": 0, + "name": "ARG M Plasma Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 500, + "price": { + "min": 31249, + "max": 38193, + "avg": 34721 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 13 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 114 + }, + { + "ware": "hullparts", + "amount": 9 + } + ] + } + ] + }, + { + "id": "turret_arg_m_shotgun_01_mk1", + "version": 0, + "name": "ARG M Shard Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 22857, + "max": 27936, + "avg": 25397 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 8 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 49 + }, + { + "ware": "hullparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "turret_arg_m_shotgun_02_mk1", + "version": 0, + "name": "ARG M Shard Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 500, + "price": { + "min": 24665, + "max": 30147, + "avg": 27406 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 12 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 54 + }, + { + "ware": "hullparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "turret_gen_m_scrapbeam_01_mk1", + "version": 0, + "name": "Scrap Tractor", + "description": "The Scrap Tractor employs an array of graviton beams to leash an object to a towing ship. The beams automatically and independently adjust their focus to further enhance the gravitational forces as the distance between the two objects becomes greater, resulting in an elasticity effect. All resistance is not futile, however, since severe disruptions, such as being hit by weapon fire, will cause the connection to break. Likewise, the graviton beams are inherently unstable until the artificial gravitational field is fully engaged, and even minor distortions such as the lingering effects of depleted shields, or electrical currents behind the target's hull, will prompt them to lose focus. Because of these limitations, the Scrap Tractor is mainly used to tow ship wrecks below a certain size limit, to avoid exceeding the maximum energy output of the weapon mount. For reasons which are not entirely clear, the connection remains stable during Jump Gate traversals.nnThe modern Scrap Tractor has only recently been made available to the wider Gate Network by the Alliance of the Word. The Alliance received the designs for it by deep space messenger drone, sent from the Avarice system, which was once thought lost. It is, however, by no means an entirely new technology. Before the Terran Conflict, and even up until the Gate Shutdown, a predecessor of this weapon - or rather tool - was occasionally deployed by opportunistic scavengers, looking to profit from the ongoing destruction of advanced warships in conflict zones. However, due to the general abundance of resources in the well-connected Gate Network at the time, and the inherent danger of the profession, it never saw widespread use, and the factories necessary for its production were often dismantled as quickly as they sprung up.", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 12154, + "max": 16444, + "avg": 14299 + }, + "owners": [ + "alliance", + "scaleplate", + "teladi", + "pioneers", + "scavenger" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 75 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 46 + }, + { + "ware": "siliconcarbide", + "amount": 2 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 127 + }, + { + "ware": "hullparts", + "amount": 9 + } + ] + } + ] + }, + { + "id": "turret_kha_m_beam_01_mk1", + "version": 0, + "name": "KHA M Kyon Turret Mk1", + "description": "No information available", + "race": "khaak", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 500, + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "owners": [ + "khaak" + ], + "production": [] + }, + { + "id": "turret_par_l_beam_01_mk1", + "version": 0, + "name": "PAR L Beam Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3450, + "price": { + "min": 135464, + "max": 165567, + "avg": 150515 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 18 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 30 + } + ] + } + ] + }, + { + "id": "turret_par_l_dumbfire_01_mk1", + "version": 0, + "name": "PAR L Dumbfire Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "large", + "hull": 7500, + "price": { + "min": 67905, + "max": 82995, + "avg": 75450 + }, + "owners": [ + "alliance", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 9 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 15 + } + ] + } + ] + }, + { + "id": "turret_par_l_guided_01_mk1", + "version": 0, + "name": "PAR L Tracking Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "large", + "hull": 7500, + "price": { + "min": 78261, + "max": 95652, + "avg": 86957 + }, + "owners": [ + "alliance", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 30 + } + ] + } + ] + }, + { + "id": "turret_par_l_laser_01_mk1", + "version": 0, + "name": "PAR L Pulse Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3450, + "price": { + "min": 52289, + "max": 63909, + "avg": 58099 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 20 + } + ] + } + ] + }, + { + "id": "turret_par_l_mining_01_mk1", + "version": 0, + "name": "PAR L Mining Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3450, + "price": { + "min": 49166, + "max": 60092, + "avg": 54629 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 21 + } + ] + } + ] + }, + { + "id": "turret_par_l_plasma_01_mk1", + "version": 0, + "name": "PAR L Plasma Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3450, + "price": { + "min": 93055, + "max": 113734, + "avg": 103395 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 39 + } + ] + } + ] + }, + { + "id": "turret_par_m_beam_01_mk1", + "version": 0, + "name": "PAR M Beam Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 45385, + "max": 55471, + "avg": 50428 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_par_m_beam_02_mk1", + "version": 0, + "name": "PAR M Beam Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 750, + "price": { + "min": 24665, + "max": 30147, + "avg": 27406 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 12 + } + ] + } + ] + }, + { + "id": "turret_par_m_dumbfire_02_mk1", + "version": 0, + "name": "PAR M Dumbfire Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "medium", + "hull": 1650, + "price": { + "min": 31249, + "max": 38193, + "avg": 34721 + }, + "owners": [ + "alliance", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 13 + } + ] + } + ] + }, + { + "id": "turret_par_m_gatling_01_mk1", + "version": 0, + "name": "PAR M Bolt Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 24665, + "max": 30147, + "avg": 27406 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 12 + } + ] + } + ] + }, + { + "id": "turret_par_m_gatling_02_mk1", + "version": 0, + "name": "PAR M Bolt Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 750, + "price": { + "min": 26317, + "max": 32166, + "avg": 29242 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_par_m_guided_02_mk1", + "version": 0, + "name": "PAR M Tracking Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "medium", + "hull": 1650, + "price": { + "min": 45385, + "max": 55471, + "avg": 50428 + }, + "owners": [ + "alliance", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_par_m_laser_01_mk1", + "version": 0, + "name": "PAR M Pulse Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 21378, + "max": 26128, + "avg": 23753 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_par_m_laser_02_mk1", + "version": 0, + "name": "PAR M Pulse Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 750, + "price": { + "min": 16446, + "max": 20101, + "avg": 18274 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 7 + } + ] + } + ] + }, + { + "id": "turret_par_m_mining_01_mk1", + "version": 0, + "name": "PAR M Mining Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 16446, + "max": 20101, + "avg": 18274 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 7 + } + ] + } + ] + }, + { + "id": "turret_par_m_mining_02_mk1", + "version": 0, + "name": "PAR M Mining Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 750, + "price": { + "min": 22857, + "max": 27936, + "avg": 25397 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 8 + } + ] + } + ] + }, + { + "id": "turret_par_m_plasma_01_mk1", + "version": 0, + "name": "PAR M Plasma Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 31249, + "max": 38193, + "avg": 34721 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 13 + } + ] + } + ] + }, + { + "id": "turret_par_m_plasma_02_mk1", + "version": 0, + "name": "PAR M Plasma Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 750, + "price": { + "min": 21378, + "max": 26128, + "avg": 23753 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_par_m_shotgun_01_mk1", + "version": 0, + "name": "PAR M Shard Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 22857, + "max": 27936, + "avg": 25397 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 8 + } + ] + } + ] + }, + { + "id": "turret_par_m_shotgun_02_mk1", + "version": 0, + "name": "PAR M Shard Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 750, + "price": { + "min": 22865, + "max": 27946, + "avg": 25406 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 5 + } + ] + } + ] + }, + { + "id": "turret_tel_l_beam_01_mk1", + "version": 0, + "name": "TEL L Beam Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3450, + "price": { + "min": 135460, + "max": 165562, + "avg": 150511 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 18 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 30 + } + ] + } + ] + }, + { + "id": "turret_tel_l_dumbfire_01_mk1", + "version": 0, + "name": "TEL L Dumbfire Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "large", + "hull": 7500, + "price": { + "min": 67903, + "max": 82992, + "avg": 75447 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 9 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 15 + } + ] + } + ] + }, + { + "id": "turret_tel_l_guided_01_mk1", + "version": 0, + "name": "TEL L Tracking Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "large", + "hull": 7500, + "price": { + "min": 78257, + "max": 95647, + "avg": 86952 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 30 + } + ] + } + ] + }, + { + "id": "turret_tel_l_laser_01_mk1", + "version": 0, + "name": "TEL L Pulse Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3450, + "price": { + "min": 52286, + "max": 63906, + "avg": 58096 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 20 + } + ] + } + ] + }, + { + "id": "turret_tel_l_mining_01_mk1", + "version": 0, + "name": "TEL L Mining Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3450, + "price": { + "min": 49163, + "max": 60088, + "avg": 54626 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 21 + } + ] + } + ] + }, + { + "id": "turret_tel_l_plasma_01_mk1", + "version": 0, + "name": "TEL L Plasma Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3450, + "price": { + "min": 93050, + "max": 113728, + "avg": 103389 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 39 + } + ] + } + ] + }, + { + "id": "turret_tel_m_beam_01_mk1", + "version": 0, + "name": "TEL M Beam Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 45384, + "max": 55469, + "avg": 50426 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_tel_m_beam_02_mk1", + "version": 0, + "name": "TEL M Beam Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 750, + "price": { + "min": 45384, + "max": 55469, + "avg": 50426 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_tel_m_dumbfire_02_mk1", + "version": 0, + "name": "TEL M Dumbfire Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "medium", + "hull": 1650, + "price": { + "min": 22865, + "max": 27946, + "avg": 25405 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 5 + } + ] + } + ] + }, + { + "id": "turret_tel_m_gatling_01_mk1", + "version": 0, + "name": "TEL M Bolt Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 24664, + "max": 30145, + "avg": 27404 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 12 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 54 + }, + { + "ware": "hullparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "turret_tel_m_gatling_02_mk1", + "version": 0, + "name": "TEL M Bolt Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 750, + "price": { + "min": 22856, + "max": 27935, + "avg": 25395 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 8 + } + ] + } + ] + }, + { + "id": "turret_tel_m_guided_02_mk1", + "version": 0, + "name": "TEL M Tracking Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "medium", + "hull": 1650, + "price": { + "min": 26316, + "max": 32164, + "avg": 29240 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_tel_m_laser_01_mk1", + "version": 0, + "name": "TEL M Pulse Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 21376, + "max": 26127, + "avg": 23752 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 33 + }, + { + "ware": "hullparts", + "amount": 6 + } + ] + } + ] + }, + { + "id": "turret_tel_m_laser_02_mk1", + "version": 0, + "name": "TEL M Pulse Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 750, + "price": { + "min": 21376, + "max": 26127, + "avg": 23752 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_tel_m_mining_01_mk1", + "version": 0, + "name": "TEL M Mining Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 16445, + "max": 20100, + "avg": 18273 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 7 + } + ] + } + ] + }, + { + "id": "turret_tel_m_mining_02_mk1", + "version": 0, + "name": "TEL M Mining Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 750, + "price": { + "min": 16445, + "max": 20100, + "avg": 18273 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 7 + } + ] + } + ] + }, + { + "id": "turret_tel_m_plasma_01_mk1", + "version": 0, + "name": "TEL M Plasma Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 31247, + "max": 38191, + "avg": 34719 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 13 + } + ] + } + ] + }, + { + "id": "turret_tel_m_plasma_02_mk1", + "version": 0, + "name": "TEL M Plasma Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 750, + "price": { + "min": 31247, + "max": 38191, + "avg": 34719 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 13 + } + ] + } + ] + }, + { + "id": "turret_tel_m_shotgun_01_mk1", + "version": 0, + "name": "TEL M Shard Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 22856, + "max": 27935, + "avg": 25395 + }, + "owners": [ + "alliance", + "ministry", + "teladi", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 8 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 49 + }, + { + "ware": "hullparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "turret_tel_m_shotgun_02_mk1", + "version": 0, + "name": "TEL M Shard Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 750, + "price": { + "min": 24664, + "max": 30145, + "avg": 27404 + }, + "owners": [ + "alliance", + "ministry", + "teladi", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 12 + } + ] + } + ] + }, + { + "id": "turret_xen_l_laser_01_mk1", + "version": 0, + "name": "XEN L Pulse Turret Mk1", + "description": "No information available", + "race": "xenon", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3500, + "price": { + "min": 13392, + "max": 16368, + "avg": 14880 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 25 + }, + { + "ware": "ore", + "amount": 15 + }, + { + "ware": "silicon", + "amount": 15 + } + ] + } + ] + }, + { + "id": "turret_xen_m_beam_02_mk1", + "version": 0, + "name": "XEN M Beam Turret Mk1", + "description": "No information available", + "race": "xenon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 800, + "price": { + "min": 23243, + "max": 28407, + "avg": 25825 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 29 + }, + { + "ware": "silicon", + "amount": 29 + } + ] + } + ] + }, + { + "id": "turret_xen_m_laser_01_mk1", + "version": 0, + "name": "XEN M Pulse Turret Mk1", + "description": "No information available", + "race": "xenon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 23242, + "max": 28406, + "avg": 25824 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 29 + }, + { + "ware": "silicon", + "amount": 29 + } + ] + } + ] + }, + { + "id": "turret_xen_m_laser_02_mk1", + "version": 0, + "name": "XEN M Pulse Turret Mk1", + "description": "No information available", + "race": "xenon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 800, + "price": { + "min": 23242, + "max": 28406, + "avg": 25824 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 29 + }, + { + "ware": "silicon", + "amount": 29 + } + ] + } + ] + }, + { + "id": "weapon_arg_l_destroyer_01_mk1", + "version": 0, + "name": "Behemoth Main Battery", + "description": "No information available", + "race": "argon", + "type": "weapons", + "equipmentClass": "weapon", + "size": "large", + "hull": 8000, + "price": { + "min": 936709, + "max": 1144866, + "avg": 1040788 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "scaleplate" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 140 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 170 + } + ] + } + ] + }, + { + "id": "weapon_arg_m_ion_01_mk1", + "version": 0, + "name": "ARG M Ion Blaster Mk1", + "description": "This Argon weapon was designed to be an effective anti-shield measure, carried by small and medium-sized ships. While the electrically charged particles it dispenses will eat through a shield in a remarkably short time, the velocity of the projectile itself is not quite as impressive. For this reason, and the fact that the projectiles are not as damaging once the target's shields have dropped and the projectiles are hitting the ship's hull, the Ion Blaster is often used by the first wave of vanguard ships. It is also effective when used in combination with weapons that are more suited to penetrating the hull. The technology behind this weapon was developed by the Argon Navy's Research and Development team, in cooperation with Jinko-Tekina Technologies. Their goal was to replicate the Boron-made Ion weapon technology, to which the Argon had lost all access during the Jump Gate shutdown. Their success was mixed; although they managed to apply the technology to make Blasters suitable for small ships, their team struggled to develop something suitable for outfitting larger vessels.nnThe Mk2 variant offers a significant boost in damage against shields, but actually deals less damage to a ship's hull than the Mk1, making it an even more specialised weapon.", + "race": "argon", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 302254, + "max": 597081, + "avg": 449667 + }, + "owners": [ + "alliance", + "argon", + "buccaneers", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 56 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 77 + } + ] + } + ] + }, + { + "id": "weapon_arg_m_ion_01_mk2", + "version": 0, + "name": "ARG M Ion Blaster Mk2", + "description": "This Argon weapon was designed to be an effective anti-shield measure, carried by small and medium-sized ships. While the electrically charged particles it dispenses will eat through a shield in a remarkably short time, the velocity of the projectile itself is not quite as impressive. For this reason, and the fact that the projectiles are not as damaging once the target's shields have dropped and the projectiles are hitting the ship's hull, the Ion Blaster is often used by the first wave of vanguard ships. It is also effective when used in combination with weapons that are more suited to penetrating the hull. The technology behind this weapon was developed by the Argon Navy's Research and Development team, in cooperation with Jinko-Tekina Technologies. Their goal was to replicate the Boron-made Ion weapon technology, to which the Argon had lost all access during the Jump Gate shutdown. Their success was mixed; although they managed to apply the technology to make Blasters suitable for small ships, their team struggled to develop something suitable for outfitting larger vessels.nnThe Mk2 variant offers a significant boost in damage against shields, but actually deals less damage to a ship's hull than the Mk1, making it an even more specialised weapon.", + "race": "argon", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 931956, + "max": 1819218, + "avg": 1375587 + }, + "owners": [ + "alliance", + "argon", + "buccaneers", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 184 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "weaponcomponents", + "amount": 191 + } + ] + } + ] + }, + { + "id": "weapon_arg_s_ion_01_mk1", + "version": 0, + "name": "ARG S Ion Blaster Mk1", + "description": "This Argon weapon was designed to be an effective anti-shield measure, carried by small and medium-sized ships. While the electrically charged particles it dispenses will eat through a shield in a remarkably short time, the velocity of the projectile itself is not quite as impressive. For this reason, and the fact that the projectiles are not as damaging once the target's shields have dropped and the projectiles are hitting the ship's hull, the Ion Blaster is often used by the first wave of vanguard ships. It is also effective when used in combination with weapons that are more suited to penetrating the hull. The technology behind this weapon was developed by the Argon Navy's Research and Development team, in cooperation with Jinko-Tekina Technologies. Their goal was to replicate the Boron-made Ion weapon technology, to which the Argon had lost all access during the Jump Gate shutdown. Their success was mixed; although they managed to apply the technology to make Blasters suitable for small ships, their team struggled to develop something suitable for outfitting larger vessels.nnThe Mk2 variant offers a significant boost in damage against shields, but actually deals less damage to a ship's hull than the Mk1, making it an even more specialised weapon.", + "race": "argon", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 160820, + "max": 319189, + "avg": 240004 + }, + "owners": [ + "alliance", + "argon", + "buccaneers", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 29 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 44 + } + ] + } + ] + }, + { + "id": "weapon_arg_s_ion_01_mk2", + "version": 0, + "name": "ARG S Ion Blaster Mk2", + "description": "This Argon weapon was designed to be an effective anti-shield measure, carried by small and medium-sized ships. While the electrically charged particles it dispenses will eat through a shield in a remarkably short time, the velocity of the projectile itself is not quite as impressive. For this reason, and the fact that the projectiles are not as damaging once the target's shields have dropped and the projectiles are hitting the ship's hull, the Ion Blaster is often used by the first wave of vanguard ships. It is also effective when used in combination with weapons that are more suited to penetrating the hull. The technology behind this weapon was developed by the Argon Navy's Research and Development team, in cooperation with Jinko-Tekina Technologies. Their goal was to replicate the Boron-made Ion weapon technology, to which the Argon had lost all access during the Jump Gate shutdown. Their success was mixed; although they managed to apply the technology to make Blasters suitable for small ships, their team struggled to develop something suitable for outfitting larger vessels.nnThe Mk2 variant offers a significant boost in damage against shields, but actually deals less damage to a ship's hull than the Mk1, making it an even more specialised weapon.", + "race": "argon", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 777281, + "max": 1543247, + "avg": 1160264 + }, + "owners": [ + "alliance", + "argon", + "buccaneers", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 140 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "weaponcomponents", + "amount": 215 + } + ] + } + ] + }, + { + "id": "weapon_gen_mine_01", + "version": 0, + "name": "Mine", + "description": "Mines are a commonly-used static combat tool that explode and cause massive hull damage under a number of circumstances. Some explode on contact, some when a target comes within a certain range. Some even track their targets and can be programmed to recognise friend from foe.", + "type": "weapons", + "equipmentClass": "mine", + "explosionDamage": 10000, + "hull": 100, + "price": { + "min": 4843, + "max": 6552, + "avg": 5698 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 3 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 1 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 42 + }, + { + "ware": "siliconcarbide", + "amount": 2 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 45 + }, + { + "ware": "hullparts", + "amount": 1 + } + ] + } + ] + }, + { + "id": "weapon_gen_mine_02", + "version": 0, + "name": "Tracker Mine", + "description": "Tracker Mines are deadly devices that have two phases of operation. In the detection phase, the mine detects a valid target within outer detection range and initiates a limited manoeuvre to intercept the target. When it is deemed close enough to trigger, the second detection phase sees the mine's explosive payload detonate. Tracker Mines are less effective at chasing fast and agile targets, but can be incredibly dangerous when used in number or against larger and less agile targets.", + "type": "weapons", + "equipmentClass": "mine", + "explosionDamage": 10000, + "hull": 100, + "price": { + "min": 9055, + "max": 12250, + "avg": 10653 + }, + "production": [ + { + "time": 60, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 7 + }, + { + "ware": "smartchips", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 3 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "ore", + "amount": 2 + } + ] + }, + { + "time": 60, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 32 + } + ] + }, + { + "time": 60, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 70 + }, + { + "ware": "hullparts", + "amount": 2 + } + ] + } + ] + }, + { + "id": "weapon_gen_mine_03", + "version": 0, + "name": "Friend/Foe Mine", + "description": "Friend/Foe Mines are equipped with specialist software that allows the user to program the mine not to respond to friendly targets. This is usually achieved over comm-frequency identification, and friendly targets must stay informed of changes to the frequency as not to accidentally fall foul of the mine's dangerous payload - this in of itself is almost always an automated process.", + "type": "weapons", + "equipmentClass": "mine", + "explosionDamage": 10000, + "hull": 100, + "price": { + "min": 17478, + "max": 23647, + "avg": 20563 + }, + "production": [ + { + "time": 60, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 11 + }, + { + "ware": "smartchips", + "amount": 30 + }, + { + "ware": "weaponcomponents", + "amount": 3 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "ore", + "amount": 1 + }, + { + "ware": "silicon", + "amount": 1 + } + ] + }, + { + "time": 60, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "metallicmicrolattice", + "amount": 33 + }, + { + "ware": "siliconcarbide", + "amount": 1 + } + ] + }, + { + "time": 60, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 119 + }, + { + "ware": "hullparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_beam_01_mk1", + "version": 0, + "name": "M Beam Emitter Mk1", + "description": "The Beam Emitter is a highly specialised anti-fighter weapon, notable for its high accuracy. It discharges high-velocity beams which hit their target almost immediately. However, somewhat counterintuitively, it achieves this instantaneous accuracy by restraining the energy that the beam puts out. Since the beam is not as intense as the projectiles fired by many of its contemporaries, it only inflicts damage gradually, which exposes the pilot to a counter-attack. Because of this, and the fact that the weapon inflicts more damage the nearer it is to its target, the Beam Emitter is mainly used on nimble fighters which are able to get up close and out-manoeuvre their target when necessary.nnThe Mk2 variant tries to rectify the weak damage output somewhat by ramping up the beam's intensity, but this comes at the cost of the weapon overheating more rapidly.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 25530, + "max": 31203, + "avg": 28367 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 10 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 51 + }, + { + "ware": "siliconcarbide", + "amount": 6 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 78 + }, + { + "ware": "hullparts", + "amount": 8 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_beam_01_mk2", + "version": 0, + "name": "M Beam Emitter Mk2", + "description": "The Beam Emitter is a highly specialised anti-fighter weapon, notable for its high accuracy. It discharges high-velocity beams which hit their target almost immediately. However, somewhat counterintuitively, it achieves this instantaneous accuracy by restraining the energy that the beam puts out. Since the beam is not as intense as the projectiles fired by many of its contemporaries, it only inflicts damage gradually, which exposes the pilot to a counter-attack. Because of this, and the fact that the weapon inflicts more damage the nearer it is to its target, the Beam Emitter is mainly used on nimble fighters which are able to get up close and out-manoeuvre their target when necessary.nnThe Mk2 variant tries to rectify the weak damage output somewhat by ramping up the beam's intensity, but this comes at the cost of the weapon overheating more rapidly.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 127132, + "max": 155383, + "avg": 141257 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 10 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 50 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 14 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 108 + }, + { + "ware": "siliconcarbide", + "amount": 13 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 7 + }, + { + "ware": "energycells", + "amount": 106 + }, + { + "ware": "hullparts", + "amount": 41 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_dumbfire_01_mk1", + "version": 0, + "name": "M Dumbfire Launcher Mk1", + "description": "No information available", + "type": "weapons", + "equipmentClass": "missilelauncher", + "size": "medium", + "hull": 1001, + "price": { + "min": 22558, + "max": 27571, + "avg": 25064 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "hatikvah", + "holyorder", + "ministry", + "paranid", + "scaleplate", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "pioneers", + "terran", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 5 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 26 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 70 + }, + { + "ware": "hullparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_dumbfire_01_mk2", + "version": 0, + "name": "M Dumbfire Launcher Mk2", + "description": "No information available", + "type": "weapons", + "equipmentClass": "missilelauncher", + "size": "medium", + "hull": 1001, + "price": { + "min": 111753, + "max": 136587, + "avg": 124170 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "pioneers", + "terran", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 15 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "weaponcomponents", + "amount": 25 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 12 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 94 + }, + { + "ware": "siliconcarbide", + "amount": 12 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 168 + }, + { + "ware": "hullparts", + "amount": 37 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_gatling_01_mk1", + "version": 0, + "name": "M Bolt Repeater Mk1", + "description": "The Bolt Repeater's average damage output and cooling make it an excellent choice for the indecisive military pilot. It is often considered the logical next step after having familiarised oneself with the Pulse Laser. Its prolonged bursts can easily tear apart targets of a similar size, but the projectiles are larger and move at a slower pace than Pulse Laser particles. This means that the pilot needs to have experience in gauging when to expend their burst, and when to let the weapon cool down and wait for a better opportunity. When facing off against this weapon, nimble ships may be able to dodge its stream of bullets by strafing and making spiral movements. Against capital ships, the Bolt Repeater is a suitable choice for destroying surface elements such as turrets and shields, though it struggles to leave a lasting impact on the ship's hull.nnThe modern-day Bolt Repeater is the result of a development path taken by Argon military scientists from old Mass Driver designs; a weapon which first saw use during the era of the Kha'ak threat. By stripping out the original weapon's ability to penetrate shields, and instead maximising the force of its continuous bullet output, they created a robust all-rounder that was soon adopted by the Federation's allies because of its sheer brutal efficiency.nnThe Mk2 variant uses even larger projectiles while maintaining the same projectile speed, resulting in a lower rate of fire but an increased level of overall trauma to the target's hull and shields.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 23928, + "max": 29245, + "avg": 26586 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 12 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 44 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 63 + }, + { + "ware": "hullparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_gatling_01_mk2", + "version": 0, + "name": "M Bolt Repeater Mk2", + "description": "The Bolt Repeater's average damage output and cooling make it an excellent choice for the indecisive military pilot. It is often considered the logical next step after having familiarised oneself with the Pulse Laser. Its prolonged bursts can easily tear apart targets of a similar size, but the projectiles are larger and move at a slower pace than Pulse Laser particles. This means that the pilot needs to have experience in gauging when to expend their burst, and when to let the weapon cool down and wait for a better opportunity. When facing off against this weapon, nimble ships may be able to dodge its stream of bullets by strafing and making spiral movements. Against capital ships, the Bolt Repeater is a suitable choice for destroying surface elements such as turrets and shields, though it struggles to leave a lasting impact on the ship's hull.nnThe modern-day Bolt Repeater is the result of a development path taken by Argon military scientists from old Mass Driver designs; a weapon which first saw use during the era of the Kha'ak threat. By stripping out the original weapon's ability to penetrate shields, and instead maximising the force of its continuous bullet output, they created a robust all-rounder that was soon adopted by the Federation's allies because of its sheer brutal efficiency.nnThe Mk2 variant uses even larger projectiles while maintaining the same projectile speed, resulting in a lower rate of fire but an increased level of overall trauma to the target's hull and shields.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 119121, + "max": 145592, + "avg": 132356 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 60 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 13 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 96 + }, + { + "ware": "siliconcarbide", + "amount": 13 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 147 + }, + { + "ware": "hullparts", + "amount": 37 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_guided_01_mk1", + "version": 0, + "name": "M Tracking Launcher Mk1", + "description": "No information available", + "type": "weapons", + "equipmentClass": "missilelauncher", + "size": "medium", + "hull": 1001, + "price": { + "min": 44770, + "max": 54719, + "avg": 49745 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "pioneers", + "terran", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 10 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 75 + }, + { + "ware": "siliconcarbide", + "amount": 8 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 117 + }, + { + "ware": "hullparts", + "amount": 15 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_guided_01_mk2", + "version": 0, + "name": "M Tracking Launcher Mk2", + "description": "No information available", + "type": "weapons", + "equipmentClass": "missilelauncher", + "size": "medium", + "hull": 1001, + "price": { + "min": 222815, + "max": 272330, + "avg": 247572 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "pioneers", + "terran", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 30 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "weaponcomponents", + "amount": 50 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 25 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 127 + }, + { + "ware": "siliconcarbide", + "amount": 22 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 13 + }, + { + "ware": "energycells", + "amount": 175 + }, + { + "ware": "hullparts", + "amount": 75 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_laser_01_mk1", + "version": 0, + "name": "M Pulse Laser Mk1", + "description": "Many experienced pilots fondly remember the affordable and reliable Pulse Laser as their first weapon. Its pin-point accuracy and high projectile speed make it an excellent choice for fighting small and fast targets, handling fragile lockboxes, and for dealing with deployables like mines and lasertowers. Often initially scoffed at for its comparatively low damage output, its slow heat generation and sublime cooling result in a steady stream of disruptive fire, which in turn rewards pilots who can stay on target for an extended period. Faced with larger enemies, the Pulse Laser does not become obsolete as quickly as one might expect. Used in greater numbers, it can still be a formidable choice against frigates and corvettes, though an upgrade to a larger weapon mount may be advisable to maintain a level playing field. The Pulse Laser remains the preferred choice of commanders who favour versatility over optimisation against specific opponents, or who have little trust in the aim of their subordinates.nnThe technology behind the Pulse Laser is advanced and efficient. Within a shielded chamber, microscopic fragments of matter are superheated and accelerated by a pulsed neodymium laser. The weapon was originally designed by the Ministry of Finance to provide a robust loadout for their escort fleets, without having to invest time and resources into the maintenance of a well-rounded combined arms setup. Over time, and thanks to the Teladi Company's aggressive marketing, it has been adopted as the number one weapon of convenience by all other former members of the Community of Planets.nnThe Mk2 variant sports a slightly longer burst. This lowers the efficiency of the heat dissipation between bursts and thereby exponentially drives up the cost of the internal shielding, but results in an overall higher damage output.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 20763, + "max": 25377, + "avg": 23070 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "holyorder", + "ministry", + "paranid", + "scaleplate", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 10 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 30 + }, + { + "ware": "siliconcarbide", + "amount": 3 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 41 + }, + { + "ware": "hullparts", + "amount": 6 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_laser_01_mk2", + "version": 0, + "name": "M Pulse Laser Mk2", + "description": "Many experienced pilots fondly remember the affordable and reliable Pulse Laser as their first weapon. Its pin-point accuracy and high projectile speed make it an excellent choice for fighting small and fast targets, handling fragile lockboxes, and for dealing with deployables like mines and lasertowers. Often initially scoffed at for its comparatively low damage output, its slow heat generation and sublime cooling result in a steady stream of disruptive fire, which in turn rewards pilots who can stay on target for an extended period. Faced with larger enemies, the Pulse Laser does not become obsolete as quickly as one might expect. Used in greater numbers, it can still be a formidable choice against frigates and corvettes, though an upgrade to a larger weapon mount may be advisable to maintain a level playing field. The Pulse Laser remains the preferred choice of commanders who favour versatility over optimisation against specific opponents, or who have little trust in the aim of their subordinates.nnThe technology behind the Pulse Laser is advanced and efficient. Within a shielded chamber, microscopic fragments of matter are superheated and accelerated by a pulsed neodymium laser. The weapon was originally designed by the Ministry of Finance to provide a robust loadout for their escort fleets, without having to invest time and resources into the maintenance of a well-rounded combined arms setup. Over time, and thanks to the Teladi Company's aggressive marketing, it has been adopted as the number one weapon of convenience by all other former members of the Community of Planets.nnThe Mk2 variant sports a slightly longer burst. This lowers the efficiency of the heat dissipation between bursts and thereby exponentially drives up the cost of the internal shielding, but results in an overall higher damage output.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 103297, + "max": 126252, + "avg": 114775 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 50 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 11 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 75 + }, + { + "ware": "siliconcarbide", + "amount": 13 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 162 + }, + { + "ware": "hullparts", + "amount": 32 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_mining_01_mk1", + "version": 0, + "name": "M Mining Drill Mk1", + "description": "No information available", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 16016, + "max": 19575, + "avg": 17796 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "holyorder", + "ministry", + "paranid", + "scaleplate", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "pioneers", + "terran", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 7 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 34 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 128 + }, + { + "ware": "hullparts", + "amount": 5 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_mining_01_mk2", + "version": 0, + "name": "M Mining Drill Mk2", + "description": "No information available", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 79562, + "max": 97243, + "avg": 88402 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "pioneers", + "terran", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 35 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 73 + }, + { + "ware": "siliconcarbide", + "amount": 12 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 114 + }, + { + "ware": "hullparts", + "amount": 25 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_plasma_01_mk1", + "version": 0, + "name": "M Plasma Cannon Mk1", + "description": "The Plasma Cannon combines high damage output with long range. Its drawbacks, slow projectile speed and fire rate, made worse by high heat generation, can make landing hits as challenging as it is important. This results in its predominant use being against capital ships, where swarms of fighters deploy Plasma Cannons to great success. Unlike short ranged weapons such as the Shard Battery and the Split Tau Accelerator, which outperform it in damage output and are more suited to attacking capital ships from a blind spot, the Plasma Cannon's greatest advantage is its range. Skilled pilots are also able to hunt down smaller targets efficiently, either by deploying the Plasma Cannon at short range or by predicting the courses of the projectile and target. Similarly, skilled pilots are also able to evade and avoid being hit by such attempts.nnThe Plasma Cannon was developed during the early days of the Paranid Civil War, by the Holy Order of the Pontifex, building upon the High Energy Plasma Thrower. Like its predecessor, it suffers from high radiation build-up, and this needs to be purged between shots to prevent it from damaging itself. The blueprint for the Plasma Cannon was stolen by the Argon Secret Service and distributed throughout the Commonwealth when the Argon Federation joined the war effort.nnThe Mk2 variant has a higher rate of fire, lower heat generation and increased damage output.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 30277, + "max": 37005, + "avg": 33641 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 13 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 48 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 118 + }, + { + "ware": "hullparts", + "amount": 9 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_plasma_01_mk2", + "version": 0, + "name": "M Plasma Cannon Mk2", + "description": "The Plasma Cannon combines high damage output with long range. Its drawbacks, slow projectile speed and fire rate, made worse by high heat generation, can make landing hits as challenging as it is important. This results in its predominant use being against capital ships, where swarms of fighters deploy Plasma Cannons to great success. Unlike short ranged weapons such as the Shard Battery and the Split Tau Accelerator, which outperform it in damage output and are more suited to attacking capital ships from a blind spot, the Plasma Cannon's greatest advantage is its range. Skilled pilots are also able to hunt down smaller targets efficiently, either by deploying the Plasma Cannon at short range or by predicting the courses of the projectile and target. Similarly, skilled pilots are also able to evade and avoid being hit by such attempts.nnThe Plasma Cannon was developed during the early days of the Paranid Civil War, by the Holy Order of the Pontifex, building upon the High Energy Plasma Thrower. Like its predecessor, it suffers from high radiation build-up, and this needs to be purged between shots to prevent it from damaging itself. The blueprint for the Plasma Cannon was stolen by the Argon Secret Service and distributed throughout the Commonwealth when the Argon Federation joined the war effort.nnThe Mk2 variant has a higher rate of fire, lower heat generation and increased damage output.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 150867, + "max": 184393, + "avg": 167630 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 10 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 65 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 17 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 111 + }, + { + "ware": "siliconcarbide", + "amount": 14 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 155 + }, + { + "ware": "hullparts", + "amount": 48 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_shotgun_01_mk1", + "version": 0, + "name": "M Shard Battery Mk1", + "description": "The Shard Battery is essentially a spaceborne shotgun, that makes up for its low effective range and accuracy by inflicting devastating trauma against shields and hull alike. At its core, it is functionally similar to the Bolt Repeater that it was originally developed from. However, the ejection of multiple projectiles at once requires a wider barrel aperture, a larger spacing between shots, and generates a higher energy drain. When it comes to its damage output, the Shard Battery has been compared to the Plasma Cannon, but it offers a slightly different range of applications. Skilled military pilots may occasionally make use of this weapon against small targets in an attempt to end the fight quickly, but it is generally agreed upon that one should try to avoid these situations. The Shard Battery reaches its fullest potential against larger and slower targets such as M-sized ships, which cannot as easily evade its projectiles. It is also especially effective against capital ship surface elements, provided that the pilot can find an opportunity to target them from the blind spots of nearby turrets.nnThe Mk2 variant fires fewer shards at a higher speed but with a shorter interval. This raises the overall damage output and improves the weapon's accuracy, especially against more nimble targets, but in turn incurs a quicker heat build-up.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 22365, + "max": 27335, + "avg": 24850 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 8 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 37 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 55 + }, + { + "ware": "hullparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_shotgun_01_mk2", + "version": 0, + "name": "M Shard Battery Mk2", + "description": "The Shard Battery is essentially a spaceborne shotgun, that makes up for its low effective range and accuracy by inflicting devastating trauma against shields and hull alike. At its core, it is functionally similar to the Bolt Repeater that it was originally developed from. However, the ejection of multiple projectiles at once requires a wider barrel aperture, a larger spacing between shots, and generates a higher energy drain. When it comes to its damage output, the Shard Battery has been compared to the Plasma Cannon, but it offers a slightly different range of applications. Skilled military pilots may occasionally make use of this weapon against small targets in an attempt to end the fight quickly, but it is generally agreed upon that one should try to avoid these situations. The Shard Battery reaches its fullest potential against larger and slower targets such as M-sized ships, which cannot as easily evade its projectiles. It is also especially effective against capital ship surface elements, provided that the pilot can find an opportunity to target them from the blind spots of nearby turrets.nnThe Mk2 variant fires fewer shards at a higher speed but with a shorter interval. This raises the overall damage output and improves the weapon's accuracy, especially against more nimble targets, but in turn incurs a quicker heat build-up.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 111308, + "max": 136043, + "avg": 123676 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 10 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 40 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 12 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 88 + }, + { + "ware": "siliconcarbide", + "amount": 13 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 121 + }, + { + "ware": "hullparts", + "amount": 36 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_torpedo_01_mk1", + "version": 0, + "name": "M Torpedo Launcher Mk1", + "description": "No information available", + "type": "weapons", + "equipmentClass": "missilelauncher", + "size": "medium", + "hull": 1001, + "price": { + "min": 78039, + "max": 95381, + "avg": 86710 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 25 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 67 + }, + { + "ware": "siliconcarbide", + "amount": 11 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 126 + }, + { + "ware": "hullparts", + "amount": 25 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_torpedo_01_mk2", + "version": 0, + "name": "M Torpedo Launcher Mk2", + "description": "No information available", + "type": "weapons", + "equipmentClass": "missilelauncher", + "size": "medium", + "hull": 1001, + "price": { + "min": 389160, + "max": 475640, + "avg": 432400 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 40 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "weaponcomponents", + "amount": 125 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 44 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 225 + }, + { + "ware": "siliconcarbide", + "amount": 38 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 22 + }, + { + "ware": "energycells", + "amount": 305 + }, + { + "ware": "hullparts", + "amount": 128 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_beam_01_mk1", + "version": 0, + "name": "S Beam Emitter Mk1", + "description": "The Beam Emitter is a highly specialised anti-fighter weapon, notable for its high accuracy. It discharges high-velocity beams which hit their target almost immediately. However, somewhat counterintuitively, it achieves this instantaneous accuracy by restraining the energy that the beam puts out. Since the beam is not as intense as the projectiles fired by many of its contemporaries, it only inflicts damage gradually, which exposes the pilot to a counter-attack. Because of this, and the fact that the weapon inflicts more damage the nearer it is to its target, the Beam Emitter is mainly used on nimble fighters which are able to get up close and out-manoeuvre their target when necessary.nnThe Mk2 variant tries to rectify the weak damage output somewhat by ramping up the beam's intensity, but this comes at the cost of the weapon overheating more rapidly.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 23948, + "max": 29269, + "avg": 26609 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 9 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 44 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 73 + }, + { + "ware": "hullparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_beam_01_mk2", + "version": 0, + "name": "S Beam Emitter Mk2", + "description": "The Beam Emitter is a highly specialised anti-fighter weapon, notable for its high accuracy. It discharges high-velocity beams which hit their target almost immediately. However, somewhat counterintuitively, it achieves this instantaneous accuracy by restraining the energy that the beam puts out. Since the beam is not as intense as the projectiles fired by many of its contemporaries, it only inflicts damage gradually, which exposes the pilot to a counter-attack. Because of this, and the fact that the weapon inflicts more damage the nearer it is to its target, the Beam Emitter is mainly used on nimble fighters which are able to get up close and out-manoeuvre their target when necessary.nnThe Mk2 variant tries to rectify the weak damage output somewhat by ramping up the beam's intensity, but this comes at the cost of the weapon overheating more rapidly.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 104979, + "max": 128308, + "avg": 116643 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 10 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 36 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 11 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 84 + }, + { + "ware": "siliconcarbide", + "amount": 14 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 76 + }, + { + "ware": "hullparts", + "amount": 34 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_burst_01_mk1", + "version": 0, + "name": "S Burst Ray Mk1", + "description": "Because of its amplified destructive power against surface elements, the Burst Ray is the weapon of choice for daring fighter pilots who want to strip capital ships of their engines, shield generators and turrets. As the name suggests, it fires a sequenced burst of focused radiation to deliver several galvanic calefactions in quick succession, causing the target's surface material to lose cohesion on a molecular level. This niche ability comes at a cost, however: its short range and low energy output against the main shield and hull of its target make the Burst Ray an ineffective weapon for skirmishes with small and medium-sized ships. In a pinch, the fact that the individual beams deliver their damage instantaneously, may nevertheless prove useful against small and evasive targets.nnIt is said that the Priest Duke of Pious Mists himself ordered the development of a specialised anti-capital ship weapon to counter the overreliance on heavy fleets and long-range weaponry of the Holy Order of the Pontifex.nnThe Mk2 variant fires more often per burst, which increases the energy output significantly. In turn, the effective range drops slightly and the weapon becomes prone to overheating.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 18582, + "max": 39398, + "avg": 28990 + }, + "owners": [ + "alliance", + "buccaneers", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 13 + }, + { + "ware": "weaponcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_burst_01_mk2", + "version": 0, + "name": "S Burst Ray Mk2", + "description": "Because of its amplified destructive power against surface elements, the Burst Ray is the weapon of choice for daring fighter pilots who want to strip capital ships of their engines, shield generators and turrets. As the name suggests, it fires a sequenced burst of focused radiation to deliver several galvanic calefactions in quick succession, causing the target's surface material to lose cohesion on a molecular level. This niche ability comes at a cost, however: its short range and low energy output against the main shield and hull of its target make the Burst Ray an ineffective weapon for skirmishes with small and medium-sized ships. In a pinch, the fact that the individual beams deliver their damage instantaneously, may nevertheless prove useful against small and evasive targets.nnIt is said that the Priest Duke of Pious Mists himself ordered the development of a specialised anti-capital ship weapon to counter the overreliance on heavy fleets and long-range weaponry of the Holy Order of the Pontifex.nnThe Mk2 variant fires more often per burst, which increases the energy output significantly. In turn, the effective range drops slightly and the weapon becomes prone to overheating.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 56299, + "max": 108078, + "avg": 82188 + }, + "owners": [ + "alliance", + "buccaneers", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 12 + }, + { + "ware": "energycells", + "amount": 16 + }, + { + "ware": "weaponcomponents", + "amount": 7 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_cannon_01_mk1", + "version": 0, + "name": "S Blast Mortar Mk1", + "description": "The Blast Mortar launches a tightly packed ball of high explosives, carefully separated from a layer of crushed and superheated asteroid matter. This swirling bubble of doom detonates on impact, or upon reaching its maximum effective range. Its decent blast radius, added to the already high damage per projectile, make it an excellent choice for taking out the engines, turrets and shield generators of capital ships. It is often favourably compared to the Plasma Cannon, a household standard in the post-realignment Jump Gate network, because it has the higher projectile speed of the two. This offers desperate pilots the ability to engage smaller targets when necessary. However, it is no flak cannon and, if given the choice, it is usually advisable to use this weapon against ships of at least medium size, which cannot evade its fire.nnBefore the Holy Order of the Pontifex was even officially proclaimed, its constituents began experimenting with equipment that would make efficient use of the limited resources available at the time. This resulted in weapons such as the Blast Mortar: surprisingly simple to produce, at least from the perspective of the superior Paranid intellect, yet at the same time brutally effective. Though they were initially ordered to build stronger beams for their visual effect, the priest engineers put their faith in what they most believed in: local maxima in the parameter space. Like a paradise yet untouched by mortal interference, the Blast Mortar works in perfect equilibrium as long as its careful calibration isn't disturbed. Bafflingly resistant to attempts at reverse engineering and improvement by foreign powers' militaries, the mechanism tends to suffer drastic loss of efficiency if one dares to adjust its properties, even in the most miniscule way.nnThe Mk2 variant is the exception to this rule, being a creation by the very same priest engineers that designed the original. It is an upgrade as straightforward as it gets, simply offering significantly enhanced destructive power and slightly improved heat dissipation.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "price": { + "min": 40538, + "max": 81008, + "avg": 60773 + }, + "owners": [ + "buccaneers", + "holyorder", + "ministry", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 7 + }, + { + "ware": "energycells", + "amount": 9 + }, + { + "ware": "weaponcomponents", + "amount": 12 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_cannon_01_mk2", + "version": 0, + "name": "S Blast Mortar Mk2", + "description": "The Blast Mortar launches a tightly packed ball of high explosives, carefully separated from a layer of crushed and superheated asteroid matter. This swirling bubble of doom detonates on impact, or upon reaching its maximum effective range. Its decent blast radius, added to the already high damage per projectile, make it an excellent choice for taking out the engines, turrets and shield generators of capital ships. It is often favourably compared to the Plasma Cannon, a household standard in the post-realignment Jump Gate network, because it has the higher projectile speed of the two. This offers desperate pilots the ability to engage smaller targets when necessary. However, it is no flak cannon and, if given the choice, it is usually advisable to use this weapon against ships of at least medium size, which cannot evade its fire.nnBefore the Holy Order of the Pontifex was even officially proclaimed, its constituents began experimenting with equipment that would make efficient use of the limited resources available at the time. This resulted in weapons such as the Blast Mortar: surprisingly simple to produce, at least from the perspective of the superior Paranid intellect, yet at the same time brutally effective. Though they were initially ordered to build stronger beams for their visual effect, the priest engineers put their faith in what they most believed in: local maxima in the parameter space. Like a paradise yet untouched by mortal interference, the Blast Mortar works in perfect equilibrium as long as its careful calibration isn't disturbed. Bafflingly resistant to attempts at reverse engineering and improvement by foreign powers' militaries, the mechanism tends to suffer drastic loss of efficiency if one dares to adjust its properties, even in the most miniscule way.nnThe Mk2 variant is the exception to this rule, being a creation by the very same priest engineers that designed the original. It is an upgrade as straightforward as it gets, simply offering significantly enhanced destructive power and slightly improved heat dissipation.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "price": { + "min": 57963, + "max": 111999, + "avg": 84981 + }, + "owners": [ + "buccaneers", + "holyorder", + "ministry", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 12 + }, + { + "ware": "energycells", + "amount": 11 + }, + { + "ware": "weaponcomponents", + "amount": 9 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_dumbfire_01_mk1", + "version": 0, + "name": "S Dumbfire Launcher Mk1", + "description": "No information available", + "type": "weapons", + "equipmentClass": "missilelauncher", + "size": "small", + "hull": 500, + "price": { + "min": 6695, + "max": 8183, + "avg": 7439 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "hatikvah", + "holyorder", + "ministry", + "paranid", + "scaleplate", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "pioneers", + "terran", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 1 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 33 + }, + { + "ware": "siliconcarbide", + "amount": 3 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 65 + }, + { + "ware": "hullparts", + "amount": 2 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_dumbfire_01_mk2", + "version": 0, + "name": "S Dumbfire Launcher Mk2", + "description": "No information available", + "type": "weapons", + "equipmentClass": "missilelauncher", + "size": "small", + "hull": 500, + "price": { + "min": 13370, + "max": 16341, + "avg": 14855 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "pioneers", + "terran", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "weaponcomponents", + "amount": 5 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 40 + }, + { + "ware": "siliconcarbide", + "amount": 1 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 120 + }, + { + "ware": "hullparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_gatling_01_mk1", + "version": 0, + "name": "S Bolt Repeater Mk1", + "description": "The Bolt Repeater's average damage output and cooling make it an excellent choice for the indecisive military pilot. It is often considered the logical next step after having familiarised oneself with the Pulse Laser. Its prolonged bursts can easily tear apart targets of a similar size, but the projectiles are larger and move at a slower pace than Pulse Laser particles. This means that the pilot needs to have experience in gauging when to expend their burst, and when to let the weapon cool down and wait for a better opportunity. When facing off against this weapon, nimble ships may be able to dodge its stream of bullets by strafing and making spiral movements. Against capital ships, the Bolt Repeater is a suitable choice for destroying surface elements such as turrets and shields, though it struggles to leave a lasting impact on the ship's hull.nnThe modern-day Bolt Repeater is the result of a development path taken by Argon military scientists from old Mass Driver designs; a weapon which first saw use during the era of the Kha'ak threat. By stripping out the original weapon's ability to penetrate shields, and instead maximising the force of its continuous bullet output, they created a robust all-rounder that was soon adopted by the Federation's allies because of its sheer brutal efficiency.nnThe Mk2 variant uses even larger projectiles while maintaining the same projectile speed, resulting in a lower rate of fire but an increased level of overall trauma to the target's hull and shields.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 43055, + "max": 52623, + "avg": 47839 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 3 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 53 + }, + { + "ware": "siliconcarbide", + "amount": 8 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 115 + }, + { + "ware": "hullparts", + "amount": 15 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_gatling_01_mk2", + "version": 0, + "name": "S Bolt Repeater Mk2", + "description": "The Bolt Repeater's average damage output and cooling make it an excellent choice for the indecisive military pilot. It is often considered the logical next step after having familiarised oneself with the Pulse Laser. Its prolonged bursts can easily tear apart targets of a similar size, but the projectiles are larger and move at a slower pace than Pulse Laser particles. This means that the pilot needs to have experience in gauging when to expend their burst, and when to let the weapon cool down and wait for a better opportunity. When facing off against this weapon, nimble ships may be able to dodge its stream of bullets by strafing and making spiral movements. Against capital ships, the Bolt Repeater is a suitable choice for destroying surface elements such as turrets and shields, though it struggles to leave a lasting impact on the ship's hull.nnThe modern-day Bolt Repeater is the result of a development path taken by Argon military scientists from old Mass Driver designs; a weapon which first saw use during the era of the Kha'ak threat. By stripping out the original weapon's ability to penetrate shields, and instead maximising the force of its continuous bullet output, they created a robust all-rounder that was soon adopted by the Federation's allies because of its sheer brutal efficiency.nnThe Mk2 variant uses even larger projectiles while maintaining the same projectile speed, resulting in a lower rate of fire but an increased level of overall trauma to the target's hull and shields.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 214756, + "max": 262480, + "avg": 238618 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 40 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 15 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 24 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 145 + }, + { + "ware": "siliconcarbide", + "amount": 22 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 13 + }, + { + "ware": "energycells", + "amount": 175 + }, + { + "ware": "hullparts", + "amount": 75 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_guided_01_mk1", + "version": 0, + "name": "S Tracking Launcher Mk1", + "description": "No information available", + "type": "weapons", + "equipmentClass": "missilelauncher", + "size": "small", + "hull": 500, + "price": { + "min": 8277, + "max": 10117, + "avg": 9197 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "pioneers", + "terran", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 2 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 40 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 83 + }, + { + "ware": "hullparts", + "amount": 2 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_guided_01_mk2", + "version": 0, + "name": "S Tracking Launcher Mk2", + "description": "No information available", + "type": "weapons", + "equipmentClass": "missilelauncher", + "size": "small", + "hull": 500, + "price": { + "min": 40349, + "max": 49316, + "avg": 44832 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "pioneers", + "terran", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "weaponcomponents", + "amount": 10 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 30 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 90 + }, + { + "ware": "hullparts", + "amount": 13 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_laser_01_mk1", + "version": 0, + "name": "S Pulse Laser Mk1", + "description": "Many experienced pilots fondly remember the affordable and reliable Pulse Laser as their first weapon. Its pin-point accuracy and high projectile speed make it an excellent choice for fighting small and fast targets, handling fragile lockboxes, and for dealing with deployables like mines and lasertowers. Often initially scoffed at for its comparatively low damage output, its slow heat generation and sublime cooling result in a steady stream of disruptive fire, which in turn rewards pilots who can stay on target for an extended period. Faced with larger enemies, the Pulse Laser does not become obsolete as quickly as one might expect. Used in greater numbers, it can still be a formidable choice against frigates and corvettes, though an upgrade to a larger weapon mount may be advisable to maintain a level playing field. The Pulse Laser remains the preferred choice of commanders who favour versatility over optimisation against specific opponents, or who have little trust in the aim of their subordinates.nnThe technology behind the Pulse Laser is advanced and efficient. Within a shielded chamber, microscopic fragments of matter are superheated and accelerated by a pulsed neodymium laser. The weapon was originally designed by the Ministry of Finance to provide a robust loadout for their escort fleets, without having to invest time and resources into the maintenance of a well-rounded combined arms setup. Over time, and thanks to the Teladi Company's aggressive marketing, it has been adopted as the number one weapon of convenience by all other former members of the Community of Planets.nnThe Mk2 variant sports a slightly longer burst. This lowers the efficiency of the heat dissipation between bursts and thereby exponentially drives up the cost of the internal shielding, but results in an overall higher damage output.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 16056, + "max": 19624, + "avg": 17840 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "holyorder", + "ministry", + "paranid", + "scaleplate", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 1 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 35 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "hullparts", + "amount": 5 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_laser_01_mk2", + "version": 0, + "name": "S Pulse Laser Mk2", + "description": "Many experienced pilots fondly remember the affordable and reliable Pulse Laser as their first weapon. Its pin-point accuracy and high projectile speed make it an excellent choice for fighting small and fast targets, handling fragile lockboxes, and for dealing with deployables like mines and lasertowers. Often initially scoffed at for its comparatively low damage output, its slow heat generation and sublime cooling result in a steady stream of disruptive fire, which in turn rewards pilots who can stay on target for an extended period. Faced with larger enemies, the Pulse Laser does not become obsolete as quickly as one might expect. Used in greater numbers, it can still be a formidable choice against frigates and corvettes, though an upgrade to a larger weapon mount may be advisable to maintain a level playing field. The Pulse Laser remains the preferred choice of commanders who favour versatility over optimisation against specific opponents, or who have little trust in the aim of their subordinates.nnThe technology behind the Pulse Laser is advanced and efficient. Within a shielded chamber, microscopic fragments of matter are superheated and accelerated by a pulsed neodymium laser. The weapon was originally designed by the Ministry of Finance to provide a robust loadout for their escort fleets, without having to invest time and resources into the maintenance of a well-rounded combined arms setup. Over time, and thanks to the Teladi Company's aggressive marketing, it has been adopted as the number one weapon of convenience by all other former members of the Community of Planets.nnThe Mk2 variant sports a slightly longer burst. This lowers the efficiency of the heat dissipation between bursts and thereby exponentially drives up the cost of the internal shielding, but results in an overall higher damage output.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 79761, + "max": 97485, + "avg": 88623 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 15 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 77 + }, + { + "ware": "siliconcarbide", + "amount": 12 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 174 + }, + { + "ware": "hullparts", + "amount": 28 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_mining_01_mk1", + "version": 0, + "name": "S Mining Drill Mk1", + "description": "No information available", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 6522, + "max": 7971, + "avg": 7247 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "pioneers", + "terran", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 1 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 45 + }, + { + "ware": "siliconcarbide", + "amount": 3 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "hullparts", + "amount": 2 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_mining_01_mk2", + "version": 0, + "name": "S Mining Drill Mk2", + "description": "No information available", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 32092, + "max": 39223, + "avg": 35658 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "pioneers", + "terran", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 44 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 145 + }, + { + "ware": "hullparts", + "amount": 11 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_plasma_01_mk1", + "version": 0, + "name": "S Plasma Cannon Mk1", + "description": "The Plasma Cannon combines high damage output with long range. Its drawbacks, slow projectile speed and fire rate, made worse by high heat generation, can make landing hits as challenging as it is important. This results in its predominant use being against capital ships, where swarms of fighters deploy Plasma Cannons to great success. Unlike short ranged weapons such as the Shard Battery and the Split Tau Accelerator, which outperform it in damage output and are more suited to attacking capital ships from a blind spot, the Plasma Cannon's greatest advantage is its range. Skilled pilots are also able to hunt down smaller targets efficiently, either by deploying the Plasma Cannon at short range or by predicting the courses of the projectile and target. Similarly, skilled pilots are also able to evade and avoid being hit by such attempts.nnThe Plasma Cannon was developed during the early days of the Paranid Civil War, by the Holy Order of the Pontifex, building upon the High Energy Plasma Thrower. Like its predecessor, it suffers from high radiation build-up, and this needs to be purged between shots to prevent it from damaging itself. The blueprint for the Plasma Cannon was stolen by the Argon Secret Service and distributed throughout the Commonwealth when the Argon Federation joined the war effort.nnThe Mk2 variant has a higher rate of fire, lower heat generation and increased damage output.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 12851, + "max": 15707, + "avg": 14279 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 20 + }, + { + "ware": "siliconcarbide", + "amount": 3 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 105 + }, + { + "ware": "hullparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_plasma_01_mk2", + "version": 0, + "name": "S Plasma Cannon Mk2", + "description": "The Plasma Cannon combines high damage output with long range. Its drawbacks, slow projectile speed and fire rate, made worse by high heat generation, can make landing hits as challenging as it is important. This results in its predominant use being against capital ships, where swarms of fighters deploy Plasma Cannons to great success. Unlike short ranged weapons such as the Shard Battery and the Split Tau Accelerator, which outperform it in damage output and are more suited to attacking capital ships from a blind spot, the Plasma Cannon's greatest advantage is its range. Skilled pilots are also able to hunt down smaller targets efficiently, either by deploying the Plasma Cannon at short range or by predicting the courses of the projectile and target. Similarly, skilled pilots are also able to evade and avoid being hit by such attempts.nnThe Plasma Cannon was developed during the early days of the Paranid Civil War, by the Holy Order of the Pontifex, building upon the High Energy Plasma Thrower. Like its predecessor, it suffers from high radiation build-up, and this needs to be purged between shots to prevent it from damaging itself. The blueprint for the Plasma Cannon was stolen by the Argon Secret Service and distributed throughout the Commonwealth when the Argon Federation joined the war effort.nnThe Mk2 variant has a higher rate of fire, lower heat generation and increased damage output.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 55827, + "max": 68233, + "avg": 62030 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 20 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 46 + }, + { + "ware": "siliconcarbide", + "amount": 6 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 66 + }, + { + "ware": "hullparts", + "amount": 18 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_shotgun_01_mk1", + "version": 0, + "name": "S Shard Battery Mk1", + "description": "The Shard Battery is essentially a spaceborne shotgun, that makes up for its low effective range and accuracy by inflicting devastating trauma against shields and hull alike. At its core, it is functionally similar to the Bolt Repeater that it was originally developed from. However, the ejection of multiple projectiles at once requires a wider barrel aperture, a larger spacing between shots, and generates a higher energy drain. When it comes to its damage output, the Shard Battery has been compared to the Plasma Cannon, but it offers a slightly different range of applications. Skilled military pilots may occasionally make use of this weapon against small targets in an attempt to end the fight quickly, but it is generally agreed upon that one should try to avoid these situations. The Shard Battery reaches its fullest potential against larger and slower targets such as M-sized ships, which cannot as easily evade its projectiles. It is also especially effective against capital ship surface elements, provided that the pilot can find an opportunity to target them from the blind spots of nearby turrets.nnThe Mk2 variant fires fewer shards at a higher speed but with a shorter interval. This raises the overall damage output and improves the weapon's accuracy, especially against more nimble targets, but in turn incurs a quicker heat build-up.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 27152, + "max": 33186, + "avg": 30169 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 35 + }, + { + "ware": "siliconcarbide", + "amount": 2 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 103 + }, + { + "ware": "hullparts", + "amount": 9 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_shotgun_01_mk2", + "version": 0, + "name": "S Shard Battery Mk2", + "description": "The Shard Battery is essentially a spaceborne shotgun, that makes up for its low effective range and accuracy by inflicting devastating trauma against shields and hull alike. At its core, it is functionally similar to the Bolt Repeater that it was originally developed from. However, the ejection of multiple projectiles at once requires a wider barrel aperture, a larger spacing between shots, and generates a higher energy drain. When it comes to its damage output, the Shard Battery has been compared to the Plasma Cannon, but it offers a slightly different range of applications. Skilled military pilots may occasionally make use of this weapon against small targets in an attempt to end the fight quickly, but it is generally agreed upon that one should try to avoid these situations. The Shard Battery reaches its fullest potential against larger and slower targets such as M-sized ships, which cannot as easily evade its projectiles. It is also especially effective against capital ship surface elements, provided that the pilot can find an opportunity to target them from the blind spots of nearby turrets.nnThe Mk2 variant fires fewer shards at a higher speed but with a shorter interval. This raises the overall damage output and improves the weapon's accuracy, especially against more nimble targets, but in turn incurs a quicker heat build-up.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 135242, + "max": 165296, + "avg": 150269 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 20 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 25 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 15 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 95 + }, + { + "ware": "siliconcarbide", + "amount": 14 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 102 + }, + { + "ware": "hullparts", + "amount": 46 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_torpedo_01_mk1", + "version": 0, + "name": "S Torpedo Launcher Mk1", + "description": "No information available", + "type": "weapons", + "equipmentClass": "missilelauncher", + "size": "small", + "hull": 500, + "price": { + "min": 22558, + "max": 27571, + "avg": 25064 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 5 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 26 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 70 + }, + { + "ware": "hullparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_torpedo_01_mk2", + "version": 0, + "name": "S Torpedo Launcher Mk2", + "description": "No information available", + "type": "weapons", + "equipmentClass": "missilelauncher", + "size": "small", + "hull": 500, + "price": { + "min": 111753, + "max": 136587, + "avg": 124170 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 15 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "weaponcomponents", + "amount": 25 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 12 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 94 + }, + { + "ware": "siliconcarbide", + "amount": 12 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 168 + }, + { + "ware": "hullparts", + "amount": 37 + } + ] + } + ] + }, + { + "id": "weapon_kha_m_laser_01_mk1", + "version": 0, + "name": "KHA M Kyon Emitter Mk1", + "description": "No information available", + "race": "khaak", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1000, + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "owners": [ + "khaak" + ], + "production": [] + }, + { + "id": "weapon_kha_s_laser_01_mk1", + "version": 0, + "name": "KHA S Kyon Emitter Mk1", + "description": "No information available", + "race": "khaak", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "owners": [ + "khaak" + ], + "production": [] + }, + { + "id": "weapon_par_l_destroyer_01_mk1", + "version": 0, + "name": "Odysseus Main Battery", + "description": "No information available", + "race": "paranid", + "type": "weapons", + "equipmentClass": "weapon", + "size": "large", + "hull": 8000, + "price": { + "min": 1000201, + "max": 1222468, + "avg": 1111335 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 150 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 180 + } + ] + } + ] + }, + { + "id": "weapon_par_m_railgun_01_mk1", + "version": 0, + "name": "PAR M Mass Driver Mk1", + "description": "The Mass Driver fires a single high energy projectile, which maintains its accuracy and destructive force over a very long distance. Heat accumulates almost instantaneously when the trigger is engaged, after which the pilot can release the shot immediately or take their time to aim. These unique features come at a cost, however: the weapon is mounted in a fixed forward-facing orientation, which makes automatic target tracking impossible and means that the pilot has to rely solely on their own skill. Over an extended period of time, the energy output of this weapon may appear relatively poor, but its strength lies in the initial attack, which can surprise the target and take out vital systems before a skirmish. It is therefore most commonly used in a combined arms approach, to support an already engaged force. On fast and nimble ships, which can reliably keep their opponents at a distance, the weapon's superior range may also allow the pilot to defeat their opponent without ever coming under fire themselves.nnThis weapon is not to be confused with pre-Shutdown versions of the Mass Driver, which fired constant streams of shield-penetrating projectiles. The militaries of both the Argon Federation and the Godrealm of the Paranid attempted to improve on the old design, and both developed weapons that now bear little resemblance to the original. The Paranid opted for a dual barrel, lined with perfectly synchronised, superconductive electromagnets. It appears curious, therefore, that the weapons development experts in Trinity Sanctum, upon presenting what was essentially an entirely new type of weapon, chose to keep the traditional name.nnThe Mk2 variant incorporates expensive, highly calibrated electromagnets, greatly reducing the weapon's heat build-up before each shot.", + "race": "paranid", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 304352, + "max": 600045, + "avg": 452198 + }, + "owners": [ + "alliance", + "buccaneers", + "paranid", + "trinity", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 57 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 75 + } + ] + } + ] + }, + { + "id": "weapon_par_m_railgun_01_mk2", + "version": 0, + "name": "PAR M Mass Driver Mk2", + "description": "The Mass Driver fires a single high energy projectile, which maintains its accuracy and destructive force over a very long distance. Heat accumulates almost instantaneously when the trigger is engaged, after which the pilot can release the shot immediately or take their time to aim. These unique features come at a cost, however: the weapon is mounted in a fixed forward-facing orientation, which makes automatic target tracking impossible and means that the pilot has to rely solely on their own skill. Over an extended period of time, the energy output of this weapon may appear relatively poor, but its strength lies in the initial attack, which can surprise the target and take out vital systems before a skirmish. It is therefore most commonly used in a combined arms approach, to support an already engaged force. On fast and nimble ships, which can reliably keep their opponents at a distance, the weapon's superior range may also allow the pilot to defeat their opponent without ever coming under fire themselves.nnThis weapon is not to be confused with pre-Shutdown versions of the Mass Driver, which fired constant streams of shield-penetrating projectiles. The militaries of both the Argon Federation and the Godrealm of the Paranid attempted to improve on the old design, and both developed weapons that now bear little resemblance to the original. The Paranid opted for a dual barrel, lined with perfectly synchronised, superconductive electromagnets. It appears curious, therefore, that the weapons development experts in Trinity Sanctum, upon presenting what was essentially an entirely new type of weapon, chose to keep the traditional name.nnThe Mk2 variant incorporates expensive, highly calibrated electromagnets, greatly reducing the weapon's heat build-up before each shot.", + "race": "paranid", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 1188194, + "max": 2380428, + "avg": 1784311 + }, + "owners": [ + "alliance", + "buccaneers", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 203 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "weaponcomponents", + "amount": 375 + } + ] + } + ] + }, + { + "id": "weapon_par_s_railgun_01_mk1", + "version": 0, + "name": "PAR S Mass Driver Mk1", + "description": "The Mass Driver fires a single high energy projectile, which maintains its accuracy and destructive force over a very long distance. Heat accumulates almost instantaneously when the trigger is engaged, after which the pilot can release the shot immediately or take their time to aim. These unique features come at a cost, however: the weapon is mounted in a fixed forward-facing orientation, which makes automatic target tracking impossible and means that the pilot has to rely solely on their own skill. Over an extended period of time, the energy output of this weapon may appear relatively poor, but its strength lies in the initial attack, which can surprise the target and take out vital systems before a skirmish. It is therefore most commonly used in a combined arms approach, to support an already engaged force. On fast and nimble ships, which can reliably keep their opponents at a distance, the weapon's superior range may also allow the pilot to defeat their opponent without ever coming under fire themselves.nnThis weapon is not to be confused with pre-Shutdown versions of the Mass Driver, which fired constant streams of shield-penetrating projectiles. The militaries of both the Argon Federation and the Godrealm of the Paranid attempted to improve on the old design, and both developed weapons that now bear little resemblance to the original. The Paranid opted for a dual barrel, lined with perfectly synchronised, superconductive electromagnets. It appears curious, therefore, that the weapons development experts in Trinity Sanctum, upon presenting what was essentially an entirely new type of weapon, chose to keep the traditional name.nnThe Mk2 variant incorporates expensive, highly calibrated electromagnets, greatly reducing the weapon's heat build-up before each shot.", + "race": "paranid", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 163448, + "max": 329181, + "avg": 246314 + }, + "owners": [ + "alliance", + "buccaneers", + "paranid", + "trinity", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 27 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 55 + } + ] + } + ] + }, + { + "id": "weapon_par_s_railgun_01_mk2", + "version": 0, + "name": "PAR S Mass Driver Mk2", + "description": "The Mass Driver fires a single high energy projectile, which maintains its accuracy and destructive force over a very long distance. Heat accumulates almost instantaneously when the trigger is engaged, after which the pilot can release the shot immediately or take their time to aim. These unique features come at a cost, however: the weapon is mounted in a fixed forward-facing orientation, which makes automatic target tracking impossible and means that the pilot has to rely solely on their own skill. Over an extended period of time, the energy output of this weapon may appear relatively poor, but its strength lies in the initial attack, which can surprise the target and take out vital systems before a skirmish. It is therefore most commonly used in a combined arms approach, to support an already engaged force. On fast and nimble ships, which can reliably keep their opponents at a distance, the weapon's superior range may also allow the pilot to defeat their opponent without ever coming under fire themselves.nnThis weapon is not to be confused with pre-Shutdown versions of the Mass Driver, which fired constant streams of shield-penetrating projectiles. The militaries of both the Argon Federation and the Godrealm of the Paranid attempted to improve on the old design, and both developed weapons that now bear little resemblance to the original. The Paranid opted for a dual barrel, lined with perfectly synchronised, superconductive electromagnets. It appears curious, therefore, that the weapons development experts in Trinity Sanctum, upon presenting what was essentially an entirely new type of weapon, chose to keep the traditional name.nnThe Mk2 variant incorporates expensive, highly calibrated electromagnets, greatly reducing the weapon's heat build-up before each shot.", + "race": "paranid", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 860045, + "max": 1724780, + "avg": 1292412 + }, + "owners": [ + "alliance", + "buccaneers", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 146 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "weaponcomponents", + "amount": 275 + } + ] + } + ] + }, + { + "id": "weapon_tel_l_destroyer_01_mk1", + "version": 0, + "name": "Phoenix Main Battery", + "description": "No information available", + "race": "teladi", + "type": "weapons", + "equipmentClass": "weapon", + "size": "large", + "hull": 8000, + "price": { + "min": 873217, + "max": 1067265, + "avg": 970241 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 130 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 160 + } + ] + } + ] + }, + { + "id": "weapon_tel_m_charge_01_mk1", + "version": 0, + "name": "TEL M Muon Charger Mk1", + "description": "The Muon Charger is a short range, high damage weapon. Its unusual handling requires the pilot to - as the name implies - manually charge every shot. It is recommended that it only be used when fully charged, as the damage potential is otherwise greatly reduced. Upon release, it fires multiple bolts, with a relatively small spread, which are able to stick to a target and deal damage over time. These bolts are sometimes deflected off the target entirely, resulting in them dealing little damage. If used correctly, the Muon Charger will never overheat, allowing for a continuous and consistent damage output.nnThe Ministry of Finance Science Division developed this weapon for all-round use, though arguably it can be difficult to deploy effectively in dogfights against fast targets. The ability to hold the charge and release at will was intended to give pilots more control over their weapon, and increase the fighter fleet's accuracy statistics. The unique characteristics of this weapon, however, mean that custom training is required, making it unsuitable for the Ministry's novice fighter program.nnThe Mk2 variant offers increased damage output.", + "race": "teladi", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 17978, + "max": 39980, + "avg": 28979 + }, + "owners": [ + "alliance", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 14 + } + ] + } + ] + }, + { + "id": "weapon_tel_m_charge_01_mk2", + "version": 0, + "name": "TEL M Muon Charger Mk2", + "description": "The Muon Charger is a short range, high damage weapon. Its unusual handling requires the pilot to - as the name implies - manually charge every shot. It is recommended that it only be used when fully charged, as the damage potential is otherwise greatly reduced. Upon release, it fires multiple bolts, with a relatively small spread, which are able to stick to a target and deal damage over time. These bolts are sometimes deflected off the target entirely, resulting in them dealing little damage. If used correctly, the Muon Charger will never overheat, allowing for a continuous and consistent damage output.nnThe Ministry of Finance Science Division developed this weapon for all-round use, though arguably it can be difficult to deploy effectively in dogfights against fast targets. The ability to hold the charge and release at will was intended to give pilots more control over their weapon, and increase the fighter fleet's accuracy statistics. The unique characteristics of this weapon, however, mean that custom training is required, making it unsuitable for the Ministry's novice fighter program.nnThe Mk2 variant offers increased damage output.", + "race": "teladi", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 89034, + "max": 198018, + "avg": 143526 + }, + "owners": [ + "alliance", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 70 + } + ] + } + ] + }, + { + "id": "weapon_tel_s_charge_01_mk1", + "version": 0, + "name": "TEL S Muon Charger Mk1", + "description": "The Muon Charger is a short range, high damage weapon. Its unusual handling requires the pilot to - as the name implies - manually charge every shot. It is recommended that it only be used when fully charged, as the damage potential is otherwise greatly reduced. Upon release, it fires multiple bolts, with a relatively small spread, which are able to stick to a target and deal damage over time. These bolts are sometimes deflected off the target entirely, resulting in them dealing little damage. If used correctly, the Muon Charger will never overheat, allowing for a continuous and consistent damage output.nnThe Ministry of Finance Science Division developed this weapon for all-round use, though arguably it can be difficult to deploy effectively in dogfights against fast targets. The ability to hold the charge and release at will was intended to give pilots more control over their weapon, and increase the fighter fleet's accuracy statistics. The unique characteristics of this weapon, however, mean that custom training is required, making it unsuitable for the Ministry's novice fighter program.nnThe Mk2 variant offers increased damage output.", + "race": "teladi", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 7256, + "max": 14963, + "avg": 11109 + }, + "owners": [ + "alliance", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 3 + } + ] + } + ] + }, + { + "id": "weapon_tel_s_charge_01_mk2", + "version": 0, + "name": "TEL S Muon Charger Mk2", + "description": "The Muon Charger is a short range, high damage weapon. Its unusual handling requires the pilot to - as the name implies - manually charge every shot. It is recommended that it only be used when fully charged, as the damage potential is otherwise greatly reduced. Upon release, it fires multiple bolts, with a relatively small spread, which are able to stick to a target and deal damage over time. These bolts are sometimes deflected off the target entirely, resulting in them dealing little damage. If used correctly, the Muon Charger will never overheat, allowing for a continuous and consistent damage output.nnThe Ministry of Finance Science Division developed this weapon for all-round use, though arguably it can be difficult to deploy effectively in dogfights against fast targets. The ability to hold the charge and release at will was intended to give pilots more control over their weapon, and increase the fighter fleet's accuracy statistics. The unique characteristics of this weapon, however, mean that custom training is required, making it unsuitable for the Ministry's novice fighter program.nnThe Mk2 variant offers increased damage output.", + "race": "teladi", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 35426, + "max": 72932, + "avg": 54179 + }, + "owners": [ + "alliance", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 15 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 5 + } + ] + } + ] + }, + { + "id": "weapon_xen_m_laser_01_mk1", + "version": 0, + "name": "M Pulse Laser Mk1", + "description": "Many experienced pilots fondly remember the affordable and reliable Pulse Laser as their first weapon. Its pin-point accuracy and high projectile speed make it an excellent choice for fighting small and fast targets, handling fragile lockboxes, and for dealing with deployables like mines and lasertowers. Often initially scoffed at for its comparatively low damage output, its slow heat generation and sublime cooling result in a steady stream of disruptive fire, which in turn rewards pilots who can stay on target for an extended period. Faced with larger enemies, the Pulse Laser does not become obsolete as quickly as one might expect. Used in greater numbers, it can still be a formidable choice against frigates and corvettes, though an upgrade to a larger weapon mount may be advisable to maintain a level playing field. The Pulse Laser remains the preferred choice of commanders who favour versatility over optimisation against specific opponents, or who have little trust in the aim of their subordinates.nnThe technology behind the Pulse Laser is advanced and efficient. Within a shielded chamber, microscopic fragments of matter are superheated and accelerated by a pulsed neodymium laser. The weapon was originally designed by the Ministry of Finance to provide a robust loadout for their escort fleets, without having to invest time and resources into the maintenance of a well-rounded combined arms setup. Over time, and thanks to the Teladi Company's aggressive marketing, it has been adopted as the number one weapon of convenience by all other former members of the Community of Planets.nnThe Mk2 variant sports a slightly longer burst. This lowers the efficiency of the heat dissipation between bursts and thereby exponentially drives up the cost of the internal shielding, but results in an overall higher damage output.", + "race": "xenon", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 24019, + "max": 29357, + "avg": 26688 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 30 + }, + { + "ware": "silicon", + "amount": 30 + } + ] + } + ] + }, + { + "id": "weapon_xen_m_mining_01_mk1", + "version": 0, + "name": "M Mining Drill Mk1", + "description": "No information available", + "race": "xenon", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "price": { + "min": 24019, + "max": 29357, + "avg": 26688 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 30 + }, + { + "ware": "silicon", + "amount": 30 + } + ] + } + ] + }, + { + "id": "weapon_xen_s_laser_01_mk1", + "version": 0, + "name": "S Pulse Laser Mk1", + "description": "Many experienced pilots fondly remember the affordable and reliable Pulse Laser as their first weapon. Its pin-point accuracy and high projectile speed make it an excellent choice for fighting small and fast targets, handling fragile lockboxes, and for dealing with deployables like mines and lasertowers. Often initially scoffed at for its comparatively low damage output, its slow heat generation and sublime cooling result in a steady stream of disruptive fire, which in turn rewards pilots who can stay on target for an extended period. Faced with larger enemies, the Pulse Laser does not become obsolete as quickly as one might expect. Used in greater numbers, it can still be a formidable choice against frigates and corvettes, though an upgrade to a larger weapon mount may be advisable to maintain a level playing field. The Pulse Laser remains the preferred choice of commanders who favour versatility over optimisation against specific opponents, or who have little trust in the aim of their subordinates.nnThe technology behind the Pulse Laser is advanced and efficient. Within a shielded chamber, microscopic fragments of matter are superheated and accelerated by a pulsed neodymium laser. The weapon was originally designed by the Ministry of Finance to provide a robust loadout for their escort fleets, without having to invest time and resources into the maintenance of a well-rounded combined arms setup. Over time, and thanks to the Teladi Company's aggressive marketing, it has been adopted as the number one weapon of convenience by all other former members of the Community of Planets.nnThe Mk2 variant sports a slightly longer burst. This lowers the efficiency of the heat dissipation between bursts and thereby exponentially drives up the cost of the internal shielding, but results in an overall higher damage output.", + "race": "xenon", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "price": { + "min": 778, + "max": 950, + "avg": 864 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 4, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "ore", + "amount": 2 + } + ] + } + ] + }, + { + "id": "engine_spl_l_allround_01_mk1", + "version": 1, + "name": "SPL L All-round Engine Mk1", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "large", + "hull": 4018, + "price": { + "min": 258153, + "max": 480054, + "avg": 368448 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 5678, + "reverse": 6246 + }, + "travel": { + "thrust": 12, + "attack": 75, + "charge": 20, + "release": 0 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 129 + }, + { + "ware": "energycells", + "amount": 37 + }, + { + "ware": "engineparts", + "amount": 101 + } + ] + } + ] + }, + { + "id": "engine_spl_l_travel_01_mk1", + "version": 1, + "name": "SPL L Travel Engine Mk1", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "large", + "hull": 4018, + "price": { + "min": 266600, + "max": 496641, + "avg": 380897 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 5408, + "reverse": 4867 + }, + "travel": { + "thrust": 14, + "attack": 85, + "charge": 20, + "release": 0 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 111 + }, + { + "ware": "energycells", + "amount": 94 + }, + { + "ware": "engineparts", + "amount": 143 + } + ] + } + ] + }, + { + "id": "engine_spl_m_allround_01_mk1", + "version": 1, + "name": "SPL M All-round Engine Mk1", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 8721, + "max": 16644, + "avg": 12654 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 1353, + "reverse": 1285 + }, + "travel": { + "thrust": 5, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 25 + }, + { + "ware": "engineparts", + "amount": 10 + } + ] + } + ] + }, + { + "id": "engine_spl_m_allround_01_mk2", + "version": 1, + "name": "SPL M All-round Engine Mk2", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 43115, + "max": 81054, + "avg": 61948 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 1637, + "reverse": 1658 + }, + "travel": { + "thrust": 5, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 7 + }, + { + "ware": "energycells", + "amount": 58 + }, + { + "ware": "engineparts", + "amount": 41 + } + ] + } + ] + }, + { + "id": "engine_spl_m_allround_01_mk3", + "version": 1, + "name": "SPL M All-round Engine Mk3", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 210854, + "max": 392833, + "avg": 301234 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 1826, + "reverse": 1907 + }, + "travel": { + "thrust": 5, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 73 + }, + { + "ware": "energycells", + "amount": 84 + }, + { + "ware": "engineparts", + "amount": 141 + } + ] + } + ] + }, + { + "id": "engine_spl_m_combat_01_mk1", + "version": 1, + "name": "SPL M Combat Engine Mk1", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 10078, + "max": 19374, + "avg": 14695 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 1420, + "reverse": 1491 + }, + "travel": { + "thrust": 5, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 36 + }, + { + "ware": "engineparts", + "amount": 11 + } + ] + } + ] + }, + { + "id": "engine_spl_m_combat_01_mk2", + "version": 1, + "name": "SPL M Combat Engine Mk2", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 51756, + "max": 96917, + "avg": 74180 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 1719, + "reverse": 1986 + }, + "travel": { + "thrust": 5, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 13 + }, + { + "ware": "energycells", + "amount": 48 + }, + { + "ware": "engineparts", + "amount": 42 + } + ] + } + ] + }, + { + "id": "engine_spl_m_combat_01_mk3", + "version": 1, + "name": "SPL M Combat Engine Mk3", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 253468, + "max": 472712, + "avg": 362360 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 1917, + "reverse": 2315 + }, + "travel": { + "thrust": 5, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 87 + }, + { + "ware": "energycells", + "amount": 126 + }, + { + "ware": "engineparts", + "amount": 169 + } + ] + } + ] + }, + { + "id": "engine_spl_m_combat_01_mk4", + "version": 1, + "name": "SPL M Combat Engine Mk4", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 1267862, + "max": 2363619, + "avg": 1811825 + }, + "owners": [ + "court", + "split" + ], + "thrust": { + "forward": 2017, + "reverse": 2480 + }, + "travel": { + "thrust": 5, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 335 + }, + { + "ware": "energycells", + "amount": 636 + }, + { + "ware": "engineparts", + "amount": 1039 + } + ] + } + ] + }, + { + "id": "engine_spl_m_travel_01_mk1", + "version": 1, + "name": "SPL M Travel Engine Mk1", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 9348, + "max": 18023, + "avg": 13657 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 1353, + "reverse": 1217 + }, + "travel": { + "thrust": 7, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 36 + }, + { + "ware": "engineparts", + "amount": 10 + } + ] + } + ] + }, + { + "id": "engine_spl_m_travel_01_mk2", + "version": 1, + "name": "SPL M Travel Engine Mk2", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 48165, + "max": 90288, + "avg": 69084 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 1637, + "reverse": 1473 + }, + "travel": { + "thrust": 7, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 13 + }, + { + "ware": "energycells", + "amount": 49 + }, + { + "ware": "engineparts", + "amount": 37 + } + ] + } + ] + }, + { + "id": "engine_spl_m_travel_01_mk3", + "version": 1, + "name": "SPL M Travel Engine Mk3", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 243287, + "max": 452449, + "avg": 347073 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 1826, + "reverse": 1644 + }, + "travel": { + "thrust": 7, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 52 + }, + { + "ware": "energycells", + "amount": 73 + }, + { + "ware": "engineparts", + "amount": 227 + } + ] + } + ] + }, + { + "id": "engine_spl_s_allround_01_mk1", + "version": 1, + "name": "SPL S All-round Engine Mk1", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 3443, + "max": 6812, + "avg": 5119 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 535, + "reverse": 561 + }, + "travel": { + "thrust": 8, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 22 + }, + { + "ware": "engineparts", + "amount": 3 + } + ] + } + ] + }, + { + "id": "engine_spl_s_allround_01_mk2", + "version": 1, + "name": "SPL S All-round Engine Mk2", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 19551, + "max": 37244, + "avg": 28340 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 647, + "reverse": 775 + }, + "travel": { + "thrust": 8, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 51 + }, + { + "ware": "engineparts", + "amount": 17 + } + ] + } + ] + }, + { + "id": "engine_spl_s_allround_01_mk3", + "version": 1, + "name": "SPL S All-round Engine Mk3", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 91360, + "max": 171342, + "avg": 131077 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 722, + "reverse": 917 + }, + "travel": { + "thrust": 8, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 23 + }, + { + "ware": "energycells", + "amount": 98 + }, + { + "ware": "engineparts", + "amount": 73 + } + ] + } + ] + }, + { + "id": "engine_spl_s_combat_01_mk1", + "version": 1, + "name": "SPL S Combat Engine Mk1", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 4902, + "max": 9513, + "avg": 7193 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 561, + "reverse": 674 + }, + "travel": { + "thrust": 7, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 22 + }, + { + "ware": "engineparts", + "amount": 5 + } + ] + } + ] + }, + { + "id": "engine_spl_s_combat_01_mk2", + "version": 1, + "name": "SPL S Combat Engine Mk2", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 29617, + "max": 55883, + "avg": 42659 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 679, + "reverse": 958 + }, + "travel": { + "thrust": 7, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "engineparts", + "amount": 27 + } + ] + } + ] + }, + { + "id": "engine_spl_s_combat_01_mk3", + "version": 1, + "name": "SPL S Combat Engine Mk3", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 134474, + "max": 250800, + "avg": 192227 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 758, + "reverse": 1148 + }, + "travel": { + "thrust": 7, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 37 + }, + { + "ware": "energycells", + "amount": 72 + }, + { + "ware": "engineparts", + "amount": 107 + } + ] + } + ] + }, + { + "id": "engine_spl_s_combat_01_mk4", + "version": 1, + "name": "SPL S Combat Engine Mk4", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 672885, + "max": 1254040, + "avg": 961168 + }, + "owners": [ + "court", + "split" + ], + "thrust": { + "forward": 797, + "reverse": 1243 + }, + "travel": { + "thrust": 7, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 95 + }, + { + "ware": "energycells", + "amount": 361 + }, + { + "ware": "engineparts", + "amount": 710 + } + ] + } + ] + }, + { + "id": "engine_spl_s_travel_01_mk1", + "version": 1, + "name": "SPL S Travel Engine Mk1", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 4172, + "max": 8162, + "avg": 6156 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 535, + "reverse": 535 + }, + "travel": { + "thrust": 11, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 22 + }, + { + "ware": "engineparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "engine_spl_s_travel_01_mk2", + "version": 1, + "name": "SPL S Travel Engine Mk2", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 25342, + "max": 47977, + "avg": 36583 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 647, + "reverse": 674 + }, + "travel": { + "thrust": 11, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 51 + }, + { + "ware": "engineparts", + "amount": 23 + } + ] + } + ] + }, + { + "id": "engine_spl_s_travel_01_mk3", + "version": 1, + "name": "SPL S Travel Engine Mk3", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 123724, + "max": 230850, + "avg": 176882 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 722, + "reverse": 767 + }, + "travel": { + "thrust": 11, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 23 + }, + { + "ware": "energycells", + "amount": 77 + }, + { + "ware": "engineparts", + "amount": 119 + } + ] + } + ] + }, + { + "id": "engine_spl_xl_allround_01_mk1", + "version": 1, + "name": "SPL XL All-round Engine Mk1", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "extralarge", + "hull": 9899, + "price": { + "min": 340974, + "max": 633834, + "avg": 486335 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 14953, + "reverse": 16448 + }, + "travel": { + "thrust": 12, + "attack": 75, + "charge": 30, + "release": 0 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 92 + }, + { + "ware": "energycells", + "amount": 78 + }, + { + "ware": "engineparts", + "amount": 283 + } + ] + } + ] + }, + { + "id": "engine_spl_xl_travel_01_mk1", + "version": 1, + "name": "SPL XL Travel Engine Mk1", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "extralarge", + "hull": 9955, + "price": { + "min": 352716, + "max": 656275, + "avg": 503356 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 14241, + "reverse": 12817 + }, + "travel": { + "thrust": 14, + "attack": 85, + "charge": 30, + "release": 0 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 79 + }, + { + "ware": "energycells", + "amount": 120 + }, + { + "ware": "engineparts", + "amount": 321 + } + ] + } + ] + }, + { + "id": "missile_disruptor_light_mk1", + "version": 1, + "name": "Light Disruptor Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 896, + "hull": 1, + "price": { + "min": 1387, + "max": 1877, + "avg": 1632 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "missilecomponents", + "amount": 3 + }, + { + "ware": "smartchips", + "amount": 2 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 24 + } + ] + } + ] + }, + { + "id": "missile_interceptor_light_mk1", + "version": 1, + "name": "Light Interceptor Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 100, + "hull": 1, + "price": { + "min": 1267, + "max": 1714, + "avg": 1490 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 12 + }, + { + "ware": "missilecomponents", + "amount": 11 + }, + { + "ware": "smartchips", + "amount": 1 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 22 + } + ] + } + ] + }, + { + "id": "missile_scatter_heavy_mk1", + "version": 1, + "name": "Heavy Scatter Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 400, + "hull": 20, + "price": { + "min": 1078, + "max": 1458, + "avg": 1268 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "missilecomponents", + "amount": 24 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 19 + } + ] + } + ] + }, + { + "id": "missile_starburst_heavy_mk1", + "version": 1, + "name": "Heavy Starburst Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 3800, + "hull": 3, + "price": { + "min": 1700, + "max": 2300, + "avg": 2000 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 17 + }, + { + "ware": "missilecomponents", + "amount": 9 + }, + { + "ware": "smartchips", + "amount": 2 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 29 + } + ] + } + ] + }, + { + "id": "shield_spl_l_standard_01_mk1", + "version": 1, + "name": "SPL L Shield Generator Mk1", + "description": "No information available", + "race": "split", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 3000, + "recharge": { + "max": 33018, + "rate": 140, + "delay": 0 + }, + "price": { + "min": 27782, + "max": 64068, + "avg": 45874 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 104 + }, + { + "ware": "fieldcoils", + "amount": 5 + }, + { + "ware": "shieldcomponents", + "amount": 23 + } + ] + } + ] + }, + { + "id": "shield_spl_l_standard_01_mk2", + "version": 1, + "name": "SPL L Shield Generator Mk2", + "description": "No information available", + "race": "split", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 3000, + "recharge": { + "max": 39340, + "rate": 217, + "delay": 0 + }, + "price": { + "min": 136139, + "max": 316589, + "avg": 226085 + }, + "owners": [ + "court", + "split" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 165 + }, + { + "ware": "fieldcoils", + "amount": 31 + }, + { + "ware": "shieldcomponents", + "amount": 129 + } + ] + } + ] + }, + { + "id": "shield_spl_m_standard_01_mk1", + "version": 1, + "name": "SPL M Shield Generator Mk1", + "description": "No information available", + "race": "split", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 4375, + "rate": 21, + "delay": 0.36 + }, + "price": { + "min": 8653, + "max": 19836, + "avg": 14227 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 48 + }, + { + "ware": "fieldcoils", + "amount": 1 + }, + { + "ware": "shieldcomponents", + "amount": 7 + } + ] + } + ] + }, + { + "id": "shield_spl_m_standard_01_mk2", + "version": 1, + "name": "SPL M Shield Generator Mk2", + "description": "No information available", + "race": "split", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 5213, + "rate": 33, + "delay": 0.36 + }, + "price": { + "min": 39644, + "max": 91930, + "avg": 65687 + }, + "owners": [ + "court", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 84 + }, + { + "ware": "fieldcoils", + "amount": 6 + }, + { + "ware": "shieldcomponents", + "amount": 41 + } + ] + } + ] + }, + { + "id": "shield_spl_m_standard_02_mk1", + "version": 1, + "name": "SPL M Shield Generator Mk1", + "description": "No information available", + "race": "split", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 4375, + "rate": 21, + "delay": 0.36 + }, + "price": { + "min": 8653, + "max": 19836, + "avg": 14227 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 48 + }, + { + "ware": "fieldcoils", + "amount": 1 + }, + { + "ware": "shieldcomponents", + "amount": 7 + } + ] + } + ] + }, + { + "id": "shield_spl_m_standard_02_mk2", + "version": 1, + "name": "SPL M Shield Generator Mk2", + "description": "No information available", + "race": "split", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 5213, + "rate": 33, + "delay": 0.36 + }, + "price": { + "min": 39644, + "max": 91930, + "avg": 65687 + }, + "owners": [ + "court", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 84 + }, + { + "ware": "fieldcoils", + "amount": 6 + }, + { + "ware": "shieldcomponents", + "amount": 41 + } + ] + } + ] + }, + { + "id": "shield_spl_s_standard_01_mk1", + "version": 1, + "name": "SPL S Shield Generator Mk1", + "description": "No information available", + "race": "split", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 703, + "rate": 67, + "delay": 8.9 + }, + "price": { + "min": 929, + "max": 2132, + "avg": 1528 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "shieldcomponents", + "amount": 1 + } + ] + } + ] + }, + { + "id": "shield_spl_s_standard_01_mk2", + "version": 1, + "name": "SPL S Shield Generator Mk2", + "description": "No information available", + "race": "split", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 840, + "rate": 103, + "delay": 8.9 + }, + "price": { + "min": 6658, + "max": 15447, + "avg": 11035 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 13 + }, + { + "ware": "fieldcoils", + "amount": 1 + }, + { + "ware": "shieldcomponents", + "amount": 7 + } + ] + } + ] + }, + { + "id": "shield_spl_s_standard_01_mk3", + "version": 1, + "name": "SPL S Shield Generator Mk3", + "description": "No information available", + "race": "split", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 1200, + "rate": 177, + "delay": 8.9 + }, + "price": { + "min": 31475, + "max": 73051, + "avg": 52166 + }, + "owners": [ + "court", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "fieldcoils", + "amount": 3 + }, + { + "ware": "shieldcomponents", + "amount": 37 + } + ] + } + ] + }, + { + "id": "shield_spl_xl_standard_01_mk1", + "version": 1, + "name": "SPL XL Shield Generator Mk1", + "description": "No information available", + "race": "split", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "extralarge", + "hull": 9000, + "recharge": { + "max": 110058, + "rate": 398, + "delay": 0 + }, + "price": { + "min": 143572, + "max": 333746, + "avg": 238442 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 184 + }, + { + "ware": "fieldcoils", + "amount": 41 + }, + { + "ware": "shieldcomponents", + "amount": 117 + } + ] + } + ] + }, + { + "id": "ship_spl_xs_police_01_a", + "version": 1, + "name": "Split Station Security Vessel", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_xs", + "hull": 281, + "price": { + "min": 7999, + "max": 10822, + "avg": 9410 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 60, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "dronecomponents", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "smartchips", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_spl_l_beam_01_mk1", + "version": 1, + "name": "SPL L Beam Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 2000, + "price": { + "min": 98006, + "max": 203353, + "avg": 150548 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 13 + }, + { + "ware": "energycells", + "amount": 42 + }, + { + "ware": "turretcomponents", + "amount": 46 + } + ] + } + ] + }, + { + "id": "turret_spl_l_dumbfire_01_mk1", + "version": 1, + "name": "SPL L Dumbfire Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "large", + "hull": 4250, + "price": { + "min": 49955, + "max": 102822, + "avg": 76329 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 7 + }, + { + "ware": "energycells", + "amount": 35 + }, + { + "ware": "turretcomponents", + "amount": 21 + } + ] + } + ] + }, + { + "id": "turret_spl_l_guided_01_mk1", + "version": 1, + "name": "SPL L Tracking Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "large", + "hull": 4250, + "price": { + "min": 51277, + "max": 113573, + "avg": 82314 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 47 + }, + { + "ware": "turretcomponents", + "amount": 39 + } + ] + } + ] + }, + { + "id": "turret_spl_l_laser_01_mk1", + "version": 1, + "name": "SPL L Pulse Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 2000, + "price": { + "min": 33835, + "max": 76716, + "avg": 55193 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 47 + }, + { + "ware": "turretcomponents", + "amount": 29 + } + ] + } + ] + }, + { + "id": "turret_spl_l_mining_01_mk1", + "version": 1, + "name": "SPL L Mining Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 2000, + "price": { + "min": 30723, + "max": 71387, + "avg": 50969 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 47 + }, + { + "ware": "turretcomponents", + "amount": 30 + } + ] + } + ] + }, + { + "id": "turret_spl_l_plasma_01_mk1", + "version": 1, + "name": "SPL L Plasma Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 2000, + "price": { + "min": 59861, + "max": 132964, + "avg": 96290 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 132 + }, + { + "ware": "turretcomponents", + "amount": 43 + } + ] + } + ] + }, + { + "id": "turret_spl_m_beam_01_mk1", + "version": 1, + "name": "SPL M Beam Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 32650, + "max": 69808, + "avg": 51180 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 81 + }, + { + "ware": "turretcomponents", + "amount": 17 + } + ] + } + ] + }, + { + "id": "turret_spl_m_beam_02_mk1", + "version": 1, + "name": "SPL M Beam Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 425, + "price": { + "min": 32650, + "max": 69808, + "avg": 51180 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 81 + }, + { + "ware": "turretcomponents", + "amount": 17 + } + ] + } + ] + }, + { + "id": "turret_spl_m_dumbfire_02_mk1", + "version": 1, + "name": "SPL M Dumbfire Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "medium", + "hull": 1000, + "price": { + "min": 15800, + "max": 36406, + "avg": 26066 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 64 + }, + { + "ware": "turretcomponents", + "amount": 13 + } + ] + } + ] + }, + { + "id": "turret_spl_m_flak_01_mk1", + "version": 1, + "name": "SPL M Flak Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 41023, + "max": 89587, + "avg": 65305 + }, + "owners": [ + "court", + "freesplit" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 45 + }, + { + "ware": "turretcomponents", + "amount": 27 + } + ] + } + ] + }, + { + "id": "turret_spl_m_flak_02_mk1", + "version": 1, + "name": "SPL M Flak Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 425, + "price": { + "min": 41023, + "max": 89587, + "avg": 65305 + }, + "owners": [ + "court", + "freesplit" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 45 + }, + { + "ware": "turretcomponents", + "amount": 27 + } + ] + } + ] + }, + { + "id": "turret_spl_m_gatling_01_mk1", + "version": 1, + "name": "SPL M Bolt Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 15116, + "max": 34901, + "avg": 24972 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 52 + }, + { + "ware": "turretcomponents", + "amount": 13 + } + ] + } + ] + }, + { + "id": "turret_spl_m_gatling_02_mk1", + "version": 1, + "name": "SPL M Bolt Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 425, + "price": { + "min": 15116, + "max": 34901, + "avg": 24972 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 52 + }, + { + "ware": "turretcomponents", + "amount": 13 + } + ] + } + ] + }, + { + "id": "turret_spl_m_guided_02_mk1", + "version": 1, + "name": "SPL M Tracking Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "medium", + "hull": 1000, + "price": { + "min": 17066, + "max": 37546, + "avg": 27275 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 48 + }, + { + "ware": "turretcomponents", + "amount": 11 + } + ] + } + ] + }, + { + "id": "turret_spl_m_laser_01_mk1", + "version": 1, + "name": "SPL M Pulse Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 13247, + "max": 30535, + "avg": 21860 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 52 + }, + { + "ware": "turretcomponents", + "amount": 11 + } + ] + } + ] + }, + { + "id": "turret_spl_m_laser_02_mk1", + "version": 1, + "name": "SPL M Pulse Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 425, + "price": { + "min": 13247, + "max": 30535, + "avg": 21860 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 52 + }, + { + "ware": "turretcomponents", + "amount": 11 + } + ] + } + ] + }, + { + "id": "turret_spl_m_mining_01_mk1", + "version": 1, + "name": "SPL M Mining Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 10374, + "max": 24088, + "avg": 17203 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 18 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_spl_m_mining_02_mk1", + "version": 1, + "name": "SPL M Mining Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 425, + "price": { + "min": 10374, + "max": 24088, + "avg": 17203 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 18 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_spl_m_plasma_01_mk1", + "version": 1, + "name": "SPL M Plasma Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 20258, + "max": 45201, + "avg": 32684 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 22 + }, + { + "ware": "turretcomponents", + "amount": 16 + } + ] + } + ] + }, + { + "id": "turret_spl_m_plasma_02_mk1", + "version": 1, + "name": "SPL M Plasma Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 425, + "price": { + "min": 20258, + "max": 45201, + "avg": 32684 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 22 + }, + { + "ware": "turretcomponents", + "amount": 16 + } + ] + } + ] + }, + { + "id": "turret_spl_m_shotgun_01_mk1", + "version": 1, + "name": "SPL M Shard Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 14797, + "max": 34325, + "avg": 24521 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "turretcomponents", + "amount": 14 + } + ] + } + ] + }, + { + "id": "turret_spl_m_shotgun_02_mk1", + "version": 1, + "name": "SPL M Shard Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 425, + "price": { + "min": 14797, + "max": 34325, + "avg": 24521 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "turretcomponents", + "amount": 14 + } + ] + } + ] + }, + { + "id": "weapon_spl_l_destroyer_01_mk1", + "version": 1, + "name": "Rattlesnake Main Battery", + "description": "No information available", + "race": "split", + "type": "weapons", + "equipmentClass": "weapon", + "size": "large", + "hull": 8000, + "price": { + "min": 727725, + "max": 1444922, + "avg": 1086323 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 131 + }, + { + "ware": "energycells", + "amount": 29 + }, + { + "ware": "weaponcomponents", + "amount": 201 + } + ] + } + ] + }, + { + "id": "shield_ter_l_standard_01_mk1", + "version": 2, + "name": "TER L Shield Generator Mk1", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 2000, + "recharge": { + "max": 40786, + "rate": 173, + "delay": 0 + }, + "price": { + "min": 101270, + "max": 123775, + "avg": 112523 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 500 + }, + { + "ware": "metallicmicrolattice", + "amount": 55 + }, + { + "ware": "siliconcarbide", + "amount": 8 + } + ] + } + ] + }, + { + "id": "shield_ter_l_standard_01_mk2", + "version": 2, + "name": "TER L Shield Generator Mk2", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 2000, + "recharge": { + "max": 48597, + "rate": 247, + "delay": 0 + }, + "price": { + "min": 493645, + "max": 603344, + "avg": 548494 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 21 + }, + { + "ware": "energycells", + "amount": 1000 + }, + { + "ware": "metallicmicrolattice", + "amount": 152 + }, + { + "ware": "siliconcarbide", + "amount": 22 + } + ] + } + ] + }, + { + "id": "shield_ter_l_standard_01_mk3", + "version": 2, + "name": "TER L Shield Generator Mk3", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 2000, + "recharge": { + "max": 69424, + "rate": 424, + "delay": 0 + }, + "price": { + "min": 1295367, + "max": 1752556, + "avg": 1523962 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 61 + }, + { + "ware": "energycells", + "amount": 1500 + }, + { + "ware": "metallicmicrolattice", + "amount": 393 + }, + { + "ware": "siliconcarbide", + "amount": 61 + } + ] + } + ] + }, + { + "id": "shield_ter_m_standard_01_mk1", + "version": 2, + "name": "TER M Shield Generator Mk1", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 5405, + "rate": 29, + "delay": 0.47 + }, + "price": { + "min": 30852, + "max": 37709, + "avg": 34281 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 28 + }, + { + "ware": "siliconcarbide", + "amount": 1 + } + ] + } + ] + }, + { + "id": "shield_ter_m_standard_01_mk2", + "version": 2, + "name": "TER M Shield Generator Mk2", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 6439, + "rate": 45, + "delay": 0.47 + }, + "price": { + "min": 149164, + "max": 182311, + "avg": 165737 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 400 + }, + { + "ware": "metallicmicrolattice", + "amount": 62 + }, + { + "ware": "siliconcarbide", + "amount": 7 + } + ] + } + ] + }, + { + "id": "shield_ter_m_standard_01_mk3", + "version": 2, + "name": "TER M Shield Generator Mk3", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 9199, + "rate": 77, + "delay": 0.47 + }, + "price": { + "min": 673420, + "max": 911098, + "avg": 792259 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 32 + }, + { + "ware": "energycells", + "amount": 600 + }, + { + "ware": "metallicmicrolattice", + "amount": 206 + }, + { + "ware": "siliconcarbide", + "amount": 32 + } + ] + } + ] + }, + { + "id": "shield_ter_m_standard_02_mk1", + "version": 2, + "name": "TER M Shield Generator Mk1", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 5405, + "rate": 29, + "delay": 0.47 + }, + "price": { + "min": 30852, + "max": 37709, + "avg": 34281 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 28 + }, + { + "ware": "siliconcarbide", + "amount": 1 + } + ] + } + ] + }, + { + "id": "shield_ter_m_standard_02_mk2", + "version": 2, + "name": "TER M Shield Generator Mk2", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 6439, + "rate": 45, + "delay": 0.47 + }, + "price": { + "min": 147892, + "max": 180757, + "avg": 164325 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 250 + }, + { + "ware": "metallicmicrolattice", + "amount": 70 + }, + { + "ware": "siliconcarbide", + "amount": 8 + } + ] + } + ] + }, + { + "id": "shield_ter_m_standard_02_mk3", + "version": 2, + "name": "TER M Shield Generator Mk3", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 9199, + "rate": 77, + "delay": 0.47 + }, + "price": { + "min": 673420, + "max": 911098, + "avg": 792259 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 32 + }, + { + "ware": "energycells", + "amount": 600 + }, + { + "ware": "metallicmicrolattice", + "amount": 206 + }, + { + "ware": "siliconcarbide", + "amount": 32 + } + ] + } + ] + }, + { + "id": "shield_ter_s_standard_01_mk1", + "version": 2, + "name": "TER S Shield Generator Mk1", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 869, + "rate": 91, + "delay": 11.5 + }, + "price": { + "min": 3014, + "max": 3684, + "avg": 3349 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 12 + } + ] + } + ] + }, + { + "id": "shield_ter_s_standard_01_mk2", + "version": 2, + "name": "TER S Shield Generator Mk2", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 1037, + "rate": 141, + "delay": 11.5 + }, + "price": { + "min": 24519, + "max": 29968, + "avg": 27243 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 54 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + } + ] + }, + { + "id": "shield_ter_s_standard_01_mk3", + "version": 2, + "name": "TER S Shield Generator Mk3", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 1482, + "rate": 242, + "delay": 11.5 + }, + "price": { + "min": 119811, + "max": 146436, + "avg": 133124 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 48 + }, + { + "ware": "siliconcarbide", + "amount": 6 + } + ] + } + ] + }, + { + "id": "shield_ter_xl_standard_01_mk1", + "version": 2, + "name": "TER XL Shield Generator Mk1", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "extralarge", + "hull": 6000, + "recharge": { + "max": 135955, + "rate": 544, + "delay": 0 + }, + "price": { + "min": 541710, + "max": 662091, + "avg": 601900 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 23 + }, + { + "ware": "energycells", + "amount": 1500 + }, + { + "ware": "metallicmicrolattice", + "amount": 134 + }, + { + "ware": "siliconcarbide", + "amount": 21 + } + ] + } + ] + }, + { + "id": "shield_ter_xl_standard_01_mk2", + "version": 2, + "name": "TER XL Shield Generator Mk2", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "extralarge", + "hull": 8000, + "recharge": { + "max": 161988, + "rate": 842, + "delay": 0 + }, + "price": { + "min": 3060534, + "max": 4140723, + "avg": 3600629 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 150 + }, + { + "ware": "energycells", + "amount": 2000 + }, + { + "ware": "metallicmicrolattice", + "amount": 764 + }, + { + "ware": "siliconcarbide", + "amount": 133 + } + ] + } + ] + }, + { + "id": "ship_ter_xs_police_01_a", + "version": 2, + "name": "Terran Station Security Vessel", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_xs", + "hull": 300, + "price": { + "min": 24676, + "max": 30160, + "avg": 27418 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 60, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 2 + }, + { + "ware": "siliconcarbide", + "amount": 2 + } + ] + } + ] + }, + { + "id": "turret_ter_l_beam_01_mk1", + "version": 2, + "name": "TER L Beam Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3600, + "price": { + "min": 325218, + "max": 397488, + "avg": 361353 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 15 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 100 + }, + { + "ware": "siliconcarbide", + "amount": 14 + } + ] + } + ] + }, + { + "id": "turret_ter_l_dumbfire_01_mk1", + "version": 2, + "name": "TER L Dumbfire Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "large", + "hull": 7800, + "price": { + "min": 163005, + "max": 199229, + "avg": 181117 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 7 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 64 + }, + { + "ware": "siliconcarbide", + "amount": 9 + } + ] + } + ] + }, + { + "id": "turret_ter_l_gatling_01_mk1", + "version": 2, + "name": "TER L Bolt Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3600, + "price": { + "min": 157080, + "max": 212520, + "avg": 184800 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 7 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 66 + }, + { + "ware": "siliconcarbide", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_ter_l_guided_01_mk1", + "version": 2, + "name": "TER L Tracking Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "large", + "hull": 7800, + "price": { + "min": 187858, + "max": 229604, + "avg": 208731 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 72 + }, + { + "ware": "siliconcarbide", + "amount": 11 + } + ] + } + ] + }, + { + "id": "turret_ter_l_laser_01_mk1", + "version": 2, + "name": "TER L Pulse Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3600, + "price": { + "min": 125573, + "max": 153479, + "avg": 139526 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 77 + }, + { + "ware": "siliconcarbide", + "amount": 8 + } + ] + } + ] + }, + { + "id": "turret_ter_l_mining_01_mk1", + "version": 2, + "name": "TER L Mining Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3600, + "price": { + "min": 118070, + "max": 144308, + "avg": 131189 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 64 + }, + { + "ware": "siliconcarbide", + "amount": 6 + } + ] + } + ] + }, + { + "id": "turret_ter_m_beam_01_mk1", + "version": 2, + "name": "TER M Beam Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 108959, + "max": 133172, + "avg": 121065 + }, + "owners": [ + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 36 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + } + ] + }, + { + "id": "turret_ter_m_beam_02_mk1", + "version": 2, + "name": "TER M Beam Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 800, + "price": { + "min": 108959, + "max": 133172, + "avg": 121065 + }, + "owners": [ + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 36 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + } + ] + }, + { + "id": "turret_ter_m_dumbfire_02_mk1", + "version": 2, + "name": "TER M Dumbfire Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "medium", + "hull": 1700, + "price": { + "min": 54983, + "max": 67201, + "avg": 61092 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 33 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + } + ] + }, + { + "id": "turret_ter_m_gatling_01_mk1", + "version": 2, + "name": "TER M Bolt Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 59203, + "max": 72360, + "avg": 65782 + }, + "owners": [ + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 60 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + } + ] + }, + { + "id": "turret_ter_m_gatling_02_mk1", + "version": 2, + "name": "TER M Bolt Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 800, + "price": { + "min": 54862, + "max": 67054, + "avg": 60958 + }, + "owners": [ + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 48 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + } + ] + }, + { + "id": "turret_ter_m_guided_02_mk1", + "version": 2, + "name": "TER M Tracking Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "medium", + "hull": 1700, + "price": { + "min": 63237, + "max": 77289, + "avg": 70263 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 53 + }, + { + "ware": "siliconcarbide", + "amount": 6 + } + ] + } + ] + }, + { + "id": "turret_ter_m_laser_01_mk1", + "version": 2, + "name": "TER M Pulse Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 51378, + "max": 62796, + "avg": 57087 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 44 + }, + { + "ware": "siliconcarbide", + "amount": 3 + } + ] + } + ] + }, + { + "id": "turret_ter_m_laser_02_mk1", + "version": 2, + "name": "TER M Pulse Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 800, + "price": { + "min": 51378, + "max": 62796, + "avg": 57087 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 44 + }, + { + "ware": "siliconcarbide", + "amount": 3 + } + ] + } + ] + }, + { + "id": "turret_ter_m_mining_01_mk1", + "version": 2, + "name": "TER M Mining Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 39497, + "max": 48274, + "avg": 43886 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 43 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + } + ] + }, + { + "id": "turret_ter_m_mining_02_mk1", + "version": 2, + "name": "TER M Mining Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 800, + "price": { + "min": 39497, + "max": 48274, + "avg": 43886 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 43 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + } + ] + }, + { + "id": "weapon_atf_xl_battleship_01_mk1", + "version": 2, + "name": "ATF XL Main Battery", + "description": "No information available", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "extralarge", + "hull": 10000, + "price": { + "min": 7888918, + "max": 9642011, + "avg": 8765465 + }, + "owners": [ + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 373 + }, + { + "ware": "energycells", + "amount": 1000 + }, + { + "ware": "metallicmicrolattice", + "amount": 1862 + }, + { + "ware": "siliconcarbide", + "amount": 322 + } + ] + } + ] + }, + { + "id": "weapon_clustermine_01", + "version": 2, + "name": "Cluster Mine", + "description": "Cluster Mines are much like Friend/Foe Mines, but are used for area coverage. Instead of a single explosive device, deployment of a cluster package results in an array of such devices, each equipped with its own target detection and detonation mechanisms. The result is a deadly carpet of mines, which is hard to navigate through and even harder to disarm without the correct security codes.", + "type": "weapons", + "equipmentClass": "mine", + "explosionDamage": 200, + "hull": 100, + "price": { + "min": 5812, + "max": 7862, + "avg": 6838 + }, + "owners": [ + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 6 + }, + { + "ware": "weaponcomponents", + "amount": 4 + } + ] + } + ] + }, + { + "id": "weapon_ter_l_destroyer_01_mk1", + "version": 2, + "name": "Terran Main Battery", + "description": "No information available", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "large", + "hull": 8000, + "price": { + "min": 2423602, + "max": 3278990, + "avg": 2851296 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 123 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 500 + }, + { + "ware": "siliconcarbide", + "amount": 100 + } + ] + } + ] + }, + { + "id": "weapon_ter_m_beam_01_mk1", + "version": 2, + "name": "TER M Meson Stream Mk1", + "description": "The Meson Stream is an incredibly powerful, and correspondingly expensive, weapon that fires a single transient beam that strikes almost instantly. Similar to other high precision weapons, the Meson Stream does not automatically track its target, and relies on the pilot's skill for aiming. In other respects, including its moderate range, it handles more similarly to beam weapons such as the Beam Emitter. The Meson Stream does not require charging, and can theoretically be fired without releasing the trigger. However, the ship's maximum heat capacity will usually prevent this kind of usage. Because of the weapon's extreme power consumption and heat generation, it can only be attached to high-energy weapon mounts.nnFor a variety of reasons, the Terran military had long since toyed with the idea of an oversized laser cannon. Despite requiring an entirely new, specialised platform, and bearing an abysmally wasteful energy profile, such a weapon's potential as a deterrent was never in question. Moreover, superweapons maintain a special place in the heart of Terran popular culture, and when the time came to develop the first small-scale prototype, there was overwhelming public support for the project. In light of this, the Meson Stream represented the first cautious, yet determined, steps of the Terran Protectorate towards fulfilling a long-harboured fantasy.nnIn return for massively increased material cost, the Mk2 variant manages to raise the energy output of the weapon to an even higher level.", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1000, + "price": { + "min": 917470, + "max": 1241282, + "avg": 1079376 + }, + "owners": [ + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 46 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 230 + }, + { + "ware": "siliconcarbide", + "amount": 40 + } + ] + } + ] + }, + { + "id": "weapon_ter_m_beam_01_mk2", + "version": 2, + "name": "TER M Meson Stream Mk2", + "description": "The Meson Stream is an incredibly powerful, and correspondingly expensive, weapon that fires a single transient beam that strikes almost instantly. Similar to other high precision weapons, the Meson Stream does not automatically track its target, and relies on the pilot's skill for aiming. In other respects, including its moderate range, it handles more similarly to beam weapons such as the Beam Emitter. The Meson Stream does not require charging, and can theoretically be fired without releasing the trigger. However, the ship's maximum heat capacity will usually prevent this kind of usage. Because of the weapon's extreme power consumption and heat generation, it can only be attached to high-energy weapon mounts.nnFor a variety of reasons, the Terran military had long since toyed with the idea of an oversized laser cannon. Despite requiring an entirely new, specialised platform, and bearing an abysmally wasteful energy profile, such a weapon's potential as a deterrent was never in question. Moreover, superweapons maintain a special place in the heart of Terran popular culture, and when the time came to develop the first small-scale prototype, there was overwhelming public support for the project. In light of this, the Meson Stream represented the first cautious, yet determined, steps of the Terran Protectorate towards fulfilling a long-harboured fantasy.nnIn return for massively increased material cost, the Mk2 variant manages to raise the energy output of the weapon to an even higher level.", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1000, + "price": { + "min": 4559808, + "max": 6169148, + "avg": 5364478 + }, + "owners": [ + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 141 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 713 + }, + { + "ware": "siliconcarbide", + "amount": 121 + } + ] + } + ] + }, + { + "id": "weapon_ter_m_gatling_01_mk1", + "version": 2, + "name": "TER M Proton Barrage Mk1", + "description": "The Terran Proton Barrage is a short range weapon which can only be attached to high-energy weapon mounts. It is considered the Terran high-energy variant of the Commonwealth Bolt Repeater. Compared to the Bolt Repeater, the Proton Barrage offers higher damage output and projectile speed, but forfeits some of its range. While providing more damage in total, the Barrage has a lower fire rate and focusses on delivering more powerful individual projectiles during its long bursts. Its main downsides are its compatibility restriction that limits it to Terran ship designs, and the fact that it is twice as expensive when compared to the weaker Commonwealth Bolt Repeater. The Proton Barrage is a generalist weapon which performs well against most reasonable targets.nnWith the reconnection of the Commonwealth, the Terran Secret Service acquired the Bolt Repeater blueprint, enabling Terran engineers to develop it into the Proton Barrage. They adjusted it for Terran high-energy mount compatibility, effectively increasing its power, while also preventing the Commonwealth from using it.nnThe Mk2 variant increases the damage output, despite reducing the rate of fire, by making the individual projectiles more powerful still.", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1000, + "price": { + "min": 140876, + "max": 190596, + "avg": 165736 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 44 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + } + ] + }, + { + "id": "weapon_ter_m_gatling_01_mk2", + "version": 2, + "name": "TER M Proton Barrage Mk2", + "description": "The Terran Proton Barrage is a short range weapon which can only be attached to high-energy weapon mounts. It is considered the Terran high-energy variant of the Commonwealth Bolt Repeater. Compared to the Bolt Repeater, the Proton Barrage offers higher damage output and projectile speed, but forfeits some of its range. While providing more damage in total, the Barrage has a lower fire rate and focusses on delivering more powerful individual projectiles during its long bursts. Its main downsides are its compatibility restriction that limits it to Terran ship designs, and the fact that it is twice as expensive when compared to the weaker Commonwealth Bolt Repeater. The Proton Barrage is a generalist weapon which performs well against most reasonable targets.nnWith the reconnection of the Commonwealth, the Terran Secret Service acquired the Bolt Repeater blueprint, enabling Terran engineers to develop it into the Proton Barrage. They adjusted it for Terran high-energy mount compatibility, effectively increasing its power, while also preventing the Commonwealth from using it.nnThe Mk2 variant increases the damage output, despite reducing the rate of fire, by making the individual projectiles more powerful still.", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1000, + "price": { + "min": 700151, + "max": 947263, + "avg": 823707 + }, + "owners": [ + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 13 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 96 + }, + { + "ware": "siliconcarbide", + "amount": 13 + } + ] + } + ] + }, + { + "id": "weapon_ter_m_laser_01_mk1", + "version": 2, + "name": "M Pulse Laser Mk1", + "description": "Many experienced pilots fondly remember the affordable and reliable Pulse Laser as their first weapon. Its pin-point accuracy and high projectile speed make it an excellent choice for fighting small and fast targets, handling fragile lockboxes, and for dealing with deployables like mines and lasertowers. Often initially scoffed at for its comparatively low damage output, its slow heat generation and sublime cooling result in a steady stream of disruptive fire, which in turn rewards pilots who can stay on target for an extended period. Faced with larger enemies, the Pulse Laser does not become obsolete as quickly as one might expect. Used in greater numbers, it can still be a formidable choice against frigates and corvettes, though an upgrade to a larger weapon mount may be advisable to maintain a level playing field. The Pulse Laser remains the preferred choice of commanders who favour versatility over optimisation against specific opponents, or who have little trust in the aim of their subordinates.nnThe technology behind the Pulse Laser is advanced and efficient. Within a shielded chamber, microscopic fragments of matter are superheated and accelerated by a pulsed neodymium laser. The weapon was originally designed by the Ministry of Finance to provide a robust loadout for their escort fleets, without having to invest time and resources into the maintenance of a well-rounded combined arms setup. Over time, and thanks to the Teladi Company's aggressive marketing, it has been adopted as the number one weapon of convenience by all other former members of the Community of Planets.nnThe Mk2 variant sports a slightly longer burst. This lowers the efficiency of the heat dissipation between bursts and thereby exponentially drives up the cost of the internal shielding, but results in an overall higher damage output.", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1000, + "price": { + "min": 47128, + "max": 63762, + "avg": 55445 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 30 + }, + { + "ware": "siliconcarbide", + "amount": 3 + } + ] + } + ] + }, + { + "id": "weapon_ter_m_laser_01_mk2", + "version": 2, + "name": "M Pulse Laser Mk2", + "description": "Many experienced pilots fondly remember the affordable and reliable Pulse Laser as their first weapon. Its pin-point accuracy and high projectile speed make it an excellent choice for fighting small and fast targets, handling fragile lockboxes, and for dealing with deployables like mines and lasertowers. Often initially scoffed at for its comparatively low damage output, its slow heat generation and sublime cooling result in a steady stream of disruptive fire, which in turn rewards pilots who can stay on target for an extended period. Faced with larger enemies, the Pulse Laser does not become obsolete as quickly as one might expect. Used in greater numbers, it can still be a formidable choice against frigates and corvettes, though an upgrade to a larger weapon mount may be advisable to maintain a level playing field. The Pulse Laser remains the preferred choice of commanders who favour versatility over optimisation against specific opponents, or who have little trust in the aim of their subordinates.nnThe technology behind the Pulse Laser is advanced and efficient. Within a shielded chamber, microscopic fragments of matter are superheated and accelerated by a pulsed neodymium laser. The weapon was originally designed by the Ministry of Finance to provide a robust loadout for their escort fleets, without having to invest time and resources into the maintenance of a well-rounded combined arms setup. Over time, and thanks to the Teladi Company's aggressive marketing, it has been adopted as the number one weapon of convenience by all other former members of the Community of Planets.nnThe Mk2 variant sports a slightly longer burst. This lowers the efficiency of the heat dissipation between bursts and thereby exponentially drives up the cost of the internal shielding, but results in an overall higher damage output.", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1000, + "price": { + "min": 234216, + "max": 316881, + "avg": 275549 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 11 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 75 + }, + { + "ware": "siliconcarbide", + "amount": 13 + } + ] + } + ] + }, + { + "id": "weapon_ter_s_beam_01_mk1", + "version": 2, + "name": "TER S Meson Stream Mk1", + "description": "The Meson Stream is an incredibly powerful, and correspondingly expensive, weapon that fires a single transient beam that strikes almost instantly. Similar to other high precision weapons, the Meson Stream does not automatically track its target, and relies on the pilot's skill for aiming. In other respects, including its moderate range, it handles more similarly to beam weapons such as the Beam Emitter. The Meson Stream does not require charging, and can theoretically be fired without releasing the trigger. However, the ship's maximum heat capacity will usually prevent this kind of usage. Because of the weapon's extreme power consumption and heat generation, it can only be attached to high-energy weapon mounts.nnFor a variety of reasons, the Terran military had long since toyed with the idea of an oversized laser cannon. Despite requiring an entirely new, specialised platform, and bearing an abysmally wasteful energy profile, such a weapon's potential as a deterrent was never in question. Moreover, superweapons maintain a special place in the heart of Terran popular culture, and when the time came to develop the first small-scale prototype, there was overwhelming public support for the project. In light of this, the Meson Stream represented the first cautious, yet determined, steps of the Terran Protectorate towards fulfilling a long-harboured fantasy.nnIn return for massively increased material cost, the Mk2 variant manages to raise the energy output of the weapon to an even higher level.", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 489788, + "max": 662654, + "avg": 576221 + }, + "owners": [ + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 24 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 161 + }, + { + "ware": "siliconcarbide", + "amount": 23 + } + ] + } + ] + }, + { + "id": "weapon_ter_s_beam_01_mk2", + "version": 2, + "name": "TER S Meson Stream Mk2", + "description": "The Meson Stream is an incredibly powerful, and correspondingly expensive, weapon that fires a single transient beam that strikes almost instantly. Similar to other high precision weapons, the Meson Stream does not automatically track its target, and relies on the pilot's skill for aiming. In other respects, including its moderate range, it handles more similarly to beam weapons such as the Beam Emitter. The Meson Stream does not require charging, and can theoretically be fired without releasing the trigger. However, the ship's maximum heat capacity will usually prevent this kind of usage. Because of the weapon's extreme power consumption and heat generation, it can only be attached to high-energy weapon mounts.nnFor a variety of reasons, the Terran military had long since toyed with the idea of an oversized laser cannon. Despite requiring an entirely new, specialised platform, and bearing an abysmally wasteful energy profile, such a weapon's potential as a deterrent was never in question. Moreover, superweapons maintain a special place in the heart of Terran popular culture, and when the time came to develop the first small-scale prototype, there was overwhelming public support for the project. In light of this, the Meson Stream represented the first cautious, yet determined, steps of the Terran Protectorate towards fulfilling a long-harboured fantasy.nnIn return for massively increased material cost, the Mk2 variant manages to raise the energy output of the weapon to an even higher level.", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 2367396, + "max": 3202947, + "avg": 2785171 + }, + "owners": [ + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 118 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 611 + }, + { + "ware": "siliconcarbide", + "amount": 107 + } + ] + } + ] + }, + { + "id": "weapon_ter_s_gatling_01_mk1", + "version": 2, + "name": "TER S Proton Barrage Mk1", + "description": "The Terran Proton Barrage is a short range weapon which can only be attached to high-energy weapon mounts. It is considered the Terran high-energy variant of the Commonwealth Bolt Repeater. Compared to the Bolt Repeater, the Proton Barrage offers higher damage output and projectile speed, but forfeits some of its range. While providing more damage in total, the Barrage has a lower fire rate and focusses on delivering more powerful individual projectiles during its long bursts. Its main downsides are its compatibility restriction that limits it to Terran ship designs, and the fact that it is twice as expensive when compared to the weaker Commonwealth Bolt Repeater. The Proton Barrage is a generalist weapon which performs well against most reasonable targets.nnWith the reconnection of the Commonwealth, the Terran Secret Service acquired the Bolt Repeater blueprint, enabling Terran engineers to develop it into the Proton Barrage. They adjusted it for Terran high-energy mount compatibility, effectively increasing its power, while also preventing the Commonwealth from using it.nnThe Mk2 variant increases the damage output, despite reducing the rate of fire, by making the individual projectiles more powerful still.", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 97679, + "max": 132154, + "avg": 114917 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 53 + }, + { + "ware": "siliconcarbide", + "amount": 8 + } + ] + } + ] + }, + { + "id": "weapon_ter_s_gatling_01_mk2", + "version": 2, + "name": "TER S Proton Barrage Mk2", + "description": "The Terran Proton Barrage is a short range weapon which can only be attached to high-energy weapon mounts. It is considered the Terran high-energy variant of the Commonwealth Bolt Repeater. Compared to the Bolt Repeater, the Proton Barrage offers higher damage output and projectile speed, but forfeits some of its range. While providing more damage in total, the Barrage has a lower fire rate and focusses on delivering more powerful individual projectiles during its long bursts. Its main downsides are its compatibility restriction that limits it to Terran ship designs, and the fact that it is twice as expensive when compared to the weaker Commonwealth Bolt Repeater. The Proton Barrage is a generalist weapon which performs well against most reasonable targets.nnWith the reconnection of the Commonwealth, the Terran Secret Service acquired the Bolt Repeater blueprint, enabling Terran engineers to develop it into the Proton Barrage. They adjusted it for Terran high-energy mount compatibility, effectively increasing its power, while also preventing the Commonwealth from using it.nnThe Mk2 variant increases the damage output, despite reducing the rate of fire, by making the individual projectiles more powerful still.", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 486903, + "max": 658751, + "avg": 572827 + }, + "owners": [ + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 24 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 145 + }, + { + "ware": "siliconcarbide", + "amount": 22 + } + ] + } + ] + }, + { + "id": "weapon_ter_s_laser_01_mk1", + "version": 2, + "name": "S Pulse Laser Mk1", + "description": "Many experienced pilots fondly remember the affordable and reliable Pulse Laser as their first weapon. Its pin-point accuracy and high projectile speed make it an excellent choice for fighting small and fast targets, handling fragile lockboxes, and for dealing with deployables like mines and lasertowers. Often initially scoffed at for its comparatively low damage output, its slow heat generation and sublime cooling result in a steady stream of disruptive fire, which in turn rewards pilots who can stay on target for an extended period. Faced with larger enemies, the Pulse Laser does not become obsolete as quickly as one might expect. Used in greater numbers, it can still be a formidable choice against frigates and corvettes, though an upgrade to a larger weapon mount may be advisable to maintain a level playing field. The Pulse Laser remains the preferred choice of commanders who favour versatility over optimisation against specific opponents, or who have little trust in the aim of their subordinates.nnThe technology behind the Pulse Laser is advanced and efficient. Within a shielded chamber, microscopic fragments of matter are superheated and accelerated by a pulsed neodymium laser. The weapon was originally designed by the Ministry of Finance to provide a robust loadout for their escort fleets, without having to invest time and resources into the maintenance of a well-rounded combined arms setup. Over time, and thanks to the Teladi Company's aggressive marketing, it has been adopted as the number one weapon of convenience by all other former members of the Community of Planets.nnThe Mk2 variant sports a slightly longer burst. This lowers the efficiency of the heat dissipation between bursts and thereby exponentially drives up the cost of the internal shielding, but results in an overall higher damage output.", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 36516, + "max": 49404, + "avg": 42960 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 35 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + } + ] + }, + { + "id": "weapon_ter_s_laser_01_mk2", + "version": 2, + "name": "S Pulse Laser Mk2", + "description": "Many experienced pilots fondly remember the affordable and reliable Pulse Laser as their first weapon. Its pin-point accuracy and high projectile speed make it an excellent choice for fighting small and fast targets, handling fragile lockboxes, and for dealing with deployables like mines and lasertowers. Often initially scoffed at for its comparatively low damage output, its slow heat generation and sublime cooling result in a steady stream of disruptive fire, which in turn rewards pilots who can stay on target for an extended period. Faced with larger enemies, the Pulse Laser does not become obsolete as quickly as one might expect. Used in greater numbers, it can still be a formidable choice against frigates and corvettes, though an upgrade to a larger weapon mount may be advisable to maintain a level playing field. The Pulse Laser remains the preferred choice of commanders who favour versatility over optimisation against specific opponents, or who have little trust in the aim of their subordinates.nnThe technology behind the Pulse Laser is advanced and efficient. Within a shielded chamber, microscopic fragments of matter are superheated and accelerated by a pulsed neodymium laser. The weapon was originally designed by the Ministry of Finance to provide a robust loadout for their escort fleets, without having to invest time and resources into the maintenance of a well-rounded combined arms setup. Over time, and thanks to the Teladi Company's aggressive marketing, it has been adopted as the number one weapon of convenience by all other former members of the Community of Planets.nnThe Mk2 variant sports a slightly longer burst. This lowers the efficiency of the heat dissipation between bursts and thereby exponentially drives up the cost of the internal shielding, but results in an overall higher damage output.", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 180862, + "max": 244696, + "avg": 212779 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 77 + }, + { + "ware": "siliconcarbide", + "amount": 12 + } + ] + } + ] + }, + { + "id": "engine_gen_m_yacht_01_mk1", + "version": 2, + "name": "Astrid M Engine", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 601290, + "max": 813510, + "avg": 707400 + }, + "owners": [ + "loanshark" + ], + "thrust": { + "forward": 2415, + "reverse": 3139 + }, + "travel": { + "thrust": 12, + "attack": 10, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 200 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "engineparts", + "amount": 250 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 34 + }, + { + "ware": "energycells", + "amount": 460 + }, + { + "ware": "hullparts", + "amount": 197 + } + ] + } + ] + }, + { + "id": "engine_pir_xl_battleship_01_allround_01_mk1", + "version": 2, + "name": "Erlking XL Engine", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "extralarge", + "hull": 10973, + "price": { + "min": 45773, + "max": 61928, + "avg": 53850 + }, + "owners": [ + "ownerless" + ], + "thrust": { + "forward": 20560, + "reverse": 22616 + }, + "travel": { + "thrust": 33, + "attack": 75, + "charge": 30, + "release": 0 + }, + "production": [ + { + "time": 140, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 11 + }, + { + "ware": "energycells", + "amount": 45 + }, + { + "ware": "engineparts", + "amount": 93 + } + ] + } + ] + }, + { + "id": "shield_gen_m_yacht_01_mk1", + "version": 2, + "name": "Astrid M Shield Generator", + "description": "No information available", + "race": "argon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "recharge": { + "max": 50911, + "rate": 709, + "delay": 0.28 + }, + "price": { + "min": 52958, + "max": 71650, + "avg": 62304 + }, + "owners": [ + "loanshark" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "fieldcoils", + "amount": 50 + }, + { + "ware": "shieldcomponents", + "amount": 20 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 7 + }, + { + "ware": "energycells", + "amount": 168 + }, + { + "ware": "hullparts", + "amount": 43 + } + ] + } + ] + }, + { + "id": "shield_pir_xl_battleship_01_standard_01_mk1", + "version": 2, + "name": "Erlking XL Shield Generator", + "description": "No information available", + "race": "argon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "extralarge", + "hull": 8100, + "recharge": { + "max": 158600, + "rate": 662, + "delay": 0 + }, + "price": { + "min": 102082, + "max": 138110, + "avg": 120096 + }, + "owners": [ + "ownerless" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "fieldcoils", + "amount": 100 + }, + { + "ware": "shieldcomponents", + "amount": 30 + } + ] + } + ] + }, + { + "id": "turret_gen_m_yacht_01_mk1", + "version": 2, + "name": "Astrid M Turret", + "description": "\"You won't believe how many pointless features this turret has that nobody asked for. I can also immediately tell, without looking at it, that the target acquisition code suffers from extreme spaghettification. It's unfathomable to me, how the designers can keep adding functions to each version before ironing out the countless flaws that have riddled it since its inception. I should have known better than to buy anything that comes out of Windfall these days. Those swindlers on Aurora are the worst of the bunch. Have I mentioned that the AI in this thing is atrocious? 7/10\" - Anonymous", + "race": "argon", + "type": "weapons", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 81192, + "max": 109848, + "avg": 95520 + }, + "owners": [ + "loanshark" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 10 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "turretcomponents", + "amount": 20 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 145 + }, + { + "ware": "hullparts", + "amount": 26 + } + ] + } + ] + }, + { + "id": "turret_pir_l_battleship_01_laser_01_mk1", + "version": 2, + "name": "Erlking L Turret", + "description": "The Erlking L Turret fires a single high speed projectile, superheated and accelerated by a custom pulsed laser. While fixed weapons usually outperform their turret counterparts of the same size, the Erlking's turrets are an unusual exception; the damage from this turret is comparable to, and might even exceed, that of L Pulse Laser weapons at close range. Over distance, however, the damage output falls off steeply, and at maximum range barely matches that of a standard L Pulse Laser turret. Although the Erlking is perfectly capable of defending itself at a distance, the high damage output of its turrets at short range makes it much more dangerous at close proximity, meaning that aggressive manoeuvres by the Erlking's pilot are rewarded. This exceptional performance is attributed to the Erlking's power core, from which the turrets draw energy.nnBoso Ta commented that this turret employs electronic redundancies designed to be especially robust against internal radiation damage, and that this is necessary due to its slight but continuous exposure to the power core. ", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 4140, + "price": { + "min": 12105, + "max": 16378, + "avg": 14242 + }, + "owners": [ + "ownerless" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "turretcomponents", + "amount": 6 + } + ] + } + ] + }, + { + "id": "turret_pir_m_battleship_01_gatling_02_mk1", + "version": 2, + "name": "Erlking M Turret", + "description": "The Erlking M Turret fires bursts of high speed projectiles, reminiscent of Bolt Repeater burst fire. While fixed weapons usually outperform their turret counterparts of the same size, the Erlking's turrets are an unusual exception; the damage from this turret is comparable to, and might even exceed, that of M Bolt Repeater weapons at close range. Over distance, however, the damage output falls off steeply, and at maximum range barely matches that of a standard M Bolt Repeater turret. Although the Erlking is perfectly capable of defending itself at a distance, the high damage output of its turrets at short range makes it much more dangerous at close proximity, meaning that aggressive manoeuvres by the Erlking's pilot are rewarded. This exceptional performance is attributed to the Erlking's power core, from which the turrets draw energy.nnBoso Ta was particularly keen to go into detail about how this turret manages to rapidly access the power core, for only the blink of an eye at a time, before just as rapidly cutting the connection, thereby preventing an energy draining feedback loop capable of destroying the ship. Boso Ta also said not to worry, as the safety mechanisms will prevent this from happening most of the time.", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 900, + "price": { + "min": 11451, + "max": 15492, + "avg": 13471 + }, + "owners": [ + "ownerless" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 12 + }, + { + "ware": "turretcomponents", + "amount": 5 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_yacht_01_mk1", + "version": 2, + "name": "Astrid Primary Weapon", + "description": "\"An ambitious, complex space weapon that allows you to do almost anything from pressing the trigger to letting go of the trigger.\" - Gungrinnn\"I was well pleased.\" - Sydneenn\"Received this weapon as a gift for my 18th birthday. Wish I'd known what it was because as soon as I fired it, I split down the middle and became the CEO of a multi-billion credit enterprise. Minus 2 stars because it doesn't one-shot a Xenon I.\" - Sir Kitnn\"It has a little something for everyone.\" - Envision Arms Network", + "race": "argon", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "price": { + "min": 116382, + "max": 157458, + "avg": 136920 + }, + "owners": [ + "loanshark" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 30 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "weaponcomponents", + "amount": 120 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 19 + }, + { + "ware": "energycells", + "amount": 340 + }, + { + "ware": "hullparts", + "amount": 113 + } + ] + } + ] + }, + { + "id": "weapon_pir_xl_battleship_01_mk1", + "version": 2, + "name": "Erlking Main Battery", + "description": "The Erlking Main Battery is the only Erlking armament which does not suffer from decreased damage output over distance. This allows the Erlking to fight at range, or attack effectively while closing in on its target.nnBoso Ta claims that this weapon employs various kinds of titanium alloys and conductors to draw a large amount of energy from the power core, while disposing of excess hazardous radiation and keeping it from leaking into the ship. Unfortunately he wasn't so keen to go into detail about how it performs as a weapon.", + "race": "argon", + "type": "weapons", + "equipmentClass": "weapon", + "size": "extralarge", + "hull": 12000, + "price": { + "min": 485683, + "max": 657101, + "avg": 571392 + }, + "owners": [ + "ownerless" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 150 + }, + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "weaponcomponents", + "amount": 300 + } + ] + } + ] + } +] \ No newline at end of file diff --git a/shared/data/factions.json b/shared/data/factions.json new file mode 100644 index 0000000..1203eef --- /dev/null +++ b/shared/data/factions.json @@ -0,0 +1,2136 @@ +[ + { + "id": "player", + "version": 0, + "name": "Player", + "description": "No information available", + "icon": "faction_player", + "licenses": [ + { + "type": "generaluseship", + "name": "Licence", + "icon": "", + "price": 0 + } + ] + }, + { + "id": "alliance", + "version": 0, + "name": "Alliance of the Word", + "description": "As the universe cascaded into chaos during the first years of the Jump Gate shutdown, a new faction emerged, made up of scholars, scientists, and historians. In those most uncertain of times, they dedicated themselves to collecting the cultures and histories of all known species into their archives, fearing that the shutdown could result in that knowledge being lost forever.nnThey also threw themselves into researching Jump Gate technology in the hopes of reversing the shutdown. These attempts, unfortunately, bore little in the way of fruit. They could not avert the shutdown, but they did set out to re-establish contact with the disparate systems by sending out durable drones that could withstand the arduous journeys.nnAfter the Gates resumed function, their focus shifted to mapping out the network's changed layout and exploring newly discovered systems. However, they have not given up on the idea of getting to grips with Jump Gate technology and work out contingency plans, as a future shutdown cannot be entirely ruled out.", + "race": "paranid", + "icon": "faction_alliance", + "licenses": [ + { + "type": "capitalequipment", + "name": "Alliance Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Alliance Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Trusted Alliance Ally", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Trusted Alliance Friend", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Alliance General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Alliance General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Alliance Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Alliance Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "shipsalecontract", + "name": "Alliance Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Alliance Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Alliance Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Alliance Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Alliance Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Alliance Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "subgroupfriend", + "name": "Stargazers' Guild Membership", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Alliance Trade Offer Subscription", + "icon": "", + "price": 10000 + } + ] + }, + { + "id": "antigone", + "version": 0, + "name": "Antigone Republic", + "description": "The Antigone Republic is made up of representatives of several sectors that were cut off from the Argon Federation during the Gate Shutdown. The fledgling republic was named after the system in which it resides, the system itself paying tribute to the Argon station whose loss is recorded in history as one of the greatest horrors of the Xenon wars. While the Antigone Republic is a distinct entity detached from the Argon Federation, and they are wary of returning back into the Federation, they maintain close ties, and cooperate on many levels. Sandwell, for example, is a planet of the Antigone Memorial system, which hosts the Argon Federation's biggest data archive. The Antigone Republic and the Argon Federation frequently conduct joint military operations to beat back Xenon invasions, and they trade freely and often.", + "race": "argon", + "icon": "faction_antigone", + "licenses": [ + { + "type": "capitalequipment", + "name": "Republic Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Republic Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Citizen of the Republic", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Friend of the Republic", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Republic General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Republic General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Republic Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Republic Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "shipsalecontract", + "name": "Republic Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Republic Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Republic Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Republic Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Republic Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Republic Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Republic Trade Offer Subscription", + "icon": "", + "price": 10000000 + } + ] + }, + { + "id": "argon", + "version": 0, + "name": "Argon Federation", + "description": "The Argon Federation was founded by the descendants of Terran settlers cut off from their home system and stranded in deep space during the Terraformer wars. The settlers' colonised planet, Argon Prime, is the Federation's heart, and a cultural and industrial hotspot to this day. The Federation tries to maintain good relations with the other races, if they deem these relations to be mutually beneficial, but ever since the Gate Shutdown, diplomatic relations on all sides are deteriorating, and conflicts, such as the war with Holy Order of the Pontifex, emerge.", + "race": "argon", + "icon": "faction_argon", + "licenses": [ + { + "type": "capitalequipment", + "name": "Federation Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Federation Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Hero of the Federation", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Friend of the Federation", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Argon General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Federation General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Federation Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Federation Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "police", + "name": "Federation Police Licence", + "icon": "", + "price": 156000 + }, + { + "type": "shipsalecontract", + "name": "Federation Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Federation Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Federation Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Federation Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Federation Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Federation Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "subgroupfriend", + "name": "Argon Secret Service Membership", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Federation Trade Offer Subscription", + "icon": "", + "price": 10000000 + } + ] + }, + { + "id": "buccaneers", + "version": 0, + "name": "Duke's Buccaneers", + "description": "At the time of its inception, the Duke's Buccaneers was outwardly an officially sanctioned, non-governmental security outfit that operated within the New Duchy systems of the Paranid Empire. Behind this facade, a corrupt organisation began to form, determined to undermine the authority of the very government that had originally permitted its rise. The Buccaneers were led by the shadowy and cunning Pirate Duke who unified smugglers, pirates and other discontent denizens of this largely unexplored and unstable region under his rule. During the Terran Conflict, which forcefully distracted the Paranid Pontifex's attention, Duke's Haven was established as the faction headquarters in a newly discovered border system. That system was later grandiosely renamed Lasting Vengeance, presumably in honour of one of the Duke's driving motivations in the subsequent escalation.nnThe Duke's Buccaneers were infamous for requiring absolute commitment from their members, demanding that they cut all former ties, and sending them on dangerous infiltration and assassination missions against their former affiliates to prove their allegiance. For most of the faction's supporters, this made maintaining good standings with major political powers, or even pirate organisations, nigh on impossible, and over time resulting in them serving only the Buccaneers. Eventually, political tensions rose and the Buccaneers became hunted by their Paranid neighbours, leading to attacks on their headquarters itself. Regardless of the meticulous planning and seeming precision of those strikes, they never managed to corner or kill the pirate leader himself. The Duke always seemed to stay one step ahead of his pursuers, all the while giving his loyal subjects ample opportunity to make a profit in the ensuing chaos.nnAccording to the sparse pre-shutdown records, during a wave of warp instabilities between 780 and 782 NT, the Pirate Duke was on the verge of achieving his grandest scheme yet, when suddenly, the Buccaneers headquarters in Lasting Vengeance, and with it a large part of the admiralty, was cut off from the rest of the network. The faction as a whole, like many others at the time, dispersed quickly, with only a handful of small pirate bands continuing to vie for control of the now-isolated systems of the New Duchy. After the realignment of the Jump Gates, the Buccaneers were at first thought extinct. Though there were occasional supposed sightings in Paranid territory, these reports weren't given much attention, especially considering the much more pressing issue of the Paranid Civil War.", + "race": "paranid", + "icon": "faction_buccaneers", + "licenses": [ + { + "type": "capitalequipment", + "name": "Duke's Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Duke's Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Duke's Honour Guard", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Duke's Buccaneer", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Duke's General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Duke's General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Duke's Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Duke's Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "police", + "name": "Duke's Police Licence", + "icon": "", + "price": 156000 + }, + { + "type": "shipsalecontract", + "name": "Duke's Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Duke's Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Duke's Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Duke's Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Duke's Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Duke's Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Duke's Trade Offer Subscription", + "icon": "", + "price": 12000000 + } + ] + }, + { + "id": "civilian", + "version": 0, + "name": "Civilian", + "description": "No information available", + "icon": "faction_civilian", + "licenses": [] + }, + { + "id": "criminal", + "version": 0, + "name": "Criminal", + "description": "No information available", + "icon": "faction_criminal", + "licenses": [] + }, + { + "id": "hatikvah", + "version": 0, + "name": "Hatikvah Free League", + "description": "The Hatikvah Free League split from the Argon Federation over frictions involving policymaking, especially those pertaining to the deregulation of trade and a peaceful, egalitarian coexistence of all races. After some political back-and-forth, they were officially recognised by the Argon Federation, but because they were perceived as naive by some elements of the Federation's government, the Hatikvah Free League was kept somewhat at arm's length. As a result of their inherent openness and their penchant for dealing in extra-legal wares, they soon attracted criminals and disenfranchised people seeking safe haven. When the Jump Gates shut down and their situation grew more desperate, the organisation shifted even further towards piracy, and began working with the Scale Plate Pact.nnMore recently, the Hatikvah Free League has shown a desire to re-align themselves more closely with the Argon Federation, and shift their focus towards more legitimate business in an attempt to rebuild and mend relations.", + "race": "argon", + "icon": "faction_hatikvah", + "licenses": [ + { + "type": "capitalequipment", + "name": "Free League Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Free League Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "League Member", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "League Associate", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Free League General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Free League General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Free League Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Free League Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "shipsalecontract", + "name": "Free League Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_illegal", + "name": "League Illegal Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "subgroupfriend", + "name": "Mercenary Guild Membership", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Free League Trade Offer Subscription", + "icon": "", + "price": 1000000 + } + ] + }, + { + "id": "holyorder", + "version": 0, + "name": "Holy Order of the Pontifex", + "description": "The Holy Order of the Pontifex established itself as an authority on Paranid religious affairs and took control of systems during the tumultuous times of the Gate Shutdown. Their Pontifex is shrouded in mystery and defends this radical new interpretation of the Paranid faith with a zealous frenzy. The Holy Order is steadfast in their beliefs, which puts them at odds with the Godrealm of the Paranid. They do not wish to eradicate the Godrealm, but to convert them to their beliefs. Their fanatic attitude is less accommodating towards non-Paranid heretics.", + "race": "paranid", + "icon": "faction_holyorder", + "licenses": [ + { + "type": "capitalequipment", + "name": "Holy Order Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Holy Order Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Servant of the Order", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Order Initiate", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Holy Order General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Holy Order General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Holy Order Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Holy Order Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "police", + "name": "Holy Order Police Licence", + "icon": "", + "price": 156000 + }, + { + "type": "shipsalecontract", + "name": "Holy Order Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Holy Order Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Holy Order Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Holy Order Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Holy Order Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Holy Order Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Holy Order Trade Offer Subscription", + "icon": "", + "price": 10000000 + } + ] + }, + { + "id": "holyorderfanatic", + "version": 0, + "name": "Holy Order Faithful", + "description": "As peace negotiations between the Godrealm of the Paranid and the Holy Order of the Pontifex began in earnest, the numbers flocking to the Holy Order Faithful rose quickly to threatening levels. Driven by an absolute commitment to the True Pontifex and backed by high-ranking officials, this not-so-secret organisation regularly mobilises elite pilots and saboteurs, against ally and enemy alike, to stop any semblance of diplomacy between the Paranid factions dead in its tracks. According to their official propaganda, they pursue a conviction which is shared by a significant proportion of the Paranid populace: that the Paranid Civil War - originating from the fundamental geometric imperfection of the duality of Pontifices - can only truly be resolved through the utter annihilation of the opposing faith. It has, however, been theorised that something far less spiritual lies at the heart of their strategic outlook on the schism. Over the course of the last decade, entire economies have become reliant on the extraordinary military spending fuelled by this conflict, so it comes as no surprise that whenever the Faithful appear to be defeated, they're able to rapidly rebuild their forces with the support of anonymous donors from across the Jump Gate network.", + "race": "paranid", + "icon": "faction_holyorder", + "licenses": [] + }, + { + "id": "khaak", + "version": 0, + "name": "Kha'ak", + "description": "The Kha'ak infesting the local Jump Gate network are a loose collection of hives that do not currently seem to operate under any sort of central authority. While most of their swarms were eradicated in the aftermath of Operation Final Fury, these hives were fortunate enough to be cut off from the Community of Planets during the Jump Gate shutdown. Some of them were able to slowly grow and prosper in relative peace and quiet, but others were forced to transform most of their sparse populace into warriors who engaged in a decades-long struggle to defend their homes against the similarly stranded Xenon matrices. Since the realignment, Kha'ak can be frequently observed travelling the network, brazenly using the Highway installations, presumably in an attempt to reestablish a connection between their scattered hives.nnBecause their communication signals remain unintelligible, little can be established about the goals of the Kha'ak as a whole. However, it is universally agreed upon that the Kha'ak do, in fact, originate from beyond our galaxy and were drawn towards the network by Argon experiments with Jump Drive technology, probably coinciding with an irrevocable deterioration of the Kha'ak homeworld. It stands to reason that they are currently primarily focused on survival in an environment that largely considers them to be an unthinking scourge; a supposition that the actions of the Kha'ak are yet to fundamentally contradict.", + "race": "khaak", + "icon": "faction_khaak", + "licenses": [] + }, + { + "id": "ministry", + "version": 0, + "name": "Ministry of Finance", + "description": "The Ministry of Finance is responsible for protecting Teladi business interests. The Teladi race is quite cautious by nature. To turn a Teladi pilot into an efficient Ministry of Finance fighter, their natural instinct to avoid conflict has to be overcome in an arduous, and sometimes brutal, training regime.nnWhile their main purpose used to be to support the Teladi Company's expansionist efforts and keep internal corruption at bay, their attention has more recently shifted towards protecting the Teladi from external threats. The resurgence of Xenon activity at the borders of Teladi space keeps a large part of their forces occupied. Those who are not busy fighting off the Xenon, patrol Teladi territory for pirate activity. Scale Plate pirates may be tolerated as a minor nuisance by most in the Teladi Company, and may even be tentatively looked toward as business partners by the more unscrupulous elements within the Company, but the Ministry of Finance has no tolerance at all for their lawlessness.", + "race": "teladi", + "icon": "faction_ministry", + "licenses": [ + { + "type": "capitalequipment", + "name": "Ministry Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Ministry Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Ministry Profiteer", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Ministry Helper", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Ministry General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Ministry General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Ministry Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Ministry Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "police", + "name": "Company Police Licence", + "icon": "", + "price": 156000 + }, + { + "type": "shipsalecontract", + "name": "Ministry Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Ministry Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Ministry Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Ministry Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Ministry Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Ministry Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_illegal", + "name": "Ministry Illegal Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Ministry Trade Offer Subscription", + "icon": "", + "price": 100000 + } + ] + }, + { + "id": "ownerless", + "version": 0, + "name": "", + "description": "", + "icon": "faction_ownerless", + "licenses": [] + }, + { + "id": "paranid", + "version": 0, + "name": "Godrealm of the Paranid", + "description": "The Godrealm of the Paranid is a theocratic feudal society worshipping the concept of the three-dimensionality. They refer to their ancient holy texts to justify their archaic power structure and pervasive authority. Although this Godrealm has been cut off from Paranid Prime, they understand themselves to be the true purveyors of the Paranid faith. After the Gates realigned, their strict interpretation of this faith resulted in tensions with the Holy Order of the Pontifex, and eventually, a civil war broke out. Still, the Godrealm maintains that the ultimate goal is not to exterminate the Paranids fighting for Holy Order, but to welcome them back into the fold.", + "race": "paranid", + "icon": "faction_paranid", + "licenses": [ + { + "type": "capitalequipment", + "name": "Godrealm Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Godrealm Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Honour Guard of Xaar", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Friend of the Godrealm", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Paranid General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Godrealm General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Godrealm Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Godrealm Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "police", + "name": "Godrealm Police Licence", + "icon": "", + "price": 156000 + }, + { + "type": "shipsalecontract", + "name": "Godrealm Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Godrealm Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Godrealm Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Godrealm Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Godrealm Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Godrealm Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Godrealm Trade Offer Subscription", + "icon": "", + "price": 12000000 + } + ] + }, + { + "id": "scaleplate", + "version": 0, + "name": "Scale Plate Pact", + "description": "The Scale Plate Pact emerged as a conglomeration of greedy businessmen, desperate cutthroats and refugees displaced by the Xenon overrunning Scale Plate Green. A local phenomenon at first, these pirates were soon joined in their illicit endeavours by Teladi Company workers who had lost their livelihoods in the economic downturn created by the Jump Gate shutdown, and spread throughout the universe. According to rumours, some of their most ferocious fighters were once Ministry of Finance cadets who were not able to cope with the strict training regime and dubious mental conditioning required to turn Teladi pilots into efficient police.nnWhile all of these disparate groups originally came together to ensure their survival by dealing in illicit goods, the scope of operations soon widened to maximise profits. Hired killings, capturing ships and hostage-taking now account for a large share of their profits. Those who could not live with the direction this organisation had taken, found themselves left behind or shot in the back.", + "race": "teladi", + "icon": "faction_scaleplate", + "licenses": [ + { + "type": "capitalequipment", + "name": "Pact Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Pact Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Pact Holder", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Pact Trustee", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Pact General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Pact General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Pact Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Pact Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "shipsalecontract", + "name": "Pact Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_gen_advanced", + "name": "Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_illegal", + "name": "Pact Illegal Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "subgroupfriend", + "name": "Scaleless/Profiteers Membership", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Pact Trade Offer Subscription", + "icon": "", + "price": 1000000 + } + ] + }, + { + "id": "smuggler", + "version": 0, + "name": "Criminal", + "description": "No information available", + "icon": "faction_smuggler", + "licenses": [] + }, + { + "id": "teladi", + "version": 0, + "name": "Teladi Company", + "description": "The Teladi Company took to space travel relatively recently, at least compared to other factions. Everything they do is driven by their overriding imperative to turn a profit. They expand their reach in the hopes of coming across potential new trading partners and novel, exciting technologies they can sell. As the name implies, their organisation is structured like a company, with a CEO in the leadership position, surrounded by a board of directors. The Company's internal divisions are governed by Chairmen, who are given a lot of room to manoeuvre, as long as their policies increase the bottom line. As a result of this outlook, it is not uncommon for Chairmen to be in league with pirates and smugglers.", + "race": "teladi", + "icon": "faction_teladi", + "licenses": [ + { + "type": "capitalequipment", + "name": "Company Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Company Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Honorary Company Director", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Honorary Company Shareholder", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Teladi General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Company General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Company Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Company Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "shipsalecontract", + "name": "Company Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Company Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Company Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Company Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Company Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Company Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_illegal", + "name": "Company Illegal Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "subgroupfriend", + "name": "Free Traders' Association Membership", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Company Trade Offer Subscription", + "icon": "", + "price": 16000000 + } + ] + }, + { + "id": "trinity", + "version": 0, + "name": "Realm of the Trinity", + "description": "The Realm of the Trinity is the unified successor to the former states of the Godrealm of the Paranid and the Holy Order of the Pontifex. Through its inception, the unthinkable geometric paradox of the two Pontifices has been remedied, and thus the Paranid Civil War officially brought to an end. Though there were numerous attempts to sabotage the negotiations, including a heinous attack on the construction site of the anonymously funded Sacrosanct Conclave, unity was ultimately achieved and defended by a most holy alliance of benefactors and proponents of peace. The political goals of the Trinity of Pontifices remain yet unknown, though it is universally expected that they will use their newly gained power to shift the political climate of the network towards peaceful coexistence.nnHistorical record: Godrealm of the ParanidnThe Godrealm of the Paranid is a theocratic feudal society worshipping the concept of the three-dimensionality. They refer to their ancient holy texts to justify their archaic power structure and pervasive authority. Although this Godrealm has been cut off from Paranid Prime, they understand themselves to be the true purveyors of the Paranid faith. After the Gates realigned, their strict interpretation of this faith resulted in tensions with the Holy Order of the Pontifex, and eventually, a civil war broke out. Still, the Godrealm maintains that the ultimate goal is not to exterminate the Paranids fighting for Holy Order, but to welcome them back into the fold.nnHistorical record: Holy Order of the PontifexnThe Holy Order of the Pontifex established itself as an authority on Paranid religious affairs and took control of systems during the tumultuous times of the Gate Shutdown. Their Pontifex is shrouded in mystery and defends this radical new interpretation of the Paranid faith with a zealous frenzy. The Holy Order is steadfast in their beliefs, which puts them at odds with the Godrealm of the Paranid. They do not wish to eradicate the Godrealm, but to convert them to their beliefs. Their fanatic attitude is less accommodating towards non-Paranid heretics.", + "race": "paranid", + "icon": "faction_trinity", + "licenses": [ + { + "type": "capitalequipment", + "name": "Paranid Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Paranid Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Seeker of the Holy Light", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Creature of Merit", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Paranid General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Paranid General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Paranid Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Paranid Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "police", + "name": "Paranid Police Licence", + "icon": "", + "price": 156000 + }, + { + "type": "shipsalecontract", + "name": "Paranid Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Paranid Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Paranid Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Paranid Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Paranid Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Paranid Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Paranid Trade Offer Subscription", + "icon": "", + "price": 12000000 + } + ] + }, + { + "id": "visitor", + "version": 0, + "name": "Visitor", + "description": "No information available", + "icon": "faction_visitor", + "licenses": [ + { + "type": "station_venture", + "name": "Venture Module Licence", + "icon": "", + "price": 0 + } + ] + }, + { + "id": "xenon", + "version": 0, + "name": "Xenon", + "description": "Originally merely a tool created to help in the Terrans' colonisation of the stars, these terraforming machines would eventually become the greatest threat facing the universe. The Xenon are notable for their Artificial General Intelligence (AGI), which brought with it a flexible problem-solving approach. This AGI technology allowed the machines to modify themselves to better carry out their tasks, but eventually resulted in their uncontrollable self-replication.nnNow, the Xenon roam the universe, drifting ever deeper into all areas of space; a mechanical scourge that cannot be reasoned with. Attempts to shut them down have ultimately proved futile, and most people have resigned themselves to the fact that this is a threat that could potentially be managed, but never defeated.", + "race": "xenon", + "icon": "faction_xenon", + "licenses": [] + }, + { + "id": "court", + "version": 1, + "name": "Court of Curbs", + "description": "Throughout Split history it has been the males of the species, known to be more aggressive and impulsive, who have wielded political power, be it as Patriarchs of their own families or as High Patriarchs uniting inferiors under their empires. High Patriarch Ghus t'Gllt once noted that Patriarchs' impulsiveness often contributed to their untimely demise. To combat the worst excesses of male Split enthusiasm, he set up the position of \"Curb\", a female advisory role to work alongside male warriors and decision-makers. While some families later abandoned this function in their communities, others still employ Curbs to the present day.nAfter the Free Families failed to completely unite and fend off the invasion by the Zyarth Patriarchy at the Fires, the Curbs of the Free Families attributed this failure to the Patriarchs' irrational nature. At this pivotal point, the Curbs decided that it was within their mandate, set out by the historical High Patriarch Ghus t'Gllt, to curb not only their own Patriarchs, but Split society as well, by seizing power themselves.nBetraying their own Patriarchs, the Curbs secretly united into a separatist movement, targeted Patriarchs loyal to the Zyarth occupation, and attacked the Zyarth stronghold known as Hall of Judgement. Their goal was not only to expel Zyarth's High Patriarchy from their territory, but ultimately to unite the quarrelling families under one Court of Curbs.", + "race": "split", + "icon": "faction_cabal", + "licenses": [ + { + "type": "capitalequipment", + "name": "Court of Curbs Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Court of Curbs Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Courtier of the Curbs", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Court Debutant", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Court of Curbs General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Court of Curbs General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Court of Curbs Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Court of Curbs Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "police", + "name": "Court of Curbs Police Licence", + "icon": "", + "price": 175000 + }, + { + "type": "shipsalecontract", + "name": "Court of Curbs Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Court of Curbs Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Court of Curbs Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Court of Curbs Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Court of Curbs Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Court of Curbs Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Court of Curbs Trade Offer Subscription", + "icon": "", + "price": 10000000 + } + ] + }, + { + "id": "fallensplit", + "version": 1, + "name": "Fallen Families", + "description": "Known as the Fallen Families, these pariahs are nomadic Split who live in their military fleets and individual ships. They consist of a diverse assortment of Split made up of individuals who went into exile after their former Families were defeated, slaves who regained their freedom, freelance mercenaries, adventurers, and assorted criminals. Taking full advantage of their military prowess, the Fallen Families survive through raids and plundering, sometimes under the employ of third parties. Having no ties to any of the numerous Split families, they are often looked down upon as Split with neither political influence nor power. However, they are also surreptitiously admired for their dedication to the militaristic life and for surviving beyond the safety of a family. They take pride in being called the Fallen, and are willing to endure the accompanying loss of face. Their goal is not just to struggle to survive as outcasts of society, however, but to become famous through their heroic deeds, and ultimately to rise again as they establish their own Patriarchies.", + "race": "split", + "icon": "faction_fallensplit", + "licenses": [] + }, + { + "id": "freesplit", + "version": 1, + "name": "Free Families", + "description": "The Empire of Patriarch Rhonkar was in disarray even before the Gate shutdown fractured the Empire. When the systems disconnected, the smaller families rebelled against the Patriarch of all Split and fought an intense war for independence. They persevered and managed to establish a different kind of Split society in their systems, one that is not lorded over by one Patriarch. Instead, every family is governed autonomously by their own Patriarchs. Now that the Jump Gates have reconnected, this new way of governance is opposed by the Patriarchy. After the Fires the patriarchal empire seeks to unite the Split under a single family once again.", + "race": "split", + "icon": "faction_freesplit", + "licenses": [ + { + "type": "capitalequipment", + "name": "Free Split Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Free Split Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Strong Arm of the Families", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Friend of the Families", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Free Split General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Free Split General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Free Split Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Free Split Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "police", + "name": "Free Split Police Licence", + "icon": "", + "price": 125000 + }, + { + "type": "shipsalecontract", + "name": "Free Split Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Free Split Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Free Split Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Free Split Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Free Split Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Free Split Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Free Split Trade Offer Subscription", + "icon": "", + "price": 10000000 + } + ] + }, + { + "id": "split", + "version": 1, + "name": "Zyarth Patriarchy", + "description": "Patriarch Zyarth has always been known to be a hardened warrior. He served under Patriarch Rhonkar before the Gates shut down, but due to his system's close proximity to Xenon space, he learned how to be self-sufficient. This familiarity with self-reliance would become his biggest asset when, as the larger Split empire was disconnected, he rose to power, unifying the neighbouring Patriarchs under him. When the Gates reconnected, the Zyarth Patriarchy emerged as the clear victor. Many long-established Patriarchs had died during those tumultuous times. While many families in close proximity came together under the Zyarth, other families seized the same opportunity to declare their independence from the former Patriarch Rhonkar. Now the ambitious Zyarth seeks to unify all Split, even the Free Families, under his banner.", + "race": "split", + "icon": "faction_split", + "licenses": [ + { + "type": "capitalequipment", + "name": "Patriarchy Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Patriarchy Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Patriarch's Confidant", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Spear of the Patriarch", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Patriarchy General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Patriarchy General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Patriarchy Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Patriarchy Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "police", + "name": "Patriarchy Police Licence", + "icon": "", + "price": 125000 + }, + { + "type": "shipsalecontract", + "name": "Patriarchy Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Patriarchy Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Patriarchy Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Patriarchy Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Patriarchy Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Patriarchy Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Patriarchy Trade Offer Subscription", + "icon": "", + "price": 10000000 + } + ] + }, + { + "id": "pioneers", + "version": 1, + "name": "Segaris Pioneers", + "description": "When the Jump Gates started to shut down, many disparate groups from all across the network were stranded in the Sol system. The Terran government was wary of these refugee communities suddenly forming in their midst. In order to keep them away from Sol's inner core, and make the best of a difficult situation, the Terran government brought the Pioneer Initiative into being. With the stated aim of exploring and settling the furthest outskirts of Sol, they then rallied the displaced groups under its banner. When a Gate connection was restored, and Neptune was suddenly adjacent to several unclaimed systems, the Terran government encouraged the Pioneer Initiative to venture out of Sol and explore and settle this new-found space.nnDelighted to now have a home of their own, the Pioneer Initiative, upon re-discovering the Segaris system, welcomed more and more disparate groups into their fold and distanced themselves from their Terran origin by changing their name to Segaris Pioneers. Their effort to gain true independence is a work in progress, however. It is a delicate balancing act, as they are still heavily reliant on the Terran government for protection and economic support. Their hope and belief is that the best way out of this disadvantageous situation, is to throw themselves into seeking scientific advancements that can one day lead to them to true independence.", + "race": "terran", + "icon": "faction_pioneers", + "licenses": [ + { + "type": "capitalequipment", + "name": "Pioneers Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Pioneers Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Patron of Terranova", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Honorary Assistant", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Pioneers General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Pioneers General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Pioneers Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Pioneers Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "police", + "name": "Pioneers Police Licence", + "icon": "", + "price": 156000 + }, + { + "type": "shipsalecontract", + "name": "Pioneers Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Pioneers Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Pioneers Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Pioneers Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Pioneers Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Pioneers Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Pioneers Trade Offer Subscription", + "icon": "", + "price": 10000000 + } + ] + }, + { + "id": "terran", + "version": 1, + "name": "Terran Protectorate", + "description": "The Terran Protectorate is the successor to the United Space Command (USC) and the AGI Task Force (ATF), and is tasked by the Terran High Command with safeguarding Sol and eliminating the Xenon menace. The restructuring of these responsibilities came about following the USC's failure to prevent the destruction of the Torus Aeternal by foreign saboteurs; an incident which scarred the Terran population and threw the government's ability to protect Sol into question.nnDuring the Jump Gate shutdown, the Terran government seized the opportunity to reassure their citizens. Separated from the network, their economy thrived and the Terran Protectorate fortified their presence in Sol. Critics of the Terran government have claimed that establishing the Protectorate was merely an attempt to re-brand the USC, and that the underlying structural problems remained. However, there is no disputing that the Terran Protectorate does now operate differently from its predecessors. Not only is the Protectorate extremely zealous in its defence of the inner core of Sol, to the point where not even all Terran citizens are allowed to approach Earth, but they are also heavily involved in Sol's external relations. Frustrated with how the Commonwealth has, in their eyes, mishandled the Xenon, they have taken a much more proactive approach to engaging the Xenon across the network. Fleets are regularly sent out to ensure that Xenon pockets are eradicated, without regard for the sovereignty of the space in question. Nor do they shy away from actively trying to meddle in other governments' affairs in order to influence their stance on AGI technology. Their preoccupation with destroying the Xenon at all costs frequently puts them at odds with the Community of Planets.", + "race": "terran", + "icon": "faction_terran", + "licenses": [ + { + "type": "capitalequipment", + "name": "Protectorate Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Protectorate Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Hero of Humanity", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Servant of Sol", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Protectorate General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Protectorate General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "innercore_access", + "name": "Protectorate Inner Core Access Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Protectorate Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Protectorate Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "outercore_access", + "name": "Protectorate Outer Core Access Licence", + "icon": "", + "price": 0 + }, + { + "type": "police", + "name": "Protectorate Police Licence", + "icon": "", + "price": 156000 + }, + { + "type": "shipsalecontract", + "name": "Protectorate Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Protectorate Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Protectorate Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Protectorate Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Protectorate Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Protectorate Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Protectorate Trade Offer Subscription", + "icon": "", + "price": 10000000 + } + ] + }, + { + "id": "yaki", + "version": 1, + "name": "Yaki", + "description": "The Yaki were an infamous organised crime syndicate operating mostly in Argon space, turning a profit by raiding traders and deliberately inciting chaos from which they then could benefit. They were well known for their professional and precise mode of operation, choosing their targets carefully and acting swiftly before any reinforcements could arrive. One branch of the Yaki Syndicate who were especially notorious were the Beryll, specialising in the theft and trade of advanced technologies. Their focus on near-AGI technology would inevitably put them at odds with the Terran government.nnDuring the Jump Gate shutdown, things quietened down considerably. Over time, Yaki raids became a less common occurrence. It appeared that different clans were splintering off and disappearing into obscurity. Even after the gate network was re-established, the Yaki were not as significant a presence as before.nnIt is now quite rare to spot Yaki ships. To the Community of Planets, it is currently unclear whether the Yaki have a fixed base hidden away somewhere, or whether their remnants are purely nomadic people, as they seem to disappear without a trace after what few raids they do still conduct. In fact, it is not even clear whether there is a coordinated Yaki organisation at all, any more, as their ships have been observed displaying wildly varying and erratic behaviours. All attempts at re-establishing official contact have failed, and on the scant occasions when a pilot has actually managed to communicate with a Yaki, the Yaki pilots' behaviour could only be described as bizarre and their ramblings incoherent. It remains to be seen whether the Yaki pose a real threat to the law-abiding citizens of the network, or whether, in their current state, they are a mere shadow of their former selves.", + "race": "argon", + "icon": "faction_yaki", + "licenses": [ + { + "type": "ceremonyfriend", + "name": "Among Friends", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Yaki General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Yaki Military Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryship", + "name": "Yaki Military Ship Licence", + "icon": "", + "price": 0 + } + ] + }, + { + "id": "loanshark", + "version": 1, + "name": "Vigor Syndicate", + "description": "Before the Windfall system became connected to Avarice, and later the network at large, the Vigor Syndicate used to be made up of smaller criminal organisations. They quarrelled amongst themselves almost as much as they antagonised outsiders and the common citizens of Windfall. These smaller outfits mostly made money by offering security services to the large, wealthy gambling institutions, by running their own high-stakes games, and by manufacturing and trading illicit substances. The time spent in isolation was chaotic and violent, but the absence of any organised law enforcement also provided ample opportunities to get incredibly rich with comparatively little effort. Maintaining that wealth amid all the other cut-throats was the bigger challenge, and the reason why these smaller groups eventually banded together.nnThe Vigor Syndicate was not the only semi-organised criminal enterprise to arise out of this unstable but prolific environment, but ultimately it would be the one to assert itself. Its power and influence grew when contact with the people of Avarice was established. With no-one to oppose them, they soon began to exploit the Riptide Rakers by offering them predatory loans, and methodically nurturing industrial dependencies among their destitute neighbours.nnNow, although there still is no clearly identifiable leadership and back-stabbings are still a regular occurrence, the organisation has grown to such a size that it has stabilised and effectively presents a united front to the outside. With Windfall now connected to both Argon and Teladi space, the Syndicate has fully consolidated in order to project enough power to keep other organisations out of Windfall. They keep the law away, and offer unscrupulous entities the space in which to grow however they see fit; as long as the Vigor Syndicate gets their cut, of course.", + "race": "argon", + "icon": "faction_loanshark", + "licenses": [ + { + "type": "capitalequipment", + "name": "Syndicate Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Syndicate Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Capo", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Syndicate Enforcer", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Syndicate General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Syndicate General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Syndicate Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Syndicate Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "police", + "name": "Syndicate Police Licence", + "icon": "", + "price": 512000 + }, + { + "type": "shipsalecontract", + "name": "Syndicate Ship Sale Contract", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_lxl", + "name": "Syndicate Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Syndicate Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Syndicate Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Syndicate Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Syndicate Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Syndicate Trade Offer Subscription", + "icon": "", + "price": 20000000 + } + ] + }, + { + "id": "scavenger", + "version": 1, + "name": "Riptide Rakers", + "description": "The Riptide Rakers are a loose collective of miners, traders and scavengers, perpetually down on their luck and struggling to ensure their continued existence. Their way of life has been forged by the hostile environments of the Avarice system. Largely disorganised, and without any military capabilities, they do not pose a threat to any of the other inhabitants of the Jump Gate network; nor would they want to, since they are entirely focused on their own survival.nnBeing extremely resourceful, the Riptide Rakers have specialised in scrapping wrecked ships and other space debris commonly found in and around Avarice. Ingeniously making use of the exceptional stellar properties of Avarice, they are uniquely capable of maintaining an economy almost entirely focussed on recycling and reusing materials. Since they are generally on good terms with the other groups inhabiting the network, they have taken to dismantling wrecks and trading their recycled materials on a larger scale, ever since their gate re-established a connection.nnTheir resourcefulness and resilience is only matched by their stubbornness. Despite regularly suffering from the impact of the Tide, they stoically continue to live under the hazardous circumstances that make their large scale operations possible. In recent years they have found ways to shelter from the most devastating effects of the phenomenon, but stranded ships and the occasional station are still tragically annihilated. Many inhabitants of the network wonder why the Riptide Rakers would expose themselves to these dangers, but if you asked a Riptide Raker, the answer would be quite simple. They have become numb to the dangers of Avarice. It is their way of life, they will tell you, and they really just have nowhere else to go.", + "race": "argon", + "icon": "faction_scavenger", + "licenses": [ + { + "type": "capitalequipment", + "name": "Rakers Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Rakers Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Tide Breaker", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Tide Runner", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Rakers General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Rakers General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Rakers Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Rakers Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "shipsalecontract", + "name": "Rakers Ship Sale Contract", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_lxl", + "name": "Rakers Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Rakers Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Rakers Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Rakers Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Rakers Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Rakers Trade Offer Subscription", + "icon": "", + "price": 20000000 + } + ] + }, + { + "id": "boron", + "version": 1, + "name": "Queendom of Boron", + "description": "If you were to single out one feature that makes the Queendom of Boron stand out from any other entity in the known network it would be its serene stability. Notoriously pacifist in nature, the Queendom perpetually works towards the greater good by advancing its knowledge of the sciences, and furthering inter-species understanding. Due to their innate trustworthiness, Queendom officials are often employed as peace-brokers by conflicting parties. However, it is also important to note that their inherently conflict-avoidant nature does not mean that they will fail to defend themselves when attacked. They boast an impressive arsenal of weapon technologies, afforded to them by their comparative wealth and scientific accomplishment.nnAs the name implies, the Queendom of Boron is headed by a queen, currently Queen Polypheides. Although Princess Celeus is the current heir, the succession is not strictly matrilineal. Non-royal Boron could theoretically ascend to the throne if they were to distinguish themselves through their actions and prove themselves to be the most capable leader. Counterintuitively, while the Queendom is reigned over by a monarch, it is still a democracy, overseen by a parliament of elected officials who vote on all policy and succession-related matters.", + "race": "boron", + "icon": "faction_boron", + "licenses": [ + { + "type": "capitalequipment", + "name": "Boron Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Boron Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Queen's Knight", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Accepted Friend", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Boron General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Boron General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Boron Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Boron Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "police", + "name": "Boron Police Licence", + "icon": "", + "price": 156000 + }, + { + "type": "shipsalecontract", + "name": "Boron Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Boron Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Boron Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Boron Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Boron Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Boron Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Boron Trade Offer Subscription", + "icon": "", + "price": 10000000 + } + ] + } +] \ No newline at end of file diff --git a/shared/data/items.json b/shared/data/items.json index e838d9c..60fd4cf 100644 --- a/shared/data/items.json +++ b/shared/data/items.json @@ -197,130 +197,6 @@ } ] }, - { - "id": "bofu", - "version": 1, - "name": "BoFu", - "description": "BoFu meals are known to be very nutritious and healthy. The Boron love them, and it is said that their pilots can live on just a nugget of BoFu for almost a week.nnBoFu is grown in special BoFu Chemical Labs, from Plankton and other secret ingredients. Even though the Boron are famous among other races for their delicious Stott Spices, the taste of BoFu is no joy to anybody but themselves.", - "factoryName": "BoFu Chemical Lab", - "icon": "ware_bofu", - "volume": 4, - "transport": "container", - "price": { - "min": 61, - "max": 142, - "avg": 101 - }, - "group": "food", - "production": [ - { - "time": 240, - "amount": 82, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "bogas", - "amount": 40 - }, - { - "ware": "energycells", - "amount": 40 - }, - { - "ware": "plankton", - "amount": 120 - } - ], - "effects": [ - { - "type": "work", - "product": 0.38 - } - ] - } - ] - }, - { - "id": "bogas", - "version": 1, - "name": "BoGas", - "description": "The unusual natural resources found on the planet Nishala mean that the planet is really a huge chemical factory. From these many chemicals, the Boron manufacture a unique gas that is used throughout the universe as the ultimate painkiller and anaesthetic.nnAfter the Boron government stopped any commercial use of the natural resources of its planet, BoGas is now artificially reproduced in Synthetic BoGas Breweries throughout the Queendom of Boron.", - "factoryName": "Synthetic BoGas Brewery", - "icon": "ware_bogas", - "volume": 4, - "transport": "container", - "price": { - "min": 44, - "max": 102, - "avg": 73 - }, - "group": "refined", - "production": [ - { - "time": 150, - "amount": 110, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "energycells", - "amount": 40 - }, - { - "ware": "water", - "amount": 100 - } - ], - "effects": [ - { - "type": "work", - "product": 0.46 - } - ] - } - ] - }, - { - "id": "cheltmeat", - "version": 1, - "name": "Chelt Meat", - "description": "Chelts are sea-bound creatures that once roamed the seas and oceans of the Split home planet. The Split harvested them for meat, oil and their skins, which they used to create a tough leather like material. However, Chelts were eventually over-hunted and almost brought to extinction. Nowadays Chelts are grown in space, in Chelt Aquariums, and used to produce food for Split workers to consume.", - "factoryName": "Chelt Aquarium", - "icon": "ware_cheltmeat", - "volume": 7, - "transport": "container", - "price": { - "min": 31, - "max": 72, - "avg": 51 - }, - "group": "agricultural", - "production": [ - { - "time": 450, - "amount": 209, - "method": "default", - "name": "Split", - "wares": [ - { - "ware": "energycells", - "amount": 50 - }, - { - "ware": "water", - "amount": 120 - } - ], - "effects": [ - { - "type": "work", - "product": 0.6 - } - ] - } - ] - }, { "id": "claytronics", "version": 0, @@ -391,76 +267,6 @@ } ] }, - { - "id": "computronicsubstrate", - "version": 1, - "name": "Computronic Substrate", - "description": "Computronic Substrate is the advanced Terran version of programmable matter. The \"atoms\" forming the Substrate can mimic virtually all other elements and particles, natural or artificial. This incredible feat, and its wide-spread application, is what makes modern Terran station and ship designs possible.", - "factoryName": "Computronic Substrate Fab", - "icon": "ware_computronicsubstrate", - "volume": 50, - "transport": "container", - "price": { - "min": 7452, - "max": 9108, - "avg": 8280 - }, - "group": "hightech", - "production": [ - { - "time": 600, - "amount": 98, - "method": "default", - "name": "Terran", - "wares": [ - { - "ware": "energycells", - "amount": 4000 - }, - { - "ware": "hydrogen", - "amount": 2000 - }, - { - "ware": "ore", - "amount": 3000 - }, - { - "ware": "silicon", - "amount": 3000 - } - ], - "effects": [ - { - "type": "work", - "product": 0.1 - } - ] - }, - { - "time": 300, - "amount": 50, - "method": "recycling", - "name": "Recycling", - "wares": [ - { - "ware": "energycells", - "amount": 12500 - }, - { - "ware": "scrapmetal", - "amount": 1000 - } - ], - "effects": [ - { - "type": "work", - "product": 0.1 - } - ] - } - ] - }, { "id": "dronecomponents", "version": 0, @@ -1234,50 +1040,6 @@ } ] }, - { - "id": "metallicmicrolattice", - "version": 1, - "name": "Metallic Microlattice", - "description": "A metallic microlattice is a synthetic porous metallic material consisting of an ultra-light metal foam. One of the many uses of microlattices is in the production of extremely lightweight and efficient structures for structural reinforcement and heat transfer in high-performance vehicles.", - "factoryName": "Microlattice Factory", - "icon": "ware_metallicmicrolattice", - "volume": 1, - "transport": "container", - "price": { - "min": 42, - "max": 57, - "avg": 50 - }, - "group": "hightech", - "production": [ - { - "time": 180, - "amount": 190, - "method": "default", - "name": "Terran", - "wares": [ - { - "ware": "energycells", - "amount": 50 - }, - { - "ware": "helium", - "amount": 130 - }, - { - "ware": "ore", - "amount": 50 - } - ], - "effects": [ - { - "type": "work", - "product": 0.2 - } - ] - } - ] - }, { "id": "methane", "version": 0, @@ -1461,46 +1223,6 @@ "group": "minerals", "production": [] }, - { - "id": "plankton", - "version": 1, - "name": "Plankton", - "description": "Boron plankton is found as a scum-like layer that floats on the surface of the chemical swamps on the Planet Nishala. It forms naturally where certain chemicals, that are found in the swamp, mix with the ammonia-based atmosphere.nnThis scum is collected, and then treated with additives and other Boron minerals, to produce a wide range of different, nutritious spices. Since the Boron seas are now completely protected from any industrial usage, Plankton is mainly produced in space, aboard huge Plankton Farms that can be found everywhere in the Queendom of Boron.", - "factoryName": "Plankton Farm", - "icon": "ware_plankton", - "volume": 1, - "transport": "container", - "price": { - "min": 11, - "max": 25, - "avg": 18 - }, - "group": "agricultural", - "production": [ - { - "time": 400, - "amount": 275, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "energycells", - "amount": 20 - }, - { - "ware": "water", - "amount": 50 - } - ], - "effects": [ - { - "type": "work", - "product": 0.4 - } - ] - } - ] - }, { "id": "plasmaconductors", "version": 0, @@ -1545,50 +1267,6 @@ } ] }, - { - "id": "proteinpaste", - "version": 1, - "name": "Protein Paste", - "description": "Protein Paste is a concentrated blend of meat and vegetable proteins used to produce specialised food products.", - "factoryName": "Protein Processing Plant", - "icon": "ware_proteinpaste", - "volume": 4, - "transport": "container", - "price": { - "min": 57, - "max": 134, - "avg": 96 - }, - "group": "agricultural", - "production": [ - { - "time": 300, - "amount": 219, - "method": "default", - "name": "Terran", - "wares": [ - { - "ware": "energycells", - "amount": 80 - }, - { - "ware": "ice", - "amount": 80 - }, - { - "ware": "methane", - "amount": 200 - } - ], - "effects": [ - { - "type": "work", - "product": 0.3 - } - ] - } - ] - }, { "id": "quantumtubes", "version": 0, @@ -1795,46 +1473,6 @@ } ] }, - { - "id": "scruffinfruits", - "version": 1, - "name": "Scruffin Fruit", - "description": "Scruffin are fruit similar to sweet potatoes. They are grown by Split farmers in large, open fields on a number of planets, as well as in space aboard large installations known as Scruffin Farms. Scruffin flesh is a versatile foodstuff that, when processed, provides the basis of a number of Split food types. Although Scruffin are traded both inside and outside Split territory, they are mainly in demand in areas where Split workers are in abundance.", - "factoryName": "Scruffin Farm", - "icon": "ware_scruffinfruit", - "volume": 6, - "transport": "container", - "price": { - "min": 17, - "max": 40, - "avg": 28 - }, - "group": "agricultural", - "production": [ - { - "time": 300, - "amount": 255, - "method": "default", - "name": "Split", - "wares": [ - { - "ware": "energycells", - "amount": 30 - }, - { - "ware": "water", - "amount": 80 - } - ], - "effects": [ - { - "type": "work", - "product": 0.53 - } - ] - } - ] - }, { "id": "shieldcomponents", "version": 0, @@ -1896,76 +1534,6 @@ "group": "minerals", "production": [] }, - { - "id": "siliconcarbide", - "version": 1, - "name": "Silicon Carbide", - "description": "Silicon Carbide is a semiconductor containing silicon and carbon. It can be used to form very hard ceramics that are widely used in applications requiring high endurance. Its electrical properties make the material suitable for dealing with high temperatures and voltages. Consequently Silicon Carbide is a key component in the manufacture of equipment such as ship engines or weapons.", - "factoryName": "Silicon Carbide Mill", - "icon": "ware_siliconcarbide", - "volume": 20, - "transport": "container", - "price": { - "min": 1202, - "max": 1627, - "avg": 1414 - }, - "group": "hightech", - "production": [ - { - "time": 300, - "amount": 48, - "method": "default", - "name": "Terran", - "wares": [ - { - "ware": "energycells", - "amount": 200 - }, - { - "ware": "metallicmicrolattice", - "amount": 2 - }, - { - "ware": "methane", - "amount": 400 - }, - { - "ware": "silicon", - "amount": 300 - } - ], - "effects": [ - { - "type": "work", - "product": 0.2 - } - ] - }, - { - "time": 300, - "amount": 60, - "method": "recycling", - "name": "Recycling", - "wares": [ - { - "ware": "energycells", - "amount": 4000 - }, - { - "ware": "scrapmetal", - "amount": 250 - } - ], - "effects": [ - { - "type": "work", - "product": 0.2 - } - ] - } - ] - }, { "id": "siliconwafers", "version": 0, @@ -2275,50 +1843,6 @@ } ] }, - { - "id": "stimulants", - "version": 1, - "name": "Stimulants", - "description": "The term Stimulants has evolved to refer to the type of drugs that increase activity of the central nervous system and the body. The manufacture, distribution and use of Stimulants is considered illegal by the Terran government. However, there are persistent rumours that they are regularly used for specific military purposes, such as enhancing the combat performance of pilots.", - "factoryName": "Stimulants Lab", - "icon": "ware_stimulants", - "volume": 12, - "transport": "container", - "price": { - "min": 153, - "max": 527, - "avg": 340 - }, - "group": "pharmaceutical", - "production": [ - { - "time": 300, - "amount": 98, - "method": "default", - "name": "Terran", - "wares": [ - { - "ware": "energycells", - "amount": 80 - }, - { - "ware": "helium", - "amount": 400 - }, - { - "ware": "silicon", - "amount": 20 - } - ], - "effects": [ - { - "type": "work", - "product": 0.65 - } - ] - } - ] - }, { "id": "sunriseflowers", "version": 0, @@ -2479,46 +2003,6 @@ } ] }, - { - "id": "terranmre", - "version": 1, - "name": "Terran MRE", - "description": "The MRE, Meal-Ready-to-Eat, was first invented on Earth in the 20th Century. Since that time the food that comprises it has developed and is more nutritious. These prehydrated meals require no preparation and are self-heating as required.", - "factoryName": "MRE Packing Facility", - "icon": "ware_terranmre", - "volume": 2, - "transport": "container", - "price": { - "min": 32, - "max": 75, - "avg": 54 - }, - "group": "food", - "production": [ - { - "time": 240, - "amount": 175, - "method": "default", - "name": "Terran", - "wares": [ - { - "ware": "energycells", - "amount": 60 - }, - { - "ware": "proteinpaste", - "amount": 60 - } - ], - "effects": [ - { - "type": "work", - "product": 0.42 - } - ] - } - ] - }, { "id": "turretcomponents", "version": 0, @@ -2693,5 +2177,521 @@ ] } ] + }, + { + "id": "cheltmeat", + "version": 1, + "name": "Chelt Meat", + "description": "Chelts are sea-bound creatures that once roamed the seas and oceans of the Split home planet. The Split harvested them for meat, oil and their skins, which they used to create a tough leather like material. However, Chelts were eventually over-hunted and almost brought to extinction. Nowadays Chelts are grown in space, in Chelt Aquariums, and used to produce food for Split workers to consume.", + "factoryName": "Chelt Aquarium", + "icon": "ware_cheltmeat", + "volume": 7, + "transport": "container", + "price": { + "min": 31, + "max": 72, + "avg": 51 + }, + "group": "agricultural", + "production": [ + { + "time": 450, + "amount": 209, + "method": "default", + "name": "Split", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "water", + "amount": 120 + } + ], + "effects": [ + { + "type": "work", + "product": 0.6 + } + ] + } + ] + }, + { + "id": "scruffinfruits", + "version": 1, + "name": "Scruffin Fruit", + "description": "Scruffin are fruit similar to sweet potatoes. They are grown by Split farmers in large, open fields on a number of planets, as well as in space aboard large installations known as Scruffin Farms. Scruffin flesh is a versatile foodstuff that, when processed, provides the basis of a number of Split food types. Although Scruffin are traded both inside and outside Split territory, they are mainly in demand in areas where Split workers are in abundance.", + "factoryName": "Scruffin Farm", + "icon": "ware_scruffinfruit", + "volume": 6, + "transport": "container", + "price": { + "min": 17, + "max": 40, + "avg": 28 + }, + "group": "agricultural", + "production": [ + { + "time": 300, + "amount": 255, + "method": "default", + "name": "Split", + "wares": [ + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "water", + "amount": 80 + } + ], + "effects": [ + { + "type": "work", + "product": 0.53 + } + ] + } + ] + }, + { + "id": "computronicsubstrate", + "version": 1, + "name": "Computronic Substrate", + "description": "Computronic Substrate is the advanced Terran version of programmable matter. The \"atoms\" forming the Substrate can mimic virtually all other elements and particles, natural or artificial. This incredible feat, and its wide-spread application, is what makes modern Terran station and ship designs possible.", + "factoryName": "Computronic Substrate Fab", + "icon": "ware_computronicsubstrate", + "volume": 50, + "transport": "container", + "price": { + "min": 7452, + "max": 9108, + "avg": 8280 + }, + "group": "hightech", + "production": [ + { + "time": 600, + "amount": 98, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 4000 + }, + { + "ware": "hydrogen", + "amount": 2000 + }, + { + "ware": "ore", + "amount": 3000 + }, + { + "ware": "silicon", + "amount": 3000 + } + ], + "effects": [ + { + "type": "work", + "product": 0.1 + } + ] + }, + { + "time": 300, + "amount": 50, + "method": "recycling", + "name": "Recycling", + "wares": [ + { + "ware": "energycells", + "amount": 12500 + }, + { + "ware": "scrapmetal", + "amount": 1000 + } + ], + "effects": [ + { + "type": "work", + "product": 0.1 + } + ] + } + ] + }, + { + "id": "metallicmicrolattice", + "version": 1, + "name": "Metallic Microlattice", + "description": "A metallic microlattice is a synthetic porous metallic material consisting of an ultra-light metal foam. One of the many uses of microlattices is in the production of extremely lightweight and efficient structures for structural reinforcement and heat transfer in high-performance vehicles.", + "factoryName": "Microlattice Factory", + "icon": "ware_metallicmicrolattice", + "volume": 1, + "transport": "container", + "price": { + "min": 42, + "max": 57, + "avg": 50 + }, + "group": "hightech", + "production": [ + { + "time": 180, + "amount": 190, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "helium", + "amount": 130 + }, + { + "ware": "ore", + "amount": 50 + } + ], + "effects": [ + { + "type": "work", + "product": 0.2 + } + ] + } + ] + }, + { + "id": "proteinpaste", + "version": 1, + "name": "Protein Paste", + "description": "Protein Paste is a concentrated blend of meat and vegetable proteins used to produce specialised food products.", + "factoryName": "Protein Processing Plant", + "icon": "ware_proteinpaste", + "volume": 4, + "transport": "container", + "price": { + "min": 57, + "max": 134, + "avg": 96 + }, + "group": "agricultural", + "production": [ + { + "time": 300, + "amount": 219, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 80 + }, + { + "ware": "ice", + "amount": 80 + }, + { + "ware": "methane", + "amount": 200 + } + ], + "effects": [ + { + "type": "work", + "product": 0.3 + } + ] + } + ] + }, + { + "id": "siliconcarbide", + "version": 1, + "name": "Silicon Carbide", + "description": "Silicon Carbide is a semiconductor containing silicon and carbon. It can be used to form very hard ceramics that are widely used in applications requiring high endurance. Its electrical properties make the material suitable for dealing with high temperatures and voltages. Consequently Silicon Carbide is a key component in the manufacture of equipment such as ship engines or weapons.", + "factoryName": "Silicon Carbide Mill", + "icon": "ware_siliconcarbide", + "volume": 20, + "transport": "container", + "price": { + "min": 1202, + "max": 1627, + "avg": 1414 + }, + "group": "hightech", + "production": [ + { + "time": 300, + "amount": 48, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 2 + }, + { + "ware": "methane", + "amount": 400 + }, + { + "ware": "silicon", + "amount": 300 + } + ], + "effects": [ + { + "type": "work", + "product": 0.2 + } + ] + }, + { + "time": 300, + "amount": 60, + "method": "recycling", + "name": "Recycling", + "wares": [ + { + "ware": "energycells", + "amount": 4000 + }, + { + "ware": "scrapmetal", + "amount": 250 + } + ], + "effects": [ + { + "type": "work", + "product": 0.2 + } + ] + } + ] + }, + { + "id": "stimulants", + "version": 1, + "name": "Stimulants", + "description": "The term Stimulants has evolved to refer to the type of drugs that increase activity of the central nervous system and the body. The manufacture, distribution and use of Stimulants is considered illegal by the Terran government. However, there are persistent rumours that they are regularly used for specific military purposes, such as enhancing the combat performance of pilots.", + "factoryName": "Stimulants Lab", + "icon": "ware_stimulants", + "volume": 12, + "transport": "container", + "price": { + "min": 153, + "max": 527, + "avg": 340 + }, + "group": "pharmaceutical", + "production": [ + { + "time": 300, + "amount": 98, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 80 + }, + { + "ware": "helium", + "amount": 400 + }, + { + "ware": "silicon", + "amount": 20 + } + ], + "effects": [ + { + "type": "work", + "product": 0.65 + } + ] + } + ] + }, + { + "id": "terranmre", + "version": 1, + "name": "Terran MRE", + "description": "The MRE, Meal-Ready-to-Eat, was first invented on Earth in the 20th Century. Since that time the food that comprises it has developed and is more nutritious. These prehydrated meals require no preparation and are self-heating as required.", + "factoryName": "MRE Packing Facility", + "icon": "ware_terranmre", + "volume": 2, + "transport": "container", + "price": { + "min": 32, + "max": 75, + "avg": 54 + }, + "group": "food", + "production": [ + { + "time": 240, + "amount": 175, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "proteinpaste", + "amount": 60 + } + ], + "effects": [ + { + "type": "work", + "product": 0.42 + } + ] + } + ] + }, + { + "id": "bofu", + "version": 1, + "name": "BoFu", + "description": "BoFu meals are known to be very nutritious and healthy. The Boron love them, and it is said that their pilots can live on just a nugget of BoFu for almost a week.nnBoFu is grown in special BoFu Chemical Labs, from Plankton and other secret ingredients. Even though the Boron are famous among other races for their delicious Stott Spices, the taste of BoFu is no joy to anybody but themselves.", + "factoryName": "BoFu Chemical Lab", + "icon": "ware_bofu", + "volume": 4, + "transport": "container", + "price": { + "min": 61, + "max": 142, + "avg": 101 + }, + "group": "food", + "production": [ + { + "time": 240, + "amount": 82, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "bogas", + "amount": 40 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "plankton", + "amount": 120 + } + ], + "effects": [ + { + "type": "work", + "product": 0.38 + } + ] + } + ] + }, + { + "id": "bogas", + "version": 1, + "name": "BoGas", + "description": "The unusual natural resources found on the planet Nishala mean that the planet is really a huge chemical factory. From these many chemicals, the Boron manufacture a unique gas that is used throughout the universe as the ultimate painkiller and anaesthetic.nnAfter the Boron government stopped any commercial use of the natural resources of its planet, BoGas is now artificially reproduced in Synthetic BoGas Breweries throughout the Queendom of Boron.", + "factoryName": "Synthetic BoGas Brewery", + "icon": "ware_bogas", + "volume": 4, + "transport": "container", + "price": { + "min": 44, + "max": 102, + "avg": 73 + }, + "group": "refined", + "production": [ + { + "time": 150, + "amount": 110, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "water", + "amount": 100 + } + ], + "effects": [ + { + "type": "work", + "product": 0.46 + } + ] + } + ] + }, + { + "id": "plankton", + "version": 1, + "name": "Plankton", + "description": "Boron plankton is found as a scum-like layer that floats on the surface of the chemical swamps on the Planet Nishala. It forms naturally where certain chemicals, that are found in the swamp, mix with the ammonia-based atmosphere.nnThis scum is collected, and then treated with additives and other Boron minerals, to produce a wide range of different, nutritious spices. Since the Boron seas are now completely protected from any industrial usage, Plankton is mainly produced in space, aboard huge Plankton Farms that can be found everywhere in the Queendom of Boron.", + "factoryName": "Plankton Farm", + "icon": "ware_plankton", + "volume": 1, + "transport": "container", + "price": { + "min": 11, + "max": 25, + "avg": 18 + }, + "group": "agricultural", + "production": [ + { + "time": 400, + "amount": 275, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "water", + "amount": 50 + } + ], + "effects": [ + { + "type": "work", + "product": 0.4 + } + ] + } + ] } -] +] \ No newline at end of file diff --git a/shared/data/module-types.json b/shared/data/module-types.json new file mode 100644 index 0000000..2597b3e --- /dev/null +++ b/shared/data/module-types.json @@ -0,0 +1,26 @@ +{ + "ModuleTypes": [ + "connectionmodule", + "production", + "defencemodule", + "dockarea", + "habitation", + "pier", + "storage", + "buildmodule", + "ventureplatform", + "processingmodule", + "recycling" + ], + "AllModuleTypes": [ + "habitation", + "buildmodule", + "dockarea", + "pier", + "storage", + "defencemodule", + "connectionmodule", + "processingmodule", + "recycling" + ] +} \ No newline at end of file diff --git a/shared/data/modules.json b/shared/data/modules.json index 7b89be4..91e8d95 100644 --- a/shared/data/modules.json +++ b/shared/data/modules.json @@ -3915,3571 +3915,6 @@ } ] }, - { - "id": "module_bor_build_dockarea_m_01", - "version": 1, - "name": "Boron S/M Ship Fabrication Bay", - "macro": "buildmodule_bor_ships_m_dockarea_01_macro", - "description": "No information available", - "type": "buildmodule", - "explosionDamage": 2500, - "hull": 245000, - "makerRace": "boron", - "workForce": { - "max": 800 - }, - "price": { - "min": 94609703, - "max": 128001363, - "avg": 111305533 - }, - "owners": [ - "boron" - ], - "docks": [ - { - "capacity": 30, - "size": "medium" - }, - { - "capacity": 100, - "size": "small" - }, - { - "capacity": 10, - "size": "extrasmall" - } - ], - "production": [ - { - "time": 688, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 818 - }, - { - "ware": "energycells", - "amount": 8696 - }, - { - "ware": "hullparts", - "amount": 2663 - }, - { - "ware": "water", - "amount": 7875 - } - ] - } - ] - }, - { - "id": "module_bor_build_l_01", - "version": 1, - "name": "Boron L Ship Fabrication Bay", - "macro": "buildmodule_bor_ships_l_macro", - "description": "No information available", - "type": "buildmodule", - "hull": 450000, - "makerRace": "boron", - "workForce": { - "max": 700 - }, - "price": { - "min": 198161899, - "max": 268101393, - "avg": 233131646 - }, - "owners": [ - "boron" - ], - "production": [ - { - "time": 722, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 1714 - }, - { - "ware": "energycells", - "amount": 18213 - }, - { - "ware": "hullparts", - "amount": 5577 - }, - { - "ware": "water", - "amount": 16495 - } - ] - } - ] - }, - { - "id": "module_bor_build_xl_01", - "version": 1, - "name": "Boron XL Ship Fabrication Bay", - "macro": "buildmodule_bor_ships_xl_macro", - "description": "No information available", - "type": "buildmodule", - "explosionDamage": 0, - "hull": 780000, - "makerRace": "boron", - "workForce": { - "max": 500 - }, - "price": { - "min": 201558642, - "max": 272696986, - "avg": 237127814 - }, - "owners": [ - "boron" - ], - "production": [ - { - "time": 1252, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 1744 - }, - { - "ware": "energycells", - "amount": 18526 - }, - { - "ware": "hullparts", - "amount": 5673 - }, - { - "ware": "water", - "amount": 16778 - } - ] - } - ] - }, - { - "id": "module_bor_conn_base_01", - "version": 1, - "name": "Boron Base Connection Structure 01", - "macro": "struct_bor_base_01_macro", - "description": "No information available", - "type": "connectionmodule", - "explosionDamage": 1000, - "hull": 74000, - "makerRace": "boron", - "price": { - "min": 83144, - "max": 112490, - "avg": 97817 - }, - "owners": [ - "boron" - ], - "production": [ - { - "time": 38, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 9 - }, - { - "ware": "energycells", - "amount": 275 - }, - { - "ware": "hullparts", - "amount": 63 - }, - { - "ware": "water", - "amount": 166 - } - ] - } - ] - }, - { - "id": "module_bor_conn_base_02", - "version": 1, - "name": "Boron Base Connection Structure 02", - "macro": "struct_bor_base_02_macro", - "description": "No information available", - "type": "connectionmodule", - "explosionDamage": 1000, - "hull": 140000, - "makerRace": "boron", - "price": { - "min": 10600, - "max": 137458, - "avg": 119529 - }, - "owners": [ - "boron" - ], - "production": [ - { - "time": 72, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 11 - }, - { - "ware": "energycells", - "amount": 336 - }, - { - "ware": "hullparts", - "amount": 77 - }, - { - "ware": "water", - "amount": 203 - } - ] - } - ] - }, - { - "id": "module_bor_conn_base_03", - "version": 1, - "name": "Boron Base Connection Structure 03", - "macro": "struct_bor_base_03_macro", - "description": "No information available", - "type": "connectionmodule", - "explosionDamage": 1000, - "hull": 213000, - "makerRace": "boron", - "price": { - "min": 108726, - "max": 147100, - "avg": 127913 - }, - "owners": [ - "boron" - ], - "production": [ - { - "time": 109, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 11 - }, - { - "ware": "energycells", - "amount": 360 - }, - { - "ware": "hullparts", - "amount": 83 - }, - { - "ware": "water", - "amount": 217 - } - ] - } - ] - }, - { - "id": "module_bor_conn_base_04", - "version": 1, - "name": "Boron Base Connection Structure 04", - "macro": "struct_bor_base_04_macro", - "description": "No information available", - "type": "connectionmodule", - "explosionDamage": 1000, - "hull": 225000, - "makerRace": "boron", - "price": { - "min": 114908, - "max": 155464, - "avg": 135186 - }, - "owners": [ - "boron" - ], - "production": [ - { - "time": 115, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 12 - }, - { - "ware": "energycells", - "amount": 380 - }, - { - "ware": "hullparts", - "amount": 87 - }, - { - "ware": "water", - "amount": 230 - } - ] - } - ] - }, - { - "id": "module_bor_conn_base_05", - "version": 1, - "name": "Boron Base Connection Structure 05", - "macro": "struct_bor_base_05_macro", - "description": "No information available", - "type": "connectionmodule", - "explosionDamage": 1000, - "hull": 260000, - "makerRace": "boron", - "price": { - "min": 126095, - "max": 170599, - "avg": 148347 - }, - "owners": [ - "boron" - ], - "production": [ - { - "time": 133, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 13 - }, - { - "ware": "energycells", - "amount": 417 - }, - { - "ware": "hullparts", - "amount": 96 - }, - { - "ware": "water", - "amount": 252 - } - ] - } - ] - }, - { - "id": "module_bor_conn_cross_01", - "version": 1, - "name": "Boron Cross Connection Structure 01", - "macro": "struct_bor_cross_01_macro", - "description": "No information available", - "type": "connectionmodule", - "explosionDamage": 1000, - "hull": 110000, - "makerRace": "boron", - "price": { - "min": 71831, - "max": 97183, - "avg": 84507 - }, - "owners": [ - "boron" - ], - "production": [ - { - "time": 56, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 7 - }, - { - "ware": "energycells", - "amount": 238 - }, - { - "ware": "hullparts", - "amount": 55 - }, - { - "ware": "water", - "amount": 144 - } - ] - } - ] - }, - { - "id": "module_bor_conn_cross_02", - "version": 1, - "name": "Boron Cross Connection Structure 02", - "macro": "struct_bor_cross_02_macro", - "description": "No information available", - "type": "connectionmodule", - "explosionDamage": 1000, - "hull": 165000, - "makerRace": "boron", - "price": { - "min": 89522, - "max": 121118, - "avg": 105320 - }, - "owners": [ - "boron" - ], - "production": [ - { - "time": 85, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 9 - }, - { - "ware": "energycells", - "amount": 296 - }, - { - "ware": "hullparts", - "amount": 68 - }, - { - "ware": "water", - "amount": 179 - } - ] - } - ] - }, - { - "id": "module_bor_conn_vertical_01", - "version": 1, - "name": "Boron Vertical Connection Structure 01", - "macro": "struct_bor_vertical_01_macro", - "description": "No information available", - "type": "connectionmodule", - "explosionDamage": 1000, - "hull": 68000, - "makerRace": "boron", - "price": { - "min": 59537, - "max": 80551, - "avg": 70044 - }, - "owners": [ - "boron" - ], - "production": [ - { - "time": 35, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 6 - }, - { - "ware": "energycells", - "amount": 197 - }, - { - "ware": "hullparts", - "amount": 45 - }, - { - "ware": "water", - "amount": 119 - } - ] - } - ] - }, - { - "id": "module_bor_conn_vertical_02", - "version": 1, - "name": "Boron Vertical Connection Structure 02", - "macro": "struct_bor_vertical_02_macro", - "description": "No information available", - "type": "connectionmodule", - "explosionDamage": 1000, - "hull": 132000, - "makerRace": "boron", - "price": { - "min": 77977, - "max": 105499, - "avg": 91738 - }, - "owners": [ - "boron" - ], - "production": [ - { - "time": 68, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 8 - }, - { - "ware": "energycells", - "amount": 258 - }, - { - "ware": "hullparts", - "amount": 59 - }, - { - "ware": "water", - "amount": 156 - } - ] - } - ] - }, - { - "id": "module_bor_def_claim_01", - "version": 1, - "name": "Boron Administrative Centre", - "macro": "defence_bor_claim_01_macro", - "description": "No information available", - "type": "defencemodule", - "explosionDamage": 2000, - "hull": 435000, - "makerRace": "boron", - "price": { - "min": 819421, - "max": 1108629, - "avg": 964025 - }, - "owners": [ - "boron" - ], - "production": [ - { - "time": 414, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 85 - }, - { - "ware": "energycells", - "amount": 2711 - }, - { - "ware": "hullparts", - "amount": 623 - }, - { - "ware": "water", - "amount": 1637 - } - ] - } - ] - }, - { - "id": "module_bor_def_disc_01", - "version": 1, - "name": "Boron Disc Defence Platform", - "macro": "defence_bor_disc_01_macro", - "description": "No information available", - "type": "defencemodule", - "explosionDamage": 1200, - "hull": 387000, - "makerRace": "boron", - "price": { - "min": 586455, - "max": 793439, - "avg": 689947 - }, - "owners": [ - "boron" - ], - "shields": [ - { - "group": "group_large_top_01", - "size": "large", - "hittable": false - }, - { - "group": "group_large_top_03", - "size": "large", - "hittable": false - }, - { - "group": "group_large_bottom_03", - "size": "large", - "hittable": false - }, - { - "group": "group_large_bottom_02", - "size": "large", - "hittable": false - }, - { - "group": "group_large_bottom_01", - "size": "large", - "hittable": false - }, - { - "group": "group_large_top_02", - "size": "large", - "hittable": false - }, - { - "group": "group_medium_top_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_bottom_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_bottom_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_top_02", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_top_02", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_bottom_02", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_bottom_02", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_top_03", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_top_03", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_bottom_03", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_bottom_03", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_top_01", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "group_large_top_02", - "size": "large", - "hittable": false, - "types": [ - "missile" - ] - }, - { - "group": "group_large_top_03", - "size": "large", - "hittable": false, - "types": [ - "missile" - ] - }, - { - "group": "group_large_bottom_03", - "size": "large", - "hittable": false, - "types": [ - "missile" - ] - }, - { - "group": "group_large_bottom_02", - "size": "large", - "hittable": false, - "types": [ - "missile" - ] - }, - { - "group": "group_large_bottom_01", - "size": "large", - "hittable": false, - "types": [ - "missile" - ] - }, - { - "group": "group_large_top_01", - "size": "large", - "hittable": false, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_02", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_02", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_02", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_02", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_02", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_02", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_02", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_02", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_03", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_03", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_03", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_03", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_03", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_03", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_03", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_03", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - } - ], - "production": [ - { - "time": 133, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 61 - }, - { - "ware": "energycells", - "amount": 1940 - }, - { - "ware": "hullparts", - "amount": 446 - }, - { - "ware": "water", - "amount": 1172 - } - ] - } - ] - }, - { - "id": "module_bor_def_tube_01", - "version": 1, - "name": "Boron Bridge Defence Platform", - "macro": "defence_bor_tube_01_macro", - "description": "No information available", - "type": "defencemodule", - "explosionDamage": 1200, - "hull": 295000, - "makerRace": "boron", - "price": { - "min": 508960, - "max": 688594, - "avg": 598777 - }, - "owners": [ - "boron" - ], - "shields": [ - { - "group": "group_large_top_03", - "size": "large", - "hittable": false - }, - { - "group": "group_large_bottom_03", - "size": "large", - "hittable": false - }, - { - "group": "group_large_bottom_02", - "size": "large", - "hittable": false - }, - { - "group": "group_large_top_02", - "size": "large", - "hittable": false - }, - { - "group": "group_medium_top_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_bottom_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_bottom_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_top_02", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_top_02", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_bottom_02", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_bottom_02", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_top_03", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_top_03", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_bottom_03", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_bottom_03", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_top_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_top_04", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_top_05", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_bottom_04", - "size": "medium", - "hittable": true - }, - { - "group": "group_medium_bottom_05", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "group_large_top_02", - "size": "large", - "hittable": false, - "types": [ - "missile" - ] - }, - { - "group": "group_large_top_03", - "size": "large", - "hittable": false, - "types": [ - "missile" - ] - }, - { - "group": "group_large_bottom_03", - "size": "large", - "hittable": false, - "types": [ - "missile" - ] - }, - { - "group": "group_large_bottom_02", - "size": "large", - "hittable": false, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_02", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_02", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_02", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_02", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_02", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_02", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_02", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_02", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_04", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_05", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_04", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_05", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_03", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_04", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_05", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_04", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_05", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_03", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_03", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_03", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_03", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_03", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_03", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_bottom_03", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_medium_top_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - } - ], - "production": [ - { - "time": 118, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 53 - }, - { - "ware": "energycells", - "amount": 1684 - }, - { - "ware": "hullparts", - "amount": 387 - }, - { - "ware": "water", - "amount": 1017 - } - ] - } - ] - }, - { - "id": "module_bor_dock_m_01_standard", - "version": 1, - "name": "Boron 4M14S Luxury Dock Area", - "macro": "dockarea_bor_m_station_01_standard_macro", - "description": "No information available", - "type": "dockarea", - "explosionDamage": 1000, - "hull": 580000, - "makerRace": "boron", - "price": { - "min": 497906, - "max": 673638, - "avg": 585772 - }, - "owners": [ - "boron" - ], - "docks": [ - { - "capacity": 10, - "size": "medium" - }, - { - "capacity": 40, - "size": "small" - }, - { - "capacity": 10, - "size": "extrasmall" - } - ], - "production": [ - { - "time": 773, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 52 - }, - { - "ware": "energycells", - "amount": 1647 - }, - { - "ware": "hullparts", - "amount": 378 - }, - { - "ware": "water", - "amount": 995 - } - ] - } - ] - }, - { - "id": "module_bor_equip_dockarea_m_01", - "version": 1, - "name": "Boron S/M Ship Maintenance Bay", - "macro": "buildmodule_bor_equip_m_dockarea_01_macro", - "description": "No information available", - "type": "buildmodule", - "explosionDamage": 2500, - "hull": 225000, - "makerRace": "boron", - "workForce": { - "max": 400 - }, - "price": { - "min": 28659268, - "max": 38774304, - "avg": 33716786 - }, - "owners": [ - "boron" - ], - "docks": [ - { - "capacity": 30, - "size": "medium" - }, - { - "capacity": 100, - "size": "small" - }, - { - "capacity": 10, - "size": "extrasmall" - } - ], - "production": [ - { - "time": 596, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 595 - }, - { - "ware": "energycells", - "amount": 6322 - }, - { - "ware": "hullparts", - "amount": 1936 - }, - { - "ware": "water", - "amount": 5725 - } - ] - } - ] - }, - { - "id": "module_bor_equip_l_01", - "version": 1, - "name": "Boron L Ship Maintenance Bay", - "macro": "buildmodule_bor_equip_l_macro", - "description": "No information available", - "type": "buildmodule", - "explosionDamage": 5000, - "hull": 370000, - "makerRace": "boron", - "workForce": { - "max": 500 - }, - "price": { - "min": 52476005, - "max": 70996949, - "avg": 61736477 - }, - "owners": [ - "boron" - ], - "production": [ - { - "time": 653, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 872 - }, - { - "ware": "energycells", - "amount": 9260 - }, - { - "ware": "hullparts", - "amount": 2836 - }, - { - "ware": "water", - "amount": 8387 - } - ] - } - ] - }, - { - "id": "module_bor_equip_xl_01", - "version": 1, - "name": "Boron XL Ship Maintenance Bay", - "macro": "buildmodule_bor_equip_xl_macro", - "description": "No information available", - "type": "buildmodule", - "explosionDamage": 5000, - "hull": 715000, - "makerRace": "boron", - "workForce": { - "max": 500 - }, - "price": { - "min": 54208622, - "max": 73341077, - "avg": 63774850 - }, - "owners": [ - "boron" - ], - "production": [ - { - "time": 1136, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 1125 - }, - { - "ware": "energycells", - "amount": 11958 - }, - { - "ware": "hullparts", - "amount": 3662 - }, - { - "ware": "water", - "amount": 10830 - } - ] - } - ] - }, - { - "id": "module_bor_hab_l_01", - "version": 1, - "name": "Boron L Oasis", - "macro": "hab_bor_l_01_macro", - "description": "No information available", - "type": "habitation", - "explosionDamage": 1000, - "hull": 480000, - "makerRace": "boron", - "workForce": { - "capacity": 1000, - "race": "boron" - }, - "price": { - "min": 18290485, - "max": 24745951, - "avg": 21518218 - }, - "owners": [ - "boron" - ], - "production": [ - { - "time": 640, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 114 - }, - { - "ware": "energycells", - "amount": 3631 - }, - { - "ware": "hullparts", - "amount": 834 - }, - { - "ware": "water", - "amount": 2192 - } - ] - } - ] - }, - { - "id": "module_bor_hab_m_01", - "version": 1, - "name": "Boron M Oasis", - "macro": "hab_bor_m_01_macro", - "description": "No information available", - "type": "habitation", - "explosionDamage": 1000, - "hull": 260000, - "makerRace": "boron", - "workForce": { - "capacity": 500, - "race": "boron" - }, - "price": { - "min": 12929719, - "max": 17493149, - "avg": 15211434 - }, - "owners": [ - "boron" - ], - "production": [ - { - "time": 347, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 81 - }, - { - "ware": "energycells", - "amount": 2567 - }, - { - "ware": "hullparts", - "amount": 590 - }, - { - "ware": "water", - "amount": 1550 - } - ] - } - ] - }, - { - "id": "module_bor_hab_s_01", - "version": 1, - "name": "Boron S Oasis", - "macro": "hab_bor_s_01_macro", - "description": "No information available", - "type": "habitation", - "explosionDamage": 1000, - "hull": 140000, - "makerRace": "boron", - "workForce": { - "capacity": 250, - "race": "boron" - }, - "price": { - "min": 8989883, - "max": 12162783, - "avg": 10576333 - }, - "owners": [ - "boron" - ], - "production": [ - { - "time": 187, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 56 - }, - { - "ware": "energycells", - "amount": 1785 - }, - { - "ware": "hullparts", - "amount": 410 - }, - { - "ware": "water", - "amount": 1078 - } - ] - } - ] - }, - { - "id": "module_bor_pier_l_01", - "version": 1, - "name": "Boron 4-Dock T Pier", - "macro": "pier_bor_harbor_01_macro", - "description": "No information available", - "type": "pier", - "explosionDamage": 1000, - "hull": 850000, - "makerRace": "boron", - "price": { - "min": 3240789, - "max": 4384597, - "avg": 3812693 - }, - "owners": [ - "boron" - ], - "production": [ - { - "time": 739, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 336 - }, - { - "ware": "energycells", - "amount": 10723 - }, - { - "ware": "hullparts", - "amount": 2463 - }, - { - "ware": "water", - "amount": 6474 - } - ] - } - ] - }, - { - "id": "module_bor_pier_l_02", - "version": 1, - "name": "Boron 1-Dock Pier", - "macro": "pier_bor_harbor_02_macro", - "description": "No information available", - "type": "pier", - "explosionDamage": 1000, - "hull": 325000, - "makerRace": "boron", - "price": { - "min": 1871312, - "max": 2531774, - "avg": 2201543 - }, - "owners": [ - "boron" - ], - "production": [ - { - "time": 283, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 194 - }, - { - "ware": "energycells", - "amount": 6192 - }, - { - "ware": "hullparts", - "amount": 1422 - }, - { - "ware": "water", - "amount": 3738 - } - ] - } - ] - }, - { - "id": "module_bor_pier_l_03", - "version": 1, - "name": "Boron 3-Dock E Pier", - "macro": "pier_bor_harbor_03_macro", - "description": "No information available", - "type": "pier", - "explosionDamage": 1000, - "hull": 1250000, - "makerRace": "boron", - "price": { - "min": 3738918, - "max": 5058536, - "avg": 4398727 - }, - "owners": [ - "boron" - ], - "production": [ - { - "time": 1087, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 388 - }, - { - "ware": "energycells", - "amount": 12371 - }, - { - "ware": "hullparts", - "amount": 2841 - }, - { - "ware": "water", - "amount": 7470 - } - ] - } - ] - }, - { - "id": "module_bor_pier_l_04", - "version": 1, - "name": "Boron Trading Station 4-Dock Pier", - "macro": "pier_bor_harbor_04_macro", - "description": "No information available", - "type": "pier", - "explosionDamage": 1000, - "hull": 575000, - "makerRace": "boron", - "price": { - "min": 2633918, - "max": 3563536, - "avg": 3098727 - }, - "owners": [ - "boron" - ], - "production": [ - { - "time": 517, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 273 - }, - { - "ware": "energycells", - "amount": 8715 - }, - { - "ware": "hullparts", - "amount": 2002 - }, - { - "ware": "water", - "amount": 5262 - } - ] - } - ] - }, - { - "id": "module_bor_pier_tradestation_01", - "version": 1, - "name": "Boron Trading Station Hexa-Dock Pier", - "macro": "pier_bor_tradestation_01_macro", - "description": "No information available", - "type": "pier", - "explosionDamage": 1500, - "hull": 2000000, - "makerRace": "boron", - "price": { - "min": 4225512, - "max": 5210498, - "avg": 4730030 - }, - "owners": [ - "boron" - ], - "production": [ - { - "time": 1087, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 417 - }, - { - "ware": "energycells", - "amount": 13303 - }, - { - "ware": "hullparts", - "amount": 3055 - }, - { - "ware": "water", - "amount": 8032 - } - ] - } - ] - }, - { - "id": "module_bor_prod_bofu_01", - "version": 1, - "name": "BoFu Production", - "macro": "prod_bor_bofu_macro", - "description": "No information available", - "type": "production", - "product": [ - "bofu" - ], - "explosionDamage": 1000, - "hull": 165000, - "makerRace": "boron", - "workForce": { - "max": 125 - }, - "price": { - "min": 1568474, - "max": 2122053, - "avg": 1845263 - }, - "owners": [ - "boron" - ], - "shields": [ - { - "group": "group_top_right_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_bottom_right_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_top_left_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_bottom_left_01", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "group_top_right_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_top_right_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_bottom_right_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_bottom_right_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_top_left_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_top_left_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_bottom_left_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_bottom_left_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - } - ], - "production": [ - { - "time": 367, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 163 - }, - { - "ware": "energycells", - "amount": 5190 - }, - { - "ware": "hullparts", - "amount": 1192 - }, - { - "ware": "water", - "amount": 3133 - } - ] - } - ] - }, - { - "id": "module_bor_prod_bogas_01", - "version": 1, - "name": "BoGas Production", - "macro": "prod_bor_bogas_macro", - "description": "No information available", - "type": "production", - "product": [ - "bogas" - ], - "explosionDamage": 1000, - "hull": 185000, - "makerRace": "boron", - "workForce": { - "max": 100 - }, - "price": { - "min": 1484832, - "max": 2008891, - "avg": 1746862 - }, - "owners": [ - "boron" - ], - "shields": [ - { - "group": "group_top_right_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_top_left_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_bottom_right_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_bottom_left_01", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "group_top_right_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_top_right_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_top_left_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_top_left_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_bottom_right_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_bottom_right_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_bottom_left_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_bottom_left_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - } - ], - "production": [ - { - "time": 411, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 154 - }, - { - "ware": "energycells", - "amount": 4913 - }, - { - "ware": "hullparts", - "amount": 1128 - }, - { - "ware": "water", - "amount": 2966 - } - ] - } - ] - }, - { - "id": "module_bor_prod_medicalsupplies_01", - "version": 1, - "name": "Boron Medical Supply Production", - "macro": "prod_bor_medicalsupplies_macro", - "description": "No information available", - "type": "production", - "product": [ - "medicalsupplies" - ], - "explosionDamage": 1000, - "hull": 204000, - "makerRace": "boron", - "workForce": { - "max": 90 - }, - "price": { - "min": 1345856, - "max": 1820864, - "avg": 1583360 - }, - "owners": [ - "boron" - ], - "shields": [ - { - "group": "group_top_right_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_bottom_right_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_top_left_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_bottom_left_01", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "group_top_right_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_top_right_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_bottom_right_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_bottom_right_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_top_left_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_top_left_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_bottom_left_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_bottom_left_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - } - ], - "production": [ - { - "time": 453, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 140 - }, - { - "ware": "energycells", - "amount": 4453 - }, - { - "ware": "hullparts", - "amount": 1023 - }, - { - "ware": "water", - "amount": 2689 - } - ] - } - ] - }, - { - "id": "module_bor_prod_plankton_01", - "version": 1, - "name": "Plankton Production", - "macro": "prod_bor_plankton_macro", - "description": "No information available", - "type": "production", - "product": [ - "plankton" - ], - "explosionDamage": 1000, - "hull": 135000, - "makerRace": "boron", - "workForce": { - "max": 40 - }, - "price": { - "min": 921174, - "max": 1246295, - "avg": 1083734 - }, - "owners": [ - "boron" - ], - "shields": [ - { - "group": "group_top_right_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_down_left_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_top_left_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_down_right_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_down_left_02", - "size": "medium", - "hittable": true - }, - { - "group": "group_down_right_02", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "group_top_right_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_top_right_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_down_left_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_down_right_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_top_left_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_top_left_01", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_down_left_02", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - }, - { - "group": "group_down_right_02", - "size": "medium", - "hittable": true, - "types": [ - "missile" - ] - } - ], - "production": [ - { - "time": 278, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 96 - }, - { - "ware": "energycells", - "amount": 3048 - }, - { - "ware": "hullparts", - "amount": 700 - }, - { - "ware": "water", - "amount": 1840 - } - ] - } - ] - }, - { - "id": "module_bor_stor_container_l_01", - "version": 1, - "name": "Boron L Container Storage", - "macro": "storage_bor_l_container_01_macro", - "description": "No information available", - "type": "storage", - "explosionDamage": 1000, - "hull": 775000, - "makerRace": "boron", - "cargo": { - "max": 1000000, - "type": "container" - }, - "price": { - "min": 688054, - "max": 930896, - "avg": 809475 - }, - "owners": [ - "boron" - ], - "shields": [ - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true - }, - { - "group": "group_mid_left_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_mid_left_02", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_left_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_left_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_left_02", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_left_02", - "size": "medium", - "hittable": true, - "types": [] - } - ], - "production": [ - { - "time": 783, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 71 - }, - { - "ware": "energycells", - "amount": 2277 - }, - { - "ware": "hullparts", - "amount": 523 - }, - { - "ware": "water", - "amount": 1375 - } - ] - } - ] - }, - { - "id": "module_bor_stor_container_m_01", - "version": 1, - "name": "Boron M Container Storage", - "macro": "storage_bor_m_container_01_macro", - "description": "No information available", - "type": "storage", - "explosionDamage": 800, - "hull": 315000, - "makerRace": "boron", - "cargo": { - "max": 100000, - "type": "container" - }, - "price": { - "min": 490022, - "max": 662972, - "avg": 576497 - }, - "owners": [ - "boron" - ], - "shields": [ - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true - }, - { - "group": "group_mid_left_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_mid_left_02", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_left_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_left_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_left_02", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_left_02", - "size": "medium", - "hittable": true, - "types": [] - } - ], - "production": [ - { - "time": 423, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 51 - }, - { - "ware": "energycells", - "amount": 1621 - }, - { - "ware": "hullparts", - "amount": 372 - }, - { - "ware": "water", - "amount": 979 - } - ] - } - ] - }, - { - "id": "module_bor_stor_container_s_01", - "version": 1, - "name": "Boron S Container Storage", - "macro": "storage_bor_s_container_01_macro", - "description": "No information available", - "type": "storage", - "explosionDamage": 500, - "hull": 135000, - "makerRace": "boron", - "cargo": { - "max": 25000, - "type": "container" - }, - "price": { - "min": 310446, - "max": 420016, - "avg": 365231 - }, - "owners": [ - "boron" - ], - "shields": [ - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true, - "types": [] - } - ], - "production": [ - { - "time": 268, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 32 - }, - { - "ware": "energycells", - "amount": 1027 - }, - { - "ware": "hullparts", - "amount": 236 - }, - { - "ware": "water", - "amount": 620 - } - ] - } - ] - }, - { - "id": "module_bor_stor_liquid_l_01", - "version": 1, - "name": "Boron L Liquid Storage", - "macro": "storage_bor_l_liquid_01_macro", - "description": "No information available", - "type": "storage", - "explosionDamage": 1000, - "hull": 765000, - "makerRace": "boron", - "cargo": { - "max": 1000000, - "type": "liquid" - }, - "price": { - "min": 688054, - "max": 930896, - "avg": 809475 - }, - "owners": [ - "boron" - ], - "shields": [ - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true - }, - { - "group": "group_mid_left_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_mid_left_02", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_left_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_left_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_left_02", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_left_02", - "size": "medium", - "hittable": true, - "types": [] - } - ], - "production": [ - { - "time": 783, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 71 - }, - { - "ware": "energycells", - "amount": 2277 - }, - { - "ware": "hullparts", - "amount": 523 - }, - { - "ware": "water", - "amount": 1375 - } - ] - } - ] - }, - { - "id": "module_bor_stor_liquid_m_01", - "version": 1, - "name": "Boron M Liquid Storage", - "macro": "storage_bor_m_liquid_01_macro", - "description": "No information available", - "type": "storage", - "explosionDamage": 1000, - "hull": 307000, - "makerRace": "boron", - "cargo": { - "max": 500000, - "type": "liquid" - }, - "price": { - "min": 490022, - "max": 662972, - "avg": 576497 - }, - "owners": [ - "boron" - ], - "shields": [ - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true - }, - { - "group": "group_mid_left_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_mid_left_02", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_left_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_left_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_left_02", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_left_02", - "size": "medium", - "hittable": true, - "types": [] - } - ], - "production": [ - { - "time": 423, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 51 - }, - { - "ware": "energycells", - "amount": 1621 - }, - { - "ware": "hullparts", - "amount": 372 - }, - { - "ware": "water", - "amount": 979 - } - ] - } - ] - }, - { - "id": "module_bor_stor_liquid_s_01", - "version": 1, - "name": "Boron S Liquid Storage", - "macro": "storage_bor_s_liquid_01_macro", - "description": "No information available", - "type": "storage", - "explosionDamage": 500, - "hull": 126000, - "makerRace": "boron", - "cargo": { - "max": 100000, - "type": "liquid" - }, - "price": { - "min": 310446, - "max": 420016, - "avg": 365231 - }, - "owners": [ - "boron" - ], - "shields": [ - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true, - "types": [] - } - ], - "production": [ - { - "time": 268, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 32 - }, - { - "ware": "energycells", - "amount": 1027 - }, - { - "ware": "hullparts", - "amount": 236 - }, - { - "ware": "water", - "amount": 620 - } - ] - } - ] - }, - { - "id": "module_bor_stor_solid_l_01", - "version": 1, - "name": "Boron L Solid Storage", - "macro": "storage_bor_l_solid_01_macro", - "description": "No information available", - "type": "storage", - "explosionDamage": 1000, - "hull": 769000, - "makerRace": "boron", - "cargo": { - "max": 1000000, - "type": "solid" - }, - "price": { - "min": 688054, - "max": 930896, - "avg": 809475 - }, - "owners": [ - "boron" - ], - "shields": [ - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true - }, - { - "group": "group_mid_left_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_mid_left_02", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_left_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_left_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_left_02", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_left_02", - "size": "medium", - "hittable": true, - "types": [] - } - ], - "production": [ - { - "time": 783, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 71 - }, - { - "ware": "energycells", - "amount": 2277 - }, - { - "ware": "hullparts", - "amount": 523 - }, - { - "ware": "water", - "amount": 1375 - } - ] - } - ] - }, - { - "id": "module_bor_stor_solid_m_01", - "version": 1, - "name": "Boron M Solid Storage", - "macro": "storage_bor_m_solid_01_macro", - "description": "No information available", - "type": "storage", - "explosionDamage": 1000, - "hull": 311000, - "makerRace": "boron", - "cargo": { - "max": 500000, - "type": "solid" - }, - "price": { - "min": 490022, - "max": 662972, - "avg": 576497 - }, - "owners": [ - "boron" - ], - "shields": [ - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true - }, - { - "group": "group_mid_left_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_mid_left_02", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_left_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_left_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_left_02", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_left_02", - "size": "medium", - "hittable": true, - "types": [] - } - ], - "production": [ - { - "time": 423, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 51 - }, - { - "ware": "energycells", - "amount": 1621 - }, - { - "ware": "hullparts", - "amount": 372 - }, - { - "ware": "water", - "amount": 979 - } - ] - } - ] - }, - { - "id": "module_bor_stor_solid_s_01", - "version": 1, - "name": "Boron S Solid Storage", - "macro": "storage_bor_s_solid_01_macro", - "description": "No information available", - "type": "storage", - "explosionDamage": 500, - "hull": 132000, - "makerRace": "boron", - "cargo": { - "max": 100000, - "type": "solid" - }, - "price": { - "min": 310446, - "max": 420016, - "avg": 365231 - }, - "owners": [ - "boron" - ], - "shields": [ - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_01", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true, - "types": [] - }, - { - "group": "group_mid_right_02", - "size": "medium", - "hittable": true, - "types": [] - } - ], - "production": [ - { - "time": 268, - "amount": 1, - "method": "default", - "name": "Boron", - "wares": [ - { - "ware": "claytronics", - "amount": 32 - }, - { - "ware": "energycells", - "amount": 1027 - }, - { - "ware": "hullparts", - "amount": 236 - }, - { - "ware": "water", - "amount": 620 - } - ] - } - ] - }, { "id": "module_gen_build_dockarea_m_01", "version": 0, @@ -16029,3465 +12464,6 @@ } ] }, - { - "id": "module_pir_hab_l_01", - "version": 1, - "name": "Argon L Dormitory", - "macro": "hab_pir_l_01_macro", - "description": "No information available", - "type": "habitation", - "explosionDamage": 1000, - "hull": 500000, - "makerRace": "argon", - "workForce": { - "capacity": 1000, - "race": "argon" - }, - "price": { - "min": 17721792, - "max": 26352612, - "avg": 22037202 - }, - "owners": [ - "loanshark", - "scavenger" - ], - "production": [ - { - "time": 1155, - "amount": 1, - "method": "default", - "name": "Closed Loop", - "wares": [ - { - "ware": "claytronics", - "amount": 420 - }, - { - "ware": "energycells", - "amount": 383 - }, - { - "ware": "hullparts", - "amount": 1729 - } - ] - } - ] - }, - { - "id": "module_pir_hab_m_01", - "version": 1, - "name": "Argon M Dormitory", - "macro": "hab_pir_m_01_macro", - "description": "No information available", - "type": "habitation", - "explosionDamage": 1000, - "hull": 250000, - "makerRace": "argon", - "workForce": { - "capacity": 500, - "race": "argon" - }, - "price": { - "min": 12530160, - "max": 18631944, - "avg": 15581052 - }, - "owners": [ - "loanshark", - "scavenger" - ], - "production": [ - { - "time": 816, - "amount": 1, - "method": "default", - "name": "Closed Loop", - "wares": [ - { - "ware": "claytronics", - "amount": 297 - }, - { - "ware": "energycells", - "amount": 271 - }, - { - "ware": "hullparts", - "amount": 1222 - } - ] - } - ] - }, - { - "id": "module_pir_hab_s_01", - "version": 1, - "name": "Argon S Dormitory", - "macro": "hab_pir_s_01_macro", - "description": "No information available", - "type": "habitation", - "explosionDamage": 1000, - "hull": 120000, - "makerRace": "argon", - "workForce": { - "capacity": 250, - "race": "argon" - }, - "price": { - "min": 8689428, - "max": 12920328, - "avg": 10804878 - }, - "owners": [ - "loanshark", - "scavenger" - ], - "production": [ - { - "time": 566, - "amount": 1, - "method": "default", - "name": "Closed Loop", - "wares": [ - { - "ware": "claytronics", - "amount": 206 - }, - { - "ware": "energycells", - "amount": 188 - }, - { - "ware": "hullparts", - "amount": 847 - } - ] - } - ] - }, - { - "id": "module_pir_stor_condensate_l_01", - "version": 1, - "name": "Protectyon Shield Generator", - "macro": "storage_pir_l_condensate_01_macro", - "description": "The Protectyon Shield Generator was designed by the Northriver Company's Research and Development team. It is constructed in such a way that, when supplied with Protectyon condensate, it generates shielding that protects the entire station from the devastating effects of the Tide. As part of this process the Protectyon is depleted. Due to the high potency of Protectyon, and the incredible volatility inherent in such a substance, the module's design only allows for a small storage capacity.", - "type": "storage", - "explosionDamage": 1000, - "hull": 1000000, - "cargo": { - "max": 50, - "type": "condensate" - }, - "price": { - "min": 1433988, - "max": 2146384, - "avg": 1790186 - }, - "owners": [ - "scavenger" - ], - "shields": [ - { - "group": "column_02_l", - "size": "medium", - "hittable": true - }, - { - "group": "column_02_r", - "size": "medium", - "hittable": true - }, - { - "group": "column_03_r", - "size": "medium", - "hittable": true - }, - { - "group": "column_03_l", - "size": "medium", - "hittable": true - }, - { - "group": "column_01_l", - "size": "medium", - "hittable": true - }, - { - "group": "column_01_r", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "column_02_l", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "column_02_l", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "column_02_r", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "column_02_r", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "column_03_r", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "column_03_r", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "column_03_l", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "column_03_l", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "column_01_l", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "column_01_l", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "column_01_r", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "column_01_r", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - } - ], - "production": [ - { - "time": 1033, - "amount": 1, - "method": "default", - "name": "Closed Loop", - "wares": [ - { - "ware": "claytronics", - "amount": 291 - }, - { - "ware": "energycells", - "amount": 265 - }, - { - "ware": "hullparts", - "amount": 1198 - } - ] - } - ] - }, - { - "id": "module_spl_conn_base_01", - "version": 1, - "name": "Split Base Connection Structure 01", - "macro": "struct_spl_base_01_macro", - "description": "No information available", - "type": "connectionmodule", - "hull": 150000, - "makerRace": "split", - "price": { - "min": 92363, - "max": 124961, - "avg": 108662 - }, - "owners": [ - "freesplit", - "split" - ], - "production": [ - { - "time": 59, - "amount": 1, - "method": "default", - "name": "Universal", - "wares": [ - { - "ware": "claytronics", - "amount": 14 - }, - { - "ware": "energycells", - "amount": 27 - }, - { - "ware": "hullparts", - "amount": 50 - } - ] - } - ] - }, - { - "id": "module_spl_conn_base_02", - "version": 1, - "name": "Split Base Connection Structure 02", - "macro": "struct_spl_base_02_macro", - "description": "No information available", - "type": "connectionmodule", - "hull": 237000, - "makerRace": "split", - "price": { - "min": 75585, - "max": 102263, - "avg": 88924 - }, - "owners": [ - "freesplit", - "split" - ], - "production": [ - { - "time": 53, - "amount": 1, - "method": "default", - "name": "Universal", - "wares": [ - { - "ware": "claytronics", - "amount": 17 - }, - { - "ware": "energycells", - "amount": 34 - }, - { - "ware": "hullparts", - "amount": 62 - } - ] - } - ] - }, - { - "id": "module_spl_conn_base_03", - "version": 1, - "name": "Split Base Connection Structure 03", - "macro": "struct_spl_base_03_macro", - "description": "No information available", - "type": "connectionmodule", - "hull": 280000, - "makerRace": "split", - "price": { - "min": 98841, - "max": 133727, - "avg": 116284 - }, - "owners": [ - "freesplit", - "split" - ], - "production": [ - { - "time": 72, - "amount": 1, - "method": "default", - "name": "Universal", - "wares": [ - { - "ware": "claytronics", - "amount": 18 - }, - { - "ware": "energycells", - "amount": 37 - }, - { - "ware": "hullparts", - "amount": 68 - } - ] - } - ] - }, - { - "id": "module_spl_conn_cross_01", - "version": 1, - "name": "Split Cross Connection Structure 01", - "macro": "struct_spl_cross_01_macro", - "description": "No information available", - "type": "connectionmodule", - "hull": 120000, - "makerRace": "split", - "price": { - "min": 65300, - "max": 88348, - "avg": 76824 - }, - "owners": [ - "freesplit", - "split" - ], - "production": [ - { - "time": 47, - "amount": 1, - "method": "default", - "name": "Universal", - "wares": [ - { - "ware": "claytronics", - "amount": 12 - }, - { - "ware": "energycells", - "amount": 24 - }, - { - "ware": "hullparts", - "amount": 44 - } - ] - } - ] - }, - { - "id": "module_spl_conn_vertical_01", - "version": 1, - "name": "Split Vertical Connection Structure 01", - "macro": "struct_spl_vertical_01_macro", - "description": "No information available", - "type": "connectionmodule", - "hull": 79000, - "makerRace": "split", - "price": { - "min": 54125, - "max": 73227, - "avg": 63676 - }, - "owners": [ - "freesplit", - "split" - ], - "production": [ - { - "time": 38, - "amount": 1, - "method": "default", - "name": "Universal", - "wares": [ - { - "ware": "claytronics", - "amount": 10 - }, - { - "ware": "energycells", - "amount": 20 - }, - { - "ware": "hullparts", - "amount": 36 - } - ] - } - ] - }, - { - "id": "module_spl_conn_vertical_02", - "version": 1, - "name": "Split Vertical Connection Structure 02", - "macro": "struct_spl_vertical_02_macro", - "description": "No information available", - "type": "connectionmodule", - "hull": 143000, - "makerRace": "split", - "price": { - "min": 70888, - "max": 95908, - "avg": 83398 - }, - "owners": [ - "freesplit", - "split" - ], - "production": [ - { - "time": 52, - "amount": 1, - "method": "default", - "name": "Universal", - "wares": [ - { - "ware": "claytronics", - "amount": 13 - }, - { - "ware": "energycells", - "amount": 26 - }, - { - "ware": "hullparts", - "amount": 48 - } - ] - } - ] - }, - { - "id": "module_spl_def_claim_01", - "version": 1, - "name": "Split Administrative Centre", - "macro": "defence_spl_claim_01_macro", - "description": "No information available", - "type": "defencemodule", - "explosionDamage": 2000, - "hull": 520000, - "makerRace": "split", - "price": { - "min": 750516, - "max": 1015404, - "avg": 882960 - }, - "owners": [ - "freesplit", - "split" - ], - "production": [ - { - "time": 541, - "amount": 1, - "method": "default", - "name": "Universal", - "wares": [ - { - "ware": "claytronics", - "amount": 138 - }, - { - "ware": "energycells", - "amount": 276 - }, - { - "ware": "hullparts", - "amount": 505 - } - ] - } - ] - }, - { - "id": "module_spl_def_disc_01", - "version": 1, - "name": "Split Disc Defence Platform", - "macro": "defence_spl_disc_01_macro", - "description": "No information available", - "type": "defencemodule", - "explosionDamage": 1200, - "hull": 197400, - "makerRace": "split", - "price": { - "min": 570940, - "max": 772448, - "avg": 671694 - }, - "owners": [ - "freesplit", - "split" - ], - "shields": [ - { - "group": "group01", - "size": "medium", - "hittable": true - }, - { - "group": "group04", - "size": "medium", - "hittable": true - }, - { - "group": "group06", - "size": "medium", - "hittable": true - }, - { - "group": "group02", - "size": "medium", - "hittable": true - }, - { - "group": "group05", - "size": "medium", - "hittable": true - }, - { - "group": "group03", - "size": "medium", - "hittable": true - }, - { - "group": "group11", - "size": "large", - "hittable": false - }, - { - "group": "group12", - "size": "large", - "hittable": false - }, - { - "group": "group07", - "size": "large", - "hittable": false - }, - { - "group": "group08", - "size": "large", - "hittable": false - }, - { - "group": "group09", - "size": "large", - "hittable": false - }, - { - "group": "group10", - "size": "large", - "hittable": false - } - ], - "turrets": [ - { - "group": "group11", - "size": "large", - "hittable": false, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group04", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group04", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group06", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group06", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group02", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group02", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group05", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group05", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group03", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group03", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group11", - "size": "large", - "hittable": false, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group10", - "size": "large", - "hittable": false, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group10", - "size": "large", - "hittable": false, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group12", - "size": "large", - "hittable": false, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group12", - "size": "large", - "hittable": false, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group07", - "size": "large", - "hittable": false, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group07", - "size": "large", - "hittable": false, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group08", - "size": "large", - "hittable": false, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group08", - "size": "large", - "hittable": false, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group09", - "size": "large", - "hittable": false, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group09", - "size": "large", - "hittable": false, - "types": [ - "standard", - "missile" - ] - } - ], - "production": [ - { - "time": 410, - "amount": 1, - "method": "default", - "name": "Universal", - "wares": [ - { - "ware": "claytronics", - "amount": 105 - }, - { - "ware": "energycells", - "amount": 210 - }, - { - "ware": "hullparts", - "amount": 384 - } - ] - } - ] - }, - { - "id": "module_spl_def_tube_01", - "version": 1, - "name": "Split Bridge Defence Platform", - "macro": "defence_spl_tube_01_macro", - "description": "No information available", - "type": "defencemodule", - "explosionDamage": 1200, - "hull": 148800, - "makerRace": "split", - "price": { - "min": 570940, - "max": 772448, - "avg": 671694 - }, - "owners": [ - "freesplit", - "split" - ], - "shields": [ - { - "group": "group06", - "size": "large", - "hittable": false - }, - { - "group": "group05", - "size": "large", - "hittable": false - }, - { - "group": "group08", - "size": "large", - "hittable": false - }, - { - "group": "group07", - "size": "large", - "hittable": false - }, - { - "group": "group01", - "size": "medium", - "hittable": true - }, - { - "group": "group04", - "size": "medium", - "hittable": true - }, - { - "group": "group02", - "size": "medium", - "hittable": true - }, - { - "group": "group03", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "group06", - "size": "large", - "hittable": false, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group06", - "size": "large", - "hittable": false, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group05", - "size": "large", - "hittable": false, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group05", - "size": "large", - "hittable": false, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group08", - "size": "large", - "hittable": false, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group07", - "size": "large", - "hittable": false, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group07", - "size": "large", - "hittable": false, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group08", - "size": "large", - "hittable": false, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group04", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group04", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group02", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group02", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group03", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "group03", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - } - ], - "production": [ - { - "time": 410, - "amount": 1, - "method": "default", - "name": "Universal", - "wares": [ - { - "ware": "claytronics", - "amount": 105 - }, - { - "ware": "energycells", - "amount": 210 - }, - { - "ware": "hullparts", - "amount": 384 - } - ] - } - ] - }, - { - "id": "module_spl_hab_l_01", - "version": 1, - "name": "Split L Parlour", - "macro": "hab_spl_l_01_macro", - "description": "No information available", - "type": "habitation", - "explosionDamage": 1000, - "hull": 500000, - "makerRace": "split", - "workForce": { - "capacity": 1000, - "race": "split" - }, - "price": { - "min": 16627714, - "max": 22496318, - "avg": 19562016 - }, - "owners": [ - "freesplit", - "split" - ], - "production": [ - { - "time": 750, - "amount": 1, - "method": "default", - "name": "Universal", - "wares": [ - { - "ware": "claytronics", - "amount": 191 - }, - { - "ware": "energycells", - "amount": 383 - }, - { - "ware": "hullparts", - "amount": 700 - } - ] - } - ] - }, - { - "id": "module_spl_hab_m_01", - "version": 1, - "name": "Split M Parlour", - "macro": "hab_spl_m_01_macro", - "description": "No information available", - "type": "habitation", - "explosionDamage": 1000, - "hull": 250000, - "makerRace": "split", - "workForce": { - "capacity": 500, - "race": "split" - }, - "price": { - "min": 11754290, - "max": 15902862, - "avg": 13828576 - }, - "owners": [ - "freesplit", - "split" - ], - "production": [ - { - "time": 530, - "amount": 1, - "method": "default", - "name": "Universal", - "wares": [ - { - "ware": "claytronics", - "amount": 135 - }, - { - "ware": "energycells", - "amount": 271 - }, - { - "ware": "hullparts", - "amount": 495 - } - ] - } - ] - }, - { - "id": "module_spl_hab_s_01", - "version": 1, - "name": "Split S Parlour", - "macro": "hab_spl_s_01_macro", - "description": "No information available", - "type": "habitation", - "explosionDamage": 1000, - "hull": 120000, - "makerRace": "split", - "workForce": { - "capacity": 250, - "race": "split" - }, - "price": { - "min": 8172621, - "max": 11057075, - "avg": 9614848 - }, - "owners": [ - "freesplit", - "split" - ], - "production": [ - { - "time": 367, - "amount": 1, - "method": "default", - "name": "Universal", - "wares": [ - { - "ware": "claytronics", - "amount": 94 - }, - { - "ware": "energycells", - "amount": 188 - }, - { - "ware": "hullparts", - "amount": 343 - } - ] - } - ] - }, - { - "id": "module_spl_pier_l_01", - "version": 1, - "name": "Split 4-Dock T Pier", - "macro": "pier_spl_harbor_01_macro", - "description": "No information available", - "type": "pier", - "explosionDamage": 1000, - "hull": 750000, - "makerRace": "split", - "price": { - "min": 2946171, - "max": 3985997, - "avg": 3466084 - }, - "owners": [ - "freesplit", - "split" - ], - "production": [ - { - "time": 750, - "amount": 1, - "method": "default", - "name": "Universal", - "wares": [ - { - "ware": "claytronics", - "amount": 542 - }, - { - "ware": "energycells", - "amount": 1083 - }, - { - "ware": "hullparts", - "amount": 1980 - } - ] - } - ] - }, - { - "id": "module_spl_pier_l_02", - "version": 1, - "name": "Split 1-Dock Pier", - "macro": "pier_spl_harbor_02_macro", - "description": "No information available", - "type": "pier", - "explosionDamage": 1000, - "hull": 250000, - "makerRace": "split", - "price": { - "min": 1701192, - "max": 2301612, - "avg": 2001402 - }, - "owners": [ - "freesplit", - "split" - ], - "production": [ - { - "time": 433, - "amount": 1, - "method": "default", - "name": "Universal", - "wares": [ - { - "ware": "claytronics", - "amount": 313 - }, - { - "ware": "energycells", - "amount": 625 - }, - { - "ware": "hullparts", - "amount": 1143 - } - ] - } - ] - }, - { - "id": "module_spl_pier_l_03", - "version": 1, - "name": "Split 3-Dock E Pier", - "macro": "pier_spl_harbor_03_macro", - "description": "No information available", - "type": "pier", - "explosionDamage": 1000, - "hull": 1000000, - "makerRace": "split", - "price": { - "min": 3399016, - "max": 4598668, - "avg": 3998842 - }, - "owners": [ - "freesplit", - "split" - ], - "production": [ - { - "time": 866, - "amount": 1, - "method": "default", - "name": "Universal", - "wares": [ - { - "ware": "claytronics", - "amount": 625 - }, - { - "ware": "energycells", - "amount": 1250 - }, - { - "ware": "hullparts", - "amount": 2287 - } - ] - } - ] - }, - { - "id": "module_spl_prod_cheltmeat_01", - "version": 1, - "name": "Chelt Production", - "macro": "prod_spl_cheltmeat_macro", - "description": "No information available", - "type": "production", - "product": [ - "cheltmeat" - ], - "explosionDamage": 1000, - "hull": 320000, - "makerRace": "split", - "workForce": { - "max": 90 - }, - "price": { - "min": 698188, - "max": 944608, - "avg": 821398 - }, - "owners": [ - "freesplit", - "split" - ], - "shields": [ - { - "group": "top_rear_01", - "size": "medium", - "hittable": true - }, - { - "group": "mid_left_01", - "size": "medium", - "hittable": true - }, - { - "group": "mid_left_02", - "size": "medium", - "hittable": true - }, - { - "group": "top_right_01", - "size": "medium", - "hittable": true - }, - { - "group": "mid_right_02", - "size": "medium", - "hittable": true - }, - { - "group": "mid_right_01", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "top_rear_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_rear_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "mid_left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "mid_left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "mid_left_02", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "mid_left_02", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "mid_right_02", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "mid_right_02", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "mid_right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "mid_right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - } - ], - "production": [ - { - "time": 503, - "amount": 1, - "method": "default", - "name": "Split", - "wares": [ - { - "ware": "claytronics", - "amount": 282 - }, - { - "ware": "energycells", - "amount": 256 - }, - { - "ware": "hullparts", - "amount": 1158 - } - ] - } - ] - }, - { - "id": "module_spl_prod_medicalsupplies_01", - "version": 1, - "name": "Split Medical Supply Production", - "macro": "prod_spl_medicalsupplies_macro", - "description": "No information available", - "type": "production", - "product": [ - "medicalsupplies" - ], - "explosionDamage": 1000, - "hull": 197000, - "makerRace": "split", - "workForce": { - "max": 90 - }, - "price": { - "min": 1223505, - "max": 1655331, - "avg": 1439418 - }, - "owners": [ - "split" - ], - "shields": [ - { - "group": "top_01", - "size": "medium", - "hittable": true - }, - { - "group": "left_01", - "size": "medium", - "hittable": true - }, - { - "group": "right_01", - "size": "medium", - "hittable": true - }, - { - "group": "front_01", - "size": "medium", - "hittable": true - }, - { - "group": "back_01", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "top_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "front_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "front_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "back_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "back_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - } - ], - "production": [ - { - "time": 739, - "amount": 1, - "method": "default", - "name": "Split", - "wares": [ - { - "ware": "claytronics", - "amount": 248 - }, - { - "ware": "energycells", - "amount": 451 - }, - { - "ware": "hullparts", - "amount": 910 - } - ] - } - ] - }, - { - "id": "module_spl_prod_scruffinfruits_01", - "version": 1, - "name": "Scruffin Production", - "macro": "prod_spl_scruffinfruit_macro", - "description": "No information available", - "type": "production", - "product": [ - "scruffinfruits" - ], - "explosionDamage": 1000, - "hull": 280000, - "makerRace": "split", - "workForce": { - "max": 90 - }, - "price": { - "min": 829662, - "max": 1122484, - "avg": 976073 - }, - "owners": [ - "freesplit", - "split" - ], - "shields": [ - { - "group": "top_right_02", - "size": "medium", - "hittable": true - }, - { - "group": "down_01", - "size": "medium", - "hittable": true - }, - { - "group": "top_left_01", - "size": "medium", - "hittable": true - }, - { - "group": "top_right_01", - "size": "medium", - "hittable": true - }, - { - "group": "down_01", - "size": "medium", - "hittable": true - }, - { - "group": "top_left_02", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "top_right_02", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_right_02", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "down_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "down_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "down_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "down_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_left_02", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_left_02", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - } - ], - "production": [ - { - "time": 598, - "amount": 1, - "method": "default", - "name": "Split", - "wares": [ - { - "ware": "claytronics", - "amount": 335 - }, - { - "ware": "energycells", - "amount": 305 - }, - { - "ware": "hullparts", - "amount": 1377 - } - ] - } - ] - }, - { - "id": "module_spl_stor_container_l_01", - "version": 1, - "name": "Split L Container Storage", - "macro": "storage_spl_l_container_01_macro", - "description": "No information available", - "type": "storage", - "explosionDamage": 1000, - "hull": 778000, - "makerRace": "split", - "cargo": { - "max": 1000000, - "type": "container" - }, - "price": { - "min": 734191, - "max": 993317, - "avg": 863754 - }, - "owners": [ - "freesplit", - "split" - ], - "shields": [ - { - "group": "top_left_01", - "size": "medium", - "hittable": true - }, - { - "group": "top_right_01", - "size": "medium", - "hittable": true - }, - { - "group": "bottom_right_01", - "size": "medium", - "hittable": true - }, - { - "group": "bottom_left_01", - "size": "medium", - "hittable": true - }, - { - "group": "front_01", - "size": "medium", - "hittable": true - }, - { - "group": "back_01", - "size": "medium", - "hittable": true - }, - { - "group": "top_01", - "size": "medium", - "hittable": true - }, - { - "group": "front_02", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "top_left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "bottom_right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "bottom_right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "bottom_left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "bottom_left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "front_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "front_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "back_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "back_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "front_02", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "front_02", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - } - ], - "production": [ - { - "time": 683, - "amount": 1, - "method": "default", - "name": "Universal", - "wares": [ - { - "ware": "claytronics", - "amount": 135 - }, - { - "ware": "energycells", - "amount": 270 - }, - { - "ware": "hullparts", - "amount": 494 - } - ] - } - ] - }, - { - "id": "module_spl_stor_container_m_01", - "version": 1, - "name": "Split M Container Storage", - "macro": "storage_spl_m_container_01_macro", - "description": "No information available", - "type": "storage", - "explosionDamage": 800, - "hull": 345000, - "makerRace": "split", - "cargo": { - "max": 100000, - "type": "container" - }, - "price": { - "min": 489314, - "max": 662014, - "avg": 575664 - }, - "owners": [ - "freesplit", - "split" - ], - "shields": [ - { - "group": "right_01", - "size": "medium", - "hittable": true - }, - { - "group": "left_01", - "size": "medium", - "hittable": true - }, - { - "group": "back_01", - "size": "medium", - "hittable": true - }, - { - "group": "front_01", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "back_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "back_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "front_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "front_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - } - ], - "production": [ - { - "time": 455, - "amount": 1, - "method": "default", - "name": "Universal", - "wares": [ - { - "ware": "claytronics", - "amount": 90 - }, - { - "ware": "energycells", - "amount": 180 - }, - { - "ware": "hullparts", - "amount": 329 - } - ] - } - ] - }, - { - "id": "module_spl_stor_container_s_01", - "version": 1, - "name": "Split S Container Storage", - "macro": "storage_spl_s_container_01_macro", - "description": "No information available", - "type": "storage", - "explosionDamage": 500, - "hull": 157000, - "makerRace": "split", - "cargo": { - "max": 25000, - "type": "container" - }, - "price": { - "min": 331199, - "max": 448093, - "avg": 389646 - }, - "owners": [ - "freesplit", - "split" - ], - "shields": [ - { - "group": "left_01", - "size": "medium", - "hittable": true - }, - { - "group": "top_01", - "size": "medium", - "hittable": true - }, - { - "group": "bottom_01", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "bottom_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "bottom_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - } - ], - "production": [ - { - "time": 307, - "amount": 1, - "method": "default", - "name": "Universal", - "wares": [ - { - "ware": "claytronics", - "amount": 61 - }, - { - "ware": "energycells", - "amount": 121 - }, - { - "ware": "hullparts", - "amount": 222 - } - ] - } - ] - }, - { - "id": "module_spl_stor_liquid_l_01", - "version": 1, - "name": "Split L Liquid Storage", - "macro": "storage_spl_l_liquid_01_macro", - "description": "No information available", - "type": "storage", - "explosionDamage": 1000, - "hull": 778000, - "makerRace": "split", - "cargo": { - "max": 1000000, - "type": "liquid" - }, - "price": { - "min": 734191, - "max": 993317, - "avg": 863754 - }, - "owners": [ - "freesplit", - "split" - ], - "shields": [ - { - "group": "top_left_01", - "size": "medium", - "hittable": true - }, - { - "group": "top_right_01", - "size": "medium", - "hittable": true - }, - { - "group": "bottom_right_01", - "size": "medium", - "hittable": true - }, - { - "group": "bottom_left_01", - "size": "medium", - "hittable": true - }, - { - "group": "front_01", - "size": "medium", - "hittable": true - }, - { - "group": "back_01", - "size": "medium", - "hittable": true - }, - { - "group": "top_01", - "size": "medium", - "hittable": true - }, - { - "group": "front_02", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "top_left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "bottom_right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "bottom_right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "bottom_left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "bottom_left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "front_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "front_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "back_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "back_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "front_02", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "front_02", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - } - ], - "production": [ - { - "time": 683, - "amount": 1, - "method": "default", - "name": "Universal", - "wares": [ - { - "ware": "claytronics", - "amount": 135 - }, - { - "ware": "energycells", - "amount": 270 - }, - { - "ware": "hullparts", - "amount": 494 - } - ] - } - ] - }, - { - "id": "module_spl_stor_liquid_m_01", - "version": 1, - "name": "Split M Liquid Storage", - "macro": "storage_spl_m_liquid_01_macro", - "description": "No information available", - "type": "storage", - "explosionDamage": 800, - "hull": 345000, - "makerRace": "split", - "cargo": { - "max": 500000, - "type": "liquid" - }, - "price": { - "min": 489314, - "max": 662014, - "avg": 575664 - }, - "owners": [ - "freesplit", - "split" - ], - "shields": [ - { - "group": "right_01", - "size": "medium", - "hittable": true - }, - { - "group": "left_01", - "size": "medium", - "hittable": true - }, - { - "group": "back_01", - "size": "medium", - "hittable": true - }, - { - "group": "front_01", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "back_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "back_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "front_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "front_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - } - ], - "production": [ - { - "time": 455, - "amount": 1, - "method": "default", - "name": "Universal", - "wares": [ - { - "ware": "claytronics", - "amount": 90 - }, - { - "ware": "energycells", - "amount": 180 - }, - { - "ware": "hullparts", - "amount": 329 - } - ] - } - ] - }, - { - "id": "module_spl_stor_liquid_s_01", - "version": 1, - "name": "Split S Liquid Storage", - "macro": "storage_spl_s_liquid_01_macro", - "description": "No information available", - "type": "storage", - "explosionDamage": 500, - "hull": 157000, - "makerRace": "split", - "cargo": { - "max": 100000, - "type": "liquid" - }, - "price": { - "min": 331199, - "max": 448093, - "avg": 389646 - }, - "owners": [ - "freesplit", - "split" - ], - "shields": [ - { - "group": "left_01", - "size": "medium", - "hittable": true - }, - { - "group": "top_01", - "size": "medium", - "hittable": true - }, - { - "group": "bottom_01", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "bottom_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "bottom_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - } - ], - "production": [ - { - "time": 307, - "amount": 1, - "method": "default", - "name": "Universal", - "wares": [ - { - "ware": "claytronics", - "amount": 61 - }, - { - "ware": "energycells", - "amount": 121 - }, - { - "ware": "hullparts", - "amount": 222 - } - ] - } - ] - }, - { - "id": "module_spl_stor_solid_l_01", - "version": 1, - "name": "Split L Solid Storage", - "macro": "storage_spl_l_solid_01_macro", - "description": "No information available", - "type": "storage", - "explosionDamage": 1000, - "hull": 778000, - "makerRace": "split", - "cargo": { - "max": 1000000, - "type": "solid" - }, - "price": { - "min": 734191, - "max": 993317, - "avg": 863754 - }, - "owners": [ - "freesplit", - "split" - ], - "shields": [ - { - "group": "top_left_01", - "size": "medium", - "hittable": true - }, - { - "group": "top_right_01", - "size": "medium", - "hittable": true - }, - { - "group": "bottom_right_01", - "size": "medium", - "hittable": true - }, - { - "group": "bottom_left_01", - "size": "medium", - "hittable": true - }, - { - "group": "front_01", - "size": "medium", - "hittable": true - }, - { - "group": "back_01", - "size": "medium", - "hittable": true - }, - { - "group": "top_01", - "size": "medium", - "hittable": true - }, - { - "group": "front_02", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "top_left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "bottom_right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "bottom_right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "bottom_left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "bottom_left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "front_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "front_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "back_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "back_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "front_02", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "front_02", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - } - ], - "production": [ - { - "time": 683, - "amount": 1, - "method": "default", - "name": "Universal", - "wares": [ - { - "ware": "claytronics", - "amount": 135 - }, - { - "ware": "energycells", - "amount": 270 - }, - { - "ware": "hullparts", - "amount": 494 - } - ] - } - ] - }, - { - "id": "module_spl_stor_solid_m_01", - "version": 1, - "name": "Split M Solid Storage", - "macro": "storage_spl_m_solid_01_macro", - "description": "No information available", - "type": "storage", - "explosionDamage": 800, - "hull": 345000, - "makerRace": "split", - "cargo": { - "max": 500000, - "type": "solid" - }, - "price": { - "min": 489314, - "max": 662014, - "avg": 575664 - }, - "owners": [ - "freesplit", - "split" - ], - "shields": [ - { - "group": "right_01", - "size": "medium", - "hittable": true - }, - { - "group": "left_01", - "size": "medium", - "hittable": true - }, - { - "group": "back_01", - "size": "medium", - "hittable": true - }, - { - "group": "front_01", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "right_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "back_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "back_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "front_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "front_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - } - ], - "production": [ - { - "time": 455, - "amount": 1, - "method": "default", - "name": "Universal", - "wares": [ - { - "ware": "claytronics", - "amount": 90 - }, - { - "ware": "energycells", - "amount": 180 - }, - { - "ware": "hullparts", - "amount": 329 - } - ] - } - ] - }, - { - "id": "module_spl_stor_solid_s_01", - "version": 1, - "name": "Split S Solid Storage", - "macro": "storage_spl_s_solid_01_macro", - "description": "No information available", - "type": "storage", - "explosionDamage": 500, - "hull": 157000, - "makerRace": "split", - "cargo": { - "max": 100000, - "type": "solid" - }, - "price": { - "min": 331199, - "max": 448093, - "avg": 389646 - }, - "owners": [ - "freesplit", - "split" - ], - "shields": [ - { - "group": "left_01", - "size": "medium", - "hittable": true - }, - { - "group": "top_01", - "size": "medium", - "hittable": true - }, - { - "group": "bottom_01", - "size": "medium", - "hittable": true - } - ], - "turrets": [ - { - "group": "left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "left_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "top_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "bottom_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - }, - { - "group": "bottom_01", - "size": "medium", - "hittable": true, - "types": [ - "standard", - "missile" - ] - } - ], - "production": [ - { - "time": 307, - "amount": 1, - "method": "default", - "name": "Universal", - "wares": [ - { - "ware": "claytronics", - "amount": 61 - }, - { - "ware": "energycells", - "amount": 121 - }, - { - "ware": "hullparts", - "amount": 222 - } - ] - } - ] - }, { "id": "module_tel_conn_base_01", "version": 0, @@ -24005,6 +16981,3141 @@ } ] }, + { + "id": "module_spl_conn_base_01", + "version": 1, + "name": "Split Base Connection Structure 01", + "macro": "struct_spl_base_01_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 150000, + "makerRace": "split", + "price": { + "min": 92363, + "max": 124961, + "avg": 108662 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 59, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 14 + }, + { + "ware": "energycells", + "amount": 27 + }, + { + "ware": "hullparts", + "amount": 50 + } + ] + } + ] + }, + { + "id": "module_spl_conn_base_02", + "version": 1, + "name": "Split Base Connection Structure 02", + "macro": "struct_spl_base_02_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 237000, + "makerRace": "split", + "price": { + "min": 75585, + "max": 102263, + "avg": 88924 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 53, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 17 + }, + { + "ware": "energycells", + "amount": 34 + }, + { + "ware": "hullparts", + "amount": 62 + } + ] + } + ] + }, + { + "id": "module_spl_conn_base_03", + "version": 1, + "name": "Split Base Connection Structure 03", + "macro": "struct_spl_base_03_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 280000, + "makerRace": "split", + "price": { + "min": 98841, + "max": 133727, + "avg": 116284 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 72, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 18 + }, + { + "ware": "energycells", + "amount": 37 + }, + { + "ware": "hullparts", + "amount": 68 + } + ] + } + ] + }, + { + "id": "module_spl_conn_cross_01", + "version": 1, + "name": "Split Cross Connection Structure 01", + "macro": "struct_spl_cross_01_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 120000, + "makerRace": "split", + "price": { + "min": 65300, + "max": 88348, + "avg": 76824 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 47, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 12 + }, + { + "ware": "energycells", + "amount": 24 + }, + { + "ware": "hullparts", + "amount": 44 + } + ] + } + ] + }, + { + "id": "module_spl_conn_vertical_01", + "version": 1, + "name": "Split Vertical Connection Structure 01", + "macro": "struct_spl_vertical_01_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 79000, + "makerRace": "split", + "price": { + "min": 54125, + "max": 73227, + "avg": 63676 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 38, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 10 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "hullparts", + "amount": 36 + } + ] + } + ] + }, + { + "id": "module_spl_conn_vertical_02", + "version": 1, + "name": "Split Vertical Connection Structure 02", + "macro": "struct_spl_vertical_02_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 143000, + "makerRace": "split", + "price": { + "min": 70888, + "max": 95908, + "avg": 83398 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 52, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 13 + }, + { + "ware": "energycells", + "amount": 26 + }, + { + "ware": "hullparts", + "amount": 48 + } + ] + } + ] + }, + { + "id": "module_spl_def_claim_01", + "version": 1, + "name": "Split Administrative Centre", + "macro": "defence_spl_claim_01_macro", + "description": "No information available", + "type": "defencemodule", + "explosionDamage": 2000, + "hull": 520000, + "makerRace": "split", + "price": { + "min": 750516, + "max": 1015404, + "avg": 882960 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 541, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 138 + }, + { + "ware": "energycells", + "amount": 276 + }, + { + "ware": "hullparts", + "amount": 505 + } + ] + } + ] + }, + { + "id": "module_spl_def_disc_01", + "version": 1, + "name": "Split Disc Defence Platform", + "macro": "defence_spl_disc_01_macro", + "description": "No information available", + "type": "defencemodule", + "explosionDamage": 1200, + "hull": 197400, + "makerRace": "split", + "price": { + "min": 570940, + "max": 772448, + "avg": 671694 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "group01", + "size": "medium", + "hittable": true + }, + { + "group": "group04", + "size": "medium", + "hittable": true + }, + { + "group": "group06", + "size": "medium", + "hittable": true + }, + { + "group": "group02", + "size": "medium", + "hittable": true + }, + { + "group": "group05", + "size": "medium", + "hittable": true + }, + { + "group": "group03", + "size": "medium", + "hittable": true + }, + { + "group": "group11", + "size": "large", + "hittable": false + }, + { + "group": "group12", + "size": "large", + "hittable": false + }, + { + "group": "group07", + "size": "large", + "hittable": false + }, + { + "group": "group08", + "size": "large", + "hittable": false + }, + { + "group": "group09", + "size": "large", + "hittable": false + }, + { + "group": "group10", + "size": "large", + "hittable": false + } + ], + "turrets": [ + { + "group": "group11", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group11", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group10", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group10", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group12", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group12", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group07", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group07", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group08", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group08", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group09", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group09", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 410, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 105 + }, + { + "ware": "energycells", + "amount": 210 + }, + { + "ware": "hullparts", + "amount": 384 + } + ] + } + ] + }, + { + "id": "module_spl_def_tube_01", + "version": 1, + "name": "Split Bridge Defence Platform", + "macro": "defence_spl_tube_01_macro", + "description": "No information available", + "type": "defencemodule", + "explosionDamage": 1200, + "hull": 148800, + "makerRace": "split", + "price": { + "min": 570940, + "max": 772448, + "avg": 671694 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "group06", + "size": "large", + "hittable": false + }, + { + "group": "group05", + "size": "large", + "hittable": false + }, + { + "group": "group08", + "size": "large", + "hittable": false + }, + { + "group": "group07", + "size": "large", + "hittable": false + }, + { + "group": "group01", + "size": "medium", + "hittable": true + }, + { + "group": "group04", + "size": "medium", + "hittable": true + }, + { + "group": "group02", + "size": "medium", + "hittable": true + }, + { + "group": "group03", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group08", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group07", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group07", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group08", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 410, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 105 + }, + { + "ware": "energycells", + "amount": 210 + }, + { + "ware": "hullparts", + "amount": 384 + } + ] + } + ] + }, + { + "id": "module_spl_hab_l_01", + "version": 1, + "name": "Split L Parlour", + "macro": "hab_spl_l_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 500000, + "makerRace": "split", + "workForce": { + "capacity": 1000, + "race": "split" + }, + "price": { + "min": 16627714, + "max": 22496318, + "avg": 19562016 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 750, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 191 + }, + { + "ware": "energycells", + "amount": 383 + }, + { + "ware": "hullparts", + "amount": 700 + } + ] + } + ] + }, + { + "id": "module_spl_hab_m_01", + "version": 1, + "name": "Split M Parlour", + "macro": "hab_spl_m_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 250000, + "makerRace": "split", + "workForce": { + "capacity": 500, + "race": "split" + }, + "price": { + "min": 11754290, + "max": 15902862, + "avg": 13828576 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 530, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 135 + }, + { + "ware": "energycells", + "amount": 271 + }, + { + "ware": "hullparts", + "amount": 495 + } + ] + } + ] + }, + { + "id": "module_spl_hab_s_01", + "version": 1, + "name": "Split S Parlour", + "macro": "hab_spl_s_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 120000, + "makerRace": "split", + "workForce": { + "capacity": 250, + "race": "split" + }, + "price": { + "min": 8172621, + "max": 11057075, + "avg": 9614848 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 367, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 94 + }, + { + "ware": "energycells", + "amount": 188 + }, + { + "ware": "hullparts", + "amount": 343 + } + ] + } + ] + }, + { + "id": "module_spl_pier_l_01", + "version": 1, + "name": "Split 4-Dock T Pier", + "macro": "pier_spl_harbor_01_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 750000, + "makerRace": "split", + "price": { + "min": 2946171, + "max": 3985997, + "avg": 3466084 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 750, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 542 + }, + { + "ware": "energycells", + "amount": 1083 + }, + { + "ware": "hullparts", + "amount": 1980 + } + ] + } + ] + }, + { + "id": "module_spl_pier_l_02", + "version": 1, + "name": "Split 1-Dock Pier", + "macro": "pier_spl_harbor_02_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 250000, + "makerRace": "split", + "price": { + "min": 1701192, + "max": 2301612, + "avg": 2001402 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 433, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 313 + }, + { + "ware": "energycells", + "amount": 625 + }, + { + "ware": "hullparts", + "amount": 1143 + } + ] + } + ] + }, + { + "id": "module_spl_pier_l_03", + "version": 1, + "name": "Split 3-Dock E Pier", + "macro": "pier_spl_harbor_03_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 1000000, + "makerRace": "split", + "price": { + "min": 3399016, + "max": 4598668, + "avg": 3998842 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 866, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 625 + }, + { + "ware": "energycells", + "amount": 1250 + }, + { + "ware": "hullparts", + "amount": 2287 + } + ] + } + ] + }, + { + "id": "module_spl_prod_cheltmeat_01", + "version": 1, + "name": "Chelt Production", + "macro": "prod_spl_cheltmeat_macro", + "description": "No information available", + "type": "production", + "product": [ + "cheltmeat" + ], + "explosionDamage": 1000, + "hull": 320000, + "makerRace": "split", + "workForce": { + "max": 90 + }, + "price": { + "min": 698188, + "max": 944608, + "avg": 821398 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "top_rear_01", + "size": "medium", + "hittable": true + }, + { + "group": "mid_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "mid_left_02", + "size": "medium", + "hittable": true + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "mid_right_02", + "size": "medium", + "hittable": true + }, + { + "group": "mid_right_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_rear_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_rear_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "mid_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "mid_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "mid_left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "mid_left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "mid_right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "mid_right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "mid_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "mid_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 503, + "amount": 1, + "method": "default", + "name": "Split", + "wares": [ + { + "ware": "claytronics", + "amount": 282 + }, + { + "ware": "energycells", + "amount": 256 + }, + { + "ware": "hullparts", + "amount": 1158 + } + ] + } + ] + }, + { + "id": "module_spl_prod_medicalsupplies_01", + "version": 1, + "name": "Split Medical Supply Production", + "macro": "prod_spl_medicalsupplies_macro", + "description": "No information available", + "type": "production", + "product": [ + "medicalsupplies" + ], + "explosionDamage": 1000, + "hull": 197000, + "makerRace": "split", + "workForce": { + "max": 90 + }, + "price": { + "min": 1223505, + "max": 1655331, + "avg": 1439418 + }, + "owners": [ + "split" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 739, + "amount": 1, + "method": "default", + "name": "Split", + "wares": [ + { + "ware": "claytronics", + "amount": 248 + }, + { + "ware": "energycells", + "amount": 451 + }, + { + "ware": "hullparts", + "amount": 910 + } + ] + } + ] + }, + { + "id": "module_spl_prod_scruffinfruits_01", + "version": 1, + "name": "Scruffin Production", + "macro": "prod_spl_scruffinfruit_macro", + "description": "No information available", + "type": "production", + "product": [ + "scruffinfruits" + ], + "explosionDamage": 1000, + "hull": 280000, + "makerRace": "split", + "workForce": { + "max": 90 + }, + "price": { + "min": 829662, + "max": 1122484, + "avg": 976073 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "top_right_02", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_left_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 598, + "amount": 1, + "method": "default", + "name": "Split", + "wares": [ + { + "ware": "claytronics", + "amount": 335 + }, + { + "ware": "energycells", + "amount": 305 + }, + { + "ware": "hullparts", + "amount": 1377 + } + ] + } + ] + }, + { + "id": "module_spl_stor_container_l_01", + "version": 1, + "name": "Split L Container Storage", + "macro": "storage_spl_l_container_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 778000, + "makerRace": "split", + "cargo": { + "max": 1000000, + "type": "container" + }, + "price": { + "min": 734191, + "max": 993317, + "avg": 863754 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "top_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 683, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 135 + }, + { + "ware": "energycells", + "amount": 270 + }, + { + "ware": "hullparts", + "amount": 494 + } + ] + } + ] + }, + { + "id": "module_spl_stor_container_m_01", + "version": 1, + "name": "Split M Container Storage", + "macro": "storage_spl_m_container_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 800, + "hull": 345000, + "makerRace": "split", + "cargo": { + "max": 100000, + "type": "container" + }, + "price": { + "min": 489314, + "max": 662014, + "avg": 575664 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 455, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 90 + }, + { + "ware": "energycells", + "amount": 180 + }, + { + "ware": "hullparts", + "amount": 329 + } + ] + } + ] + }, + { + "id": "module_spl_stor_container_s_01", + "version": 1, + "name": "Split S Container Storage", + "macro": "storage_spl_s_container_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 500, + "hull": 157000, + "makerRace": "split", + "cargo": { + "max": 25000, + "type": "container" + }, + "price": { + "min": 331199, + "max": 448093, + "avg": 389646 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 307, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 61 + }, + { + "ware": "energycells", + "amount": 121 + }, + { + "ware": "hullparts", + "amount": 222 + } + ] + } + ] + }, + { + "id": "module_spl_stor_liquid_l_01", + "version": 1, + "name": "Split L Liquid Storage", + "macro": "storage_spl_l_liquid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 778000, + "makerRace": "split", + "cargo": { + "max": 1000000, + "type": "liquid" + }, + "price": { + "min": 734191, + "max": 993317, + "avg": 863754 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "top_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 683, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 135 + }, + { + "ware": "energycells", + "amount": 270 + }, + { + "ware": "hullparts", + "amount": 494 + } + ] + } + ] + }, + { + "id": "module_spl_stor_liquid_m_01", + "version": 1, + "name": "Split M Liquid Storage", + "macro": "storage_spl_m_liquid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 800, + "hull": 345000, + "makerRace": "split", + "cargo": { + "max": 500000, + "type": "liquid" + }, + "price": { + "min": 489314, + "max": 662014, + "avg": 575664 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 455, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 90 + }, + { + "ware": "energycells", + "amount": 180 + }, + { + "ware": "hullparts", + "amount": 329 + } + ] + } + ] + }, + { + "id": "module_spl_stor_liquid_s_01", + "version": 1, + "name": "Split S Liquid Storage", + "macro": "storage_spl_s_liquid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 500, + "hull": 157000, + "makerRace": "split", + "cargo": { + "max": 100000, + "type": "liquid" + }, + "price": { + "min": 331199, + "max": 448093, + "avg": 389646 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 307, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 61 + }, + { + "ware": "energycells", + "amount": 121 + }, + { + "ware": "hullparts", + "amount": 222 + } + ] + } + ] + }, + { + "id": "module_spl_stor_solid_l_01", + "version": 1, + "name": "Split L Solid Storage", + "macro": "storage_spl_l_solid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 778000, + "makerRace": "split", + "cargo": { + "max": 1000000, + "type": "solid" + }, + "price": { + "min": 734191, + "max": 993317, + "avg": 863754 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "top_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 683, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 135 + }, + { + "ware": "energycells", + "amount": 270 + }, + { + "ware": "hullparts", + "amount": 494 + } + ] + } + ] + }, + { + "id": "module_spl_stor_solid_m_01", + "version": 1, + "name": "Split M Solid Storage", + "macro": "storage_spl_m_solid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 800, + "hull": 345000, + "makerRace": "split", + "cargo": { + "max": 500000, + "type": "solid" + }, + "price": { + "min": 489314, + "max": 662014, + "avg": 575664 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 455, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 90 + }, + { + "ware": "energycells", + "amount": 180 + }, + { + "ware": "hullparts", + "amount": 329 + } + ] + } + ] + }, + { + "id": "module_spl_stor_solid_s_01", + "version": 1, + "name": "Split S Solid Storage", + "macro": "storage_spl_s_solid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 500, + "hull": 157000, + "makerRace": "split", + "cargo": { + "max": 100000, + "type": "solid" + }, + "price": { + "min": 331199, + "max": 448093, + "avg": 389646 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 307, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 61 + }, + { + "ware": "energycells", + "amount": 121 + }, + { + "ware": "hullparts", + "amount": 222 + } + ] + } + ] + }, { "id": "module_ter_build_dockarea_m_01", "version": 1, @@ -28369,5 +24480,3894 @@ ] } ] + }, + { + "id": "module_pir_hab_l_01", + "version": 1, + "name": "Argon L Dormitory", + "macro": "hab_pir_l_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 500000, + "makerRace": "argon", + "workForce": { + "capacity": 1000, + "race": "argon" + }, + "price": { + "min": 17721792, + "max": 26352612, + "avg": 22037202 + }, + "owners": [ + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 1155, + "amount": 1, + "method": "default", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 420 + }, + { + "ware": "energycells", + "amount": 383 + }, + { + "ware": "hullparts", + "amount": 1729 + } + ] + } + ] + }, + { + "id": "module_pir_hab_m_01", + "version": 1, + "name": "Argon M Dormitory", + "macro": "hab_pir_m_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 250000, + "makerRace": "argon", + "workForce": { + "capacity": 500, + "race": "argon" + }, + "price": { + "min": 12530160, + "max": 18631944, + "avg": 15581052 + }, + "owners": [ + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 816, + "amount": 1, + "method": "default", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 297 + }, + { + "ware": "energycells", + "amount": 271 + }, + { + "ware": "hullparts", + "amount": 1222 + } + ] + } + ] + }, + { + "id": "module_pir_hab_s_01", + "version": 1, + "name": "Argon S Dormitory", + "macro": "hab_pir_s_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 120000, + "makerRace": "argon", + "workForce": { + "capacity": 250, + "race": "argon" + }, + "price": { + "min": 8689428, + "max": 12920328, + "avg": 10804878 + }, + "owners": [ + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 566, + "amount": 1, + "method": "default", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 206 + }, + { + "ware": "energycells", + "amount": 188 + }, + { + "ware": "hullparts", + "amount": 847 + } + ] + } + ] + }, + { + "id": "module_pir_stor_condensate_l_01", + "version": 1, + "name": "Protectyon Shield Generator", + "macro": "storage_pir_l_condensate_01_macro", + "description": "The Protectyon Shield Generator was designed by the Northriver Company's Research and Development team. It is constructed in such a way that, when supplied with Protectyon condensate, it generates shielding that protects the entire station from the devastating effects of the Tide. As part of this process the Protectyon is depleted. Due to the high potency of Protectyon, and the incredible volatility inherent in such a substance, the module's design only allows for a small storage capacity.", + "type": "storage", + "explosionDamage": 1000, + "hull": 1000000, + "cargo": { + "max": 50, + "type": "condensate" + }, + "price": { + "min": 1433988, + "max": 2146384, + "avg": 1790186 + }, + "owners": [ + "scavenger" + ], + "shields": [ + { + "group": "column_02_l", + "size": "medium", + "hittable": true + }, + { + "group": "column_02_r", + "size": "medium", + "hittable": true + }, + { + "group": "column_03_r", + "size": "medium", + "hittable": true + }, + { + "group": "column_03_l", + "size": "medium", + "hittable": true + }, + { + "group": "column_01_l", + "size": "medium", + "hittable": true + }, + { + "group": "column_01_r", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "column_02_l", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "column_02_l", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "column_02_r", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "column_02_r", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "column_03_r", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "column_03_r", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "column_03_l", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "column_03_l", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "column_01_l", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "column_01_l", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "column_01_r", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "column_01_r", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 1033, + "amount": 1, + "method": "default", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 291 + }, + { + "ware": "energycells", + "amount": 265 + }, + { + "ware": "hullparts", + "amount": 1198 + } + ] + } + ] + }, + { + "id": "module_bor_build_dockarea_m_01", + "version": 1, + "name": "Boron S/M Ship Fabrication Bay", + "macro": "buildmodule_bor_ships_m_dockarea_01_macro", + "description": "No information available", + "type": "buildmodule", + "explosionDamage": 2500, + "hull": 245000, + "makerRace": "boron", + "workForce": { + "max": 800 + }, + "price": { + "min": 94609703, + "max": 128001363, + "avg": 111305533 + }, + "owners": [ + "boron" + ], + "docks": [ + { + "capacity": 30, + "size": "medium" + }, + { + "capacity": 100, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "production": [ + { + "time": 688, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 818 + }, + { + "ware": "energycells", + "amount": 8696 + }, + { + "ware": "hullparts", + "amount": 2663 + }, + { + "ware": "water", + "amount": 7875 + } + ] + } + ] + }, + { + "id": "module_bor_build_l_01", + "version": 1, + "name": "Boron L Ship Fabrication Bay", + "macro": "buildmodule_bor_ships_l_macro", + "description": "No information available", + "type": "buildmodule", + "hull": 450000, + "makerRace": "boron", + "workForce": { + "max": 700 + }, + "price": { + "min": 198161899, + "max": 268101393, + "avg": 233131646 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 722, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 1714 + }, + { + "ware": "energycells", + "amount": 18213 + }, + { + "ware": "hullparts", + "amount": 5577 + }, + { + "ware": "water", + "amount": 16495 + } + ] + } + ] + }, + { + "id": "module_bor_build_xl_01", + "version": 1, + "name": "Boron XL Ship Fabrication Bay", + "macro": "buildmodule_bor_ships_xl_macro", + "description": "No information available", + "type": "buildmodule", + "explosionDamage": 0, + "hull": 780000, + "makerRace": "boron", + "workForce": { + "max": 500 + }, + "price": { + "min": 201558642, + "max": 272696986, + "avg": 237127814 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 1252, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 1744 + }, + { + "ware": "energycells", + "amount": 18526 + }, + { + "ware": "hullparts", + "amount": 5673 + }, + { + "ware": "water", + "amount": 16778 + } + ] + } + ] + }, + { + "id": "module_bor_conn_base_01", + "version": 1, + "name": "Boron Base Connection Structure 01", + "macro": "struct_bor_base_01_macro", + "description": "No information available", + "type": "connectionmodule", + "explosionDamage": 1000, + "hull": 74000, + "makerRace": "boron", + "price": { + "min": 83144, + "max": 112490, + "avg": 97817 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 38, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 9 + }, + { + "ware": "energycells", + "amount": 275 + }, + { + "ware": "hullparts", + "amount": 63 + }, + { + "ware": "water", + "amount": 166 + } + ] + } + ] + }, + { + "id": "module_bor_conn_base_02", + "version": 1, + "name": "Boron Base Connection Structure 02", + "macro": "struct_bor_base_02_macro", + "description": "No information available", + "type": "connectionmodule", + "explosionDamage": 1000, + "hull": 140000, + "makerRace": "boron", + "price": { + "min": 10600, + "max": 137458, + "avg": 119529 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 72, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 11 + }, + { + "ware": "energycells", + "amount": 336 + }, + { + "ware": "hullparts", + "amount": 77 + }, + { + "ware": "water", + "amount": 203 + } + ] + } + ] + }, + { + "id": "module_bor_conn_base_03", + "version": 1, + "name": "Boron Base Connection Structure 03", + "macro": "struct_bor_base_03_macro", + "description": "No information available", + "type": "connectionmodule", + "explosionDamage": 1000, + "hull": 213000, + "makerRace": "boron", + "price": { + "min": 108726, + "max": 147100, + "avg": 127913 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 109, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 11 + }, + { + "ware": "energycells", + "amount": 360 + }, + { + "ware": "hullparts", + "amount": 83 + }, + { + "ware": "water", + "amount": 217 + } + ] + } + ] + }, + { + "id": "module_bor_conn_base_04", + "version": 1, + "name": "Boron Base Connection Structure 04", + "macro": "struct_bor_base_04_macro", + "description": "No information available", + "type": "connectionmodule", + "explosionDamage": 1000, + "hull": 225000, + "makerRace": "boron", + "price": { + "min": 114908, + "max": 155464, + "avg": 135186 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 115, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 12 + }, + { + "ware": "energycells", + "amount": 380 + }, + { + "ware": "hullparts", + "amount": 87 + }, + { + "ware": "water", + "amount": 230 + } + ] + } + ] + }, + { + "id": "module_bor_conn_base_05", + "version": 1, + "name": "Boron Base Connection Structure 05", + "macro": "struct_bor_base_05_macro", + "description": "No information available", + "type": "connectionmodule", + "explosionDamage": 1000, + "hull": 260000, + "makerRace": "boron", + "price": { + "min": 126095, + "max": 170599, + "avg": 148347 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 133, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 13 + }, + { + "ware": "energycells", + "amount": 417 + }, + { + "ware": "hullparts", + "amount": 96 + }, + { + "ware": "water", + "amount": 252 + } + ] + } + ] + }, + { + "id": "module_bor_conn_cross_01", + "version": 1, + "name": "Boron Cross Connection Structure 01", + "macro": "struct_bor_cross_01_macro", + "description": "No information available", + "type": "connectionmodule", + "explosionDamage": 1000, + "hull": 110000, + "makerRace": "boron", + "price": { + "min": 71831, + "max": 97183, + "avg": 84507 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 56, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 7 + }, + { + "ware": "energycells", + "amount": 238 + }, + { + "ware": "hullparts", + "amount": 55 + }, + { + "ware": "water", + "amount": 144 + } + ] + } + ] + }, + { + "id": "module_bor_conn_cross_02", + "version": 1, + "name": "Boron Cross Connection Structure 02", + "macro": "struct_bor_cross_02_macro", + "description": "No information available", + "type": "connectionmodule", + "explosionDamage": 1000, + "hull": 165000, + "makerRace": "boron", + "price": { + "min": 89522, + "max": 121118, + "avg": 105320 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 85, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 9 + }, + { + "ware": "energycells", + "amount": 296 + }, + { + "ware": "hullparts", + "amount": 68 + }, + { + "ware": "water", + "amount": 179 + } + ] + } + ] + }, + { + "id": "module_bor_conn_vertical_01", + "version": 1, + "name": "Boron Vertical Connection Structure 01", + "macro": "struct_bor_vertical_01_macro", + "description": "No information available", + "type": "connectionmodule", + "explosionDamage": 1000, + "hull": 68000, + "makerRace": "boron", + "price": { + "min": 59537, + "max": 80551, + "avg": 70044 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 35, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 197 + }, + { + "ware": "hullparts", + "amount": 45 + }, + { + "ware": "water", + "amount": 119 + } + ] + } + ] + }, + { + "id": "module_bor_conn_vertical_02", + "version": 1, + "name": "Boron Vertical Connection Structure 02", + "macro": "struct_bor_vertical_02_macro", + "description": "No information available", + "type": "connectionmodule", + "explosionDamage": 1000, + "hull": 132000, + "makerRace": "boron", + "price": { + "min": 77977, + "max": 105499, + "avg": 91738 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 68, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 258 + }, + { + "ware": "hullparts", + "amount": 59 + }, + { + "ware": "water", + "amount": 156 + } + ] + } + ] + }, + { + "id": "module_bor_def_claim_01", + "version": 1, + "name": "Boron Administrative Centre", + "macro": "defence_bor_claim_01_macro", + "description": "No information available", + "type": "defencemodule", + "explosionDamage": 2000, + "hull": 435000, + "makerRace": "boron", + "price": { + "min": 819421, + "max": 1108629, + "avg": 964025 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 414, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 85 + }, + { + "ware": "energycells", + "amount": 2711 + }, + { + "ware": "hullparts", + "amount": 623 + }, + { + "ware": "water", + "amount": 1637 + } + ] + } + ] + }, + { + "id": "module_bor_def_disc_01", + "version": 1, + "name": "Boron Disc Defence Platform", + "macro": "defence_bor_disc_01_macro", + "description": "No information available", + "type": "defencemodule", + "explosionDamage": 1200, + "hull": 387000, + "makerRace": "boron", + "price": { + "min": 586455, + "max": 793439, + "avg": 689947 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_large_top_01", + "size": "large", + "hittable": false + }, + { + "group": "group_large_top_03", + "size": "large", + "hittable": false + }, + { + "group": "group_large_bottom_03", + "size": "large", + "hittable": false + }, + { + "group": "group_large_bottom_02", + "size": "large", + "hittable": false + }, + { + "group": "group_large_bottom_01", + "size": "large", + "hittable": false + }, + { + "group": "group_large_top_02", + "size": "large", + "hittable": false + }, + { + "group": "group_medium_top_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_top_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_top_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_top_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_top_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_top_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_large_top_02", + "size": "large", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "group": "group_large_top_03", + "size": "large", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "group": "group_large_bottom_03", + "size": "large", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "group": "group_large_bottom_02", + "size": "large", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "group": "group_large_bottom_01", + "size": "large", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "group": "group_large_top_01", + "size": "large", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "production": [ + { + "time": 133, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 61 + }, + { + "ware": "energycells", + "amount": 1940 + }, + { + "ware": "hullparts", + "amount": 446 + }, + { + "ware": "water", + "amount": 1172 + } + ] + } + ] + }, + { + "id": "module_bor_def_tube_01", + "version": 1, + "name": "Boron Bridge Defence Platform", + "macro": "defence_bor_tube_01_macro", + "description": "No information available", + "type": "defencemodule", + "explosionDamage": 1200, + "hull": 295000, + "makerRace": "boron", + "price": { + "min": 508960, + "max": 688594, + "avg": 598777 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_large_top_03", + "size": "large", + "hittable": false + }, + { + "group": "group_large_bottom_03", + "size": "large", + "hittable": false + }, + { + "group": "group_large_bottom_02", + "size": "large", + "hittable": false + }, + { + "group": "group_large_top_02", + "size": "large", + "hittable": false + }, + { + "group": "group_medium_top_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_top_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_top_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_top_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_top_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_top_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_top_04", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_top_05", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_04", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_05", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_large_top_02", + "size": "large", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "group": "group_large_top_03", + "size": "large", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "group": "group_large_bottom_03", + "size": "large", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "group": "group_large_bottom_02", + "size": "large", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_04", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_05", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_04", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_05", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_04", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_05", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_04", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_05", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "production": [ + { + "time": 118, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 53 + }, + { + "ware": "energycells", + "amount": 1684 + }, + { + "ware": "hullparts", + "amount": 387 + }, + { + "ware": "water", + "amount": 1017 + } + ] + } + ] + }, + { + "id": "module_bor_dock_m_01_standard", + "version": 1, + "name": "Boron 4M14S Luxury Dock Area", + "macro": "dockarea_bor_m_station_01_standard_macro", + "description": "No information available", + "type": "dockarea", + "explosionDamage": 1000, + "hull": 580000, + "makerRace": "boron", + "price": { + "min": 497906, + "max": 673638, + "avg": 585772 + }, + "owners": [ + "boron" + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "production": [ + { + "time": 773, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 52 + }, + { + "ware": "energycells", + "amount": 1647 + }, + { + "ware": "hullparts", + "amount": 378 + }, + { + "ware": "water", + "amount": 995 + } + ] + } + ] + }, + { + "id": "module_bor_equip_dockarea_m_01", + "version": 1, + "name": "Boron S/M Ship Maintenance Bay", + "macro": "buildmodule_bor_equip_m_dockarea_01_macro", + "description": "No information available", + "type": "buildmodule", + "explosionDamage": 2500, + "hull": 225000, + "makerRace": "boron", + "workForce": { + "max": 400 + }, + "price": { + "min": 28659268, + "max": 38774304, + "avg": 33716786 + }, + "owners": [ + "boron" + ], + "docks": [ + { + "capacity": 30, + "size": "medium" + }, + { + "capacity": 100, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "production": [ + { + "time": 596, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 595 + }, + { + "ware": "energycells", + "amount": 6322 + }, + { + "ware": "hullparts", + "amount": 1936 + }, + { + "ware": "water", + "amount": 5725 + } + ] + } + ] + }, + { + "id": "module_bor_equip_l_01", + "version": 1, + "name": "Boron L Ship Maintenance Bay", + "macro": "buildmodule_bor_equip_l_macro", + "description": "No information available", + "type": "buildmodule", + "explosionDamage": 5000, + "hull": 370000, + "makerRace": "boron", + "workForce": { + "max": 500 + }, + "price": { + "min": 52476005, + "max": 70996949, + "avg": 61736477 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 653, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 872 + }, + { + "ware": "energycells", + "amount": 9260 + }, + { + "ware": "hullparts", + "amount": 2836 + }, + { + "ware": "water", + "amount": 8387 + } + ] + } + ] + }, + { + "id": "module_bor_equip_xl_01", + "version": 1, + "name": "Boron XL Ship Maintenance Bay", + "macro": "buildmodule_bor_equip_xl_macro", + "description": "No information available", + "type": "buildmodule", + "explosionDamage": 5000, + "hull": 715000, + "makerRace": "boron", + "workForce": { + "max": 500 + }, + "price": { + "min": 54208622, + "max": 73341077, + "avg": 63774850 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 1136, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 1125 + }, + { + "ware": "energycells", + "amount": 11958 + }, + { + "ware": "hullparts", + "amount": 3662 + }, + { + "ware": "water", + "amount": 10830 + } + ] + } + ] + }, + { + "id": "module_bor_hab_l_01", + "version": 1, + "name": "Boron L Oasis", + "macro": "hab_bor_l_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 480000, + "makerRace": "boron", + "workForce": { + "capacity": 1000, + "race": "boron" + }, + "price": { + "min": 18290485, + "max": 24745951, + "avg": 21518218 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 640, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 114 + }, + { + "ware": "energycells", + "amount": 3631 + }, + { + "ware": "hullparts", + "amount": 834 + }, + { + "ware": "water", + "amount": 2192 + } + ] + } + ] + }, + { + "id": "module_bor_hab_m_01", + "version": 1, + "name": "Boron M Oasis", + "macro": "hab_bor_m_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 260000, + "makerRace": "boron", + "workForce": { + "capacity": 500, + "race": "boron" + }, + "price": { + "min": 12929719, + "max": 17493149, + "avg": 15211434 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 347, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 81 + }, + { + "ware": "energycells", + "amount": 2567 + }, + { + "ware": "hullparts", + "amount": 590 + }, + { + "ware": "water", + "amount": 1550 + } + ] + } + ] + }, + { + "id": "module_bor_hab_s_01", + "version": 1, + "name": "Boron S Oasis", + "macro": "hab_bor_s_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 140000, + "makerRace": "boron", + "workForce": { + "capacity": 250, + "race": "boron" + }, + "price": { + "min": 8989883, + "max": 12162783, + "avg": 10576333 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 187, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 56 + }, + { + "ware": "energycells", + "amount": 1785 + }, + { + "ware": "hullparts", + "amount": 410 + }, + { + "ware": "water", + "amount": 1078 + } + ] + } + ] + }, + { + "id": "module_bor_pier_l_01", + "version": 1, + "name": "Boron 4-Dock T Pier", + "macro": "pier_bor_harbor_01_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 850000, + "makerRace": "boron", + "price": { + "min": 3240789, + "max": 4384597, + "avg": 3812693 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 739, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 336 + }, + { + "ware": "energycells", + "amount": 10723 + }, + { + "ware": "hullparts", + "amount": 2463 + }, + { + "ware": "water", + "amount": 6474 + } + ] + } + ] + }, + { + "id": "module_bor_pier_l_02", + "version": 1, + "name": "Boron 1-Dock Pier", + "macro": "pier_bor_harbor_02_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 325000, + "makerRace": "boron", + "price": { + "min": 1871312, + "max": 2531774, + "avg": 2201543 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 283, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 194 + }, + { + "ware": "energycells", + "amount": 6192 + }, + { + "ware": "hullparts", + "amount": 1422 + }, + { + "ware": "water", + "amount": 3738 + } + ] + } + ] + }, + { + "id": "module_bor_pier_l_03", + "version": 1, + "name": "Boron 3-Dock E Pier", + "macro": "pier_bor_harbor_03_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 1250000, + "makerRace": "boron", + "price": { + "min": 3738918, + "max": 5058536, + "avg": 4398727 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 1087, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 388 + }, + { + "ware": "energycells", + "amount": 12371 + }, + { + "ware": "hullparts", + "amount": 2841 + }, + { + "ware": "water", + "amount": 7470 + } + ] + } + ] + }, + { + "id": "module_bor_pier_l_04", + "version": 1, + "name": "Boron Trading Station 4-Dock Pier", + "macro": "pier_bor_harbor_04_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 575000, + "makerRace": "boron", + "price": { + "min": 2633918, + "max": 3563536, + "avg": 3098727 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 517, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 273 + }, + { + "ware": "energycells", + "amount": 8715 + }, + { + "ware": "hullparts", + "amount": 2002 + }, + { + "ware": "water", + "amount": 5262 + } + ] + } + ] + }, + { + "id": "module_bor_pier_tradestation_01", + "version": 1, + "name": "Boron Trading Station Hexa-Dock Pier", + "macro": "pier_bor_tradestation_01_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1500, + "hull": 2000000, + "makerRace": "boron", + "price": { + "min": 4225512, + "max": 5210498, + "avg": 4730030 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 1087, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 417 + }, + { + "ware": "energycells", + "amount": 13303 + }, + { + "ware": "hullparts", + "amount": 3055 + }, + { + "ware": "water", + "amount": 8032 + } + ] + } + ] + }, + { + "id": "module_bor_prod_bofu_01", + "version": 1, + "name": "BoFu Production", + "macro": "prod_bor_bofu_macro", + "description": "No information available", + "type": "production", + "product": [ + "bofu" + ], + "explosionDamage": 1000, + "hull": 165000, + "makerRace": "boron", + "workForce": { + "max": 125 + }, + "price": { + "min": 1568474, + "max": 2122053, + "avg": 1845263 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_top_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_bottom_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_top_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_bottom_left_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "production": [ + { + "time": 367, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 163 + }, + { + "ware": "energycells", + "amount": 5190 + }, + { + "ware": "hullparts", + "amount": 1192 + }, + { + "ware": "water", + "amount": 3133 + } + ] + } + ] + }, + { + "id": "module_bor_prod_bogas_01", + "version": 1, + "name": "BoGas Production", + "macro": "prod_bor_bogas_macro", + "description": "No information available", + "type": "production", + "product": [ + "bogas" + ], + "explosionDamage": 1000, + "hull": 185000, + "makerRace": "boron", + "workForce": { + "max": 100 + }, + "price": { + "min": 1484832, + "max": 2008891, + "avg": 1746862 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_top_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_top_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_bottom_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_bottom_left_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "production": [ + { + "time": 411, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 154 + }, + { + "ware": "energycells", + "amount": 4913 + }, + { + "ware": "hullparts", + "amount": 1128 + }, + { + "ware": "water", + "amount": 2966 + } + ] + } + ] + }, + { + "id": "module_bor_prod_medicalsupplies_01", + "version": 1, + "name": "Boron Medical Supply Production", + "macro": "prod_bor_medicalsupplies_macro", + "description": "No information available", + "type": "production", + "product": [ + "medicalsupplies" + ], + "explosionDamage": 1000, + "hull": 204000, + "makerRace": "boron", + "workForce": { + "max": 90 + }, + "price": { + "min": 1345856, + "max": 1820864, + "avg": 1583360 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_top_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_bottom_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_top_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_bottom_left_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "production": [ + { + "time": 453, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 140 + }, + { + "ware": "energycells", + "amount": 4453 + }, + { + "ware": "hullparts", + "amount": 1023 + }, + { + "ware": "water", + "amount": 2689 + } + ] + } + ] + }, + { + "id": "module_bor_prod_plankton_01", + "version": 1, + "name": "Plankton Production", + "macro": "prod_bor_plankton_macro", + "description": "No information available", + "type": "production", + "product": [ + "plankton" + ], + "explosionDamage": 1000, + "hull": 135000, + "makerRace": "boron", + "workForce": { + "max": 40 + }, + "price": { + "min": 921174, + "max": 1246295, + "avg": 1083734 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_top_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_down_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_top_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_down_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_down_left_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_down_right_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_down_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_down_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_down_left_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_down_right_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "production": [ + { + "time": 278, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 96 + }, + { + "ware": "energycells", + "amount": 3048 + }, + { + "ware": "hullparts", + "amount": 700 + }, + { + "ware": "water", + "amount": 1840 + } + ] + } + ] + }, + { + "id": "module_bor_stor_container_l_01", + "version": 1, + "name": "Boron L Container Storage", + "macro": "storage_bor_l_container_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 775000, + "makerRace": "boron", + "cargo": { + "max": 1000000, + "type": "container" + }, + "price": { + "min": 688054, + "max": 930896, + "avg": 809475 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true, + "types": [] + } + ], + "production": [ + { + "time": 783, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 71 + }, + { + "ware": "energycells", + "amount": 2277 + }, + { + "ware": "hullparts", + "amount": 523 + }, + { + "ware": "water", + "amount": 1375 + } + ] + } + ] + }, + { + "id": "module_bor_stor_container_m_01", + "version": 1, + "name": "Boron M Container Storage", + "macro": "storage_bor_m_container_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 800, + "hull": 315000, + "makerRace": "boron", + "cargo": { + "max": 100000, + "type": "container" + }, + "price": { + "min": 490022, + "max": 662972, + "avg": 576497 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true, + "types": [] + } + ], + "production": [ + { + "time": 423, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 51 + }, + { + "ware": "energycells", + "amount": 1621 + }, + { + "ware": "hullparts", + "amount": 372 + }, + { + "ware": "water", + "amount": 979 + } + ] + } + ] + }, + { + "id": "module_bor_stor_container_s_01", + "version": 1, + "name": "Boron S Container Storage", + "macro": "storage_bor_s_container_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 500, + "hull": 135000, + "makerRace": "boron", + "cargo": { + "max": 25000, + "type": "container" + }, + "price": { + "min": 310446, + "max": 420016, + "avg": 365231 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + } + ], + "production": [ + { + "time": 268, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 32 + }, + { + "ware": "energycells", + "amount": 1027 + }, + { + "ware": "hullparts", + "amount": 236 + }, + { + "ware": "water", + "amount": 620 + } + ] + } + ] + }, + { + "id": "module_bor_stor_liquid_l_01", + "version": 1, + "name": "Boron L Liquid Storage", + "macro": "storage_bor_l_liquid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 765000, + "makerRace": "boron", + "cargo": { + "max": 1000000, + "type": "liquid" + }, + "price": { + "min": 688054, + "max": 930896, + "avg": 809475 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true, + "types": [] + } + ], + "production": [ + { + "time": 783, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 71 + }, + { + "ware": "energycells", + "amount": 2277 + }, + { + "ware": "hullparts", + "amount": 523 + }, + { + "ware": "water", + "amount": 1375 + } + ] + } + ] + }, + { + "id": "module_bor_stor_liquid_m_01", + "version": 1, + "name": "Boron M Liquid Storage", + "macro": "storage_bor_m_liquid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 307000, + "makerRace": "boron", + "cargo": { + "max": 500000, + "type": "liquid" + }, + "price": { + "min": 490022, + "max": 662972, + "avg": 576497 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true, + "types": [] + } + ], + "production": [ + { + "time": 423, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 51 + }, + { + "ware": "energycells", + "amount": 1621 + }, + { + "ware": "hullparts", + "amount": 372 + }, + { + "ware": "water", + "amount": 979 + } + ] + } + ] + }, + { + "id": "module_bor_stor_liquid_s_01", + "version": 1, + "name": "Boron S Liquid Storage", + "macro": "storage_bor_s_liquid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 500, + "hull": 126000, + "makerRace": "boron", + "cargo": { + "max": 100000, + "type": "liquid" + }, + "price": { + "min": 310446, + "max": 420016, + "avg": 365231 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + } + ], + "production": [ + { + "time": 268, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 32 + }, + { + "ware": "energycells", + "amount": 1027 + }, + { + "ware": "hullparts", + "amount": 236 + }, + { + "ware": "water", + "amount": 620 + } + ] + } + ] + }, + { + "id": "module_bor_stor_solid_l_01", + "version": 1, + "name": "Boron L Solid Storage", + "macro": "storage_bor_l_solid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 769000, + "makerRace": "boron", + "cargo": { + "max": 1000000, + "type": "solid" + }, + "price": { + "min": 688054, + "max": 930896, + "avg": 809475 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true, + "types": [] + } + ], + "production": [ + { + "time": 783, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 71 + }, + { + "ware": "energycells", + "amount": 2277 + }, + { + "ware": "hullparts", + "amount": 523 + }, + { + "ware": "water", + "amount": 1375 + } + ] + } + ] + }, + { + "id": "module_bor_stor_solid_m_01", + "version": 1, + "name": "Boron M Solid Storage", + "macro": "storage_bor_m_solid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 311000, + "makerRace": "boron", + "cargo": { + "max": 500000, + "type": "solid" + }, + "price": { + "min": 490022, + "max": 662972, + "avg": 576497 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true, + "types": [] + } + ], + "production": [ + { + "time": 423, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 51 + }, + { + "ware": "energycells", + "amount": 1621 + }, + { + "ware": "hullparts", + "amount": 372 + }, + { + "ware": "water", + "amount": 979 + } + ] + } + ] + }, + { + "id": "module_bor_stor_solid_s_01", + "version": 1, + "name": "Boron S Solid Storage", + "macro": "storage_bor_s_solid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 500, + "hull": 132000, + "makerRace": "boron", + "cargo": { + "max": 100000, + "type": "solid" + }, + "price": { + "min": 310446, + "max": 420016, + "avg": 365231 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + } + ], + "production": [ + { + "time": 268, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 32 + }, + { + "ware": "energycells", + "amount": 1027 + }, + { + "ware": "hullparts", + "amount": 236 + }, + { + "ware": "water", + "amount": 620 + } + ] + } + ] } -] +] \ No newline at end of file diff --git a/shared/data/production-methods.json b/shared/data/production-methods.json new file mode 100644 index 0000000..10e8eb4 --- /dev/null +++ b/shared/data/production-methods.json @@ -0,0 +1,7 @@ +[ + "default", + "argon", + "teladi", + "paranid", + "recycling" +] \ No newline at end of file diff --git a/shared/data/races.json b/shared/data/races.json new file mode 100644 index 0000000..2f9eece --- /dev/null +++ b/shared/data/races.json @@ -0,0 +1,55 @@ +[ + { + "id": "argon", + "name": "Argon", + "description": "The descendents of Terran colonists stranded from Earth centuries ago, the Argon became their own thriving civilisation covering a great many systems and forging relations with several alien races. Throughout their short history the Argon Federation has been plagued by war, notably with the Xenon. Their greatest challenge however came from the unlikely source of the reconnected Terrans of Earth where they were plunged into the costly Terran Conflict.", + "icon": "race_argon" + }, + { + "id": "boron", + "name": "Boron", + "description": "The predominantly peaceful Boron are aquatic life-forms from the planet Nishala. While initially pacifist, the discovery of their world by the Split forced them to invent defences and adapt to war. Enjoying a close relationship with the Argon, the Boron remain a wise and measured people.", + "icon": "race_boron" + }, + { + "id": "drone", + "name": "Drone", + "description": "Drones are designed to specialise in a narrow field of tasks. With AI research outlawed to avoid a similar situation to the Terraformer-Xenon evolution, drones are limited in scope and capability. However, results from Xenon research have led to advancements in drone technology, something which troubled many experts." + }, + { + "id": "khaak", + "name": "Kha'ak", + "description": "Thought to have been wiped out during Operation Final Fury, very little is known about the Kha'ak other than they seem to be an insectile hive race hell-bent on the destruction of all those that share the Jump Gate network. As a hive race, it is suspected that individual intelligence gives way to a communal or caste mentality, but very little research into the species was completed before Operation Final Fury took place.", + "icon": "race_khaak" + }, + { + "id": "paranid", + "name": "Paranid", + "description": "The physically imposing Paranid are often regarded as arrogant by several races which usually stems from their exceptional mathematic skills and religious fervour. Allied with the Split and distrusting of the Argon, the Paranid have been in several conflicts where they use their technological prowess and multilevel thinking to gain tactical advantages.", + "icon": "race_paranid" + }, + { + "id": "split", + "name": "Split", + "description": "The aggressive Split live in a society constantly changing leadership where challenging factions rise up to impose a new Patriarch. Their short temper and fiery disposition puts them at odds with other races which has sometimes lead to war, notably with the Boron and Argon.", + "icon": "race_split" + }, + { + "id": "teladi", + "name": "Teladi", + "description": "The lizard-like Teladi are one of the founding members of the Community of Planets and have a natural affinity towards business and the accumulation of profit. They enjoy favourable relations with other races although some find their drive for profit disconcerting. Their long lifespan gives them a unique view of the Jump Gate shutdown, as does their previous experience being cut off from their home system of Ianamus Zura.", + "icon": "race_teladi" + }, + { + "id": "terran", + "name": "Terran", + "description": "The Terrans of the Solar System have a long history of spaceflight and exploring the Jump Gate network. After the events of the Terraformers over Earth, the Terrans severed their contact with the rest of the galaxy and had several centuries of rebuilding and advancement in isolation. Their brief return led to the Terran Conflict which preceded the mass disconnection of Jump Gates. It is unknown if the war precipitated this event.", + "icon": "race_terran" + }, + { + "id": "xenon", + "name": "Xenon", + "description": "The Xenon are a mechanical race resulting from past Terran terraformer ships which eventually evolved intelligence. A constant threat in many areas of the galaxy, it is thought that the Jump Gate shutdown may stem their movements but given their disregard of time it is possible they may simply travel between stars. The Xenon have no known allies and communication with them is often relegated to folklore.", + "icon": "race_xenon" + } +] \ No newline at end of file diff --git a/shared/data/scenarios/empty.json b/shared/data/scenarios/empty.json new file mode 100644 index 0000000..5f7bde5 --- /dev/null +++ b/shared/data/scenarios/empty.json @@ -0,0 +1,12 @@ +{ + "worldGeneration": { + "seed": 8, + "targetSystemCount": 2, + "useKnownSystems": true, + "aiControllerFactionCount": 0, + "generatePlayerFaction": false + }, + "initialStations": [], + "shipFormations": [], + "patrolRoutes": [] +} diff --git a/shared/data/scenario.json b/shared/data/scenarios/testbed.json similarity index 54% rename from shared/data/scenario.json rename to shared/data/scenarios/testbed.json index 1225592..dd25f47 100644 --- a/shared/data/scenario.json +++ b/shared/data/scenarios/testbed.json @@ -1,11 +1,10 @@ { - "gameStartOptions": { - "seed": 1, - "worldGeneration": { - "targetSystemCount": 2, - "aiControllerFactionCount": 0, - "generatePlayerFaction": false - } + "worldGeneration": { + "seed": 8, + "targetSystemCount": 2, + "useKnownSystems": true, + "aiControllerFactionCount": 0, + "generatePlayerFaction": false }, "initialStations": [ { @@ -19,7 +18,7 @@ "module_gen_prod_energycells_01" ], "systemId": "helios", - "factionId": "sol-dominion", + "factionId": "terran", "planetIndex": 1, "lagrangeSide": -1 }, @@ -35,7 +34,7 @@ "module_gen_prod_refinedmetals_01" ], "systemId": "helios", - "factionId": "sol-dominion", + "factionId": "terran", "planetIndex": 2, "lagrangeSide": -1 }, @@ -50,7 +49,7 @@ "module_gen_prod_hullparts_01" ], "systemId": "helios", - "factionId": "sol-dominion", + "factionId": "terran", "planetIndex": 0, "lagrangeSide": 1 }, @@ -65,7 +64,7 @@ "module_gen_prod_claytronics_01" ], "systemId": "helios", - "factionId": "sol-dominion", + "factionId": "terran", "planetIndex": 2, "lagrangeSide": null }, @@ -80,7 +79,7 @@ "module_gen_prod_quantumtubes_01" ], "systemId": "helios", - "factionId": "sol-dominion", + "factionId": "terran", "planetIndex": 1, "lagrangeSide": null }, @@ -96,7 +95,7 @@ "module_gen_prod_graphene_01" ], "systemId": "helios", - "factionId": "sol-dominion", + "factionId": "terran", "planetIndex": 0, "lagrangeSide": -1 }, @@ -112,7 +111,7 @@ "module_gen_prod_siliconwafers_01" ], "systemId": "helios", - "factionId": "sol-dominion", + "factionId": "terran", "planetIndex": 1, "lagrangeSide": 1 }, @@ -128,7 +127,7 @@ "module_gen_prod_antimattercells_01" ], "systemId": "helios", - "factionId": "sol-dominion", + "factionId": "terran", "planetIndex": 2, "lagrangeSide": 1 }, @@ -144,7 +143,7 @@ "module_gen_prod_superfluidcoolant_01" ], "systemId": "helios", - "factionId": "sol-dominion", + "factionId": "terran", "planetIndex": 3, "lagrangeSide": -1 }, @@ -160,7 +159,7 @@ "module_gen_prod_water_01" ], "systemId": "helios", - "factionId": "sol-dominion", + "factionId": "terran", "planetIndex": 3, "lagrangeSide": 1 }, @@ -175,7 +174,7 @@ "module_gen_prod_energycells_01" ], "systemId": "sol", - "factionId": "asterion-league", + "factionId": "argon", "planetIndex": 1, "lagrangeSide": 1 }, @@ -191,7 +190,7 @@ "module_gen_prod_refinedmetals_01" ], "systemId": "sol", - "factionId": "asterion-league", + "factionId": "argon", "planetIndex": 2, "lagrangeSide": 1 }, @@ -206,7 +205,7 @@ "module_gen_prod_hullparts_01" ], "systemId": "sol", - "factionId": "asterion-league", + "factionId": "argon", "planetIndex": 3, "lagrangeSide": -1 }, @@ -221,7 +220,7 @@ "module_gen_prod_claytronics_01" ], "systemId": "sol", - "factionId": "asterion-league", + "factionId": "argon", "planetIndex": 2, "lagrangeSide": null }, @@ -236,7 +235,7 @@ "module_gen_prod_quantumtubes_01" ], "systemId": "sol", - "factionId": "asterion-league", + "factionId": "argon", "planetIndex": 1, "lagrangeSide": null }, @@ -252,7 +251,7 @@ "module_gen_prod_graphene_01" ], "systemId": "sol", - "factionId": "asterion-league", + "factionId": "argon", "planetIndex": 0, "lagrangeSide": -1 }, @@ -268,7 +267,7 @@ "module_gen_prod_siliconwafers_01" ], "systemId": "sol", - "factionId": "asterion-league", + "factionId": "argon", "planetIndex": 0, "lagrangeSide": 1 }, @@ -284,7 +283,7 @@ "module_gen_prod_antimattercells_01" ], "systemId": "sol", - "factionId": "asterion-league", + "factionId": "argon", "planetIndex": 1, "lagrangeSide": -1 }, @@ -300,7 +299,7 @@ "module_gen_prod_superfluidcoolant_01" ], "systemId": "sol", - "factionId": "asterion-league", + "factionId": "argon", "planetIndex": 2, "lagrangeSide": -1 }, @@ -316,256 +315,111 @@ "module_gen_prod_water_01" ], "systemId": "sol", - "factionId": "asterion-league", - "planetIndex": 3, - "lagrangeSide": 1 - }, - { - "label": "Syndicate Power Relay", - "color": "#91e6a8", - "objective": "power", - "startingModules": [ - "module_arg_dock_m_01_lowtech", - "module_arg_stor_liquid_m_01", - "module_arg_stor_container_m_01", - "module_gen_prod_energycells_01" - ], - "systemId": "perseus", - "factionId": "nadir-syndicate", - "planetIndex": 1, - "lagrangeSide": -1 - }, - { - "label": "Syndicate Refinery", - "color": "#91e6a8", - "objective": "refinery", - "startingModules": [ - "module_arg_dock_m_01_lowtech", - "module_arg_stor_solid_m_01", - "module_arg_stor_container_m_01", - "module_gen_prod_energycells_01", - "module_gen_prod_refinedmetals_01" - ], - "systemId": "perseus", - "factionId": "nadir-syndicate", - "planetIndex": 2, - "lagrangeSide": -1 - }, - { - "label": "Syndicate Hullworks", - "color": "#91e6a8", - "objective": "hullparts", - "startingModules": [ - "module_arg_dock_m_01_lowtech", - "module_arg_stor_container_m_01", - "module_gen_prod_energycells_01", - "module_gen_prod_hullparts_01" - ], - "systemId": "perseus", - "factionId": "nadir-syndicate", - "planetIndex": 0, - "lagrangeSide": 1 - }, - { - "label": "Syndicate Clay Grid", - "color": "#91e6a8", - "objective": "claytronics", - "startingModules": [ - "module_arg_dock_m_01_lowtech", - "module_arg_stor_container_m_01", - "module_gen_prod_energycells_01", - "module_gen_prod_claytronics_01" - ], - "systemId": "perseus", - "factionId": "nadir-syndicate", - "planetIndex": 2, - "lagrangeSide": null - }, - { - "label": "Syndicate Quantum Yard", - "color": "#91e6a8", - "objective": "quantumtubes", - "startingModules": [ - "module_arg_dock_m_01_lowtech", - "module_arg_stor_container_m_01", - "module_gen_prod_energycells_01", - "module_gen_prod_quantumtubes_01" - ], - "systemId": "perseus", - "factionId": "nadir-syndicate", - "planetIndex": 1, - "lagrangeSide": null - }, - { - "label": "Syndicate Graphene Array", - "color": "#91e6a8", - "objective": "graphene", - "startingModules": [ - "module_arg_dock_m_01_lowtech", - "module_arg_stor_liquid_m_01", - "module_arg_stor_container_m_01", - "module_gen_prod_energycells_01", - "module_gen_prod_graphene_01" - ], - "systemId": "perseus", - "factionId": "nadir-syndicate", - "planetIndex": 0, - "lagrangeSide": -1 - }, - { - "label": "Syndicate Wafer Foundry", - "color": "#91e6a8", - "objective": "siliconwafers", - "startingModules": [ - "module_arg_dock_m_01_lowtech", - "module_arg_stor_solid_m_01", - "module_arg_stor_container_m_01", - "module_gen_prod_energycells_01", - "module_gen_prod_siliconwafers_01" - ], - "systemId": "perseus", - "factionId": "nadir-syndicate", - "planetIndex": 1, - "lagrangeSide": 1 - }, - { - "label": "Syndicate Antimatter Forge", - "color": "#91e6a8", - "objective": "antimattercells", - "startingModules": [ - "module_arg_dock_m_01_lowtech", - "module_arg_stor_liquid_m_01", - "module_arg_stor_container_m_01", - "module_gen_prod_energycells_01", - "module_gen_prod_antimattercells_01" - ], - "systemId": "perseus", - "factionId": "nadir-syndicate", - "planetIndex": 2, - "lagrangeSide": 1 - }, - { - "label": "Syndicate Coolant Loop", - "color": "#91e6a8", - "objective": "superfluidcoolant", - "startingModules": [ - "module_arg_dock_m_01_lowtech", - "module_arg_stor_liquid_m_01", - "module_arg_stor_container_m_01", - "module_gen_prod_energycells_01", - "module_gen_prod_superfluidcoolant_01" - ], - "systemId": "perseus", - "factionId": "nadir-syndicate", - "planetIndex": 3, - "lagrangeSide": -1 - }, - { - "label": "Syndicate Hydro Plant", - "color": "#91e6a8", - "objective": "water", - "startingModules": [ - "module_arg_dock_m_01_lowtech", - "module_arg_stor_solid_m_01", - "module_arg_stor_container_m_01", - "module_gen_prod_energycells_01", - "module_gen_prod_water_01" - ], - "systemId": "perseus", - "factionId": "nadir-syndicate", + "factionId": "argon", "planetIndex": 3, "lagrangeSide": 1 } ], "shipFormations": [ { - "shipId": "constructor", - "count": 1, - "center": [ 40, 0, 12 ], - "systemId": "helios", - "factionId": "sol-dominion" - }, - { - "shipId": "miner", - "count": 4, - "center": [ 54, 0, 18 ], - "systemId": "helios", - "factionId": "sol-dominion" - }, - { - "shipId": "hauler", - "count": 1, - "center": [ 62, 0, 8 ], - "systemId": "helios", - "factionId": "sol-dominion" - }, - { - "shipId": "gas-miner", - "count": 4, - "center": [ 74, 0, 14 ], - "systemId": "helios", - "factionId": "sol-dominion" - }, - { - "shipId": "constructor", - "count": 1, - "center": [ 42, 0, -16 ], + "shipId": "ship_arg_s_fighter_01_a", + "count": 6, + "center": [ + 0, + 0, + 0 + ], "systemId": "sol", - "factionId": "asterion-league" + "factionId": "argon" }, { - "shipId": "miner", + "shipId": "ship_ter_s_fighter_01_a", + "count": 6, + "center": [ + 200, + 0, + 0 + ], + "systemId": "helios", + "factionId": "terran" + }, + { + "shipId": "ship_arg_s_miner_solid_01_a", "count": 4, - "center": [ 56, 0, -12 ], + "center": [ + 1200, + 0, + -600 + ], "systemId": "sol", - "factionId": "asterion-league" + "factionId": "argon" }, { - "shipId": "hauler", - "count": 1, - "center": [ 68, 0, -18 ], - "systemId": "sol", - "factionId": "asterion-league" - }, - { - "shipId": "gas-miner", + "shipId": "ship_ter_s_miner_solid_01_a", "count": 4, - "center": [ 76, 0, -22 ], - "systemId": "sol", - "factionId": "asterion-league" - }, - { - "shipId": "constructor", - "count": 1, - "center": [ 44, 0, 20 ], - "systemId": "perseus", - "factionId": "nadir-syndicate" - }, - { - "shipId": "miner", - "count": 4, - "center": [ 58, 0, 24 ], - "systemId": "perseus", - "factionId": "nadir-syndicate" - }, - { - "shipId": "hauler", - "count": 1, - "center": [ 68, 0, 18 ], - "systemId": "perseus", - "factionId": "nadir-syndicate" - }, - { - "shipId": "gas-miner", - "count": 4, - "center": [ 78, 0, 22 ], - "systemId": "perseus", - "factionId": "nadir-syndicate" + "center": [ + -1200, + 0, + 600 + ], + "systemId": "helios", + "factionId": "terran" + } + ], + "patrolRoutes": [ + { + "systemId": "sol", + "points": [ + [ + -1800, + 0, + -1600 + ], + [ + 1800, + 0, + -1600 + ], + [ + 1800, + 0, + 1600 + ], + [ + -1800, + 0, + 1600 + ] + ] + }, + { + "systemId": "helios", + "points": [ + [ + -1800, + 0, + -1600 + ], + [ + 1800, + 0, + -1600 + ], + [ + 1800, + 0, + 1600 + ], + [ + -1800, + 0, + 1600 + ] + ] } ], - "patrolRoutes": [], "miningDefaults": { - "nodeSystemId": "perseus", - "refinerySystemId": "helios" + "nodeSystemId": "sol", + "refinerySystemId": "sol" } } diff --git a/shared/data/ship-purposes.json b/shared/data/ship-purposes.json new file mode 100644 index 0000000..b621b5f --- /dev/null +++ b/shared/data/ship-purposes.json @@ -0,0 +1,9 @@ +[ + "auxiliary", + "mine", + "build", + "fight", + "trade", + "salvage", + "dismantling" +] \ No newline at end of file diff --git a/shared/data/ship-types.json b/shared/data/ship-types.json new file mode 100644 index 0000000..9c3dab3 --- /dev/null +++ b/shared/data/ship-types.json @@ -0,0 +1,24 @@ +[ + "resupplier", + "miner", + "carrier", + "fighter", + "heavyfighter", + "destroyer", + "largeminer", + "freighter", + "bomber", + "scavenger", + "frigate", + "transporter", + "interceptor", + "scout", + "courier", + "builder", + "corvette", + "police", + "battleship", + "gunboat", + "tug", + "compactor" +] \ No newline at end of file diff --git a/shared/data/ships-data.ts b/shared/data/ships-data.ts new file mode 100644 index 0000000..e69de29 diff --git a/shared/data/ships.json b/shared/data/ships.json index dac0c0e..3b56f97 100644 --- a/shared/data/ships.json +++ b/shared/data/ships.json @@ -1,509 +1,39382 @@ [ { - "id": "frigate", - "label": "Vanguard Frigate", - "kind": "military", - "class": "frigate", - "speed": 120000, - "warpSpeed": 0.22, - "ftlSpeed": 0.75, - "spoolTime": 2.2, - "cargoCapacity": 0, - "color": "#7ed4ff", - "hullColor": "#1f4f78", - "size": 4, - "maxHealth": 100, - "capabilities": [ - "warp", - "ftl" + "id": "ship_arg_l_destroyer_01_a", + "version": 0, + "name": "Behemoth Vanguard", + "description": "The original design of the Behemoth-class destroyer was put into development mid-way through the Kha'ak conflict, during which the Titan-class was beginning to show its age and inefficiencies. At first too expensive for a crippled Argon economy, then too complex to produce quickly during the Terran Conflict, the first Behemoth did not ship out until long after that war had ended, and the Jump Gates had begun to catastrophically fail. It was only when Argon Prime and Black Hole Sun came back into contact that the Behemoth could be rolled out more frequently.", + "size": "large", + "explosionDamage": 1000, + "hull": 93000, + "storage": { + "missile": 160, + "unit": 10 + }, + "people": 44, + "purpose": "fight", + "thruster": "large", + "type": "destroyer", + "mass": 196.016, + "inertia": { + "pitch": 96.271, + "yaw": 96.271, + "roll": 77.016 + }, + "drag": { + "forward": 99.004, + "reverse": 396.016, + "horizontal": 73.005, + "vertical": 73.005, + "pitch": 106.203, + "yaw": 106.203, + "roll": 106.203 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + } ], - "construction": { - "recipeId": "frigate-construction", - "facilityCategory": "station", - "requiredModules": [ - "module_gen_build_l_01" - ], - "requirements": [ - { - "itemId": "hullparts", - "amount": 26 - }, - { - "itemId": "advancedelectronics", - "amount": 1 - }, - { - "itemId": "antimatterconverters", - "amount": 1 - }, - { - "itemId": "shieldcomponents", - "amount": 1 - }, - { - "itemId": "engineparts", - "amount": 1 - }, - { - "itemId": "engineparts", - "amount": 1 - }, - { - "itemId": "turretcomponents", - "amount": 1 - } - ], - "cycleTime": 24, - "productsPerHour": 150, - "maxEfficiency": 1, - "priority": 90 - } + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_mid_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_up_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_up_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_up_mid_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 2300, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers", + "hatikvah", + "scaleplate" + ], + "price": { + "min": 4006156, + "max": 5420094, + "avg": 4713125 + }, + "production": [ + { + "time": 182, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1008 + }, + { + "ware": "hullparts", + "amount": 4433 + } + ] + } + ] }, { - "id": "destroyer", - "label": "Bulwark Destroyer", - "kind": "military", - "class": "destroyer", - "speed": 95000, - "warpSpeed": 0.18, - "ftlSpeed": 0.68, - "spoolTime": 2.8, - "cargoCapacity": 0, - "color": "#ff8f70", - "hullColor": "#6a2e26", - "size": 7, - "maxHealth": 240, - "capabilities": [ - "warp", - "ftl" + "id": "ship_arg_l_destroyer_01_b", + "version": 0, + "name": "Behemoth Sentinel", + "description": "The original design of the Behemoth-class destroyer was put into development mid-way through the Kha'ak conflict, during which the Titan-class was beginning to show its age and inefficiencies. At first too expensive for a crippled Argon economy, then too complex to produce quickly during the Terran Conflict, the first Behemoth did not ship out until long after that war had ended, and the Jump Gates had begun to catastrophically fail. It was only when Argon Prime and Black Hole Sun came back into contact that the Behemoth could be rolled out more frequently.", + "size": "large", + "explosionDamage": 1000, + "hull": 111000, + "storage": { + "missile": 160, + "unit": 10 + }, + "people": 36, + "purpose": "fight", + "thruster": "large", + "type": "destroyer", + "mass": 235.22, + "inertia": { + "pitch": 103.378, + "yaw": 103.378, + "roll": 82.702 + }, + "drag": { + "forward": 108.805, + "reverse": 435.22, + "horizontal": 87.605, + "vertical": 87.605, + "pitch": 114.044, + "yaw": 114.044, + "roll": 114.044 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + } ], - "construction": { - "recipeId": "destroyer-construction", - "facilityCategory": "station", - "requiredModules": [ - "module_gen_build_l_01" - ], - "requirements": [ - { - "itemId": "hullparts", - "amount": 44 - }, - { - "itemId": "advancedelectronics", - "amount": 1 - }, - { - "itemId": "antimatterconverters", - "amount": 1 - }, - { - "itemId": "shieldcomponents", - "amount": 1 - }, - { - "itemId": "engineparts", - "amount": 1 - }, - { - "itemId": "engineparts", - "amount": 1 - }, - { - "itemId": "turretcomponents", - "amount": 2 - } - ], - "cycleTime": 34, - "productsPerHour": 105.9, - "maxEfficiency": 1, - "priority": 70 - } + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_mid_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_up_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_up_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_up_mid_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 2760, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 4795063, + "max": 6487438, + "avg": 5641250 + }, + "production": [ + { + "time": 218, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1206 + }, + { + "ware": "hullparts", + "amount": 5306 + } + ] + } + ] }, { - "id": "cruiser", - "label": "Aegis Cruiser", - "kind": "military", - "class": "cruiser", - "speed": 85000, - "warpSpeed": 0.16, - "ftlSpeed": 0.62, - "spoolTime": 3.1, - "cargoCapacity": 0, - "color": "#9ec1ff", - "hullColor": "#314562", - "size": 10, - "maxHealth": 340, - "capabilities": [ - "warp", - "ftl" + "id": "ship_arg_l_miner_liquid_01_a", + "version": 0, + "name": "Magnetar (Gas) Vanguard", + "description": "As the trend towards collecting natural resources with ships continued, the inefficiencies of the solution started to become clear. While a medium-sized ship had the advantage of moving quickly through mineral and gas regions, their cargo bays were simply not big enough for industrial-scale mining to be lucrative.nnNaturally, the Teladi stepped in to design L-sized resource collectors that could solve that problem, and the Magnetar is the Argon response to these ships; a standardised model that can be built in two variants, allowing it to support both asteroid mining and natural gas collection.", + "size": "large", + "explosionDamage": 800, + "hull": 26000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 46, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 205.27, + "inertia": { + "pitch": 133.749, + "yaw": 133.749, + "roll": 106.999 + }, + "drag": { + "forward": 56.738, + "reverse": 324.216, + "horizontal": 126.666, + "vertical": 126.666, + "pitch": 140.897, + "yaw": 140.897, + "roll": 140.897 + }, + "engines": [ + { + "group": "group_front_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "large", + "hittable": false + } ], - "construction": { - "recipeId": "cruiser-construction", - "facilityCategory": "station", - "requiredModules": [ - "module_gen_build_l_01" - ], - "requirements": [ - { - "itemId": "hullparts", - "amount": 60 - }, - { - "itemId": "advancedelectronics", - "amount": 1 - }, - { - "itemId": "antimatterconverters", - "amount": 1 - }, - { - "itemId": "shieldcomponents", - "amount": 1 - }, - { - "itemId": "engineparts", - "amount": 1 - }, - { - "itemId": "engineparts", - "amount": 1 - }, - { - "itemId": "turretcomponents", - "amount": 2 - } - ], - "cycleTime": 42, - "productsPerHour": 85.7, - "maxEfficiency": 1, - "priority": 54 - } + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 42000, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers", + "hatikvah" + ], + "price": { + "min": 1111460, + "max": 1503740, + "avg": 1307600 + }, + "production": [ + { + "time": 83, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 461 + }, + { + "ware": "hullparts", + "amount": 1216 + } + ] + } + ] }, { - "id": "carrier", - "label": "Citadel Carrier", - "kind": "military", - "class": "capital", - "speed": 60000, - "warpSpeed": 0.12, - "ftlSpeed": 0.5, - "spoolTime": 4.1, - "cargoCapacity": 0, - "color": "#c6f4ff", - "hullColor": "#35586d", - "size": 16, - "maxHealth": 900, - "capabilities": [ - "warp", - "ftl" + "id": "ship_arg_l_miner_liquid_01_b", + "version": 0, + "name": "Magnetar (Gas) Sentinel", + "description": "As the trend towards collecting natural resources with ships continued, the inefficiencies of the solution started to become clear. While a medium-sized ship had the advantage of moving quickly through mineral and gas regions, their cargo bays were simply not big enough for industrial-scale mining to be lucrative.nnNaturally, the Teladi stepped in to design L-sized resource collectors that could solve that problem, and the Magnetar is the Argon response to these ships; a standardised model that can be built in two variants, allowing it to support both asteroid mining and natural gas collection.", + "size": "large", + "explosionDamage": 800, + "hull": 32000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 38, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 246.324, + "inertia": { + "pitch": 147.778, + "yaw": 147.778, + "roll": 118.223 + }, + "drag": { + "forward": 62.485, + "reverse": 357.059, + "horizontal": 151.999, + "vertical": 151.999, + "pitch": 155.677, + "yaw": 155.677, + "roll": 155.677 + }, + "engines": [ + { + "group": "group_front_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "large", + "hittable": false + } ], - "dockingCapacity": 6, - "dockingClasses": [ - "frigate", - "destroyer", - "cruiser" + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + } ], - "construction": { - "recipeId": "carrier-construction", - "facilityCategory": "station", - "requiredModules": [ - "module_gen_build_l_01" - ], - "requirements": [ - { - "itemId": "hullparts", - "amount": 120 - }, - { - "itemId": "advancedelectronics", - "amount": 1 - }, - { - "itemId": "antimatterconverters", - "amount": 1 - }, - { - "itemId": "shieldcomponents", - "amount": 1 - }, - { - "itemId": "engineparts", - "amount": 1 - }, - { - "itemId": "engineparts", - "amount": 1 - }, - { - "itemId": "dronecomponents", - "amount": 2 - }, - { - "itemId": "turretcomponents", - "amount": 1 - } - ], - "cycleTime": 60, - "productsPerHour": 60, - "maxEfficiency": 1, - "priority": 28 - } + "turrets": [ + { + "group": "group_back_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 50400, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers", + "hatikvah" + ], + "price": { + "min": 1350914, + "max": 1827707, + "avg": 1589310 + }, + "production": [ + { + "time": 101, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 560 + }, + { + "ware": "hullparts", + "amount": 1478 + } + ] + } + ] }, { - "id": "hauler", - "label": "Atlas Hauler", - "kind": "transport", - "class": "industrial", - "speed": 70000, - "warpSpeed": 0.14, - "ftlSpeed": 0.55, - "spoolTime": 3.3, - "cargoCapacity": 180, - "cargoKind": "container", - "color": "#b0ff8d", - "hullColor": "#365f2a", - "size": 8, - "maxHealth": 180, - "capabilities": [ - "warp", - "ftl" + "id": "ship_arg_l_miner_solid_01_a", + "version": 0, + "name": "Magnetar (Mineral) Vanguard", + "description": "As the trend towards collecting natural resources with ships continued, the inefficiencies of the solution started to become clear. While a medium-sized ship had the advantage of moving quickly through mineral and gas regions, their cargo bays were simply not big enough for industrial-scale mining to be lucrative.nnNaturally, the Teladi stepped in to design L-sized resource collectors that could solve that problem, and the Magnetar is the Argon response to these ships; a standardised model that can be built in two variants, allowing it to support both asteroid mining and natural gas collection.", + "size": "large", + "explosionDamage": 800, + "hull": 26000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 46, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 204.245, + "inertia": { + "pitch": 132.733, + "yaw": 132.733, + "roll": 106.186 + }, + "drag": { + "forward": 56.594, + "reverse": 323.396, + "horizontal": 127.239, + "vertical": 127.239, + "pitch": 140.528, + "yaw": 140.528, + "roll": 140.528 + }, + "engines": [ + { + "group": "group_front_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "large", + "hittable": false + } ], - "construction": { - "recipeId": "hauler-construction", - "facilityCategory": "station", - "requiredModules": [ - "module_gen_build_l_01" - ], - "requirements": [ - { - "itemId": "hullparts", - "amount": 34 - }, - { - "itemId": "advancedelectronics", - "amount": 1 - }, - { - "itemId": "antimatterconverters", - "amount": 1 - }, - { - "itemId": "shieldcomponents", - "amount": 1 - }, - { - "itemId": "engineparts", - "amount": 1 - }, - { - "itemId": "engineparts", - "amount": 1 - }, - { - "itemId": "hullparts", - "amount": 1 - } - ], - "cycleTime": 26, - "productsPerHour": 138.5, - "maxEfficiency": 1, - "priority": 8 - } + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_down_mid", + "size": "large", + "hittable": false, + "types": [ + "mining", + "standard" + ] + }, + { + "group": "group_back_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 40000, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers", + "hatikvah" + ], + "price": { + "min": 1108727, + "max": 1500043, + "avg": 1304385 + }, + "production": [ + { + "time": 83, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 460 + }, + { + "ware": "hullparts", + "amount": 1213 + } + ] + } + ] }, { - "id": "constructor", - "label": "Pioneer Constructor", - "kind": "construction", - "class": "industrial", - "speed": 65000, - "warpSpeed": 0.13, - "ftlSpeed": 0.48, - "spoolTime": 3.5, - "cargoCapacity": 0, - "color": "#9af0c1", - "hullColor": "#2d5d47", - "size": 9, - "maxHealth": 220, - "capabilities": [ - "warp", - "ftl" + "id": "ship_arg_l_miner_solid_01_b", + "version": 0, + "name": "Magnetar (Mineral) Sentinel", + "description": "As the trend towards collecting natural resources with ships continued, the inefficiencies of the solution started to become clear. While a medium-sized ship had the advantage of moving quickly through mineral and gas regions, their cargo bays were simply not big enough for industrial-scale mining to be lucrative.nnNaturally, the Teladi stepped in to design L-sized resource collectors that could solve that problem, and the Magnetar is the Argon response to these ships; a standardised model that can be built in two variants, allowing it to support both asteroid mining and natural gas collection.", + "size": "large", + "explosionDamage": 800, + "hull": 32000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 38, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 245.094, + "inertia": { + "pitch": 146.623, + "yaw": 146.623, + "roll": 117.298 + }, + "drag": { + "forward": 62.313, + "reverse": 356.076, + "horizontal": 152.687, + "vertical": 152.687, + "pitch": 155.234, + "yaw": 155.234, + "roll": 155.234 + }, + "engines": [ + { + "group": "group_front_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "large", + "hittable": false + } ], - "construction": { - "recipeId": "constructor-construction", - "facilityCategory": "station", - "requiredModules": [ - "module_gen_build_l_01" - ], - "requirements": [ - { - "itemId": "hullparts", - "amount": 42 - }, - { - "itemId": "advancedelectronics", - "amount": 1 - }, - { - "itemId": "antimatterconverters", - "amount": 1 - }, - { - "itemId": "shieldcomponents", - "amount": 1 - }, - { - "itemId": "engineparts", - "amount": 1 - }, - { - "itemId": "engineparts", - "amount": 1 - }, - { - "itemId": "advancedelectronics", - "amount": 1 - }, - { - "itemId": "hullparts", - "amount": 1 - } - ], - "cycleTime": 30, - "productsPerHour": 120, - "maxEfficiency": 1, - "priority": 8 - } + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_down_mid", + "size": "large", + "hittable": false, + "types": [ + "mining", + "standard" + ] + }, + { + "group": "group_back_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 50400, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers", + "hatikvah" + ], + "price": { + "min": 1348181, + "max": 1824009, + "avg": 1586095 + }, + "production": [ + { + "time": 101, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 559 + }, + { + "ware": "hullparts", + "amount": 1475 + } + ] + } + ] }, { - "id": "miner", - "label": "Prospector Miner", - "kind": "mining", - "class": "industrial", - "speed": 75000, - "warpSpeed": 0.15, - "ftlSpeed": 0.5, - "spoolTime": 3.1, - "cargoCapacity": 120, - "cargoKind": "solid", - "color": "#ffdd75", - "hullColor": "#68552b", - "size": 6, - "maxHealth": 150, - "capabilities": [ - "warp", - "ftl", - "mining" + "id": "ship_arg_l_trans_container_01_a", + "version": 0, + "name": "Veles Vanguard", + "description": "Designed and produced by the Antigone Republic after the Jump Gates began to realign, the Veles-class freighter is more compact and self-sufficient than any freighter-class ship before it; the reason why it became part of the on-going technology exchange between the Republic and their Argon Federation allies.nnBuilt using a highly modular design, many ship designers have taken the base Veles model and reorganised it, as well as making their own changes to the internal systems, to sell an ever-growing number of variations on the ship. However, the Veles remains a popular choice among traders and station builders.", + "size": "large", + "explosionDamage": 800, + "hull": 57000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 110, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 440.933, + "inertia": { + "pitch": 175.799, + "yaw": 175.799, + "roll": 140.64 + }, + "drag": { + "forward": 128.187, + "reverse": 512.747, + "horizontal": 95.125, + "vertical": 95.125, + "pitch": 155.187, + "yaw": 155.187, + "roll": 155.187 + }, + "engines": [ + { + "group": "group_back_mid_up", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_up", + "size": "large", + "hittable": false + } ], - "construction": { - "recipeId": "miner-construction", - "facilityCategory": "station", - "requiredModules": [ - "module_gen_build_l_01" - ], - "requirements": [ - { - "itemId": "hullparts", - "amount": 34 - }, - { - "itemId": "advancedelectronics", - "amount": 1 - }, - { - "itemId": "antimatterconverters", - "amount": 1 - }, - { - "itemId": "shieldcomponents", - "amount": 1 - }, - { - "itemId": "engineparts", - "amount": 1 - }, - { - "itemId": "engineparts", - "amount": 1 - }, - { - "itemId": "turretcomponents", - "amount": 1 - }, - { - "itemId": "hullparts", - "amount": 1 - } - ], - "cycleTime": 28, - "productsPerHour": 128.6, - "maxEfficiency": 1, - "priority": 8 - } + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_up", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 36000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 2605841, + "max": 3525549, + "avg": 3065695 + }, + "production": [ + { + "time": 195, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1080 + }, + { + "ware": "hullparts", + "amount": 2851 + } + ] + } + ] }, { - "id": "gas-miner", - "label": "Prospector Gas Miner", - "kind": "mining", - "class": "industrial", - "speed": 75000, - "warpSpeed": 0.15, - "ftlSpeed": 0.5, - "spoolTime": 3.1, - "cargoCapacity": 120, - "cargoKind": "liquid", - "color": "#84e7ff", - "hullColor": "#2b5868", - "size": 6, - "maxHealth": 150, - "capabilities": [ - "warp", - "ftl", - "mining" + "id": "ship_arg_l_trans_container_01_b", + "version": 0, + "name": "Veles Sentinel", + "description": "Designed and produced by the Antigone Republic after the Jump Gates began to realign, the Veles-class freighter is more compact and self-sufficient than any freighter-class ship before it; the reason why it became part of the on-going technology exchange between the Republic and their Argon Federation allies.nnBuilt using a highly modular design, many ship designers have taken the base Veles model and reorganised it, as well as making their own changes to the internal systems, to sell an ever-growing number of variations on the ship. However, the Veles remains a popular choice among traders and station builders.", + "size": "large", + "explosionDamage": 800, + "hull": 69000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 91, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 529.12, + "inertia": { + "pitch": 195.78, + "yaw": 195.78, + "roll": 156.624 + }, + "drag": { + "forward": 145.824, + "reverse": 583.296, + "horizontal": 114.15, + "vertical": 114.15, + "pitch": 172.824, + "yaw": 172.824, + "roll": 172.824 + }, + "engines": [ + { + "group": "group_back_mid_up", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_up", + "size": "large", + "hittable": false + } ], - "construction": { - "recipeId": "gas-miner-construction", - "facilityCategory": "station", - "requiredModules": [ - "module_gen_build_l_01" - ], - "requirements": [ - { - "itemId": "hullparts", - "amount": 34 - }, - { - "itemId": "advancedelectronics", - "amount": 1 - }, - { - "itemId": "antimatterconverters", - "amount": 1 - }, - { - "itemId": "shieldcomponents", - "amount": 1 - }, - { - "itemId": "engineparts", - "amount": 1 - }, - { - "itemId": "engineparts", - "amount": 1 - }, - { - "itemId": "turretcomponents", - "amount": 1 - }, - { - "itemId": "hullparts", - "amount": 1 - } - ], - "cycleTime": 28, - "productsPerHour": 128.6, - "maxEfficiency": 1, - "priority": 8 - } + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_up", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 43200, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 3140563, + "max": 4248997, + "avg": 3694780 + }, + "production": [ + { + "time": 235, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1302 + }, + { + "ware": "hullparts", + "amount": 3436 + } + ] + } + ] + }, + { + "id": "ship_arg_l_trans_container_02_a", + "version": 0, + "name": "Mokosi Vanguard", + "description": "When Argon Federation ship designers received the blue-prints for the Veles, it was immediately recognisable as a highly modular ship, and so they began work straight away on different variations that could provide more variety and competition in a ship class that was both needed and popular throughout Argon space.nnOne of the first ships to come from this process was the Mokosi, designed in Black Hole Sun. Though it uses the same base chassis as the Veles, a different container configuration and tweaks to several internal systems to adapt have created a fine addition to the Argon merchant fleet.", + "size": "large", + "explosionDamage": 800, + "hull": 53000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 113, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 413.15, + "inertia": { + "pitch": 176.471, + "yaw": 176.471, + "roll": 141.177 + }, + "drag": { + "forward": 122.63, + "reverse": 490.52, + "horizontal": 75.814, + "vertical": 75.814, + "pitch": 149.63, + "yaw": 149.63, + "roll": 149.63 + }, + "engines": [ + { + "group": "group_back_mid_up", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_up", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_up", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 33000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 2705448, + "max": 3660312, + "avg": 3182880 + }, + "production": [ + { + "time": 203, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1121 + }, + { + "ware": "hullparts", + "amount": 2960 + } + ] + } + ] + }, + { + "id": "ship_arg_l_trans_container_02_b", + "version": 0, + "name": "Mokosi Sentinel", + "description": "When Argon Federation ship designers received the blue-prints for the Veles, it was immediately recognisable as a highly modular ship, and so they began work straight away on different variations that could provide more variety and competition in a ship class that was both needed and popular throughout Argon space.nnOne of the first ships to come from this process was the Mokosi, designed in Black Hole Sun. Though it uses the same base chassis as the Veles, a different container configuration and tweaks to several internal systems to adapt have created a fine addition to the Argon merchant fleet.", + "size": "large", + "explosionDamage": 800, + "hull": 64000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 94, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 495.78, + "inertia": { + "pitch": 195.962, + "yaw": 195.962, + "roll": 156.769 + }, + "drag": { + "forward": 139.156, + "reverse": 556.624, + "horizontal": 90.977, + "vertical": 90.977, + "pitch": 166.156, + "yaw": 166.156, + "roll": 166.156 + }, + "engines": [ + { + "group": "group_back_mid_up", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_up", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_up", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 39600, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 3251101, + "max": 4398549, + "avg": 3824825 + }, + "production": [ + { + "time": 244, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1347 + }, + { + "ware": "hullparts", + "amount": 3557 + } + ] + } + ] + }, + { + "id": "ship_arg_l_trans_container_03_a", + "version": 0, + "name": "Incarcatura Vanguard", + "description": "Designed and produced as part of the push to revitalise the Argon economy after the Jump Gate realignment, the relatively new Incarcatura has become a popular alternative to the Veles and Mokosi design. Though there have been some concerns as to its length, that it might caught flight problems, most experts are willing to overlook these problems due to its cargo efficiency.", + "size": "large", + "explosionDamage": 800, + "hull": 78000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 207, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 598.799, + "inertia": { + "pitch": 287.313, + "yaw": 287.313, + "roll": 229.85 + }, + "drag": { + "forward": 159.76, + "reverse": 639.04, + "horizontal": 140.687, + "vertical": 140.687, + "pitch": 186.76, + "yaw": 186.76, + "roll": 186.76 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 45000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 2632348, + "max": 3561412, + "avg": 3096880 + }, + "production": [ + { + "time": 197, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1091 + }, + { + "ware": "hullparts", + "amount": 2880 + } + ] + } + ] + }, + { + "id": "ship_arg_l_trans_container_03_b", + "version": 0, + "name": "Incarcatura Sentinel", + "description": "Designed and produced as part of the push to revitalise the Argon economy after the Jump Gate realignment, the relatively new Incarcatura has become a popular alternative to the Veles and Mokosi design. Though there have been some concerns as to its length, that it might caught flight problems, most experts are willing to overlook these problems due to its cargo efficiency.", + "size": "large", + "explosionDamage": 800, + "hull": 93000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 172, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 718.559, + "inertia": { + "pitch": 324.161, + "yaw": 324.161, + "roll": 259.329 + }, + "drag": { + "forward": 183.712, + "reverse": 734.847, + "horizontal": 168.824, + "vertical": 168.824, + "pitch": 210.712, + "yaw": 210.712, + "roll": 210.712 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 54000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 4249222, + "max": 5748948, + "avg": 4999085 + }, + "production": [ + { + "time": 319, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1761 + }, + { + "ware": "hullparts", + "amount": 4649 + } + ] + } + ] + }, + { + "id": "ship_arg_l_trans_container_04_a", + "version": 0, + "name": "Shuyaku Vanguard", + "description": "Designed in parallel to the Incarcatura, as part of the push to rejuvenate the Argon economy, the Shuyaku-class freighter is a Sonra variant, extending the Terracorp-designed freighter's cargo bay at the cost of some manoeuvrability. The Shuyaku also marks the Hatikvah Free League's first contribution to the Argon merchant fleet, meant as an offering of good will to both the Federation and the Republic, to show that the Free League was also taking the rebuilding effort seriously.", + "size": "large", + "explosionDamage": 800, + "hull": 84000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 225, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 650.415, + "inertia": { + "pitch": 329.329, + "yaw": 329.329, + "roll": 263.463 + }, + "drag": { + "forward": 170.083, + "reverse": 680.332, + "horizontal": 93.101, + "vertical": 93.101, + "pitch": 197.083, + "yaw": 197.083, + "roll": 197.083 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_back_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_mid_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_back_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 37000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 3842459, + "max": 5198621, + "avg": 4520540 + }, + "production": [ + { + "time": 288, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1592 + }, + { + "ware": "hullparts", + "amount": 4204 + } + ] + } + ] + }, + { + "id": "ship_arg_l_trans_container_04_b", + "version": 0, + "name": "Shuyaku Sentinel", + "description": "Designed in parallel to the Incarcatura, as part of the push to rejuvenate the Argon economy, the Shuyaku-class freighter is a Sonra variant, extending the Terracorp-designed freighter's cargo bay at the cost of some manoeuvrability. The Shuyaku also marks the Hatikvah Free League's first contribution to the Argon merchant fleet, meant as an offering of good will to both the Federation and the Republic, to show that the Free League was also taking the rebuilding effort seriously.", + "size": "large", + "explosionDamage": 800, + "hull": 101000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 187, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 780.498, + "inertia": { + "pitch": 372.804, + "yaw": 372.804, + "roll": 298.243 + }, + "drag": { + "forward": 196.1, + "reverse": 784.399, + "horizontal": 111.722, + "vertical": 111.722, + "pitch": 223.1, + "yaw": 223.1, + "roll": 223.1 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_back_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_mid_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_back_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 44400, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 4614858, + "max": 6243632, + "avg": 5429245 + }, + "production": [ + { + "time": 346, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1913 + }, + { + "ware": "hullparts", + "amount": 5049 + } + ] + } + ] + }, + { + "id": "ship_arg_l_trans_container_05_a", + "version": 0, + "name": "Sonra Vanguard", + "description": "Though the Sonra-class freighter was initially designed by Terracorp after the Terran Conflict, the status of development was lost with contact to Home of Light. Quite by chance, project designers were trapped in Black Hole Sun during the Jump Gate shutdown, and were able to get the blueprints of the finished ship to the Argon Federation and Antigone Republic when contact with Argon Prime and Antigone Memorial was re-established.", + "size": "large", + "explosionDamage": 800, + "hull": 67000, + "storage": { + "missile": 20, + "unit": 6 + }, + "people": 178, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 513.678, + "inertia": { + "pitch": 224.003, + "yaw": 224.003, + "roll": 179.203 + }, + "drag": { + "forward": 142.736, + "reverse": 570.943, + "horizontal": 198.459, + "vertical": 198.459, + "pitch": 169.736, + "yaw": 169.736, + "roll": 169.736 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_back_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_mid_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_back_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 29000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 3049154, + "max": 4125326, + "avg": 3587240 + }, + "production": [ + { + "time": 229, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1264 + }, + { + "ware": "hullparts", + "amount": 3336 + } + ] + } + ] + }, + { + "id": "ship_arg_l_trans_container_05_b", + "version": 0, + "name": "Sonra Sentinel", + "description": "Though the Sonra-class freighter was initially designed by Terracorp after the Terran Conflict, the status of development was lost with contact to Home of Light. Quite by chance, project designers were trapped in Black Hole Sun during the Jump Gate shutdown, and were able to get the blueprints of the finished ship to the Argon Federation and Antigone Republic when contact with Argon Prime and Antigone Memorial was re-established.", + "size": "large", + "explosionDamage": 800, + "hull": 80000, + "storage": { + "missile": 20, + "unit": 6 + }, + "people": 148, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 616.414, + "inertia": { + "pitch": 251.12, + "yaw": 251.12, + "roll": 200.896 + }, + "drag": { + "forward": 163.283, + "reverse": 653.131, + "horizontal": 238.151, + "vertical": 238.151, + "pitch": 190.283, + "yaw": 190.283, + "roll": 190.283 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_back_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_mid_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_back_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 34800, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 3650555, + "max": 4938986, + "avg": 4294770 + }, + "production": [ + { + "time": 274, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1513 + }, + { + "ware": "hullparts", + "amount": 3994 + } + ] + } + ] + }, + { + "id": "ship_arg_m_bomber_01_a", + "version": 0, + "name": "Minotaur Vanguard", + "description": "A ship that saw much upheaval behind the scenes during the Terran Conflict, when it became painfully clear to the Argon that their ships were far inferior to the Terran equivalents, the Minotaur was over the course of the conflict completely redesigned as a mobile weapons-platform, sporting heavy weapons that deal incredible amounts of damage to similarly-sized and larger, slower targets. Unfortunately, the ship was unable to be put into mass-production before crisis crippled the Argon Federation, and as a result the new Minotaur has only recently entered service.", + "size": "medium", + "explosionDamage": 500, + "hull": 12000, + "storage": { + "missile": 40, + "unit": 0 + }, + "people": 9, + "purpose": "fight", + "thruster": "medium", + "type": "gunboat", + "mass": 29.587, + "inertia": { + "pitch": 5.723, + "yaw": 5.723, + "roll": 4.578 + }, + "drag": { + "forward": 5.443, + "reverse": 21.773, + "horizontal": 13.85, + "vertical": 13.85, + "pitch": 9.897, + "yaw": 9.897, + "roll": 9.897 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 880, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 637993, + "max": 863167, + "avg": 750580 + }, + "production": [ + { + "time": 24, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 134 + }, + { + "ware": "hullparts", + "amount": 708 + } + ] + } + ] + }, + { + "id": "ship_arg_m_bomber_01_b", + "version": 0, + "name": "Minotaur Sentinel", + "description": "A ship that saw much upheaval behind the scenes during the Terran Conflict, when it became painfully clear to the Argon that their ships were far inferior to the Terran equivalents, the Minotaur was over the course of the conflict completely redesigned as a mobile weapons-platform, sporting heavy weapons that deal incredible amounts of damage to similarly-sized and larger, slower targets. Unfortunately, the ship was unable to be put into mass-production before crisis crippled the Argon Federation, and as a result the new Minotaur has only recently entered service.", + "size": "medium", + "explosionDamage": 500, + "hull": 14000, + "storage": { + "missile": 40, + "unit": 0 + }, + "people": 7, + "purpose": "fight", + "thruster": "medium", + "type": "gunboat", + "mass": 35.505, + "inertia": { + "pitch": 6.578, + "yaw": 6.578, + "roll": 5.263 + }, + "drag": { + "forward": 6.257, + "reverse": 25.028, + "horizontal": 16.62, + "vertical": 16.62, + "pitch": 11.376, + "yaw": 11.376, + "roll": 11.376 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 1056, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 755166, + "max": 1021695, + "avg": 888430 + }, + "production": [ + { + "time": 29, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 159 + }, + { + "ware": "hullparts", + "amount": 838 + } + ] + } + ] + }, + { + "id": "ship_arg_m_bomber_02_a", + "version": 0, + "name": "Minotaur Raider", + "description": "A ship that saw much upheaval behind the scenes during the Terran Conflict, when it became painfully clear to the Argon that their ships were far inferior to the Terran equivalents, the Minotaur was over the course of the conflict completely redesigned as a mobile weapons-platform, sporting heavy weapons that deal incredible amounts of damage to similarly-sized and larger, slower targets. Unfortunately, the ship was unable to be put into mass-production before crisis crippled the Argon Federation, and as a result the new Minotaur has only recently entered service.", + "size": "medium", + "explosionDamage": 500, + "hull": 13000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 15, + "purpose": "fight", + "thruster": "medium", + "type": "scavenger", + "mass": 26.629, + "inertia": { + "pitch": 4.289, + "yaw": 4.289, + "roll": 3.431 + }, + "drag": { + "forward": 5.036, + "reverse": 20.146, + "horizontal": 12.465, + "vertical": 12.465, + "pitch": 8.241, + "yaw": 8.241, + "roll": 8.241 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 2370, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "hatikvah", + "scaleplate" + ], + "price": { + "min": 629863, + "max": 852167, + "avg": 741015 + }, + "production": [ + { + "time": 24, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 132 + }, + { + "ware": "hullparts", + "amount": 699 + } + ] + } + ] + }, + { + "id": "ship_arg_m_frigate_01_a", + "version": 0, + "name": "Cerberus Vanguard", + "description": "The first of the newly-designed M-sized support ships to reach the Federal and Republic navies, the Cerberus-class frigate is primarily designed to target and support smaller and similarly-sized vessels in a defensive capacity. Notably, the Cerberus was also the first ship of its size to support a fully-functional dock for smaller ships; a massive technical challenge for its designers. This has only made it a more popular choice of ship, and saw a new design race explode throughout the Jump Gate network as other ship designers scrambled to copy the Argons' innovative design.", + "size": "medium", + "explosionDamage": 200, + "hull": 17000, + "storage": { + "missile": 100, + "unit": 12 + }, + "people": 14, + "purpose": "fight", + "thruster": "medium", + "type": "frigate", + "mass": 34.432, + "inertia": { + "pitch": 3.663, + "yaw": 3.663, + "roll": 2.93 + }, + "drag": { + "forward": 9.164, + "reverse": 25.659, + "horizontal": 11.71, + "vertical": 11.71, + "pitch": 7.776, + "yaw": 7.776, + "roll": 7.776 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 1760, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 1, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 819115, + "max": 1108215, + "avg": 963665 + }, + "production": [ + { + "time": 31, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 172 + }, + { + "ware": "hullparts", + "amount": 909 + } + ] + } + ] + }, + { + "id": "ship_arg_m_frigate_01_b", + "version": 0, + "name": "Cerberus Sentinel", + "description": "The first of the newly-designed M-sized support ships to reach the Federal and Republic navies, the Cerberus-class frigate is primarily designed to target and support smaller and similarly-sized vessels in a defensive capacity. Notably, the Cerberus was also the first ship of its size to support a fully-functional dock for smaller ships; a massive technical challenge for its designers. This has only made it a more popular choice of ship, and saw a new design race explode throughout the Jump Gate network as other ship designers scrambled to copy the Argons' innovative design.", + "size": "medium", + "explosionDamage": 200, + "hull": 20000, + "storage": { + "missile": 100, + "unit": 12 + }, + "people": 11, + "purpose": "fight", + "thruster": "medium", + "type": "frigate", + "mass": 41.318, + "inertia": { + "pitch": 4.23, + "yaw": 4.23, + "roll": 3.384 + }, + "drag": { + "forward": 10.584, + "reverse": 29.636, + "horizontal": 14.052, + "vertical": 14.052, + "pitch": 8.981, + "yaw": 8.981, + "roll": 8.981 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 2112, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 1, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 973250, + "max": 1316750, + "avg": 1145000 + }, + "production": [ + { + "time": 37, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 205 + }, + { + "ware": "hullparts", + "amount": 1080 + } + ] + } + ] + }, + { + "id": "ship_arg_m_miner_liquid_01_a", + "version": 0, + "name": "Sunder (Gas) Vanguard", + "description": "Jonferco's response to the PMC's Drill design, the Sunder fulfils a similar role to its sister ship but handles gas collection instead of asteroid mining. It is fitted with a non-modular scoop that allows natural gases to be safely placed inside the ship's cargo hold. For all the gratitude received by PMC for their work in advancing asteroid mining, Jonferco's reply sent the mining community into a complete frenzy, with the possibilities for collecting, refining and utilising natural gases spurring the economy, not just in Argon space but across the entire Jump Gate network, to a brand new high.", + "size": "medium", + "explosionDamage": 100, + "hull": 4000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 9, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 30.292, + "inertia": { + "pitch": 9.55, + "yaw": 9.55, + "roll": 7.64 + }, + "drag": { + "forward": 3.878, + "reverse": 22.161, + "horizontal": 24.508, + "vertical": 24.508, + "pitch": 16.132, + "yaw": 16.132, + "roll": 16.132 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 10400, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers", + "hatikvah" + ], + "price": { + "min": 108413, + "max": 146677, + "avg": 127545 + }, + "production": [ + { + "time": 12, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 66 + }, + { + "ware": "hullparts", + "amount": 117 + } + ] + } + ] + }, + { + "id": "ship_arg_m_miner_liquid_01_b", + "version": 0, + "name": "Sunder (Gas) Sentinel", + "description": "Jonferco's response to the PMC's Drill design, the Sunder fulfils a similar role to its sister ship but handles gas collection instead of asteroid mining. It is fitted with a non-modular scoop that allows natural gases to be safely placed inside the ship's cargo hold. For all the gratitude received by PMC for their work in advancing asteroid mining, Jonferco's reply sent the mining community into a complete frenzy, with the possibilities for collecting, refining and utilising natural gases spurring the economy, not just in Argon space but across the entire Jump Gate network, to a brand new high.", + "size": "medium", + "explosionDamage": 100, + "hull": 5000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 7, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 38.926, + "inertia": { + "pitch": 11.164, + "yaw": 11.164, + "roll": 8.932 + }, + "drag": { + "forward": 4.709, + "reverse": 26.909, + "horizontal": 29.41, + "vertical": 29.41, + "pitch": 18.858, + "yaw": 18.858, + "roll": 18.858 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 12480, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers", + "hatikvah" + ], + "price": { + "min": 137173, + "max": 185587, + "avg": 161380 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 84 + }, + { + "ware": "hullparts", + "amount": 148 + } + ] + } + ] + }, + { + "id": "ship_arg_m_miner_solid_01_a", + "version": 0, + "name": "Drill (Mineral) Vanguard", + "description": "Towards the end of the last era, the Plutarch Mining Corporation called for a shift away from static station-based asteroid mining towards the far more efficient method of using ships to identify and break down asteroids and bring them to refineries in far less time than it took for a refinery to be attached to a much bigger asteroid. Though it is now different from the PMC's original design, the Drill has been in service ever since, inspiring a train of different mining ships to be released all across the old and new Jump Gate network.", + "size": "medium", + "explosionDamage": 100, + "hull": 4000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 9, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 32.438, + "inertia": { + "pitch": 10.839, + "yaw": 10.839, + "roll": 8.671 + }, + "drag": { + "forward": 4.085, + "reverse": 23.341, + "horizontal": 22.934, + "vertical": 22.934, + "pitch": 17.097, + "yaw": 17.097, + "roll": 17.097 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + } + ], + "cargo": [ + { + "max": 9800, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers", + "hatikvah" + ], + "price": { + "min": 112170, + "max": 151760, + "avg": 131965 + }, + "production": [ + { + "time": 12, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 69 + }, + { + "ware": "hullparts", + "amount": 121 + } + ] + } + ] + }, + { + "id": "ship_arg_m_miner_solid_01_b", + "version": 0, + "name": "Drill (Mineral) Sentinel", + "description": "Towards the end of the last era, the Plutarch Mining Corporation called for a shift away from static station-based asteroid mining towards the far more efficient method of using ships to identify and break down asteroids and bring them to refineries in far less time than it took for a refinery to be attached to a much bigger asteroid. Though it is now different from the PMC's original design, the Drill has been in service ever since, inspiring a train of different mining ships to be released all across the old and new Jump Gate network.", + "size": "medium", + "explosionDamage": 100, + "hull": 5000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 7, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 36.351, + "inertia": { + "pitch": 12.69, + "yaw": 12.69, + "roll": 10.152 + }, + "drag": { + "forward": 4.461, + "reverse": 25.493, + "horizontal": 27.52, + "vertical": 27.52, + "pitch": 20.017, + "yaw": 20.017, + "roll": 20.017 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + } + ], + "cargo": [ + { + "max": 11760, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers", + "hatikvah" + ], + "price": { + "min": 132528, + "max": 179302, + "avg": 155915 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 81 + }, + { + "ware": "hullparts", + "amount": 143 + } + ] + } + ] + }, + { + "id": "ship_arg_m_trans_container_01_a", + "version": 0, + "name": "Mercury Vanguard", + "description": "The latest redesign of the Mercury-class transporter was almost purely aesthetic, with only small changes made to allow the user more modularity and modification options. Other than the aesthetic changes made to keep the model in line with latest style trends, the Mercury remains the same reliable M-sized transporter that has seen popular use across Argon space for so many years.", + "size": "medium", + "explosionDamage": 100, + "hull": 5000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 17, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 42.966, + "inertia": { + "pitch": 6.177, + "yaw": 6.177, + "roll": 4.942 + }, + "drag": { + "forward": 7.283, + "reverse": 29.131, + "horizontal": 26.605, + "vertical": 26.605, + "pitch": 13.242, + "yaw": 13.242, + "roll": 13.242 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 8200, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "argon", + "buccaneers" + ], + "price": { + "min": 147352, + "max": 199358, + "avg": 173355 + }, + "production": [ + { + "time": 16, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 90 + }, + { + "ware": "hullparts", + "amount": 159 + } + ] + } + ] + }, + { + "id": "ship_arg_m_trans_container_01_b", + "version": 0, + "name": "Mercury Sentinel", + "description": "The latest redesign of the Mercury-class transporter was almost purely aesthetic, with only small changes made to allow the user more modularity and modification options. Other than the aesthetic changes made to keep the model in line with latest style trends, the Mercury remains the same reliable M-sized transporter that has seen popular use across Argon space for so many years.", + "size": "medium", + "explosionDamage": 100, + "hull": 6000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 14, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 51.559, + "inertia": { + "pitch": 7.18, + "yaw": 7.18, + "roll": 5.744 + }, + "drag": { + "forward": 8.464, + "reverse": 33.858, + "horizontal": 31.926, + "vertical": 31.926, + "pitch": 15.39, + "yaw": 15.39, + "roll": 15.39 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 9840, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 177000, + "max": 239470, + "avg": 208235 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 108 + }, + { + "ware": "hullparts", + "amount": 191 + } + ] + } + ] + }, + { + "id": "ship_arg_m_trans_container_02_a", + "version": 0, + "name": "Ides Vanguard", + "description": "With the Argon Federation desperate to rebuild its economy after the Jump Gates realigned, the sheer number of Mercury-class transporters across Argon space became so high that the value of the popular transporter began to sink rapidly. In an attempt to correct course, the Federation released the Ides. Though they are only slightly aesthetically and technically different, and in fact the Ides is based on the Mercury model, the ship has been pushed as competition to the popular transporter; a marketing strategy that has been well met by the public, and recently allowed for the ship market to find stability.", + "size": "medium", + "explosionDamage": 100, + "hull": 5000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 19, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 38.67, + "inertia": { + "pitch": 5.676, + "yaw": 5.676, + "roll": 4.541 + }, + "drag": { + "forward": 6.692, + "reverse": 26.768, + "horizontal": 23.944, + "vertical": 23.944, + "pitch": 12.167, + "yaw": 12.167, + "roll": 12.167 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 7400, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "argon", + "buccaneers" + ], + "price": { + "min": 147352, + "max": 199358, + "avg": 173355 + }, + "production": [ + { + "time": 16, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 90 + }, + { + "ware": "hullparts", + "amount": 159 + } + ] + } + ] + }, + { + "id": "ship_arg_m_trans_container_02_b", + "version": 0, + "name": "Ides Sentinel", + "description": "With the Argon Federation desperate to rebuild its economy after the Jump Gates realigned, the sheer number of Mercury-class transporters across Argon space became so high that the value of the popular transporter began to sink rapidly. In an attempt to correct course, the Federation released the Ides. Though they are only slightly aesthetically and technically different, and in fact the Ides is based on the Mercury model, the ship has been pushed as competition to the popular transporter; a marketing strategy that has been well met by the public, and recently allowed for the ship market to find stability.", + "size": "medium", + "explosionDamage": 100, + "hull": 6000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 15, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 46.403, + "inertia": { + "pitch": 6.578, + "yaw": 6.578, + "roll": 5.263 + }, + "drag": { + "forward": 7.755, + "reverse": 31.022, + "horizontal": 28.733, + "vertical": 28.733, + "pitch": 14.101, + "yaw": 14.101, + "roll": 14.101 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 8880, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 177000, + "max": 239470, + "avg": 208235 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 108 + }, + { + "ware": "hullparts", + "amount": 191 + } + ] + } + ] + }, + { + "id": "ship_arg_s_fighter_01_a", + "version": 0, + "name": "Nova Vanguard", + "description": "Though the prototype for the new-model Nova-class fighter was in development as far back as the Terran Conflict, it failed to reach production before the Jump Gate shutdown. Its first major role was escorting Argon Federation exploratory groups sent into newly discovered or rediscovered areas of space as the Jump Gates began to realign.nnThe new-look Nova is a major step up in ship design, with rotatable engines that make it formidable in strafing targets of a similar size. The Nova's redesign caused considerable controversy in the piloting community, when the rear turret was abandoned in favour of increased laser energy and strafing performance.nnDespite being a sound dogfighter, the Nova lacks the firepower required by full-time combatants. The Vanguard model improves the speed of the Nova. However, some pilots have suggested a portion of the upgrade budget might have been better spent on an aesthetic redesign.", + "size": "small", + "hull": 3100, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 3, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 6.579, + "inertia": { + "pitch": 1.229, + "yaw": 1.229, + "roll": 1.352 + }, + "drag": { + "forward": 3.831, + "reverse": 11.829, + "horizontal": 3.715, + "vertical": 3.715, + "pitch": 2.694, + "yaw": 2.694, + "roll": 2.694 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 240, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 112175, + "max": 151766, + "avg": 131970 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 56 + }, + { + "ware": "hullparts", + "amount": 122 + } + ] + } + ] + }, + { + "id": "ship_arg_s_fighter_01_b", + "version": 0, + "name": "Nova Sentinel", + "description": "Though the prototype for the new-model Nova-class fighter was in development as far back as the Terran Conflict, it failed to reach production before the Jump Gate shutdown. Its first major role was escorting Argon Federation exploratory groups sent into newly discovered or rediscovered areas of space as the Jump Gates began to realign.nnThe new-look Nova is a major step up in ship design, with rotatable engines that make it formidable in strafing targets of a similar size. The Nova's redesign caused considerable controversy in the piloting community, when the rear turret was abandoned in favour of increased laser energy and strafing performance.nnDespite being a sound dogfighter, the Nova lacks the firepower required by full-time combatants. The Nova's Sentinel variant has a hardened hull, adding resilience, though this comes at a marginal cost to speed.", + "size": "small", + "hull": 3800, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 7.894, + "inertia": { + "pitch": 1.398, + "yaw": 1.398, + "roll": 1.537 + }, + "drag": { + "forward": 4.012, + "reverse": 13.144, + "horizontal": 4.458, + "vertical": 4.458, + "pitch": 3.064, + "yaw": 3.064, + "roll": 3.064 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 288, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 136085, + "max": 184115, + "avg": 160100 + }, + "production": [ + { + "time": 12, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 68 + }, + { + "ware": "hullparts", + "amount": 148 + } + ] + } + ] + }, + { + "id": "ship_arg_s_fighter_02_a", + "version": 0, + "name": "Elite Vanguard", + "description": "Though retired from service for a long time before the Jump Gate shutdown, the push to give any advantage to the Federal and Republic fleets in their fights against the Xenon and the Holy Order of the Pontifex has seen the long-serving Elite redesigned as an interceptor.nnQuick in a straight line and able to fire off short bursts of fire-power before disengaging, the Elite often targets small ships and slower missiles, as well as using its speed and size, in support of the dog-fighters that are able to hold out longer under fire.", + "size": "small", + "hull": 1800, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 3.772, + "inertia": { + "pitch": 0.451, + "yaw": 0.451, + "roll": 0.361 + }, + "drag": { + "forward": 2.193, + "reverse": 8.772, + "horizontal": 3.381, + "vertical": 3.381, + "pitch": 2.585, + "yaw": 2.585, + "roll": 2.585 + }, + "engines": [ + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 150, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "argon", + "buccaneers" + ], + "price": { + "min": 65242, + "max": 88268, + "avg": 76755 + }, + "production": [ + { + "time": 6, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 32 + }, + { + "ware": "hullparts", + "amount": 71 + } + ] + } + ] + }, + { + "id": "ship_arg_s_fighter_02_b", + "version": 0, + "name": "Elite Sentinel", + "description": "Though retired from service for a long time before the Jump Gate shutdown, the push to give any advantage to the Federal and Republic fleets in their fights against the Xenon and the Holy Order of the Pontifex has seen the long-serving Elite redesigned as an interceptor.nnQuick in a straight line and able to fire off short bursts of fire-power before disengaging, the Elite often targets small ships and slower missiles, as well as using its speed and size, in support of the dog-fighters that are able to hold out longer under fire.", + "size": "small", + "hull": 2200, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 1, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 4.526, + "inertia": { + "pitch": 0.492, + "yaw": 0.492, + "roll": 0.393 + }, + "drag": { + "forward": 2.382, + "reverse": 9.526, + "horizontal": 4.057, + "vertical": 4.057, + "pitch": 2.821, + "yaw": 2.821, + "roll": 2.821 + }, + "engines": [ + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 180, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 79042, + "max": 106939, + "avg": 92990 + }, + "production": [ + { + "time": 7, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 39 + }, + { + "ware": "hullparts", + "amount": 86 + } + ] + } + ] + }, + { + "id": "ship_arg_s_fighter_03_a", + "version": 0, + "name": "Pulsar Vanguard", + "description": "When the Xenon destroyed a food production facility in Antigone Memorial, the sole survivor was protein engineer Tracie Harben. Having lost her entire family, and fuelled by vengeance, she dedicated herself to the creation of tools of destruction.nnHarben's most popular design is the Pulsar fighter, also known as the \"Glass Cannon\". A highly aggressive vessel, it prioritises armaments and speed above all else.nnNo-one knew the Pulsar could be even more aggressively optimised until Harben surprised observers by releasing the Vanguard model.", + "size": "small", + "race": "argon", + "hull": 1900, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 3, + "purpose": "fight", + "thruster": "small", + "type": "heavyfighter", + "mass": 7.94, + "inertia": { + "pitch": 1.882, + "yaw": 1.882, + "roll": 2.07 + }, + "drag": { + "forward": 5.763, + "reverse": 25.881, + "horizontal": 4.015, + "vertical": 4.015, + "pitch": 3.419, + "yaw": 3.419, + "roll": 3.419 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 150, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 96530, + "max": 130600, + "avg": 113565 + }, + "production": [ + { + "time": 9, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 48 + }, + { + "ware": "hullparts", + "amount": 105 + } + ] + } + ] + }, + { + "id": "ship_arg_s_fighter_04_a", + "version": 0, + "name": "Quasar Vanguard", + "description": "In the midst of the Terran War, the Argon Federation floundered somewhat in their ship design output. Perhaps their worst effort was the Quasar fighter, which, named after a powerful cosmic force, failed to fully live up to expectations.nnThe Quasar Vanguard was commissioned to breathe some useful function into the model. However, the variant has failed to achieve popularity.", + "size": "small", + "race": "argon", + "hull": 1700, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 3, + "purpose": "fight", + "thruster": "small", + "type": "heavyfighter", + "mass": 6.976, + "inertia": { + "pitch": 1.156, + "yaw": 1.156, + "roll": 1.272 + }, + "drag": { + "forward": 4.675, + "reverse": 17.964, + "horizontal": 4.158, + "vertical": 4.158, + "pitch": 3.586, + "yaw": 3.586, + "roll": 3.586 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 190, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 85463, + "max": 115627, + "avg": 100545 + }, + "production": [ + { + "time": 8, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 42 + }, + { + "ware": "hullparts", + "amount": 93 + } + ] + } + ] + }, + { + "id": "ship_arg_s_heavyfighter_02_a", + "version": 0, + "name": "Eclipse Vanguard", + "description": "Redesigned using the same combat-ready cockpit used by the new-look Nova, the Eclipse replaces the rotatable engines with a support structure that allows it to carry more weapons - effectively sacrificing the manoeuvrability of the dog-fighter for enough fire-power to be devastating against both small- and medium-sized ships.nnThis sacrifice does make the ship vulnerable to more specialised dog-fighters and interceptors, but nonetheless both the Federal and Republic navy has found the new Eclipse to be a worthy addition to their fleets, with Argon ship designers once again leading the race to design ships effective for both personal and military use.", + "size": "small", + "hull": 4000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 3, + "purpose": "fight", + "thruster": "small", + "type": "heavyfighter", + "mass": 8.406, + "inertia": { + "pitch": 2.077, + "yaw": 2.077, + "roll": 1.662 + }, + "drag": { + "forward": 4.97, + "reverse": 20.108, + "horizontal": 3.883, + "vertical": 3.883, + "pitch": 3.564, + "yaw": 3.564, + "roll": 3.564 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 320, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 144283, + "max": 195207, + "avg": 169745 + }, + "production": [ + { + "time": 13, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 71 + }, + { + "ware": "hullparts", + "amount": 157 + } + ] + } + ] + }, + { + "id": "ship_arg_s_miner_solid_01_a", + "version": 0, + "name": "Courier (Mineral)", + "description": "After years of outcry from many a trader about the lack of a small and speedy transporter, the up and coming ship manufacturer Jinko-Tekina have supplied both the Argon Federation and Antigone Memorial with the Courier-class s-ship, designed for transporting small numbers of valuable wares across a short distance in order to limit the risk of hijacking as well as to share the load of M- and L-sized transporters that make up the rest of the Argon merchant fleet.", + "size": "small", + "hull": 1200, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 3, + "purpose": "mine", + "thruster": "small", + "type": "miner", + "mass": 9.532, + "inertia": { + "pitch": 4.871, + "yaw": 4.871, + "roll": 3.897 + }, + "drag": { + "forward": 4.478, + "reverse": 23.617, + "horizontal": 7.338, + "vertical": 7.338, + "pitch": 7.371, + "yaw": 7.371, + "roll": 7.371 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "cargo": [ + { + "max": 2600, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "argon", + "buccaneers", + "hatikvah" + ], + "price": { + "min": 70775, + "max": 95755, + "avg": 83265 + }, + "production": [ + { + "time": 6, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 35 + }, + { + "ware": "hullparts", + "amount": 77 + } + ] + } + ] + }, + { + "id": "ship_arg_s_scout_01_a", + "version": 0, + "name": "Discoverer Vanguard", + "description": "Long serving as the scout and exploration ship for the Argon fleet, the Discoverer saw little re-design or overhaul until the Jump Gate shutdown. The current model, an overall improvement on the model used before the shutdown, was designed in the Antigone Republic and made available to the Argon Federation as part of an ongoing technology exchange between the two allied factions.", + "size": "small", + "hull": 1400, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 6.343, + "inertia": { + "pitch": 0.993, + "yaw": 0.993, + "roll": 0.795 + }, + "drag": { + "forward": 3.335, + "reverse": 8.218, + "horizontal": 4.157, + "vertical": 4.157, + "pitch": 3.388, + "yaw": 3.388, + "roll": 3.388 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 540, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "argon", + "buccaneers", + "hatikvah", + "scaleplate" + ], + "price": { + "min": 74464, + "max": 100746, + "avg": 87605 + }, + "production": [ + { + "time": 7, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 37 + }, + { + "ware": "hullparts", + "amount": 81 + } + ] + } + ] + }, + { + "id": "ship_arg_s_scout_01_b", + "version": 0, + "name": "Discoverer Sentinel", + "description": "Long serving as the scout and exploration ship for the Argon fleet, the Discoverer saw little re-design or overhaul until the Jump Gate shutdown. The current model, an overall improvement on the model used before the shutdown, was designed in the Antigone Republic and made available to the Argon Federation as part of an ongoing technology exchange between the two allied factions.", + "size": "small", + "hull": 1700, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 1, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 7.611, + "inertia": { + "pitch": 1.11, + "yaw": 1.11, + "roll": 0.888 + }, + "drag": { + "forward": 3.509, + "reverse": 9.486, + "horizontal": 4.988, + "vertical": 4.988, + "pitch": 3.785, + "yaw": 3.785, + "roll": 3.785 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 648, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers", + "hatikvah", + "scaleplate" + ], + "price": { + "min": 90041, + "max": 121820, + "avg": 105930 + }, + "production": [ + { + "time": 8, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 44 + }, + { + "ware": "hullparts", + "amount": 98 + } + ] + } + ] + }, + { + "id": "ship_arg_s_trans_container_01_a", + "version": 0, + "name": "Courier Vanguard", + "description": "After years of outcry from many a trader about the lack of a small and speedy transporter, the up and coming ship manufacturer Jinko-Tekina have supplied both the Argon Federation and Antigone Memorial with the Courier-class s-ship, designed for transporting small numbers of valuable wares across a short distance in order to limit the risk of hijacking as well as to share the load of M- and L-sized transporters that make up the rest of the Argon merchant fleet.", + "size": "small", + "hull": 2200, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 5, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 17.157, + "inertia": { + "pitch": 4.163, + "yaw": 4.163, + "roll": 3.33 + }, + "drag": { + "forward": 5.526, + "reverse": 24.157, + "horizontal": 6.115, + "vertical": 6.115, + "pitch": 6.299, + "yaw": 6.299, + "roll": 6.299 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 1960, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "argon", + "buccaneers", + "scaleplate" + ], + "price": { + "min": 132396, + "max": 179124, + "avg": 155760 + }, + "production": [ + { + "time": 12, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 66 + }, + { + "ware": "hullparts", + "amount": 144 + } + ] + } + ] + }, + { + "id": "ship_arg_s_trans_container_01_b", + "version": 0, + "name": "Courier Sentinel", + "description": "After years of outcry from many a trader about the lack of a small and speedy transporter, the up and coming ship manufacturer Jinko-Tekina have supplied both the Argon Federation and Antigone Memorial with the Courier-class s-ship, designed for transporting small numbers of valuable wares across a short distance in order to limit the risk of hijacking as well as to share the load of M- and L-sized transporters that make up the rest of the Argon merchant fleet.", + "size": "small", + "hull": 2600, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 4, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 20.588, + "inertia": { + "pitch": 4.871, + "yaw": 4.871, + "roll": 3.897 + }, + "drag": { + "forward": 5.998, + "reverse": 27.588, + "horizontal": 7.338, + "vertical": 7.338, + "pitch": 7.371, + "yaw": 7.371, + "roll": 7.371 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 2352, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers", + "scaleplate" + ], + "price": { + "min": 158083, + "max": 213877, + "avg": 185980 + }, + "production": [ + { + "time": 14, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 78 + }, + { + "ware": "hullparts", + "amount": 172 + } + ] + } + ] + }, + { + "id": "ship_arg_s_trans_container_02_a", + "version": 0, + "name": "Callisto Vanguard", + "description": "While largely superseded by more modern courier designs, the Argon Callisto has a strange, cult attraction. In no area does this ship excel, and yet thousands of owners gather periodically at Hatikvah's Choice to show off their various paint jobs and module modifications.nnThe release of a Vanguard model did not make the ship materially more useful, however, Callisto aficionados do seem to appreciate it.", + "size": "small", + "hull": 2100, + "storage": { + "missile": 4, + "unit": 0 + }, + "people": 3, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 16.227, + "inertia": { + "pitch": 4.173, + "yaw": 4.173, + "roll": 3.338 + }, + "drag": { + "forward": 5.158, + "reverse": 21.477, + "horizontal": 12.665, + "vertical": 12.665, + "pitch": 6.008, + "yaw": 6.008, + "roll": 6.008 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 1030, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "argon", + "buccaneers", + "scaleplate" + ], + "price": { + "min": 68043, + "max": 92058, + "avg": 80050 + }, + "production": [ + { + "time": 6, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 34 + }, + { + "ware": "hullparts", + "amount": 74 + } + ] + } + ] + }, + { + "id": "ship_arg_s_trans_container_02_b", + "version": 0, + "name": "Callisto Sentinel", + "description": "While largely superseded by more modern courier designs, the Argon Callisto has a strange, cult attraction. In no area does this ship excel, and yet thousands of owners gather periodically at Hatikvah's Choice to show off their various paint jobs and module modifications.nnThe release of a Sentinel variant is seen by some as evidence that the manufacturer has found a means of monetising the Callisto's enthusiastic fan base, rather than an attempt to build a performance spacecraft.", + "size": "small", + "hull": 2500, + "storage": { + "missile": 4, + "unit": 0 + }, + "people": 2, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 19.472, + "inertia": { + "pitch": 4.877, + "yaw": 4.877, + "roll": 3.902 + }, + "drag": { + "forward": 5.604, + "reverse": 24.722, + "horizontal": 15.198, + "vertical": 15.198, + "pitch": 7.023, + "yaw": 7.023, + "roll": 7.023 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 1236, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers", + "scaleplate" + ], + "price": { + "min": 83687, + "max": 113223, + "avg": 98455 + }, + "production": [ + { + "time": 8, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 42 + }, + { + "ware": "hullparts", + "amount": 91 + } + ] + } + ] + }, + { + "id": "ship_arg_xl_builder_01_a", + "version": 0, + "name": "Mammoth Vanguard", + "description": "With the method of building stations having changed numerous times since the beginning of the Jump Gate shutdown, many have questioned the necessity for a dedicated building vessel, but the Mammoth has continued to find purpose.nnUndergoing changes with every iteration of the station building method, the last iteration of the Mammoth saw it transformed into more of a mobile platform than a ship; becoming immobile when deployed to a station construction site so that construction drones can easily be ferried from the ship to the site and back again.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 115000, + "storage": { + "missile": 40, + "unit": 100 + }, + "people": 219, + "purpose": "build", + "thruster": "extralarge", + "type": "builder", + "mass": 885.723, + "inertia": { + "pitch": 598.799, + "yaw": 598.799, + "roll": 479.039 + }, + "drag": { + "forward": 257.145, + "reverse": 1028.579, + "horizontal": 467.116, + "vertical": 467.116, + "pitch": 877.145, + "yaw": 877.145, + "roll": 877.145 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 50, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 7755200, + "max": 10492330, + "avg": 9123765 + }, + "production": [ + { + "time": 439, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2428 + }, + { + "ware": "hullparts", + "amount": 8545 + } + ] + } + ] + }, + { + "id": "ship_arg_xl_builder_01_b", + "version": 0, + "name": "Mammoth Sentinel", + "description": "With the method of building stations having changed numerous times since the beginning of the Jump Gate shutdown, many have questioned the necessity for a dedicated building vessel, but the Mammoth has continued to find purpose.nnUndergoing changes with every iteration of the station building method, the last iteration of the Mammoth saw it transformed into more of a mobile platform than a ship; becoming immobile when deployed to a station construction site so that construction drones can easily be ferried from the ship to the site and back again.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 138000, + "storage": { + "missile": 40, + "unit": 100 + }, + "people": 182, + "purpose": "build", + "thruster": "extralarge", + "type": "builder", + "mass": 1062.868, + "inertia": { + "pitch": 622.985, + "yaw": 622.985, + "roll": 498.388 + }, + "drag": { + "forward": 292.574, + "reverse": 1170.294, + "horizontal": 560.539, + "vertical": 560.539, + "pitch": 912.574, + "yaw": 912.574, + "roll": 912.574 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 50, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 9306200, + "max": 12590741, + "avg": 10948470 + }, + "production": [ + { + "time": 527, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2913 + }, + { + "ware": "hullparts", + "amount": 10254 + } + ] + } + ] + }, + { + "id": "ship_arg_xl_carrier_01_a", + "version": 0, + "name": "Colossus Vanguard", + "description": "The final ship shared with the Argon Federation by the Antigone Republic as part of their ongoing technology exchange, the new-look Colossus-class carrier was initially designed as such so that it didn't use much-needed resources that were sorely lacking in Antigone Memorial during the Jump Gate shutdown.nnWith an array of medium and small docks and launch tubes, the Antigone Colossus is a significant improvement on other Colossus models, able to deploy ships to the battlefield at a much higher rate and collect and store them far more efficiently, at the cost of some of its previous firepower.", + "size": "extralarge", + "explosionDamage": 1500, + "hull": 216000, + "storage": { + "missile": 320, + "unit": 20 + }, + "people": 123, + "purpose": "fight", + "thruster": "extralarge", + "type": "carrier", + "mass": 549.202, + "inertia": { + "pitch": 617.044, + "yaw": 617.044, + "roll": 493.635 + }, + "drag": { + "forward": 189.84, + "reverse": 759.362, + "horizontal": 259.503, + "vertical": 259.503, + "pitch": 809.84, + "yaw": 809.84, + "roll": 809.84 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_up_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_up_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_up_mid_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 19000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 8576543, + "max": 11603558, + "avg": 10090050 + }, + "production": [ + { + "time": 486, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2685 + }, + { + "ware": "hullparts", + "amount": 9450 + } + ] + } + ] + }, + { + "id": "ship_arg_xl_carrier_01_b", + "version": 0, + "name": "Colossus Sentinel", + "description": "The final ship shared with the Argon Federation by the Antigone Republic as part of their ongoing technology exchange, the new-look Colossus-class carrier was initially designed as such so that it didn't use much-needed resources that were sorely lacking in Antigone Memorial during the Jump Gate shutdown.nnWith an array of medium and small docks and launch tubes, the Antigone Colossus is a significant improvement on other Colossus models, able to deploy ships to the battlefield at a much higher rate and collect and store them far more efficiently, at the cost of some of its previous firepower.", + "size": "extralarge", + "explosionDamage": 1500, + "hull": 259000, + "storage": { + "missile": 320, + "unit": 20 + }, + "people": 102, + "purpose": "fight", + "thruster": "extralarge", + "type": "carrier", + "mass": 659.043, + "inertia": { + "pitch": 633.782, + "yaw": 633.782, + "roll": 507.026 + }, + "drag": { + "forward": 211.809, + "reverse": 847.234, + "horizontal": 311.403, + "vertical": 311.403, + "pitch": 831.809, + "yaw": 831.809, + "roll": 831.809 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_up_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_up_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_up_mid_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 22800, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 10287274, + "max": 13918076, + "avg": 12102675 + }, + "production": [ + { + "time": 583, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 3220 + }, + { + "ware": "hullparts", + "amount": 11335 + } + ] + } + ] + }, + { + "id": "ship_arg_xl_resupplier_01_a", + "version": 0, + "name": "Nomad Vanguard", + "description": "Very quickly developed during the course of the latest defence against the Xenon, the Nomad is effectively a mobile equipment dock, allowing combat ships to repair and restock and get back to the fight more quickly. This has greatly helped the efficiency of both the Argon Federation and Antigone Republic fleets, and has already begun to see clones created across both Teladi and Paranid space.nnThe ship is not self-sufficient, requiring a defensive escort not to be torn apart in combat. If it can be defended though, the Nomad can prove a devastating support ship.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 116000, + "storage": { + "missile": 40, + "unit": 100 + }, + "people": 220, + "purpose": "auxiliary", + "thruster": "extralarge", + "type": "resupplier", + "mass": 891.63, + "inertia": { + "pitch": 603.604, + "yaw": 603.604, + "roll": 482.883 + }, + "drag": { + "forward": 258.326, + "reverse": 1033.304, + "horizontal": 467.421, + "vertical": 467.421, + "pitch": 878.326, + "yaw": 878.326, + "roll": 878.326 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_right", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 29000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 7310438, + "max": 9890592, + "avg": 8600515 + }, + "production": [ + { + "time": 414, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2288 + }, + { + "ware": "hullparts", + "amount": 8055 + } + ] + } + ] + }, + { + "id": "ship_arg_xl_resupplier_01_b", + "version": 0, + "name": "Nomad Sentinel", + "description": "Very quickly developed during the course of the latest defence against the Xenon, the Nomad is effectively a mobile equipment dock, allowing combat ships to repair and restock and get back to the fight more quickly. This has greatly helped the efficiency of both the Argon Federation and Antigone Republic fleets, and has already begun to see clones created across both Teladi and Paranid space.nnThe ship is not self-sufficient, requiring a defensive escort not to be torn apart in combat. If it can be defended though, the Nomad can prove a devastating support ship.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 139000, + "storage": { + "missile": 40, + "unit": 100 + }, + "people": 183, + "purpose": "auxiliary", + "thruster": "extralarge", + "type": "resupplier", + "mass": 1069.956, + "inertia": { + "pitch": 628.114, + "yaw": 628.114, + "roll": 502.491 + }, + "drag": { + "forward": 293.991, + "reverse": 1175.965, + "horizontal": 560.905, + "vertical": 560.905, + "pitch": 913.991, + "yaw": 913.991, + "roll": 913.991 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_right", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 34800, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 8766199, + "max": 11860151, + "avg": 10313175 + }, + "production": [ + { + "time": 496, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2744 + }, + { + "ware": "hullparts", + "amount": 9659 + } + ] + } + ] + }, + { + "id": "ship_gen_m_transdrone_container_01_a", + "version": 0, + "name": "Medium Drop Drone", + "description": "The Drop Drone is an essential system in terraforming operations, transporting the required surface-bound wares.nnThe Medium-sized model is an upgraded drone with additional capacity.", + "size": "medium", + "explosionDamage": 500, + "hull": 10000, + "storage": { + "missile": 0, + "unit": 0 + }, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 42, + "inertia": { + "pitch": 6, + "yaw": 6, + "roll": 4 + }, + "drag": { + "forward": 7, + "reverse": 29, + "horizontal": 26, + "vertical": 26, + "pitch": 13, + "yaw": 13, + "roll": 13 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "owners": [ + "player" + ], + "price": { + "min": 39610, + "max": 53590, + "avg": 46600 + }, + "production": [] + }, + { + "id": "ship_gen_m_tugboat_01_a", + "version": 0, + "name": "Manticore", + "description": "With the advent of the Dark, Avarice was forced to rely on a fleet of stranded ships that had been taken by surprise by the Jump Gate shutdown. Despite the almost immediate collapse of the Avarice company, capable scientists and engineers soon took it upon themselves to stabilise the system and work towards sustainability. They first established a functioning wharf for repairs and replacement, and conducted early experiments into developing a recycling economy in anticipation of dwindling resources within the system. The regeneration of this post-shutdown economy was quickly curtailed by the first Tides, which destroyed most stations and ships in the system in 800 (NT). However, a side-effect of the destructive solar event was the greatly increased energy output from solar panels, which allowed for a paradigm shift. The new Rakers economy emerging from Tidebreak, at the time the only station in Avarice, took advantage of this new abundance of energy. This, along with the use of local wrecks, enabled the rebuilding of a new, sustainable, closed-loop economy based on recycling, allowing them to further improve on previous ship and station module designs. Resettlement of Avarice began in 818 (NT), when the Northriver Company introduced Protectyon and the associated Protectyon Shield Generators to safeguard stations from the Tide. A few years later, in 825 (NT), the reconnection of Windfall gave the long-isolated Rakers the opportunity to trade with various Syndicate factions, but also exposed them to their piracy.nnWith the Jump Gate shutdown disconnecting Avarice the first Tug ship, a predecessor of the Manticore, was quickly developed by stranded Argon engineers to tug small ship wrecks to stations for further processing and make best use of the now very limited access to resources. With just one of those ships and their first version of the Scrap Processor and Scrap Recycler modules they ran a small enterprise with a high demand for energy and a slow output of Hull Parts and Claytronics. It was only after the first Tide destroyed most stations and ships in the system in 800 (NT) that their blueprints became the main pillar of Rakers economy and were further developed into the now widely used Manticore, utilising more powerful engines, and station modules. After messenger drones from Sacred Relic arrived, the people of Avarice themselves sent out messenger drones containing the blueprints to other disconnected systems, hoping to help those unfortunate enough to be stranded with no natural resources in reach. In doing this they created a local branch of the Alliance of the Word operating from Tidebreak. With the first Jump gate reconnection in 825 (NT) the Alliance of the Word would move to an own station in Windfall.", + "size": "medium", + "race": "argon", + "explosionDamage": 100, + "hull": 8000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 7, + "purpose": "salvage", + "thruster": "medium", + "type": "tug", + "mass": 63.562, + "inertia": { + "pitch": 10.577, + "yaw": 10.577, + "roll": 8.461 + }, + "drag": { + "forward": 30.344, + "reverse": 121.377, + "horizontal": 30.024, + "vertical": 30.024, + "pitch": 18.39, + "yaw": 18.39, + "roll": 18.39 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + } + ], + "cargo": [ + { + "max": 1360, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "scaleplate", + "teladi", + "pioneers", + "scavenger" + ], + "price": { + "min": 342342, + "max": 463168, + "avg": 402755 + }, + "production": [ + { + "time": 25, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 136 + }, + { + "ware": "hullparts", + "amount": 375 + } + ] + }, + { + "time": 25, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 47 + }, + { + "ware": "energycells", + "amount": 54 + }, + { + "ware": "siliconcarbide", + "amount": 9 + } + ] + } + ] + }, + { + "id": "ship_gen_s_fighter_01_a", + "version": 0, + "name": "Nodan Vanguard", + "description": "Perhaps the most interesting thing about the Nodan fighter is the lack of information available regarding its existence. It is only known to be available from the Alliance of the Word, and the organisation has remained tight-lipped as to the vessel's inception and design.nnThe design is somewhat quirky, with no clear antecedence related to other faction architecture. However, the Nodan has earned itself plaudits from committed dogfighters, based on its impressive speed, agility and deceleration.nnFor those seeking additional speed, the Nodan Vanguard model is available.", + "size": "small", + "hull": 3900, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 3, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 8.113, + "inertia": { + "pitch": 1.758, + "yaw": 1.758, + "roll": 1.407 + }, + "drag": { + "forward": 4.283, + "reverse": 15.113, + "horizontal": 3.285, + "vertical": 3.285, + "pitch": 3.126, + "yaw": 3.126, + "roll": 3.126 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 700, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance" + ], + "price": { + "min": 65986, + "max": 89275, + "avg": 77630 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 56 + }, + { + "ware": "hullparts", + "amount": 70 + } + ] + } + ] + }, + { + "id": "ship_gen_s_fighter_01_b", + "version": 0, + "name": "Nodan Sentinel", + "description": "Perhaps the most interesting thing about the Nodan fighter is the lack of information available regarding its existence. It is only known to be available from the Alliance of the Word, and the organisation has remained tight-lipped as to the vessel's inception and design.nnThe design is somewhat quirky, with no clear antecedence related to other faction architecture. However, the Nodan has earned itself plaudits from committed dogfighters, based on its impressive speed, agility and deceleration.nnThe Sentinel model provides the ship with a hardened superstructure.", + "size": "small", + "hull": 4600, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 9.736, + "inertia": { + "pitch": 2.015, + "yaw": 2.015, + "roll": 1.612 + }, + "drag": { + "forward": 4.506, + "reverse": 16.736, + "horizontal": 3.942, + "vertical": 3.942, + "pitch": 3.582, + "yaw": 3.582, + "roll": 3.582 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 840, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance" + ], + "price": { + "min": 81082, + "max": 109699, + "avg": 95390 + }, + "production": [ + { + "time": 13, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 69 + }, + { + "ware": "hullparts", + "amount": 86 + } + ] + } + ] + }, + { + "id": "ship_gen_s_transdrone_container_01_a", + "version": 0, + "name": "Small Drop Drone", + "description": "The Drop Drone is an essential system in terraforming operations, transporting the required surface-bound wares.", + "size": "small", + "explosionDamage": 100, + "hull": 2200, + "storage": { + "missile": 0, + "unit": 0 + }, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 1, + "inertia": { + "pitch": 3, + "yaw": 17, + "roll": 4 + }, + "drag": { + "forward": 5.5, + "reverse": 24, + "horizontal": 6, + "vertical": 6, + "pitch": 6, + "yaw": 4, + "roll": 6 + }, + "engines": [ + { + "size": "small", + "hittable": false + } + ], + "owners": [ + "player" + ], + "price": { + "min": 19805, + "max": 26795, + "avg": 23300 + }, + "production": [] + }, + { + "id": "ship_kha_m_fighter_01_a", + "version": 0, + "name": "Queen's Guard", + "description": "Armed with the frighteningly accurate Kyon Emitter, the Kha'ak Queen's Guard most commonly attacks in swarm formation to devastating effect.nnThe pseudo-insectile nature of the Kha'ak gave rise to the theory that they are directly or indirectly controlled by a Queen. This, in turn, inspired the name given to this vessel. However, the theory is as yet unverified.", + "size": "medium", + "race": "khaak", + "explosionDamage": 200, + "hull": 4000, + "storage": { + "missile": 0, + "unit": 0 + }, + "people": 0, + "purpose": "fight", + "thruster": "medium", + "type": "heavyfighter", + "mass": 16, + "inertia": { + "pitch": 2, + "yaw": 2, + "roll": 2 + }, + "drag": { + "forward": 3.25, + "reverse": 35, + "horizontal": 3, + "vertical": 3, + "pitch": 7, + "yaw": 6, + "roll": 6 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "owners": [ + "khaak" + ], + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "production": [] + }, + { + "id": "ship_kha_m_fighter_02_a", + "version": 0, + "name": "Hive Guard", + "description": "The diabolical pyramids of the Kha'ak are a perpetual threat. The Hive Guard is a heavy fighter and one of the more disturbing Kha'ak ships that may appear on a pilot's scanner.", + "size": "medium", + "race": "khaak", + "explosionDamage": 200, + "hull": 3000, + "storage": { + "missile": 0, + "unit": 0 + }, + "people": 0, + "purpose": "fight", + "thruster": "medium", + "type": "heavyfighter", + "mass": 12, + "inertia": { + "pitch": 2, + "yaw": 2, + "roll": 2 + }, + "drag": { + "forward": 2.5, + "reverse": 30, + "horizontal": 3, + "vertical": 3, + "pitch": 7, + "yaw": 6, + "roll": 6 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "owners": [ + "khaak" + ], + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "production": [] + }, + { + "id": "ship_kha_s_fighter_01_a", + "version": 0, + "name": "Protector", + "description": "The appearance of the Kha'ak can trigger a sinking feeling in the stomach or stomachs of any pilot, however accomplished. These \"space bugs\", as they are often described, attack in mystifyingly geometric vessels, and have, thus far, rebuffed all attempts at communication.nnThis fighter has been dubbed the Protector and, like all Kha'ak ships, it is well-armed and trigger-happy.", + "size": "small", + "race": "khaak", + "hull": 800, + "storage": { + "missile": 0, + "unit": 0 + }, + "people": 0, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 3, + "inertia": { + "pitch": 1, + "yaw": 1, + "roll": 1 + }, + "drag": { + "forward": 1, + "reverse": 17, + "horizontal": 1, + "vertical": 3, + "pitch": 1, + "yaw": 2, + "roll": 2 + }, + "engines": [ + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "owners": [ + "khaak" + ], + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "production": [] + }, + { + "id": "ship_kha_s_fighter_02_a", + "version": 0, + "name": "Forager", + "description": "The Kha'ak Forager is a lightning fast and highly manoeuvrable scout ship, with little accompanying weaponry. While notionally fragile, Commonwealth pilots report that the Forager is notoriously hard to catch and target.", + "size": "small", + "race": "khaak", + "hull": 600, + "storage": { + "missile": 0, + "unit": 0 + }, + "people": 0, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 2.5, + "inertia": { + "pitch": 1, + "yaw": 1, + "roll": 1 + }, + "drag": { + "forward": 1, + "reverse": 17, + "horizontal": 1, + "vertical": 3, + "pitch": 1, + "yaw": 2, + "roll": 2 + }, + "engines": [ + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "owners": [ + "khaak" + ], + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "production": [] + }, + { + "id": "ship_par_l_destroyer_01_a", + "version": 0, + "name": "Odysseus Vanguard", + "description": "The Paranid Odysseus is a highly regarded destroyer with an often consequential presence in large scale engagements.nnThe latest version's architect is the notoriously sensitive Olmanckabssit, who is reputed to fly into a rage at the slightest mention of the vessel's resemblance to a hair dryer.nnThe Odysseus Vanguard has enhanced speed.", + "size": "large", + "explosionDamage": 1000, + "hull": 99000, + "storage": { + "missile": 160, + "unit": 10 + }, + "people": 47, + "purpose": "fight", + "thruster": "large", + "type": "destroyer", + "mass": 209.751, + "inertia": { + "pitch": 105.68, + "yaw": 105.68, + "roll": 84.544 + }, + "drag": { + "forward": 76.828, + "reverse": 307.313, + "horizontal": 68.897, + "vertical": 68.897, + "pitch": 108.95, + "yaw": 108.95, + "roll": 108.95 + }, + "engines": [ + { + "group": "group_rear_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_rear_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_rear_up_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_rear_up_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_rear_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_front_down_down", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid2", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_down", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 1700, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 4276299, + "max": 5785581, + "avg": 5030940 + }, + "production": [ + { + "time": 195, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1075 + }, + { + "ware": "hullparts", + "amount": 4732 + } + ] + } + ] + }, + { + "id": "ship_par_l_destroyer_01_b", + "version": 0, + "name": "Odysseus Sentinel", + "description": "The Paranid Odysseus is a highly regarded destroyer with an often consequential presence in large scale engagements.nnThe latest version's architect is the notoriously sensitive Olmanckabssit, who is reputed to fly into a rage at the slightest mention of the vessel's resemblance to a hair dryer.nnThe Sentinel model boasts greater resilience.", + "size": "large", + "explosionDamage": 1000, + "hull": 119000, + "storage": { + "missile": 160, + "unit": 10 + }, + "people": 39, + "purpose": "fight", + "thruster": "large", + "type": "destroyer", + "mass": 251.701, + "inertia": { + "pitch": 113.818, + "yaw": 113.818, + "roll": 91.055 + }, + "drag": { + "forward": 84.694, + "reverse": 338.776, + "horizontal": 82.676, + "vertical": 82.676, + "pitch": 117.34, + "yaw": 117.34, + "roll": 117.34 + }, + "engines": [ + { + "group": "group_rear_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_rear_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_rear_up_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_rear_up_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_rear_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_front_down_down", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid2", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_down", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 2040, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 5135781, + "max": 6948409, + "avg": 6042095 + }, + "production": [ + { + "time": 234, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1292 + }, + { + "ware": "hullparts", + "amount": 5683 + } + ] + } + ] + }, + { + "id": "ship_par_l_destroyer_02_a", + "version": 0, + "name": "Odysseus E", + "description": "The Paranid Odysseus is a highly regarded destroyer with an often consequential presence in large scale engagements.nnThe E-model variation was introduced at a later date, and updated the superficial design to bring it up to par with Commonwealth standards that were established during the period of disconnection. The precursor version is slowly being phased out, but will remain available for interested third parties.nnThe Odysseus E-model prioritises hardpoints, however, it suffers from reduced storage capacity as a consequence.", + "size": "large", + "race": "paranid", + "explosionDamage": 1000, + "hull": 128000, + "storage": { + "missile": 160, + "unit": 10 + }, + "people": 60, + "purpose": "fight", + "thruster": "large", + "type": "destroyer", + "mass": 326.351, + "inertia": { + "pitch": 199.622, + "yaw": 199.622, + "roll": 159.698 + }, + "drag": { + "forward": 69.084, + "reverse": 394.763, + "horizontal": 83.274, + "vertical": 83.274, + "pitch": 132.27, + "yaw": 132.27, + "roll": 132.27 + }, + "engines": [ + { + "group": "group_rear_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_rear_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_rear_up_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_rear_up_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_rear_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_up_mid", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_front_down_down", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid2", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_down", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 2600, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 2, + "size": "medium" + }, + { + "capacity": 4, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "price": { + "min": 4412478, + "max": 5969823, + "avg": 5191150 + }, + "production": [ + { + "time": 276, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1066 + }, + { + "ware": "hullparts", + "amount": 4886 + } + ] + } + ] + }, + { + "id": "ship_par_l_miner_liquid_01_a", + "version": 0, + "name": "Chthonios (Gas) Vanguard", + "description": "The Chthonios miner boasts impressive speed. The economics of running a large production empire require the optimisation of miners' speed versus cargo space. With sufficient speed, a constant stream of smaller deliveries of resources can keep mega-factories running more efficiently than if they are left waiting for larger shipments.nnThe Chthonios is tailored for just this style of \"just-in-time\" logistics management, and is available in models able to collect gases or minerals. The Vanguard variant adds even more speed.", + "size": "large", + "explosionDamage": 800, + "hull": 23000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 40, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 180.944, + "inertia": { + "pitch": 110.571, + "yaw": 110.571, + "roll": 88.456 + }, + "drag": { + "forward": 49.999, + "reverse": 285.708, + "horizontal": 137.021, + "vertical": 137.021, + "pitch": 132.14, + "yaw": 132.14, + "roll": 132.14 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 32000, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "hatikvah", + "paranid", + "trinity" + ], + "price": { + "min": 981657, + "max": 1328124, + "avg": 1154890 + }, + "production": [ + { + "time": 74, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 407 + }, + { + "ware": "hullparts", + "amount": 1074 + } + ] + } + ] + }, + { + "id": "ship_par_l_miner_liquid_01_b", + "version": 0, + "name": "Chthonios (Gas) Sentinel", + "description": "The Chthonios miner boasts impressive speed. The economics of running a large production empire require the optimisation of miners' speed versus cargo space. With sufficient speed, a constant stream of smaller deliveries of resources can keep mega-factories running more efficiently than if they are left waiting for larger shipments.nnThe Chthonios is tailored for just this style of \"just-in-time\" logistics management, and is available in models able to collect gases or minerals. The Sentinel variant enhances structural robustness in case miners encounter hostiles.", + "size": "large", + "explosionDamage": 800, + "hull": 28000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 33, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 217.132, + "inertia": { + "pitch": 121.472, + "yaw": 121.472, + "roll": 97.178 + }, + "drag": { + "forward": 54.749, + "reverse": 312.849, + "horizontal": 164.425, + "vertical": 164.425, + "pitch": 145.168, + "yaw": 145.168, + "roll": 145.168 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 38400, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "hatikvah", + "holyorder", + "trinity" + ], + "price": { + "min": 1186405, + "max": 1605136, + "avg": 1395770 + }, + "production": [ + { + "time": 89, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 492 + }, + { + "ware": "hullparts", + "amount": 1298 + } + ] + } + ] + }, + { + "id": "ship_par_l_miner_liquid_02_a", + "version": 0, + "name": "Chthonios E (Gas)", + "description": "The Chthonios miner boasts impressive speed. The economics of running a large production empire require the optimisation of miners' speed versus cargo space. With sufficient speed, a constant stream of smaller deliveries of resources can keep mega-factories running more efficiently than if they are left waiting for larger shipments.nnThe Chthonios is tailored for just this style of \"just-in-time\" logistics management, and is available in models able to collect gases or minerals.nnThe E-model variation was introduced at a later date, and updated the superficial design to bring it up to par with Commonwealth standards that were established during the period of disconnection. The precursor version is slowly being phased out, but will remain available for interested third parties.", + "size": "large", + "explosionDamage": 800, + "hull": 29000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 41, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 219.541, + "inertia": { + "pitch": 112.601, + "yaw": 112.601, + "roll": 90.081 + }, + "drag": { + "forward": 55.065, + "reverse": 314.656, + "horizontal": 65.231, + "vertical": 65.231, + "pitch": 110.908, + "yaw": 110.908, + "roll": 110.908 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 35200, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 4, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "price": { + "min": 1352877, + "max": 1830363, + "avg": 1591620 + }, + "production": [ + { + "time": 91, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 406 + }, + { + "ware": "hullparts", + "amount": 1492 + } + ] + } + ] + }, + { + "id": "ship_par_l_miner_solid_01_a", + "version": 0, + "name": "Chthonios (Mineral) Vanguard", + "description": "The Chthonios miner boasts impressive speed. The economics of running a large production empire require the optimisation of miners' speed versus cargo space. With sufficient speed, a constant stream of smaller deliveries of resources can keep mega-factories running more efficiently than if they are left waiting for larger shipments.nnThe Chthonios is tailored for just this style of \"just-in-time\" logistics management, and is available in models able to collect gases or minerals. The Vanguard variant adds even more speed.", + "size": "large", + "explosionDamage": 800, + "hull": 23000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 40, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 180.944, + "inertia": { + "pitch": 110.571, + "yaw": 110.571, + "roll": 88.456 + }, + "drag": { + "forward": 49.999, + "reverse": 285.708, + "horizontal": 137.021, + "vertical": 137.021, + "pitch": 132.14, + "yaw": 132.14, + "roll": 132.14 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid2", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_up_mid2", + "size": "large", + "hittable": true, + "types": [ + "mining", + "standard" + ] + } + ], + "cargo": [ + { + "max": 32000, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "hatikvah", + "paranid", + "trinity" + ], + "price": { + "min": 981657, + "max": 1328124, + "avg": 1154890 + }, + "production": [ + { + "time": 74, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 407 + }, + { + "ware": "hullparts", + "amount": 1074 + } + ] + } + ] + }, + { + "id": "ship_par_l_miner_solid_01_b", + "version": 0, + "name": "Chthonios (Mineral) Sentinel", + "description": "The Chthonios miner boasts impressive speed. The economics of running a large production empire require the optimisation of miners' speed versus cargo space. With sufficient speed, a constant stream of smaller deliveries of resources can keep mega-factories running more efficiently than if they are left waiting for larger shipments.nnThe Chthonios is tailored for just this style of \"just-in-time\" logistics management, and is available in models able to collect gases or minerals. The Sentinel variant enhances structural robustness in case miners encounter hostiles.", + "size": "large", + "explosionDamage": 800, + "hull": 28000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 33, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 217.132, + "inertia": { + "pitch": 121.472, + "yaw": 121.472, + "roll": 97.178 + }, + "drag": { + "forward": 54.749, + "reverse": 312.849, + "horizontal": 164.425, + "vertical": 164.425, + "pitch": 145.168, + "yaw": 145.168, + "roll": 145.168 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid2", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_up_mid2", + "size": "large", + "hittable": true, + "types": [ + "mining", + "standard" + ] + } + ], + "cargo": [ + { + "max": 38400, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "hatikvah", + "holyorder", + "trinity" + ], + "price": { + "min": 1186405, + "max": 1605136, + "avg": 1395770 + }, + "production": [ + { + "time": 89, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 492 + }, + { + "ware": "hullparts", + "amount": 1298 + } + ] + } + ] + }, + { + "id": "ship_par_l_miner_solid_02_a", + "version": 0, + "name": "Chthonios E (Mineral)", + "description": "The Chthonios miner boasts impressive speed. The economics of running a large production empire require the optimisation of miners' speed versus cargo space. With sufficient speed, a constant stream of smaller deliveries of resources can keep mega-factories running more efficiently than if they are left waiting for larger shipments.nnThe Chthonios is tailored for just this style of \"just-in-time\" logistics management, and is available in models able to collect gases or minerals.nnThe E-model variation was introduced at a later date, and updated the superficial design to bring it up to par with Commonwealth standards that were established during the period of disconnection. The precursor version is slowly being phased out, but will remain available for interested third parties.", + "size": "large", + "explosionDamage": 800, + "hull": 29000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 41, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 219.541, + "inertia": { + "pitch": 112.601, + "yaw": 112.601, + "roll": 90.08 + }, + "drag": { + "forward": 55.065, + "reverse": 314.655, + "horizontal": 65.232, + "vertical": 65.232, + "pitch": 110.908, + "yaw": 110.908, + "roll": 110.908 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_up_mid", + "size": "large", + "hittable": true, + "types": [ + "mining", + "standard" + ] + } + ], + "cargo": [ + { + "max": 34960, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 4, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "price": { + "min": 1352881, + "max": 1830369, + "avg": 1591625 + }, + "production": [ + { + "time": 91, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 393 + }, + { + "ware": "hullparts", + "amount": 1493 + } + ] + } + ] + }, + { + "id": "ship_par_l_trans_container_01_a", + "version": 0, + "name": "Helios Vanguard", + "description": "The reasonably fast Helios freighter is a staple of Paranid logistics operations. While it cannot be said to be best-in-class on any single performance metric, it remains a sound choice overall.nnThe enduring popularity of this heavy freighter is believed to be founded on its sleek lines and attractive profile. Freighter captains are no rock stars, but the Helios does turn heads. It is not uncommon for youngsters to seek out berthing Helios vessels, begging for a ship tour.nnThe Vanguard model is the fastest ship in the Helios line.", + "size": "large", + "explosionDamage": 800, + "hull": 37000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 71, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 287.875, + "inertia": { + "pitch": 92.135, + "yaw": 92.135, + "roll": 73.708 + }, + "drag": { + "forward": 91.477, + "reverse": 365.906, + "horizontal": 140.475, + "vertical": 140.475, + "pitch": 124.575, + "yaw": 124.575, + "roll": 124.575 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 21000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 1696396, + "max": 2295124, + "avg": 1995760 + }, + "production": [ + { + "time": 127, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 703 + }, + { + "ware": "hullparts", + "amount": 1856 + } + ] + } + ] + }, + { + "id": "ship_par_l_trans_container_01_b", + "version": 0, + "name": "Helios Sentinel", + "description": "The reasonably fast Helios freighter is a staple of Paranid logistics operations. While it cannot be said to be best-in-class on any single performance metric, it remains a sound choice overall.nnThe enduring popularity of this heavy freighter is believed to be founded on its sleek lines and attractive profile. Freighter captains are no rock stars, but the Helios does turn heads. It is not uncommon for youngsters to seek out berthing Helios vessels, begging for a ship tour.nnThe additional cargo space offered by the Helios Sentinel improves long term trading efficiency.", + "size": "large", + "explosionDamage": 800, + "hull": 45000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 59, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 345.45, + "inertia": { + "pitch": 100.651, + "yaw": 100.651, + "roll": 80.521 + }, + "drag": { + "forward": 102.272, + "reverse": 409.087, + "horizontal": 168.57, + "vertical": 168.57, + "pitch": 136.09, + "yaw": 136.09, + "roll": 136.09 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 25200, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 2049189, + "max": 2772432, + "avg": 2410810 + }, + "production": [ + { + "time": 154, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 849 + }, + { + "ware": "hullparts", + "amount": 2242 + } + ] + } + ] + }, + { + "id": "ship_par_l_trans_container_02_a", + "version": 0, + "name": "Selene Vanguard", + "description": "The Paranid Selene is a modest heavy freighter lacking notable characteristics. If traders wish to move things, it does so without fanfare.nnThe Vanguard model was developed in an attempt to inspire some excitement around the Selene. Most commentators agree that this failed.", + "size": "large", + "explosionDamage": 800, + "hull": 33000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 71, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 259.087, + "inertia": { + "pitch": 87.877, + "yaw": 87.877, + "roll": 70.301 + }, + "drag": { + "forward": 86.079, + "reverse": 344.316, + "horizontal": 126.428, + "vertical": 126.428, + "pitch": 118.817, + "yaw": 118.817, + "roll": 118.817 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 19000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 1696396, + "max": 2295124, + "avg": 1995760 + }, + "production": [ + { + "time": 108, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 703 + }, + { + "ware": "hullparts", + "amount": 1856 + } + ] + } + ] + }, + { + "id": "ship_par_l_trans_container_02_b", + "version": 0, + "name": "Selene Sentinel", + "description": "The Paranid Selene is a modest heavy freighter lacking notable characteristics. If traders wish to move things, it does so without fanfare.nnThe Sentinel model raises the logistical performance of the Selene to levels that are generally considered to be adequate.", + "size": "large", + "explosionDamage": 800, + "hull": 40000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 59, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 310.905, + "inertia": { + "pitch": 95.542, + "yaw": 95.542, + "roll": 76.433 + }, + "drag": { + "forward": 95.795, + "reverse": 383.179, + "horizontal": 151.713, + "vertical": 151.713, + "pitch": 129.181, + "yaw": 129.181, + "roll": 129.181 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 22800, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 2049189, + "max": 2772432, + "avg": 2410810 + }, + "production": [ + { + "time": 130, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 849 + }, + { + "ware": "hullparts", + "amount": 2242 + } + ] + } + ] + }, + { + "id": "ship_par_l_trans_container_03_a", + "version": 0, + "name": "Helios E", + "description": "The reasonably fast Helios freighter is a staple of Paranid logistics operations. While it cannot be said to be best-in-class on any single performance metric, it remains a sound choice overall.nnThe enduring popularity of this heavy freighter is believed to be founded on its sleek lines and attractive profile. Freighter captains are no rock stars, but the Helios does turn heads. It is not uncommon for youngsters to seek out berthing Helios vessels, begging for a ship tour.nnThe E-model variation was introduced at a later date, and updated the superficial design to bring it up to par with Commonwealth standards that were established during the period of disconnection. The precursor version is slowly being phased out, but will remain available for interested third parties.", + "size": "large", + "explosionDamage": 800, + "hull": 55000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 96, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 420.618, + "inertia": { + "pitch": 181.455, + "yaw": 181.455, + "roll": 145.164 + }, + "drag": { + "forward": 116.366, + "reverse": 465.464, + "horizontal": 70.977, + "vertical": 70.977, + "pitch": 151.124, + "yaw": 151.124, + "roll": 151.124 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 25500, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 2, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "price": { + "min": 2949500, + "max": 3990500, + "avg": 3470000 + }, + "production": [ + { + "time": 178, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 739 + }, + { + "ware": "hullparts", + "amount": 3264 + } + ] + } + ] + }, + { + "id": "ship_par_m_corvette_01_a", + "version": 0, + "name": "Nemesis Vanguard", + "description": "The Paranid Nemesis is a highly sought-after corvette, boasting an attractive balance of speed, firepower and general versatility. The overall adaptability and build quality of the production line vessel ensure that the loadout options selected by owners can have a tangible impact on the tactical use-cases available.nnThe surprisingly fleet-footed base vessel can itself be optimised for speed by securing the Vanguard model.", + "size": "medium", + "explosionDamage": 500, + "hull": 10000, + "storage": { + "missile": 40, + "unit": 0 + }, + "people": 8, + "purpose": "fight", + "thruster": "medium", + "type": "corvette", + "mass": 24.394, + "inertia": { + "pitch": 3.214, + "yaw": 3.214, + "roll": 2.572 + }, + "drag": { + "forward": 3.547, + "reverse": 14.188, + "horizontal": 13.02, + "vertical": 13.02, + "pitch": 7.739, + "yaw": 7.739, + "roll": 7.739 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 560, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 528951, + "max": 715639, + "avg": 622295 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 111 + }, + { + "ware": "hullparts", + "amount": 587 + } + ] + } + ] + }, + { + "id": "ship_par_m_corvette_01_b", + "version": 0, + "name": "Nemesis Sentinel", + "description": "The Paranid Nemesis is a highly sought-after corvette, boasting an attractive balance of speed, firepower and general versatility. The overall adaptability and build quality of the production line vessel ensure that the loadout options selected by owners can have a tangible impact on the tactical use-cases available.nnThe Sentinel edition of the Nemesis offers additional resilience, which may be preferred by those operating in live fire environments.", + "size": "medium", + "explosionDamage": 500, + "hull": 12000, + "storage": { + "missile": 40, + "unit": 0 + }, + "people": 6, + "purpose": "fight", + "thruster": "medium", + "type": "corvette", + "mass": 29.273, + "inertia": { + "pitch": 3.67, + "yaw": 3.67, + "roll": 2.936 + }, + "drag": { + "forward": 4.05, + "reverse": 16.2, + "horizontal": 15.624, + "vertical": 15.624, + "pitch": 8.836, + "yaw": 8.836, + "roll": 8.836 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 672, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 634372, + "max": 858268, + "avg": 746320 + }, + "production": [ + { + "time": 24, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 133 + }, + { + "ware": "hullparts", + "amount": 704 + } + ] + } + ] + }, + { + "id": "ship_par_m_frigate_01_a", + "version": 0, + "name": "Gorgon Vanguard", + "description": "The Gorgon is a high performance Paranid frigate, developed in response to the threat posed by the Split Dragon.nnA popular escort vessel for capital ships, it can also provide the backbone for offensive fleets.nnThe Vanguard model is generally preferred for tactical offence.", + "size": "medium", + "explosionDamage": 200, + "hull": 19000, + "storage": { + "missile": 100, + "unit": 8 + }, + "people": 16, + "purpose": "fight", + "thruster": "medium", + "type": "frigate", + "mass": 40.012, + "inertia": { + "pitch": 4.791, + "yaw": 4.791, + "roll": 3.833 + }, + "drag": { + "forward": 10.315, + "reverse": 28.882, + "horizontal": 7.708, + "vertical": 7.708, + "pitch": 8.752, + "yaw": 8.752, + "roll": 8.752 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 1630, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 1, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 933555, + "max": 1263045, + "avg": 1098300 + }, + "production": [ + { + "time": 35, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 196 + }, + { + "ware": "hullparts", + "amount": 1036 + } + ] + } + ] + }, + { + "id": "ship_par_m_frigate_01_b", + "version": 0, + "name": "Gorgon Sentinel", + "description": "The Gorgon is a high performance Paranid frigate, developed in response to the threat posed by the Split Dragon.nnA popular escort vessel for capital ships, it can also provide the backbone for offensive fleets.nnThe Gorgon Sentinel is tailored for defensive operations, such as escort missions or station patrol.", + "size": "medium", + "explosionDamage": 200, + "hull": 23000, + "storage": { + "missile": 100, + "unit": 8 + }, + "people": 13, + "purpose": "fight", + "thruster": "medium", + "type": "frigate", + "mass": 48.014, + "inertia": { + "pitch": 5.557, + "yaw": 5.557, + "roll": 4.446 + }, + "drag": { + "forward": 11.965, + "reverse": 33.503, + "horizontal": 9.249, + "vertical": 9.249, + "pitch": 10.152, + "yaw": 10.152, + "roll": 10.152 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 1956, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 1, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 1124584, + "max": 1521496, + "avg": 1323040 + }, + "production": [ + { + "time": 43, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 236 + }, + { + "ware": "hullparts", + "amount": 1248 + } + ] + } + ] + }, + { + "id": "ship_par_m_miner_liquid_01_a", + "version": 0, + "name": "Plutus (Gas) Vanguard", + "description": "The Paranid Plutus is a decidedly humble, medium-sized resource extractor, available in both mineral and gas extraction formats.nnThe Plutus is available in the Vanguard variation. This gas extractor is therefore marginally faster than its sister vessels.", + "size": "medium", + "explosionDamage": 100, + "hull": 4000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 10, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 32.96, + "inertia": { + "pitch": 11.165, + "yaw": 11.165, + "roll": 8.932 + }, + "drag": { + "forward": 3.101, + "reverse": 17.721, + "horizontal": 22.484, + "vertical": 22.484, + "pitch": 17.332, + "yaw": 17.332, + "roll": 17.332 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 9600, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "hatikvah", + "paranid", + "trinity" + ], + "price": { + "min": 113059, + "max": 152962, + "avg": 133010 + }, + "production": [ + { + "time": 12, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 69 + }, + { + "ware": "hullparts", + "amount": 122 + } + ] + } + ] + }, + { + "id": "ship_par_m_miner_liquid_01_b", + "version": 0, + "name": "Plutus (Gas) Sentinel", + "description": "The Paranid Plutus is a decidedly humble, medium-sized resource extractor, available in both mineral and gas extraction formats.nnThis gas collector boasts increased resource storage capacity in the Sentinel model.", + "size": "medium", + "explosionDamage": 100, + "hull": 5000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 8, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 39.553, + "inertia": { + "pitch": 13.076, + "yaw": 13.076, + "roll": 10.461 + }, + "drag": { + "forward": 3.577, + "reverse": 20.441, + "horizontal": 26.981, + "vertical": 26.981, + "pitch": 20.299, + "yaw": 20.299, + "roll": 20.299 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 11520, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "hatikvah", + "holyorder", + "trinity" + ], + "price": { + "min": 138129, + "max": 186881, + "avg": 162505 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 85 + }, + { + "ware": "hullparts", + "amount": 149 + } + ] + } + ] + }, + { + "id": "ship_par_m_miner_solid_01_a", + "version": 0, + "name": "Plutus (Mineral) Vanguard", + "description": "The Paranid Plutus is a decidedly humble, medium-sized resource extractor, available in both mineral and gas extraction formats.nnThe asteroid mining Vanguard model's enhancements do little to negate the vessel's understated presence. The ship remains eminently forgettable.", + "size": "medium", + "explosionDamage": 100, + "hull": 4000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 10, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 32.961, + "inertia": { + "pitch": 11.165, + "yaw": 11.165, + "roll": 8.932 + }, + "drag": { + "forward": 3.101, + "reverse": 17.721, + "horizontal": 22.484, + "vertical": 22.484, + "pitch": 17.332, + "yaw": 17.332, + "roll": 17.332 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + } + ], + "cargo": [ + { + "max": 9000, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "hatikvah", + "paranid", + "trinity" + ], + "price": { + "min": 113059, + "max": 152962, + "avg": 133010 + }, + "production": [ + { + "time": 12, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 69 + }, + { + "ware": "hullparts", + "amount": 122 + } + ] + } + ] + }, + { + "id": "ship_par_m_miner_solid_01_b", + "version": 0, + "name": "Plutus (Mineral) Sentinel", + "description": "The Paranid Plutus is a decidedly humble, medium-sized resource extractor, available in both mineral and gas extraction formats.nnThe mining variant is available in a Sentinel model, which provides a helpful increase in solid storage capacity.", + "size": "medium", + "explosionDamage": 100, + "hull": 5000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 8, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 39.553, + "inertia": { + "pitch": 11.165, + "yaw": 13.076, + "roll": 10.461 + }, + "drag": { + "forward": 3.577, + "reverse": 20.441, + "horizontal": 26.981, + "vertical": 26.981, + "pitch": 20.299, + "yaw": 20.299, + "roll": 20.299 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + } + ], + "cargo": [ + { + "max": 11520, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "hatikvah", + "holyorder", + "trinity" + ], + "price": { + "min": 138129, + "max": 186881, + "avg": 162505 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 85 + }, + { + "ware": "hullparts", + "amount": 149 + } + ] + } + ] + }, + { + "id": "ship_par_m_trans_container_01_a", + "version": 0, + "name": "Demeter Vanguard", + "description": "This light freighter has a dark reputation. While verifiable facts are absent, pilots talk in hushed voices of an early Demeter outing. An apparently wealthy, yet eccentric and reclusive, Teladi mogul commissioned a freelance Demeter Captain to transport him and his cargo from Ianamus Zura to Argon Prime.nnRumour has it that the ship was subsequently found floating in space in the Silent Witness system. The Demeter was found with no Captain, crew, customer or cargo; no sign of attack or damage, and with completely cleared ship logs. No-one has heard from any of them since.nnThe Demeter remains popular with freighter captains untroubled by superstition. The Vanguard offers enhanced offensive capability for operations in more challenging sectors.", + "size": "medium", + "explosionDamage": 100, + "hull": 5000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 19, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 44.808, + "inertia": { + "pitch": 6.666, + "yaw": 6.666, + "roll": 5.333 + }, + "drag": { + "forward": 5.652, + "reverse": 22.608, + "horizontal": 26.533, + "vertical": 26.533, + "pitch": 13.702, + "yaw": 13.702, + "roll": 13.702 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 7900, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 150153, + "max": 203148, + "avg": 176650 + }, + "production": [ + { + "time": 17, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 92 + }, + { + "ware": "hullparts", + "amount": 162 + } + ] + } + ] + }, + { + "id": "ship_par_m_trans_container_01_b", + "version": 0, + "name": "Demeter Sentinel", + "description": "This light freighter has a dark reputation. While verifiable facts are absent, pilots talk in hushed voices of an early Demeter outing. An apparently wealthy, yet eccentric and reclusive, Teladi mogul commissioned a freelance Demeter Captain to transport him and his cargo from Ianamus Zura to Argon Prime.nnRumour has it that the ship was subsequently found floating in space in the Silent Witness system. The Demeter was found with no Captain, crew, customer or cargo; no sign of attack or damage, and with completely cleared ship logs. No-one has heard from any of them since.nnThe Demeter remains popular with freighter captains untroubled by superstition. The Sentinel model boasts additional resilience, tailored for commanders operating trade runs under fire.", + "size": "medium", + "explosionDamage": 100, + "hull": 7000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 15, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 53.77, + "inertia": { + "pitch": 7.756, + "yaw": 7.756, + "roll": 6.205 + }, + "drag": { + "forward": 6.576, + "reverse": 26.305, + "horizontal": 31.84, + "vertical": 31.84, + "pitch": 15.942, + "yaw": 15.942, + "roll": 15.942 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 9480, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 194693, + "max": 263408, + "avg": 229050 + }, + "production": [ + { + "time": 22, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 120 + }, + { + "ware": "hullparts", + "amount": 210 + } + ] + } + ] + }, + { + "id": "ship_par_m_trans_container_02_a", + "version": 0, + "name": "Hermes Vanguard", + "description": "The Hermes is a medium-sized Paranid-designed journeyman freighter with reasonable performance.nnWhile the Vanguard offers additional speed, even this model is widely considered to be unsuited to blockade running.", + "size": "medium", + "explosionDamage": 100, + "hull": 5000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 20, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 40.327, + "inertia": { + "pitch": 6.121, + "yaw": 6.121, + "roll": 4.897 + }, + "drag": { + "forward": 5.19, + "reverse": 20.76, + "horizontal": 23.88, + "vertical": 23.88, + "pitch": 12.582, + "yaw": 12.582, + "roll": 12.582 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 7100, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 150153, + "max": 203148, + "avg": 176650 + }, + "production": [ + { + "time": 17, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 92 + }, + { + "ware": "hullparts", + "amount": 162 + } + ] + } + ] + }, + { + "id": "ship_par_m_trans_container_02_b", + "version": 0, + "name": "Hermes Sentinel", + "description": "The Hermes is a medium-sized Paranid-designed journeyman freighter with reasonable performance.nnThe Sentinel model has improved cargo capacity and a somewhat hardened chassis.", + "size": "medium", + "explosionDamage": 100, + "hull": 6000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 16, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 48.393, + "inertia": { + "pitch": 7.102, + "yaw": 7.102, + "roll": 5.682 + }, + "drag": { + "forward": 6.022, + "reverse": 24.087, + "horizontal": 28.656, + "vertical": 28.656, + "pitch": 14.598, + "yaw": 14.598, + "roll": 14.598 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 8520, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 194693, + "max": 263408, + "avg": 229050 + }, + "production": [ + { + "time": 22, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 120 + }, + { + "ware": "hullparts", + "amount": 210 + } + ] + } + ] + }, + { + "id": "ship_par_m_trans_container_03_a", + "version": 0, + "name": "Prometheus", + "description": "The gradual Shutdown of the Jump Gates and the subsequent onset of the Dark shattered the shadowy organisation once known as the Duke's Buccaneers. Those that remained stalwart in their loyalty to the Pirate Duke had to rapidly adapt their operations to not be squashed under the heel of the newly emerging local authorities, or worse, fade into obscurity. Faced with the challenge to justify their further existence as an organisation, the majority of Buccaneer cells defaulted to the front they had already used for decades: the brutal, but dependable security outfit. Under this old and new guise, they acquired some renown transporting crucial personnel and wares for reconstruction and redevelopment. They also dealt in protection, corporate consulting, and other stunningly legal services. The support of well-equipped muscle proved useful for the leadership of the many societies that now struggled in isolation, and over the decades, the Buccaneers managed to refine their technology to suit the requirements of their new area of employment.nnThe Prometheus heavy transport is a relatively new addition to the arsenal of the Duke's Buccaneers, developed specifically to carry the lessons learned during the Dark into the era after the Realignment of the Jump Gates. Its hull is based on the Plutus, a well-known Paranid mining vessel. While earlier iterations of Buccaneer transport ships were often in fact civilian assets retrofitted for convenience, the design of the Prometheus is deliberate and insidious. Unless they were paying specific attention, any onlooker would simply see a mining ship, well-prepared for the dangers lurking at the edges of civilised space. On approach, such a hapless passerby or opportunistic brigand would soon realise that the inconspicuous hauler was in fact a well-armed pirate ship, perfectly equipped for a quick plunder. In one regard, the otherwise feigned identity as a deep space mining ship carries a sliver of truth, however: after a successful station raid, these ships tend to disappear towards the outskirts of a nearby sector, destination unknown.", + "size": "medium", + "race": "paranid", + "explosionDamage": 500, + "hull": 11000, + "storage": { + "missile": 40, + "unit": 0 + }, + "people": 12, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 23.192, + "inertia": { + "pitch": 3.385, + "yaw": 3.385, + "roll": 2.708 + }, + "drag": { + "forward": 3.423, + "reverse": 13.692, + "horizontal": 13.197, + "vertical": 13.197, + "pitch": 7.468, + "yaw": 7.468, + "roll": 7.468 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 4000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers" + ], + "price": { + "min": 203460, + "max": 380700, + "avg": 292080 + }, + "production": [ + { + "time": 18, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 98 + }, + { + "ware": "hullparts", + "amount": 272 + } + ] + } + ] + }, + { + "id": "ship_par_s_fighter_01_a", + "version": 0, + "name": "Perseus Vanguard", + "description": "A fast, small fighter, with respectable hardpoints, the Paranid Perseus has a reasonable following among fighter pilots and explorers alike. Recommended to young captains in search of their second ship.nnThe Perseus Vanguard opts for a focus on speed.", + "size": "small", + "hull": 3700, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 3, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 7.756, + "inertia": { + "pitch": 1.627, + "yaw": 1.627, + "roll": 1.301 + }, + "drag": { + "forward": 3.993, + "reverse": 13.006, + "horizontal": 3.429, + "vertical": 3.429, + "pitch": 3.025, + "yaw": 3.025, + "roll": 3.025 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 240, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 133284, + "max": 180326, + "avg": 156805 + }, + "production": [ + { + "time": 12, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 66 + }, + { + "ware": "hullparts", + "amount": 145 + } + ] + } + ] + }, + { + "id": "ship_par_s_fighter_01_b", + "version": 0, + "name": "Perseus Sentinel", + "description": "A fast, small fighter, with respectable hardpoints, the Paranid Perseus has a reasonable following among fighter pilots and explorers alike. Recommended to young captains in search of their second ship.nnThe Perseus Sentinel has additional superstructure reinforcement at the cost of speed.", + "size": "small", + "hull": 4400, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 9.307, + "inertia": { + "pitch": 1.861, + "yaw": 1.861, + "roll": 1.489 + }, + "drag": { + "forward": 4.206, + "reverse": 14.557, + "horizontal": 4.115, + "vertical": 4.115, + "pitch": 3.461, + "yaw": 3.461, + "roll": 3.461 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 288, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 159928, + "max": 216373, + "avg": 188150 + }, + "production": [ + { + "time": 14, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 79 + }, + { + "ware": "hullparts", + "amount": 174 + } + ] + } + ] + }, + { + "id": "ship_par_s_fighter_02_a", + "version": 0, + "name": "Theseus Vanguard", + "description": "The Paranid Theseus is a solid, all-round performer with deadly firepower, built upon a solid chassis. If it is lacking anywhere it is in speed, though there are many tactical deployments where this is not a major issue.nnThe Vanguard model aims to rectify the speed issue, though it is debateable whether this is achieved, or even necessary.", + "size": "small", + "hull": 4200, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 3, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 8.723, + "inertia": { + "pitch": 1.994, + "yaw": 1.994, + "roll": 1.595 + }, + "drag": { + "forward": 4.328, + "reverse": 15.439, + "horizontal": 2.977, + "vertical": 2.977, + "pitch": 3.297, + "yaw": 3.297, + "roll": 3.297 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 270, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 150773, + "max": 203987, + "avg": 177380 + }, + "production": [ + { + "time": 13, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 75 + }, + { + "ware": "hullparts", + "amount": 164 + } + ] + } + ] + }, + { + "id": "ship_par_s_fighter_02_b", + "version": 0, + "name": "Theseus Sentinel", + "description": "The Paranid Theseus is a solid, all-round performer with deadly firepower, built upon a solid chassis. If it is lacking anywhere it is in speed, though there are many tactical deployments where this is not a major issue.nnGiven the Theseus' relaxed pace, many captains opt for the Sentinel model, which improves the vessel's ability to withstand attack.", + "size": "small", + "hull": 5000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 10.468, + "inertia": { + "pitch": 2.291, + "yaw": 2.291, + "roll": 1.833 + }, + "drag": { + "forward": 4.597, + "reverse": 17.402, + "horizontal": 3.573, + "vertical": 3.573, + "pitch": 3.788, + "yaw": 3.788, + "roll": 3.788 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 324, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 180149, + "max": 243731, + "avg": 211940 + }, + "production": [ + { + "time": 16, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 89 + }, + { + "ware": "hullparts", + "amount": 196 + } + ] + } + ] + }, + { + "id": "ship_par_s_heavyfighter_01_a", + "version": 0, + "name": "Ares", + "description": "The Ares meets the much demanded need for a Paranid Heavy Fighter. Loaded with weapon hard points and shield generators, the Ares can both take and deliver a beating.", + "size": "small", + "race": "paranid", + "hull": 4700, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "heavyfighter", + "mass": 12.038, + "inertia": { + "pitch": 3.269, + "yaw": 3.269, + "roll": 2.615 + }, + "drag": { + "forward": 8.258, + "reverse": 40.892, + "horizontal": 3.726, + "vertical": 3.726, + "pitch": 4.699, + "yaw": 4.699, + "roll": 4.699 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 270, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 207009, + "max": 280071, + "avg": 243540 + }, + "production": [ + { + "time": 12, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 66 + }, + { + "ware": "hullparts", + "amount": 228 + } + ] + } + ] + }, + { + "id": "ship_par_s_miner_solid_01_a", + "version": 0, + "name": "Tethys (Mineral)", + "description": "With the design of the Tethys, the Paranid proved that mining ships don't have to be ugly. It is also available in light freighter format.nnThe Tethys Miner may have a humble function, but the Paranid have added joy to the hours spent chipping away at asteroids.", + "size": "small", + "hull": 1200, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 3, + "purpose": "mine", + "thruster": "small", + "type": "miner", + "mass": 9.331, + "inertia": { + "pitch": 4.002, + "yaw": 4.002, + "roll": 3.202 + }, + "drag": { + "forward": 4.21, + "reverse": 20.83, + "horizontal": 6.302, + "vertical": 6.302, + "pitch": 6.186, + "yaw": 6.186, + "roll": 6.186 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "mining", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "mining", + "missile" + ] + } + ], + "cargo": [ + { + "max": 2100, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "hatikvah", + "holyorder", + "paranid", + "trinity" + ], + "price": { + "min": 70775, + "max": 95755, + "avg": 83265 + }, + "production": [ + { + "time": 6, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 35 + }, + { + "ware": "hullparts", + "amount": 77 + } + ] + } + ] + }, + { + "id": "ship_par_s_scout_01_a", + "version": 0, + "name": "Pegasus Vanguard", + "description": "The Paranid Pegasus scout is extraordinarily fast, ensuring the \"Peggy's\" enduring popularity with explorers in particular. Unfortunately, being followed by such a speedy vessel risks inviting a rear end collision, an eventuality known by pilots as being \"peggied\".nnIn response to demand from the most speed-addicted customers, the Pegasus was eventually released in a Vanguard model.", + "size": "small", + "hull": 1300, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 5.765, + "inertia": { + "pitch": 0.855, + "yaw": 0.855, + "roll": 0.684 + }, + "drag": { + "forward": 3.255, + "reverse": 7.64, + "horizontal": 4.09, + "vertical": 4.09, + "pitch": 3.208, + "yaw": 3.208, + "roll": 3.208 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 440, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 68043, + "max": 92058, + "avg": 80050 + }, + "production": [ + { + "time": 6, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 34 + }, + { + "ware": "hullparts", + "amount": 74 + } + ] + } + ] + }, + { + "id": "ship_par_s_scout_01_b", + "version": 0, + "name": "Pegasus Sentinel", + "description": "The Paranid Pegasus scout is extraordinarily fast, ensuring the \"Peggy's\" enduring popularity with explorers in particular. Unfortunately, being followed by such a speedy vessel risks inviting a rear end collision, an eventuality known by pilots as being \"peggied\".nnThe Sentinel model marginally increases the scout's cargo space and resilience. However, these enhancements seem to be cursory rather than conferring any practical value.", + "size": "small", + "hull": 1600, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 1, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 6.918, + "inertia": { + "pitch": 0.951, + "yaw": 0.951, + "roll": 0.761 + }, + "drag": { + "forward": 3.446, + "reverse": 8.793, + "horizontal": 4.908, + "vertical": 4.908, + "pitch": 3.568, + "yaw": 3.568, + "roll": 3.568 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 528, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 82731, + "max": 111930, + "avg": 97330 + }, + "production": [ + { + "time": 7, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 41 + }, + { + "ware": "hullparts", + "amount": 90 + } + ] + } + ] + }, + { + "id": "ship_par_s_trans_container_01_a", + "version": 0, + "name": "Tethys Vanguard", + "description": "The Paranid Tethys is considered to be one of the most enjoyable light freighters available to fly. It adopts the graceful lines common among Paranid ships, while performing admirably well for a small vessel.nnThe Tethys Vanguard boasts an impressive turn of speed.", + "size": "small", + "hull": 2100, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 5, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 16.795, + "inertia": { + "pitch": 4.002, + "yaw": 4.002, + "roll": 3.202 + }, + "drag": { + "forward": 5.236, + "reverse": 22.045, + "horizontal": 6.302, + "vertical": 6.302, + "pitch": 6.186, + "yaw": 6.186, + "roll": 6.186 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 1580, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "buccaneers", + "paranid", + "scaleplate", + "trinity" + ], + "price": { + "min": 127751, + "max": 172839, + "avg": 150295 + }, + "production": [ + { + "time": 11, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 63 + }, + { + "ware": "hullparts", + "amount": 139 + } + ] + } + ] + }, + { + "id": "ship_par_s_trans_container_01_b", + "version": 0, + "name": "Tethys Sentinel", + "description": "The Paranid Tethys is considered to be one of the most enjoyable light freighters available to fly. It adopts the graceful lines common among Paranid ships, while performing admirably well for a small vessel.nnThe Sentinel model has increased cargo space.", + "size": "small", + "hull": 2600, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 4, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 20.155, + "inertia": { + "pitch": 4.681, + "yaw": 4.681, + "roll": 3.745 + }, + "drag": { + "forward": 5.698, + "reverse": 25.405, + "horizontal": 7.563, + "vertical": 7.563, + "pitch": 7.236, + "yaw": 7.236, + "roll": 7.236 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 1896, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "scaleplate", + "trinity" + ], + "price": { + "min": 156239, + "max": 211382, + "avg": 183810 + }, + "production": [ + { + "time": 14, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 77 + }, + { + "ware": "hullparts", + "amount": 170 + } + ] + } + ] + }, + { + "id": "ship_par_xl_builder_01_a", + "version": 0, + "name": "Heracles Vanguard", + "description": "The Paranid Heracles is an enormous station-building ship, and as such, is the foundation of an economic empire.nnThe Heracles Vanguard offers additional speed, though it remains somewhat pedestrian.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 149000, + "storage": { + "missile": 40, + "unit": 128 + }, + "people": 219, + "purpose": "build", + "thruster": "extralarge", + "type": "builder", + "mass": 1137.601, + "inertia": { + "pitch": 813.251, + "yaw": 813.251, + "roll": 650.601 + }, + "drag": { + "forward": 230.64, + "reverse": 922.561, + "horizontal": 447.058, + "vertical": 447.058, + "pitch": 927.52, + "yaw": 927.52, + "roll": 927.52 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 50, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 7755200, + "max": 10492330, + "avg": 9123765 + }, + "production": [ + { + "time": 439, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2428 + }, + { + "ware": "hullparts", + "amount": 8545 + } + ] + } + ] + }, + { + "id": "ship_par_xl_builder_01_b", + "version": 0, + "name": "Heracles Sentinel", + "description": "The Paranid Heracles is an enormous station-building ship, and as such, is the foundation of an economic empire.nnThe Sentinel model is a hardened version of the Heracles.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 178000, + "storage": { + "missile": 40, + "unit": 154 + }, + "people": 182, + "purpose": "build", + "thruster": "extralarge", + "type": "builder", + "mass": 1365.121, + "inertia": { + "pitch": 853.149, + "yaw": 853.149, + "roll": 682.52 + }, + "drag": { + "forward": 264.768, + "reverse": 1059.073, + "horizontal": 536.47, + "vertical": 536.47, + "pitch": 973.024, + "yaw": 973.024, + "roll": 973.024 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 50, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 9306200, + "max": 12590741, + "avg": 10948470 + }, + "production": [ + { + "time": 527, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2913 + }, + { + "ware": "hullparts", + "amount": 10254 + } + ] + } + ] + }, + { + "id": "ship_par_xl_carrier_01_a", + "version": 0, + "name": "Zeus Vanguard", + "description": "The Paranid Zeus is perhaps one of the fastest carriers available, making it an excellent choice as the keystone of any defensive or offensive fleet. The Zeus was designed specifically with this in mind, to allay growing Paranid concerns over the military growth of their many rivals.nnThe Zeus Vanguard is even faster, and is often the strategic choice in offensive operations.", + "size": "extralarge", + "explosionDamage": 1500, + "hull": 281000, + "storage": { + "missile": 300, + "unit": 20 + }, + "people": 159, + "purpose": "fight", + "thruster": "extralarge", + "type": "carrier", + "mass": 714.616, + "inertia": { + "pitch": 835.69, + "yaw": 835.69, + "roll": 668.552 + }, + "drag": { + "forward": 208.991, + "reverse": 835.962, + "horizontal": 224.128, + "vertical": 224.128, + "pitch": 842.923, + "yaw": 842.923, + "roll": 842.923 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_middle_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_middle_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_middle_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 20000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 11158558, + "max": 15096872, + "avg": 13127715 + }, + "production": [ + { + "time": 632, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 3493 + }, + { + "ware": "hullparts", + "amount": 12295 + } + ] + } + ] + }, + { + "id": "ship_par_xl_carrier_01_b", + "version": 0, + "name": "Zeus Sentinel", + "description": "The Paranid Zeus is perhaps one of the fastest carriers available, making it an excellent choice as the keystone of any defensive or offensive fleet. The Zeus was designed specifically with this in mind, to allay growing Paranid concerns over the military growth of their many rivals.nnThe Zeus is available in a Sentinel model, with a hardened superstructure for increased battle resilience.", + "size": "extralarge", + "explosionDamage": 1500, + "hull": 337000, + "storage": { + "missile": 300, + "unit": 20 + }, + "people": 132, + "purpose": "fight", + "thruster": "extralarge", + "type": "carrier", + "mass": 857.54, + "inertia": { + "pitch": 864.029, + "yaw": 864.029, + "roll": 691.223 + }, + "drag": { + "forward": 235.789, + "reverse": 943.155, + "horizontal": 268.953, + "vertical": 268.953, + "pitch": 871.508, + "yaw": 871.508, + "roll": 871.508 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_middle_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_middle_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_middle_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 24000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 13385719, + "max": 18110091, + "avg": 15747905 + }, + "production": [ + { + "time": 758, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 4190 + }, + { + "ware": "hullparts", + "amount": 14749 + } + ] + } + ] + }, + { + "id": "ship_par_xl_carrier_02_a", + "version": 0, + "name": "Zeus E", + "description": "The Paranid Zeus is perhaps one of the fastest carriers available, making it an excellent choice as the keystone of any defensive or offensive fleet. The Zeus was designed specifically with this in mind, to allay growing Paranid concerns over the military growth of their many rivals.nnThe E-model variation was introduced at a later date, and updated the superficial design to bring it up to par with Commonwealth standards that were established during the period of disconnection. The precursor version is slowly being phased out, but will remain available for interested third parties.", + "size": "extralarge", + "race": "paranid", + "explosionDamage": 1500, + "hull": 303000, + "storage": { + "missile": 300, + "unit": 20 + }, + "people": 143, + "purpose": "fight", + "thruster": "extralarge", + "type": "carrier", + "mass": 771.902, + "inertia": { + "pitch": 914.95, + "yaw": 914.95, + "roll": 731.96 + }, + "drag": { + "forward": 153.812, + "reverse": 878.927, + "horizontal": 199.623, + "vertical": 199.623, + "pitch": 854.38, + "yaw": 854.38, + "roll": 854.38 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_middle_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_middle_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_middle_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 22000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 8, + "size": "medium" + }, + { + "capacity": 16, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "price": { + "min": 14909536, + "max": 20171725, + "avg": 17540630 + }, + "production": [ + { + "time": 682, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1506 + }, + { + "ware": "hullparts", + "amount": 16670 + } + ] + } + ] + }, + { + "id": "ship_par_xl_resupplier_01_a", + "version": 0, + "name": "Atlas Vanguard", + "description": "The Paranid Atlas is a large spaceship, specifically designed to repair and resupply fleets. This advanced vessel is equipped with cutting-edge robotics technology, and capacity for an ample supply of materials and resources. It can travel throughout space, effectively operating as a limited, but mobile, Equipment Dock.nnThe upgraded Atlas Vanguard is faster and more agile than its predecessor, supporting quicker and more efficient martial campaigns.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 130000, + "storage": { + "missile": 40, + "unit": 100 + }, + "people": 247, + "purpose": "auxiliary", + "thruster": "extralarge", + "type": "resupplier", + "mass": 999.739, + "inertia": { + "pitch": 693.45, + "yaw": 693.45, + "roll": 554.76 + }, + "drag": { + "forward": 262.451, + "reverse": 1049.804, + "horizontal": 466.424, + "vertical": 466.424, + "pitch": 899.948, + "yaw": 899.948, + "roll": 899.948 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_middle", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 29000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 8194429, + "max": 11086581, + "avg": 9640505 + }, + "production": [ + { + "time": 464, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2565 + }, + { + "ware": "hullparts", + "amount": 9029 + } + ] + } + ] + }, + { + "id": "ship_par_xl_resupplier_01_b", + "version": 0, + "name": "Atlas Sentinel", + "description": "The Paranid Atlas is a large spaceship, specifically designed to repair and resupply fleets. This advanced vessel is equipped with cutting-edge robotics technology, and capacity for an ample supply of materials and resources. It can travel throughout space, effectively operating as a limited, but mobile, Equipment Dock.nnThe Atlas Sentinel is a variant with a reinforced hull for increased durability and protection. The hardened structure allows the Atlas Sentinel to operate in more hazardous environments, and increase its longevity.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 156000, + "storage": { + "missile": 40, + "unit": 100 + }, + "people": 205, + "purpose": "auxiliary", + "thruster": "extralarge", + "type": "resupplier", + "mass": 1199.686, + "inertia": { + "pitch": 724.264, + "yaw": 724.264, + "roll": 579.411 + }, + "drag": { + "forward": 299.941, + "reverse": 1199.765, + "horizontal": 559.709, + "vertical": 559.709, + "pitch": 939.937, + "yaw": 939.937, + "roll": 939.937 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_middle", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 34800, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 9833493, + "max": 13304137, + "avg": 11568815 + }, + "production": [ + { + "time": 557, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 3078 + }, + { + "ware": "hullparts", + "amount": 10835 + } + ] + } + ] + }, + { + "id": "ship_par_xl_resupplier_02_a", + "version": 0, + "name": "Atlas E", + "description": "The Paranid Atlas is a large spaceship, specifically designed to repair and resupply fleets. This advanced vessel is equipped with cutting-edge robotics technology, and capacity for an ample supply of materials and resources. It can travel throughout space, effectively operating as a limited, but mobile, Equipment Dock.nnThe E-model variation was introduced at a later date, and updated the superficial design to bring it up to par with Commonwealth standards that were established during the period of disconnection. The precursor version is slowly being phased out, but will remain available for interested third parties.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 164000, + "storage": { + "missile": 40, + "unit": 100 + }, + "people": 258, + "purpose": "auxiliary", + "thruster": "extralarge", + "type": "resupplier", + "mass": 1256.778, + "inertia": { + "pitch": 921.538, + "yaw": 921.538, + "roll": 737.23 + }, + "drag": { + "forward": 310.646, + "reverse": 1242.584, + "horizontal": 413.971, + "vertical": 413.971, + "pitch": 931.356, + "yaw": 931.356, + "roll": 931.356 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_mid_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_middle", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_middle", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 34040, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 8, + "size": "medium" + }, + { + "capacity": 16, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "price": { + "min": 13138973, + "max": 17776257, + "avg": 15457615 + }, + "production": [ + { + "time": 541, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1319 + }, + { + "ware": "hullparts", + "amount": 14691 + } + ] + } + ] + }, + { + "id": "ship_tel_l_destroyer_01_a", + "version": 0, + "name": "Phoenix Vanguard", + "description": "When the Teladi Company commissioned a redesign of the Phoenix destroyer, their goal wasn't to create an all-conquering super weapon. Instead, their focus was to build a robust capital ship able to withstand the rigours of battle long enough for reinforcements to arrive.nnIn this regard, commanders concede that, as a defensive platform, the designers succeeded. The Phoenix is built on a steadfast chassis. The designers are said to be particularly proud of an intelligently dispersed engine placement, where the previous model's cluster resembled an enticing invitation for torpedo targeting.nnThe Vanguard model marginally negates the Phoenix's lack of speed and agility.", + "size": "large", + "explosionDamage": 1000, + "hull": 104000, + "storage": { + "missile": 160, + "unit": 10 + }, + "people": 50, + "purpose": "fight", + "thruster": "large", + "type": "destroyer", + "mass": 219.416, + "inertia": { + "pitch": 112.511, + "yaw": 112.511, + "roll": 90.009 + }, + "drag": { + "forward": 92.271, + "reverse": 369.086, + "horizontal": 65.282, + "vertical": 65.282, + "pitch": 110.883, + "yaw": 110.883, + "roll": 110.883 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_front_top_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "group": "group_center_bottom_left2", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_right2", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_center_bottom_right2", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_left2", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 3700, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "teladi" + ], + "price": { + "min": 4482356, + "max": 6064364, + "avg": 5273360 + }, + "production": [ + { + "time": 204, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1127 + }, + { + "ware": "hullparts", + "amount": 4960 + } + ] + } + ] + }, + { + "id": "ship_tel_l_destroyer_01_b", + "version": 0, + "name": "Phoenix Sentinel", + "description": "When the Teladi Company commissioned a redesign of the Phoenix destroyer, their goal wasn't to create an all-conquering super weapon. Instead, their focus was to build a robust capital ship able to withstand the rigours of battle long enough for reinforcements to arrive.nnIn this regard, commanders concede that, as a defensive platform, the designers succeeded. The Phoenix is built on a steadfast chassis. The designers are said to be particularly proud of an intelligently dispersed engine placement, where the previous model's cluster resembled an enticing invitation for torpedo targeting.nnThe increased resilience afforded by the Sentinel model comes with a reduction in speed and agility that has caused some pilots to refer to the vessel as an asteroid with guns.", + "size": "large", + "explosionDamage": 1000, + "hull": 124000, + "storage": { + "missile": 160, + "unit": 10 + }, + "people": 41, + "purpose": "fight", + "thruster": "large", + "type": "destroyer", + "mass": 263.299, + "inertia": { + "pitch": 121.417, + "yaw": 121.417, + "roll": 97.133 + }, + "drag": { + "forward": 101.926, + "reverse": 407.703, + "horizontal": 78.338, + "vertical": 78.338, + "pitch": 119.66, + "yaw": 119.66, + "roll": 119.66 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_front_top_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "group": "group_center_bottom_left2", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_right2", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_center_bottom_right2", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_left2", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 4440, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 5361719, + "max": 7254091, + "avg": 6307905 + }, + "production": [ + { + "time": 244, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1349 + }, + { + "ware": "hullparts", + "amount": 5933 + } + ] + } + ] + }, + { + "id": "ship_tel_l_miner_liquid_01_a", + "version": 0, + "name": "Crane (Gas) Vanguard", + "description": "The Teladi Crane is a large miner with truly impressive load carrying capacity. Fulfilling a major part of Teladi primary resource acquisition, the Crane is available in models optimised for either mineral or gas collection.nnThe Vanguard variant enhances the Crane's speed, which may benefit entrepreneurs who are mining resources far from where they are required.", + "size": "large", + "explosionDamage": 800, + "hull": 30000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 52, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 235.019, + "inertia": { + "pitch": 164.773, + "yaw": 164.773, + "roll": 131.818 + }, + "drag": { + "forward": 83.741, + "reverse": 478.521, + "horizontal": 104.731, + "vertical": 104.731, + "pitch": 151.607, + "yaw": 151.607, + "roll": 151.607 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": true + }, + { + "group": "group_back_top_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_top_right", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_top_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_top_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 44000, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "hatikvah", + "teladi" + ], + "price": { + "min": 1277814, + "max": 1728807, + "avg": 1503310 + }, + "production": [ + { + "time": 96, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 530 + }, + { + "ware": "hullparts", + "amount": 1398 + } + ] + } + ] + }, + { + "id": "ship_tel_l_miner_liquid_01_b", + "version": 0, + "name": "Crane (Gas) Sentinel", + "description": "The Teladi Crane is a large miner with truly impressive load carrying capacity. Fulfilling a major part of Teladi primary resource acquisition, the Crane is available in models optimised for either mineral or gas collection.nnThe Sentinel variant enhances the Crane's cargo hold even further, though pilots should be aware that this may make them an attractive proposition for pirates.", + "size": "large", + "explosionDamage": 800, + "hull": 36000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 43, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 282.023, + "inertia": { + "pitch": 183.164, + "yaw": 183.164, + "roll": 146.531 + }, + "drag": { + "forward": 92.789, + "reverse": 530.225, + "horizontal": 125.677, + "vertical": 125.677, + "pitch": 168.528, + "yaw": 168.528, + "roll": 168.528 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": true + }, + { + "group": "group_back_top_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_top_right", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_top_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_top_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 52800, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "hatikvah", + "ministry" + ], + "price": { + "min": 1533732, + "max": 2075049, + "avg": 1804390 + }, + "production": [ + { + "time": 115, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 636 + }, + { + "ware": "hullparts", + "amount": 1678 + } + ] + } + ] + }, + { + "id": "ship_tel_l_miner_solid_01_a", + "version": 0, + "name": "Crane (Mineral) Vanguard", + "description": "The Teladi Crane is a large miner with truly impressive load carrying capacity. Fulfilling a major part of Teladi primary resource acquisition, the Crane is available in models optimised for either mineral or gas collection.nnThe Vanguard variant enhances the Crane's speed, which may benefit entrepreneurs who are mining resources far from where they are required.", + "size": "large", + "explosionDamage": 800, + "hull": 30000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 52, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 235.019, + "inertia": { + "pitch": 164.773, + "yaw": 164.773, + "roll": 131.818 + }, + "drag": { + "forward": 83.741, + "reverse": 478.521, + "horizontal": 104.731, + "vertical": 104.731, + "pitch": 151.607, + "yaw": 151.607, + "roll": 151.607 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": true + }, + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "mining", + "standard" + ] + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "mining", + "standard" + ] + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true, + "types": [ + "mining", + "standard" + ] + }, + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "cargo": [ + { + "max": 48000, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "hatikvah", + "teladi" + ], + "price": { + "min": 1277814, + "max": 1728807, + "avg": 1503310 + }, + "production": [ + { + "time": 96, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 530 + }, + { + "ware": "hullparts", + "amount": 1398 + } + ] + } + ] + }, + { + "id": "ship_tel_l_miner_solid_01_b", + "version": 0, + "name": "Crane (Mineral) Sentinel", + "description": "The Teladi Crane is a large miner with truly impressive load carrying capacity. Fulfilling a major part of Teladi primary resource acquisition, the Crane is available in models optimised for either mineral or gas collection.nnThe Sentinel variant enhances the Crane's cargo hold even further, though pilots should be aware that this may make them an attractive proposition for pirates.", + "size": "large", + "explosionDamage": 800, + "hull": 36000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 43, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 282.023, + "inertia": { + "pitch": 183.164, + "yaw": 183.164, + "roll": 146.531 + }, + "drag": { + "forward": 92.789, + "reverse": 530.225, + "horizontal": 125.677, + "vertical": 125.677, + "pitch": 168.528, + "yaw": 168.528, + "roll": 168.528 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": true + }, + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "mining", + "standard" + ] + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "mining", + "standard" + ] + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true, + "types": [ + "mining", + "standard" + ] + }, + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "cargo": [ + { + "max": 57600, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "hatikvah", + "ministry" + ], + "price": { + "min": 1533732, + "max": 2075049, + "avg": 1804390 + }, + "production": [ + { + "time": 115, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 636 + }, + { + "ware": "hullparts", + "amount": 1678 + } + ] + } + ] + }, + { + "id": "ship_tel_l_trans_container_01_a", + "version": 0, + "name": "Pelican Vanguard", + "description": "The Teladi Pelican is notable for its mediocrity as a freighter. It has taken to the level of an art form the capacity to be neither outstandingly good nor bad on any single metric. The single greatest mystery is why Teladi traders themselves use this ship, when there are many other more profitable options available.nnThe Vanguard model's increased speed manages to make the vessel even less profitable due to a reduction in cargo space.", + "size": "large", + "explosionDamage": 800, + "hull": 52000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 100, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 402.059, + "inertia": { + "pitch": 152.269, + "yaw": 152.269, + "roll": 121.816 + }, + "drag": { + "forward": 165.566, + "reverse": 662.265, + "horizontal": 114.538, + "vertical": 114.538, + "pitch": 147.412, + "yaw": 147.412, + "roll": 147.412 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": true + }, + { + "group": "group_back_top_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_top_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom_center", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_top_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_top_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 40800, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "teladi" + ], + "price": { + "min": 2254893, + "max": 3050737, + "avg": 2652815 + }, + "production": [ + { + "time": 169, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 935 + }, + { + "ware": "hullparts", + "amount": 2467 + } + ] + } + ] + }, + { + "id": "ship_tel_l_trans_container_01_b", + "version": 0, + "name": "Pelican Sentinel", + "description": "The Teladi Pelican is notable for its mediocrity as a freighter. It has taken to the level of an art form the capacity to be neither outstandingly good nor bad on any single metric. The single greatest mystery is why Teladi traders themselves use this ship, when there are many other more profitable options available.nnRecognising the commercial weakness of the Pelican, the Sentinel model boasts increased cargo space, improving the ship's overall trade run profitability.", + "size": "large", + "explosionDamage": 800, + "hull": 63000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 83, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 482.471, + "inertia": { + "pitch": 168.882, + "yaw": 168.882, + "roll": 135.105 + }, + "drag": { + "forward": 187.68, + "reverse": 750.718, + "horizontal": 137.446, + "vertical": 137.446, + "pitch": 163.494, + "yaw": 163.494, + "roll": 163.494 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": true + }, + { + "group": "group_back_top_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_top_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom_center", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_top_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_top_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 51000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 2719180, + "max": 3678890, + "avg": 3199035 + }, + "production": [ + { + "time": 204, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1127 + }, + { + "ware": "hullparts", + "amount": 2975 + } + ] + } + ] + }, + { + "id": "ship_tel_l_trans_container_02_a", + "version": 0, + "name": "Heron Vanguard", + "description": "The Teladi Company's Heron is a large freighter. It is noted for its somewhat relaxed pace, which is in keeping with mainstream Teladi design values.nnThe Vanguard model marginally improves the Heron's speed, but the vessel remains unsuited to express delivery.", + "size": "large", + "explosionDamage": 800, + "hull": 48000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 101, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 367.5, + "inertia": { + "pitch": 147.394, + "yaw": 147.394, + "roll": 117.916 + }, + "drag": { + "forward": 156.062, + "reverse": 624.25, + "horizontal": 100.592, + "vertical": 100.592, + "pitch": 140.5, + "yaw": 140.5, + "roll": 140.5 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": true + }, + { + "group": "group_back_top_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_top_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom_center", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_top_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_top_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 36800, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "teladi" + ], + "price": { + "min": 2071119, + "max": 2802102, + "avg": 2436610 + }, + "production": [ + { + "time": 155, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 858 + }, + { + "ware": "hullparts", + "amount": 2266 + } + ] + } + ] + }, + { + "id": "ship_tel_l_trans_container_02_b", + "version": 0, + "name": "Heron Sentinel", + "description": "The Teladi Company's Heron is a large freighter. It is noted for its somewhat relaxed pace, which is in keeping with mainstream Teladi design values.nnThe Sentinel model is popular in military academies for use in remedial target practice.", + "size": "large", + "explosionDamage": 800, + "hull": 57000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 84, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 441, + "inertia": { + "pitch": 162.816, + "yaw": 162.816, + "roll": 130.253 + }, + "drag": { + "forward": 176.275, + "reverse": 705.1, + "horizontal": 120.71, + "vertical": 120.71, + "pitch": 155.2, + "yaw": 155.2, + "roll": 155.2 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": true + }, + { + "group": "group_back_top_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_top_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom_center", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_top_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_top_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 46000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 2472416, + "max": 3345034, + "avg": 2908725 + }, + "production": [ + { + "time": 185, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1025 + }, + { + "ware": "hullparts", + "amount": 2705 + } + ] + } + ] + }, + { + "id": "ship_tel_m_bomber_01_a", + "version": 0, + "name": "Peregrine Vanguard", + "description": "While originally designed as a bomber, the Teladi Peregrine has recently found popularity in the role of an escort ship. Its primary tactical advantage in this regard is its excellent turret coverage, which can be highly effective when appropriately armed.nnThe Vanguard model, with additional speed, was an attempt to retrofit the Peregrine to make it more suitable for its original intended role. Debate continues as to whether this was a success.", + "size": "medium", + "explosionDamage": 500, + "hull": 12000, + "storage": { + "missile": 40, + "unit": 0 + }, + "people": 9, + "purpose": "fight", + "thruster": "medium", + "type": "gunboat", + "mass": 28.434, + "inertia": { + "pitch": 5.34, + "yaw": 5.34, + "roll": 4.272 + }, + "drag": { + "forward": 8.72, + "reverse": 34.879, + "horizontal": 14.177, + "vertical": 14.177, + "pitch": 9.609, + "yaw": 9.609, + "roll": 9.609 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 850, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "teladi" + ], + "price": { + "min": 625354, + "max": 846067, + "avg": 735710 + }, + "production": [ + { + "time": 24, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 131 + }, + { + "ware": "hullparts", + "amount": 694 + } + ] + } + ] + }, + { + "id": "ship_tel_m_bomber_01_b", + "version": 0, + "name": "Peregrine Sentinel", + "description": "While originally designed as a bomber, the Teladi Peregrine has recently found popularity in the role of an escort ship. Its primary tactical advantage in this regard is its excellent turret coverage, which can be highly effective when appropriately armed.nnThe Peregrine Sentinel leans into this novel escort role, offering increased superstructure resilience.", + "size": "medium", + "explosionDamage": 500, + "hull": 14000, + "storage": { + "missile": 40, + "unit": 0 + }, + "people": 7, + "purpose": "fight", + "thruster": "medium", + "type": "gunboat", + "mass": 34.121, + "inertia": { + "pitch": 6.13, + "yaw": 6.13, + "roll": 4.904 + }, + "drag": { + "forward": 10.01, + "reverse": 40.04, + "horizontal": 17.012, + "vertical": 17.012, + "pitch": 11.03, + "yaw": 11.03, + "roll": 11.03 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 1020, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 739861, + "max": 1000989, + "avg": 870425 + }, + "production": [ + { + "time": 28, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 156 + }, + { + "ware": "hullparts", + "amount": 821 + } + ] + } + ] + }, + { + "id": "ship_tel_m_frigate_01_a", + "version": 0, + "name": "Osprey Vanguard", + "description": "The Teladi Osprey is a surprisingly effective frigate with significant cargo capacity. On this basis, it can be used as a well-armed and speedy alternative to a standard freighter for trade runs where prejudice is anticipated.nnThe Vanguard model enhances speed, and as a consequence, the potential profitability of trading routes.", + "size": "medium", + "explosionDamage": 200, + "hull": 33000, + "storage": { + "missile": 100, + "unit": 17 + }, + "people": 15, + "purpose": "fight", + "thruster": "medium", + "type": "frigate", + "mass": 68.683, + "inertia": { + "pitch": 7.188, + "yaw": 7.188, + "roll": 5.75 + }, + "drag": { + "forward": 17.851, + "reverse": 49.983, + "horizontal": 16.597, + "vertical": 16.597, + "pitch": 13.77, + "yaw": 13.77, + "roll": 13.77 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 2430, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 1, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "teladi" + ], + "price": { + "min": 887574, + "max": 1200836, + "avg": 1044205 + }, + "production": [ + { + "time": 34, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 186 + }, + { + "ware": "hullparts", + "amount": 985 + } + ] + } + ] + }, + { + "id": "ship_tel_m_frigate_01_b", + "version": 0, + "name": "Osprey Sentinel", + "description": "The Teladi Osprey is a surprisingly effective frigate with significant cargo capacity. On this basis, it can be used as a well-armed and speedy alternative to a standard freighter for trade runs where prejudice is anticipated.nnThe Sentinel variation compromises speed in favour of additional cargo space.", + "size": "medium", + "explosionDamage": 200, + "hull": 39000, + "storage": { + "missile": 100, + "unit": 17 + }, + "people": 12, + "purpose": "fight", + "thruster": "medium", + "type": "frigate", + "mass": 82.42, + "inertia": { + "pitch": 8.443, + "yaw": 8.443, + "roll": 6.754 + }, + "drag": { + "forward": 20.968, + "reverse": 58.71, + "horizontal": 19.916, + "vertical": 19.916, + "pitch": 16.173, + "yaw": 16.173, + "roll": 16.173 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 2916, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 1, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 1074162, + "max": 1453278, + "avg": 1263720 + }, + "production": [ + { + "time": 41, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 226 + }, + { + "ware": "hullparts", + "amount": 1192 + } + ] + } + ] + }, + { + "id": "ship_tel_m_miner_liquid_01_a", + "version": 0, + "name": "Manorina (Gas) Vanguard", + "description": "While ostensibly a resource harvester, some enterprising captains have repurposed the Teladi Manorina as a low-cost gunship, taking full advantage of its outstanding shielding capacity. Some even go as far as retaining the mining drill as a weapon, due to its extended range. Suspicions are occasionally expressed that this is a Teladi artifice for trading a weapon of war under civilian guise, avoiding the requirement for a military licence.nnThe Manorina can also be used to collect gas, and the Vanguard model adds a useful degree of speed.", + "size": "medium", + "explosionDamage": 100, + "hull": 3700, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 9, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 28.725, + "inertia": { + "pitch": 8.66, + "yaw": 8.66, + "roll": 6.928 + }, + "drag": { + "forward": 4.1, + "reverse": 23.429, + "horizontal": 25.382, + "vertical": 25.382, + "pitch": 15.426, + "yaw": 15.426, + "roll": 15.426 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 10800, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "hatikvah", + "teladi" + ], + "price": { + "min": 101035, + "max": 136695, + "avg": 118865 + }, + "production": [ + { + "time": 11, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 62 + }, + { + "ware": "hullparts", + "amount": 109 + } + ] + } + ] + }, + { + "id": "ship_tel_m_miner_liquid_01_b", + "version": 0, + "name": "Manorina (Gas) Sentinel", + "description": "While ostensibly a resource harvester, some enterprising captains have repurposed the Teladi Manorina as a low-cost gunship, taking full advantage of its outstanding shielding capacity. Some even go as far as retaining the mining drill as a weapon, due to its extended range. Suspicions are occasionally expressed that this is a Teladi artifice for trading a weapon of war under civilian guise, avoiding the requirement for a military licence.nnThe Manorina can also be used for harmless gas collection. The Sentinel model boasts increased storage capacity.", + "size": "medium", + "explosionDamage": 100, + "hull": 4500, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 7, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 34.47, + "inertia": { + "pitch": 10.111, + "yaw": 10.111, + "roll": 8.089 + }, + "drag": { + "forward": 4.708, + "reverse": 26.904, + "horizontal": 30.459, + "vertical": 30.459, + "pitch": 18.011, + "yaw": 18.011, + "roll": 18.011 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 12960, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "hatikvah", + "ministry" + ], + "price": { + "min": 122349, + "max": 165531, + "avg": 143940 + }, + "production": [ + { + "time": 14, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 75 + }, + { + "ware": "hullparts", + "amount": 132 + } + ] + } + ] + }, + { + "id": "ship_tel_m_miner_solid_01_a", + "version": 0, + "name": "Manorina (Mineral) Vanguard", + "description": "While ostensibly a resource harvester, some enterprising captains have repurposed the Teladi Manorina as a low-cost gunship, taking full advantage of its outstanding shielding capacity. Some even go as far as retaining the mining drill as a weapon, due to its extended range. Suspicions are occasionally expressed that this is a Teladi artifice for trading a weapon of war under civilian guise, avoiding the requirement for a military licence.nnThe Manorina can also be used to mine asteroids, and the Vanguard model adds a degree of speed in either use case.", + "size": "medium", + "explosionDamage": 100, + "hull": 3700, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 10, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 28.725, + "inertia": { + "pitch": 8.66, + "yaw": 8.66, + "roll": 6.928 + }, + "drag": { + "forward": 4.1, + "reverse": 23.429, + "horizontal": 25.382, + "vertical": 25.382, + "pitch": 15.426, + "yaw": 15.426, + "roll": 15.426 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + } + ], + "cargo": [ + { + "max": 10000, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "hatikvah", + "teladi" + ], + "price": { + "min": 101035, + "max": 136695, + "avg": 118865 + }, + "production": [ + { + "time": 11, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 62 + }, + { + "ware": "hullparts", + "amount": 109 + } + ] + } + ] + }, + { + "id": "ship_tel_m_miner_solid_01_b", + "version": 0, + "name": "Manorina (Mineral) Sentinel", + "description": "While ostensibly a resource harvester, some enterprising captains have repurposed the Teladi Manorina as a low-cost gunship, taking full advantage of its outstanding shielding capacity. Some even go as far as retaining the mining drill as a weapon, due to its extended range. Suspicions are occasionally expressed that this is a Teladi artifice for trading a weapon of war under civilian guise, avoiding the requirement for a military licence.nnThe Manorina can also be used to mine asteroids, and the Sentinel variation adds some resilience to stray rocks or foes alike.", + "size": "medium", + "explosionDamage": 100, + "hull": 4500, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 8, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 34.47, + "inertia": { + "pitch": 10.111, + "yaw": 10.111, + "roll": 8.089 + }, + "drag": { + "forward": 4.708, + "reverse": 26.904, + "horizontal": 30.459, + "vertical": 30.459, + "pitch": 18.011, + "yaw": 18.011, + "roll": 18.011 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + } + ], + "cargo": [ + { + "max": 12000, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "hatikvah", + "ministry" + ], + "price": { + "min": 122349, + "max": 165531, + "avg": 143940 + }, + "production": [ + { + "time": 14, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 75 + }, + { + "ware": "hullparts", + "amount": 132 + } + ] + } + ] + }, + { + "id": "ship_tel_m_trans_container_01_a", + "version": 0, + "name": "Vulture Vanguard", + "description": "The Teladi Vulture medium freighter, while generally unassuming, remains a popular choice for independent traders in particular. It has excellent cargo capacity, more than making up for its lack of speed, on an analysis of trade route profitability.nnThe Vanguard model increases speed marginally, however, this comes with a reduction in cargo space.", + "size": "medium", + "explosionDamage": 100, + "hull": 8000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 16, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 63.13, + "inertia": { + "pitch": 12.532, + "yaw": 12.532, + "roll": 10.025 + }, + "drag": { + "forward": 11.061, + "reverse": 44.244, + "horizontal": 20.402, + "vertical": 20.402, + "pitch": 18.283, + "yaw": 18.283, + "roll": 18.283 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 12080, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "teladi" + ], + "price": { + "min": 226117, + "max": 305923, + "avg": 266020 + }, + "production": [ + { + "time": 25, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 138 + }, + { + "ware": "hullparts", + "amount": 244 + } + ] + } + ] + }, + { + "id": "ship_tel_m_trans_container_01_b", + "version": 0, + "name": "Vulture Sentinel", + "description": "The Teladi Vulture medium freighter, while generally unassuming, remains a popular choice for independent traders in particular. It has excellent cargo capacity, more than making up for its lack of speed, on an analysis of trade route profitability.nnThe Sentinel variant has perhaps the largest cargo space of any medium freighter, meriting consideration from any mogul seeking to optimise profits.", + "size": "medium", + "explosionDamage": 100, + "hull": 9000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 13, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 75.756, + "inertia": { + "pitch": 14.695, + "yaw": 14.695, + "roll": 11.756 + }, + "drag": { + "forward": 12.971, + "reverse": 51.882, + "horizontal": 24.482, + "vertical": 24.482, + "pitch": 21.439, + "yaw": 21.439, + "roll": 21.439 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 15100, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 262323, + "max": 354907, + "avg": 308615 + }, + "production": [ + { + "time": 29, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 161 + }, + { + "ware": "hullparts", + "amount": 283 + } + ] + } + ] + }, + { + "id": "ship_tel_m_trans_container_02_a", + "version": 0, + "name": "Tern Vanguard", + "description": "The Teladi Tern is a surprisingly cost effective and efficient freighter, a staple of many trading corporations. Its affordability and solid performance make it one of the more popular Teladi vessel designs.nnThe Vanguard model is optimised for speed, however, the reduction in cargo capacity reduces the Tern's overall trading performance.", + "size": "medium", + "explosionDamage": 100, + "hull": 7000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 20, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 56.817, + "inertia": { + "pitch": 11.45, + "yaw": 11.45, + "roll": 9.16 + }, + "drag": { + "forward": 10.106, + "reverse": 40.424, + "horizontal": 18.361, + "vertical": 18.361, + "pitch": 16.704, + "yaw": 16.704, + "roll": 16.704 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 10880, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "teladi" + ], + "price": { + "min": 226117, + "max": 305923, + "avg": 266020 + }, + "production": [ + { + "time": 25, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 138 + }, + { + "ware": "hullparts", + "amount": 244 + } + ] + } + ] + }, + { + "id": "ship_tel_m_trans_container_02_b", + "version": 0, + "name": "Tern Sentinel", + "description": "The Teladi Tern is a surprisingly cost effective and efficient freighter, a staple of many trading corporations. Its affordability and solid performance make it one of the more popular Teladi vessel designs.nnThe Tern Sentinel variant has a hardened hull composite, and is favoured by many traders.", + "size": "medium", + "explosionDamage": 100, + "hull": 8000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 16, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 68.18, + "inertia": { + "pitch": 13.397, + "yaw": 13.397, + "roll": 10.718 + }, + "drag": { + "forward": 11.825, + "reverse": 47.299, + "horizontal": 22.034, + "vertical": 22.034, + "pitch": 19.545, + "yaw": 19.545, + "roll": 19.545 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 13600, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 262323, + "max": 354907, + "avg": 308615 + }, + "production": [ + { + "time": 29, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 161 + }, + { + "ware": "hullparts", + "amount": 283 + } + ] + } + ] + }, + { + "id": "ship_tel_m_trans_container_03_a", + "version": 0, + "name": "Cormorant Vanguard", + "description": "The Cormorant is unusual for a Teladi ship as it is tailored for freelancers. A light freighter with very basic construction specifications, it is inexpensive and accessible for most entrepreneurs starting out in business.nnThe Cormorant Vanguard is not well armed, however, it is resilient. Many of the fittings successfully remain attached during spaceflight.", + "size": "medium", + "explosionDamage": 100, + "hull": 10000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 17, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 65.536, + "inertia": { + "pitch": 13.437, + "yaw": 13.437, + "roll": 10.75 + }, + "drag": { + "forward": 17.137, + "reverse": 68.549, + "horizontal": 18.864, + "vertical": 18.864, + "pitch": 25.493, + "yaw": 25.493, + "roll": 25.493 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 7900, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 356006, + "max": 481655, + "avg": 418830 + }, + "production": [ + { + "time": 26, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 141 + }, + { + "ware": "hullparts", + "amount": 390 + } + ] + } + ] + }, + { + "id": "ship_tel_s_fighter_01_a", + "version": 0, + "name": "Falcon Vanguard", + "description": "The Teladi Falcon is a well regarded fighter. Its excellent speed, paired with reasonable strength and weaponry, make it a popular choice for fighter pilots on a budget.nnThe additional speed conferred by the Vanguard model opens up the possibility of the Falcon being used as a tactical interceptor.", + "size": "small", + "hull": 3900, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 3, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 8.091, + "inertia": { + "pitch": 1.75, + "yaw": 1.75, + "roll": 1.925 + }, + "drag": { + "forward": 4.111, + "reverse": 13.866, + "horizontal": 3.295, + "vertical": 3.295, + "pitch": 3.119, + "yaw": 3.119, + "roll": 3.119 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 340, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "hatikvah", + "scaleplate", + "teladi" + ], + "price": { + "min": 139706, + "max": 189014, + "avg": 164360 + }, + "production": [ + { + "time": 13, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 69 + }, + { + "ware": "hullparts", + "amount": 152 + } + ] + } + ] + }, + { + "id": "ship_tel_s_fighter_01_b", + "version": 0, + "name": "Falcon Sentinel", + "description": "The Teladi Falcon is a well regarded fighter. Its excellent speed, paired with reasonable strength and weaponry, make it a popular choice for fighter pilots on a budget.nnThe Falcon Sentinel is thought by many to be a compromise too far, with reduced speed and increased resilience rendering the overall performance somewhat mediocre.", + "size": "small", + "hull": 4600, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 9.709, + "inertia": { + "pitch": 2.005, + "yaw": 2.005, + "roll": 2.206 + }, + "drag": { + "forward": 4.334, + "reverse": 15.484, + "horizontal": 3.954, + "vertical": 3.954, + "pitch": 3.574, + "yaw": 3.574, + "roll": 3.574 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 408, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "hatikvah", + "ministry", + "scaleplate" + ], + "price": { + "min": 166349, + "max": 225061, + "avg": 195705 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 82 + }, + { + "ware": "hullparts", + "amount": 181 + } + ] + } + ] + }, + { + "id": "ship_tel_s_fighter_02_a", + "version": 0, + "name": "Buzzard Vanguard", + "description": "While the Teladi seem to have great affection for their Buzzard fighter, this is not without an awareness of its limitations.nn\"Tough as brick, fast as brick\" is the unofficial strapline adopted by Buzzard pilots, and it is often seen painted on hulls.nnThe Buzzard seems to be designed to survive long enough for help to come rather than tackling assailants head-on. The modest additional speed provided by the Vanguard model is unlikely to make a difference to pilots' tactical options.", + "size": "small", + "hull": 4100, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 3, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 8.698, + "inertia": { + "pitch": 2.204, + "yaw": 2.204, + "roll": 2.425 + }, + "drag": { + "forward": 5.312, + "reverse": 22.601, + "horizontal": 3.78, + "vertical": 3.78, + "pitch": 3.656, + "yaw": 3.656, + "roll": 3.656 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 300, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "teladi" + ], + "price": { + "min": 134173, + "max": 181528, + "avg": 157850 + }, + "production": [ + { + "time": 12, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 66 + }, + { + "ware": "hullparts", + "amount": 146 + } + ] + } + ] + }, + { + "id": "ship_tel_s_fighter_02_b", + "version": 0, + "name": "Buzzard Sentinel", + "description": "While the Teladi seem to have great affection for their Buzzard fighter, this is not without an awareness of its limitations.nn\"Tough as brick, fast as brick\" is the unofficial strapline adopted by Buzzard pilots, and it is often seen painted on hulls.nnThe Buzzard seems to be designed to survive long enough for help to come rather than tackling assailants head-on. The Sentinel variant leans into this design strategy.", + "size": "small", + "hull": 5000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 10.437, + "inertia": { + "pitch": 2.532, + "yaw": 2.532, + "roll": 2.786 + }, + "drag": { + "forward": 5.707, + "reverse": 25.472, + "horizontal": 4.536, + "vertical": 4.536, + "pitch": 4.199, + "yaw": 4.199, + "roll": 4.199 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 360, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 161772, + "max": 218868, + "avg": 190320 + }, + "production": [ + { + "time": 14, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 80 + }, + { + "ware": "hullparts", + "amount": 176 + } + ] + } + ] + }, + { + "id": "ship_tel_s_miner_solid_01_a", + "version": 0, + "name": "Magpie (Mineral)", + "description": "The Teladi Company designed the Magpie as an entry-level commerce vessel, often gifted to younglings as a rite of passage on their entrepreneurship debut. Incapable of large scale trade, veterans often boast of their achievements with the limitations afforded by their first, sole Magpie.nnThe mining variant represents a strategic choice for more serious younglings seeking to make a name for themselves. Not as flashy as the Vanguard, nor as solid as the Sentinel, it is often those who choose the mining workhorse as their first ship who go on to become renowned tycoons.", + "size": "small", + "hull": 1300, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 3, + "purpose": "mine", + "thruster": "small", + "type": "miner", + "mass": 10.259, + "inertia": { + "pitch": 4.771, + "yaw": 4.771, + "roll": 3.817 + }, + "drag": { + "forward": 4.409, + "reverse": 22.905, + "horizontal": 5.323, + "vertical": 5.323, + "pitch": 6.708, + "yaw": 6.708, + "roll": 6.708 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "cargo": [ + { + "max": 3500, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "hatikvah", + "ministry", + "teladi" + ], + "price": { + "min": 77197, + "max": 104443, + "avg": 90820 + }, + "production": [ + { + "time": 7, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 38 + }, + { + "ware": "hullparts", + "amount": 84 + } + ] + } + ] + }, + { + "id": "ship_tel_s_scout_01_a", + "version": 0, + "name": "Kestrel Vanguard", + "description": "There are faster scouts than the Teladi Kestrel, yet it still manages to function respectably. It is more solid that most of its competitors, and has respectable shield energy.nnPilots commonly opt for the somewhat faster Vanguard model.", + "size": "small", + "hull": 2500, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 3, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 6.609, + "inertia": { + "pitch": 1.061, + "yaw": 1.061, + "roll": 0.848 + }, + "drag": { + "forward": 3.397, + "reverse": 8.672, + "horizontal": 4.166, + "vertical": 4.166, + "pitch": 3.472, + "yaw": 3.472, + "roll": 3.472 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 760, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "hatikvah", + "scaleplate", + "teladi" + ], + "price": { + "min": 78153, + "max": 105737, + "avg": 91945 + }, + "production": [ + { + "time": 7, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 39 + }, + { + "ware": "hullparts", + "amount": 85 + } + ] + } + ] + }, + { + "id": "ship_tel_s_scout_01_b", + "version": 0, + "name": "Kestrel Sentinel", + "description": "There are faster scouts than the Teladi Kestrel, yet it still manages to function respectably. It is more solid that most of its competitors, and has respectable shield energy.nnThe Kestrel Sentinel is thought by some to be a compromise too far, in terms of speed. However, there are those who prefer the toughened hull that it offers.", + "size": "small", + "hull": 3100, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 7.931, + "inertia": { + "pitch": 1.187, + "yaw": 1.187, + "roll": 0.949 + }, + "drag": { + "forward": 3.579, + "reverse": 9.993, + "horizontal": 5, + "vertical": 5, + "pitch": 3.885, + "yaw": 3.885, + "roll": 3.885 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 912, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "hatikvah", + "ministry", + "scaleplate" + ], + "price": { + "min": 93798, + "max": 126903, + "avg": 110350 + }, + "production": [ + { + "time": 8, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 47 + }, + { + "ware": "hullparts", + "amount": 102 + } + ] + } + ] + }, + { + "id": "ship_tel_s_scout_02_a", + "version": 0, + "name": "Guillemot Vanguard", + "description": "Teladi playboy adventurer Yayasisos Tumulis Wegoras V popularised the Guillemot through his atypical antics. Unlike his entrepreneurial peers, \"Yaya\" built his wealth through a series of daring scout and courier missions, investing his rewards in other businesses.nnWhile Teladi youth venerate Yaya for his adventures, few diverge from the traditional mining, manufacturing and trading expectations of their parents.nnYaya himself is a somewhat shadowy figure, whose purported wealth is obfuscated by an unknown number of shell companies. It is believed that many of his exploits are entirely fictional and, though there are no arrest warrants in his name, it is believed that several police forces would like to have a word with him.nnThe Guillemot Vanguard is somewhat faster than the basic model and, as such, is thought to be Yaya's preference.", + "size": "small", + "hull": 2300, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 3, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 9.899, + "inertia": { + "pitch": 2.059, + "yaw": 2.059, + "roll": 1.647 + }, + "drag": { + "forward": 6.543, + "reverse": 31.548, + "horizontal": 3.187, + "vertical": 3.187, + "pitch": 4.5, + "yaw": 4.5, + "roll": 4.5 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 960, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "teladi" + ], + "price": { + "min": 118596, + "max": 160454, + "avg": 139525 + }, + "production": [ + { + "time": 11, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 59 + }, + { + "ware": "hullparts", + "amount": 129 + } + ] + } + ] + }, + { + "id": "ship_tel_s_scout_02_b", + "version": 0, + "name": "Guillemot Sentinel", + "description": "Teladi playboy adventurer Yayasisos Tumulis Wegoras V popularised the Guillemot through his atypical antics. Unlike his entrepreneurial peers, \"Yaya\" built his wealth through a series of daring scout and courier missions, investing his rewards in other businesses.nnWhile Teladi youth venerate Yaya for his adventures, few diverge from the traditional mining, manufacturing and trading expectations of their parents.nnYaya himself is a somewhat shadowy figure, whose purported wealth is obfuscated by an unknown number of shell companies. It is believed that many of his exploits are entirely fictional and, though there are no arrest warrants in his name, it is believed that several police forces would like to have a word with him.nnThe Guillemot Sentinel is a less romanticised model, though more practical for everyday use.", + "size": "small", + "hull": 2700, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 11.879, + "inertia": { + "pitch": 2.342, + "yaw": 2.342, + "roll": 1.874 + }, + "drag": { + "forward": 7.354, + "reverse": 35.741, + "horizontal": 3.825, + "vertical": 3.825, + "pitch": 5.118, + "yaw": 5.118, + "roll": 5.118 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 1152, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 141551, + "max": 191510, + "avg": 166530 + }, + "production": [ + { + "time": 13, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 70 + }, + { + "ware": "hullparts", + "amount": 154 + } + ] + } + ] + }, + { + "id": "ship_tel_s_trans_container_01_a", + "version": 0, + "name": "Magpie Vanguard", + "description": "The Teladi Company designed the Magpie as an entry-level commerce vessel, often gifted to younglings as a rite of passage on their entrepreneurship debut. Incapable of large scale trade, veterans often boast of their achievements with the limitations afforded by their first, sole Magpie.nnThe Vanguard variant of this light courier provides an enhancement to speed and is a popular choice for novice younglings.", + "size": "small", + "hull": 2400, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 7, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 18.466, + "inertia": { + "pitch": 4.771, + "yaw": 4.771, + "roll": 3.817 + }, + "drag": { + "forward": 5.538, + "reverse": 24.241, + "horizontal": 5.323, + "vertical": 5.323, + "pitch": 6.708, + "yaw": 6.708, + "roll": 6.708 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 3096, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "scaleplate", + "teladi" + ], + "price": { + "min": 143395, + "max": 194005, + "avg": 168700 + }, + "production": [ + { + "time": 13, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 71 + }, + { + "ware": "hullparts", + "amount": 156 + } + ] + } + ] + }, + { + "id": "ship_tel_s_trans_container_01_b", + "version": 0, + "name": "Magpie Sentinel", + "description": "The Teladi Company designed the Magpie as an entry-level commerce vessel, often gifted to younglings as a rite of passage on their entrepreneurship debut. Incapable of large scale trade, veterans often boast of their achievements with the limitations afforded by their first, sole Magpie.nnThe Magpie's Sentinel model is more resilient than others in its class.", + "size": "small", + "hull": 2800, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 5, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 22.159, + "inertia": { + "pitch": 5.592, + "yaw": 5.592, + "roll": 4.474 + }, + "drag": { + "forward": 6.046, + "reverse": 27.934, + "horizontal": 6.387, + "vertical": 6.387, + "pitch": 7.862, + "yaw": 7.862, + "roll": 7.862 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 3870, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry", + "scaleplate" + ], + "price": { + "min": 170038, + "max": 230052, + "avg": 200045 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 84 + }, + { + "ware": "hullparts", + "amount": 185 + } + ] + } + ] + }, + { + "id": "ship_tel_s_trans_container_02_a", + "version": 0, + "name": "Raven", + "description": "The Raven is a recent, classified Ministry of Finance Science Division prototype for a new high security Courier. Its development was the Ministry's attempt at a cheap and technological solution to the Syndicate piracy problem introduced by the reconnection of Windfall to the Gate network. Developed in a department on Woodworm Scrubs, the Raven was the first ship to be suited for experimental cargo spoofing technology. Attempted scan readings present the cargo hold as filled with worthless wares, which should deter piracy attempts or make them less likely. While originally the Raven was required to develop this technology, it can now be applied more universally, and might protect ships not only from pirates, but also from police looking for illicit goods.", + "size": "small", + "hull": 6700, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 5, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 30.818, + "inertia": { + "pitch": 6.097, + "yaw": 6.097, + "roll": 4.877 + }, + "drag": { + "forward": 8.102, + "reverse": 40.443, + "horizontal": 8.843, + "vertical": 8.843, + "pitch": 9.511, + "yaw": 9.511, + "roll": 9.511 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 2580, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 481177, + "max": 651004, + "avg": 566090 + }, + "production": [ + { + "time": 28, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 153 + }, + { + "ware": "hullparts", + "amount": 530 + } + ] + } + ] + }, + { + "id": "ship_tel_xl_builder_01_a", + "version": 0, + "name": "Albatross Vanguard", + "description": "The Teladi Albatross is a giant, station-building ship. It is not a work of art, however, it functions well and provides the infrastructure for much of the Teladi growth economy.nnThe Vanguard variant provides a little extra speed, for when a station needs to be placed in a hurry.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 128000, + "storage": { + "missile": 40, + "unit": 202 + }, + "people": 219, + "purpose": "build", + "thruster": "extralarge", + "type": "builder", + "mass": 982.947, + "inertia": { + "pitch": 679.259, + "yaw": 679.259, + "roll": 543.407 + }, + "drag": { + "forward": 228.186, + "reverse": 912.745, + "horizontal": 467.397, + "vertical": 467.397, + "pitch": 896.589, + "yaw": 896.589, + "roll": 896.589 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 50, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "teladi" + ], + "price": { + "min": 7755200, + "max": 10492330, + "avg": 9123765 + }, + "production": [ + { + "time": 439, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2428 + }, + { + "ware": "hullparts", + "amount": 8545 + } + ] + } + ] + }, + { + "id": "ship_tel_xl_builder_01_b", + "version": 0, + "name": "Albatross Sentinel", + "description": "The Teladi Albatross is a giant, station-building ship. It is not a work of art, however, it functions well and provides the infrastructure for much of the Teladi growth economy.nnThe Sentinel model has improved defensive capabilities, and may be a more suitable option when developing frontier regions.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 154000, + "storage": { + "missile": 40, + "unit": 243 + }, + "people": 182, + "purpose": "build", + "thruster": "extralarge", + "type": "builder", + "mass": 1179.536, + "inertia": { + "pitch": 709.046, + "yaw": 709.046, + "roll": 567.237 + }, + "drag": { + "forward": 260.624, + "reverse": 1042.494, + "horizontal": 560.876, + "vertical": 560.876, + "pitch": 935.907, + "yaw": 935.907, + "roll": 935.907 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 50, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 9306200, + "max": 12590741, + "avg": 10948470 + }, + "production": [ + { + "time": 527, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2913 + }, + { + "ware": "hullparts", + "amount": 10254 + } + ] + } + ] + }, + { + "id": "ship_tel_xl_carrier_01_a", + "version": 0, + "name": "Condor Vanguard", + "description": "The Ministry of Finance commissioned the Condor to be the mainstay of a carrier fleet. While the ship borrows heavily from Split technology, its implementation could not result in a less \"Split\" vessel.nnHeavily reinforced, the Condor is capable of launching a battle fleet under heavy fire. The Vanguard variant provides additional speed, allowing the Condor to get into, and out of, difficult situations with a little more ease.", + "size": "extralarge", + "explosionDamage": 1500, + "hull": 239000, + "storage": { + "missile": 400, + "unit": 20 + }, + "people": 135, + "purpose": "fight", + "thruster": "extralarge", + "type": "carrier", + "mass": 608.398, + "inertia": { + "pitch": 693.545, + "yaw": 693.545, + "roll": 554.836 + }, + "drag": { + "forward": 277.309, + "reverse": 1109.238, + "horizontal": 252.882, + "vertical": 252.882, + "pitch": 821.68, + "yaw": 821.68, + "roll": 821.68 + }, + "engines": [ + { + "group": "group_back_bottom", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_bottom", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_bottom", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_top_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 28000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "teladi" + ], + "price": { + "min": 9494968, + "max": 12846133, + "avg": 11170550 + }, + "production": [ + { + "time": 538, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2972 + }, + { + "ware": "hullparts", + "amount": 10462 + } + ] + } + ] + }, + { + "id": "ship_tel_xl_carrier_01_b", + "version": 0, + "name": "Condor Sentinel", + "description": "The Ministry of Finance commissioned the Condor to be the mainstay of a carrier fleet. While the ship borrows heavily from Split technology, its implementation could not result in a less \"Split\" vessel.nnHeavily reinforced, the Condor is capable of launching a battle fleet under heavy fire. The Sentinel variant braces the ship further, providing a daunting resilience to attack.", + "size": "extralarge", + "explosionDamage": 1500, + "hull": 287000, + "storage": { + "missile": 400, + "unit": 20 + }, + "people": 112, + "purpose": "fight", + "thruster": "extralarge", + "type": "carrier", + "mass": 730.078, + "inertia": { + "pitch": 714.086, + "yaw": 714.086, + "roll": 571.268 + }, + "drag": { + "forward": 310.771, + "reverse": 1243.086, + "horizontal": 303.459, + "vertical": 303.459, + "pitch": 846.016, + "yaw": 846.016, + "roll": 846.016 + }, + "engines": [ + { + "group": "group_back_bottom", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_bottom", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_bottom", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_top_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 33600, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 11398156, + "max": 15421034, + "avg": 13409595 + }, + "production": [ + { + "time": 645, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 3568 + }, + { + "ware": "hullparts", + "amount": 12559 + } + ] + } + ] + }, + { + "id": "ship_tel_xl_resupplier_01_a", + "version": 0, + "name": "Stork Vanguard", + "description": "Auxiliary vessels are essential for fleet management and are able to repair and resupply fleets of all sizes, including carriers. The Teladi Stork fulfils this function passably well. Its lack of general popularity within its class often means it is available at a reasonable price. Fleet managers are advised to keep the Stork well escorted as it is vulnerable to attack.nnThe Vanguard model enhances the Stork's speed, which enables it to remain in fleet formation more easily.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 105000, + "storage": { + "missile": 40, + "unit": 100 + }, + "people": 200, + "purpose": "auxiliary", + "thruster": "extralarge", + "type": "resupplier", + "mass": 896.85, + "inertia": { + "pitch": 547.074, + "yaw": 547.074, + "roll": 437.659 + }, + "drag": { + "forward": 324.213, + "reverse": 1296.85, + "horizontal": 510.578, + "vertical": 510.578, + "pitch": 879.37, + "yaw": 879.37, + "roll": 879.37 + }, + "engines": [ + { + "group": "group_back_bottom", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_bottom", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_bottom", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_top_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 25000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "teladi" + ], + "price": { + "min": 6617127, + "max": 8952583, + "avg": 7784855 + }, + "production": [ + { + "time": 375, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2072 + }, + { + "ware": "hullparts", + "amount": 7291 + } + ] + } + ] + }, + { + "id": "ship_tel_xl_resupplier_01_b", + "version": 0, + "name": "Stork Sentinel", + "description": "Auxiliary vessels are essential for fleet management and are able to repair and resupply fleets of all sizes, including carriers. The Teladi Stork fulfils this function passably well. Its lack of general popularity within its class often means it is available at a reasonable price. Fleet managers are advised to keep the Stork well escorted as it is vulnerable to attack.nnThe Stork Sentinel has increased resilience, though not to the degree that it should be left unattended in hostile space.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 126000, + "storage": { + "missile": 40, + "unit": 100 + }, + "people": 166, + "purpose": "auxiliary", + "thruster": "extralarge", + "type": "resupplier", + "mass": 1076.221, + "inertia": { + "pitch": 569.392, + "yaw": 569.392, + "roll": 455.513 + }, + "drag": { + "forward": 369.055, + "reverse": 1476.221, + "horizontal": 612.694, + "vertical": 612.694, + "pitch": 915.244, + "yaw": 915.244, + "roll": 915.244 + }, + "engines": [ + { + "group": "group_back_bottom", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_bottom", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_bottom", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_top_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 30000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 7941236, + "max": 10744025, + "avg": 9342630 + }, + "production": [ + { + "time": 450, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2486 + }, + { + "ware": "hullparts", + "amount": 8750 + } + ] + } + ] + }, + { + "id": "ship_xen_m_fighter_01_a", + "version": 0, + "name": "P", + "description": "The lack of intel or communication about the Xenon renders even the most basic questions unanswerable. For example, why does the Xenon P corvette resemble an Earth trilobite?nnRegardless of the inscrutability of Xenon design philosophy, the P remains a fearsome adversary in battle.", + "size": "medium", + "explosionDamage": 500, + "hull": 10000, + "people": 0, + "purpose": "fight", + "thruster": "medium", + "type": "corvette", + "mass": 25.959, + "inertia": { + "pitch": 4.561, + "yaw": 4.561, + "roll": 3.649 + }, + "drag": { + "forward": 4.944, + "reverse": 19.777, + "horizontal": 14.641, + "vertical": 14.641, + "pitch": 8.99, + "yaw": 8.99, + "roll": 8.99 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "owners": [ + "xenon" + ], + "price": { + "min": 66827, + "max": 90413, + "avg": 78620 + }, + "production": [ + { + "time": 17, + "amount": 1, + "method": "default", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 94 + }, + { + "ware": "ore", + "amount": 79 + }, + { + "ware": "silicon", + "amount": 79 + } + ] + } + ] + }, + { + "id": "ship_xen_m_miner_01_a", + "version": 0, + "name": "S", + "description": "The Xenon S is a light miner/freighter supporting the AI collective's primary resource logistics.", + "size": "medium", + "explosionDamage": 500, + "hull": 6000, + "people": 0, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 49.951, + "inertia": { + "pitch": 8.129, + "yaw": 8.129, + "roll": 6.503 + }, + "drag": { + "forward": 8.243, + "reverse": 32.973, + "horizontal": 25.807, + "vertical": 25.807, + "pitch": 14.988, + "yaw": 14.988, + "roll": 14.988 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "mining", + "standard" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 9500, + "types": [ + "container", + "liquid", + "solid" + ] + } + ], + "owners": [ + "xenon" + ], + "price": { + "min": 60648, + "max": 82053, + "avg": 71350 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 85 + }, + { + "ware": "ore", + "amount": 71 + }, + { + "ware": "silicon", + "amount": 72 + } + ] + } + ] + }, + { + "id": "ship_xen_s_fighter_01_a", + "version": 0, + "name": "N", + "description": "While the N is one of the more palatable Xenon adversaries a captain may face, this fighter is disappointingly rarely found alone. It is common to encounter the Xenon N in a fleet or \"swarm\", which may also include the heavier, M class fighter.", + "size": "small", + "hull": 2500, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 0, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 6.508, + "inertia": { + "pitch": 1.49, + "yaw": 1.49, + "roll": 1.192 + }, + "drag": { + "forward": 4.578, + "reverse": 17.262, + "horizontal": 3.723, + "vertical": 3.723, + "pitch": 2.971, + "yaw": 2.971, + "roll": 2.971 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "owners": [ + "xenon" + ], + "price": { + "min": 29351, + "max": 39710, + "avg": 34530 + }, + "production": [ + { + "time": 7, + "amount": 1, + "method": "default", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 41 + }, + { + "ware": "ore", + "amount": 34 + }, + { + "ware": "silicon", + "amount": 35 + } + ] + } + ] + }, + { + "id": "ship_xen_s_fighter_02_a", + "version": 0, + "name": "M", + "description": "The Xenon M is, alone, a robust heavy fighter. Unfortunately, it rarely is alone, commonly engaging as part of a fleet or \"swarm\" of M and N vessels.", + "size": "small", + "hull": 2900, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 0, + "purpose": "fight", + "thruster": "small", + "type": "heavyfighter", + "mass": 7.622, + "inertia": { + "pitch": 1.949, + "yaw": 1.949, + "roll": 1.559 + }, + "drag": { + "forward": 6.544, + "reverse": 31.556, + "horizontal": 3.476, + "vertical": 3.476, + "pitch": 3.32, + "yaw": 3.32, + "roll": 3.32 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "owners": [ + "xenon" + ], + "price": { + "min": 33864, + "max": 45816, + "avg": 39840 + }, + "production": [ + { + "time": 9, + "amount": 1, + "method": "default", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 48 + }, + { + "ware": "ore", + "amount": 40 + }, + { + "ware": "silicon", + "amount": 40 + } + ] + } + ] + }, + { + "id": "ship_xen_s_scout_01_a", + "version": 0, + "name": "T", + "description": "Unlike most Xenon ships, the T scout can be destroyed quite easily, if it can be caught. The T is extraordinarily fast, with an extreme optimisation for speed over all other criteria.", + "size": "small", + "hull": 1200, + "storage": { + "missile": 0, + "unit": 0 + }, + "people": 0, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 5.363, + "inertia": { + "pitch": 0.849, + "yaw": 0.849, + "roll": 0.679 + }, + "drag": { + "forward": 1.645, + "reverse": 6.582, + "horizontal": 3.708, + "vertical": 3.708, + "pitch": 3.082, + "yaw": 3.082, + "roll": 3.082 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "owners": [ + "xenon" + ], + "price": { + "min": 21998, + "max": 29762, + "avg": 25880 + }, + "production": [ + { + "time": 6, + "amount": 1, + "method": "default", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 31 + }, + { + "ware": "ore", + "amount": 26 + }, + { + "ware": "silicon", + "amount": 26 + } + ] + } + ] + }, + { + "id": "ship_xen_xl_carrier_01_a", + "version": 0, + "name": "I", + "description": "The Xenon I is a station commander's worst nightmare. Armed with graviton turrets, which are among the most powerful weapons known in their class, the appearance of this battleship inevitably heralds an imminent and catastrophic hull depletion event.nnThose who are operating facilities under attack by the Xenon I rarely have reactive tactical options beyond a speedy evacuation. Station commanders are advised to prepare defences well in advance, rather than waiting for intelligence indicating increased Xenon activity.nnSaving credits on defensive preparations will, without doubt, prove costly in the event of a Xenon I assault.", + "size": "extralarge", + "explosionDamage": 1500, + "hull": 340000, + "people": 0, + "purpose": "fight", + "thruster": "extralarge", + "type": "battleship", + "mass": 876.951, + "inertia": { + "pitch": 958.525, + "yaw": 958.525, + "roll": 766.82 + }, + "drag": { + "forward": 255.39, + "reverse": 1021.561, + "horizontal": 138.309, + "vertical": 138.309, + "pitch": 787.851, + "yaw": 787.851, + "roll": 787.851 + }, + "engines": [ + { + "group": "group10", + "size": "extralarge", + "hittable": false + }, + { + "group": "group11", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group01", + "size": "medium", + "hittable": true + }, + { + "group": "group03", + "size": "medium", + "hittable": true + }, + { + "group": "group04", + "size": "medium", + "hittable": true + }, + { + "group": "group02", + "size": "medium", + "hittable": true + }, + { + "group": "group05", + "size": "medium", + "hittable": true + }, + { + "group": "group06", + "size": "medium", + "hittable": true + }, + { + "group": "group07", + "size": "medium", + "hittable": true + }, + { + "group": "group07", + "size": "medium", + "hittable": true + }, + { + "group": "group08", + "size": "medium", + "hittable": true + }, + { + "group": "group10", + "size": "medium", + "hittable": true + }, + { + "group": "group11", + "size": "medium", + "hittable": true + }, + { + "group": "group09", + "size": "medium", + "hittable": true + }, + { + "group": "group12", + "size": "medium", + "hittable": true + }, + { + "group": "group12", + "size": "medium", + "hittable": true + }, + { + "group": "group13", + "size": "medium", + "hittable": true + }, + { + "group": "group13", + "size": "medium", + "hittable": true + }, + { + "group": "group14", + "size": "medium", + "hittable": true + }, + { + "group": "group15", + "size": "medium", + "hittable": true + }, + { + "group": "group16", + "size": "medium", + "hittable": true + }, + { + "group": "group14", + "size": "medium", + "hittable": true + }, + { + "group": "group17", + "size": "medium", + "hittable": true + }, + { + "group": "group17", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group18", + "size": "medium", + "hittable": true + }, + { + "group": "group19", + "size": "medium", + "hittable": true + }, + { + "group": "group14", + "size": "medium", + "hittable": true + }, + { + "group": "group14", + "size": "medium", + "hittable": true + }, + { + "group": "group14", + "size": "medium", + "hittable": true + }, + { + "group": "group14", + "size": "medium", + "hittable": true + }, + { + "group": "group14", + "size": "medium", + "hittable": true + }, + { + "group": "group14", + "size": "medium", + "hittable": true + }, + { + "group": "group17", + "size": "medium", + "hittable": true + }, + { + "group": "group17", + "size": "medium", + "hittable": true + }, + { + "group": "group17", + "size": "medium", + "hittable": true + }, + { + "group": "group17", + "size": "medium", + "hittable": true + }, + { + "group": "group17", + "size": "medium", + "hittable": true + }, + { + "group": "group17", + "size": "medium", + "hittable": true + }, + { + "group": "group13", + "size": "medium", + "hittable": true + }, + { + "group": "group13", + "size": "medium", + "hittable": true + }, + { + "group": "group12", + "size": "medium", + "hittable": true + }, + { + "group": "group12", + "size": "medium", + "hittable": true + }, + { + "group": "group08", + "size": "medium", + "hittable": true + }, + { + "group": "group08", + "size": "medium", + "hittable": true + }, + { + "group": "group08", + "size": "medium", + "hittable": true + }, + { + "group": "group09", + "size": "medium", + "hittable": true + }, + { + "group": "group09", + "size": "medium", + "hittable": true + }, + { + "group": "group09", + "size": "medium", + "hittable": true + }, + { + "group": "group02", + "size": "medium", + "hittable": true + }, + { + "group": "group01", + "size": "medium", + "hittable": true + }, + { + "group": "group04", + "size": "medium", + "hittable": true + }, + { + "group": "group03", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group01", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group02", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group03", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group04", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group05", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group06", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group07", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group07", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group07", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group07", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group08", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group08", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group18", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group18", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group18", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group19", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group19", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group19", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group09", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group09", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group12", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group12", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group13", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group13", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group14", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group14", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group15", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group15", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group15", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group15", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group16", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group16", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group16", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group16", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group14", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group14", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group17", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group17", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group17", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group17", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "owners": [ + "xenon" + ], + "price": { + "min": 4300932, + "max": 5818908, + "avg": 5059920 + }, + "production": [ + { + "time": 1094, + "amount": 1, + "method": "default", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 6049 + }, + { + "ware": "ore", + "amount": 5070 + }, + { + "ware": "silicon", + "amount": 5090 + } + ] + } + ] + }, + { + "id": "ship_xen_xl_destroyer_01_a", + "version": 0, + "name": "K", + "description": "The Xenon K is an unfortunately impressive destroyer with armaments sufficient to wipe out capital ships and stations alike. Its formidable shielding should be accounted for when devising counter-tactics.nnNotable Split warrior Ya t'Plp has earned the soubriquet \"K-Dog\" for her proficiency in engaging the Xenon K. Her widely published engagement records are required reading in military academies across the known galaxy.nnt'Plp's guidance on the K is \"Destroy escorts first, then neutralise engines. Then attack, attack, attack. Must waste shields and hull before engines regenerate. Many guns will be needed.\"", + "size": "large", + "explosionDamage": 1500, + "hull": 165000, + "people": 0, + "purpose": "fight", + "thruster": "extralarge", + "type": "destroyer", + "mass": 421.625, + "inertia": { + "pitch": 412.904, + "yaw": 412.904, + "roll": 330.323 + }, + "drag": { + "forward": 164.325, + "reverse": 657.3, + "horizontal": 250.885, + "vertical": 250.885, + "pitch": 705.892, + "yaw": 705.892, + "roll": 705.892 + }, + "engines": [ + { + "group": "group03", + "size": "extralarge", + "hittable": false + }, + { + "group": "group03", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group01", + "size": "medium", + "hittable": true + }, + { + "group": "group02", + "size": "medium", + "hittable": true + }, + { + "group": "group03", + "size": "medium", + "hittable": true + }, + { + "group": "group03", + "size": "medium", + "hittable": true + }, + { + "group": "group04", + "size": "medium", + "hittable": true + }, + { + "group": "group05", + "size": "medium", + "hittable": true + }, + { + "group": "group06", + "size": "medium", + "hittable": true + }, + { + "group": "group07", + "size": "medium", + "hittable": true + }, + { + "group": "group08", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group09", + "size": "medium", + "hittable": true + }, + { + "group": "group02", + "size": "medium", + "hittable": true + }, + { + "group": "group02", + "size": "medium", + "hittable": true + }, + { + "group": "group02", + "size": "medium", + "hittable": true + }, + { + "group": "group09", + "size": "medium", + "hittable": true + }, + { + "group": "group09", + "size": "medium", + "hittable": true + }, + { + "group": "group09", + "size": "medium", + "hittable": true + }, + { + "group": "group06", + "size": "medium", + "hittable": true + }, + { + "group": "group05", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group02", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group02", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group09", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group09", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group07", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group08", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + } + ], + "owners": [ + "xenon" + ], + "price": { + "min": 2067574, + "max": 2797306, + "avg": 2432440 + }, + "production": [ + { + "time": 526, + "amount": 1, + "method": "default", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 2908 + }, + { + "ware": "ore", + "amount": 2437 + }, + { + "ware": "silicon", + "amount": 2447 + } + ] + } + ] + }, + { + "id": "ship_spl_l_destroyer_01_a", + "version": 1, + "name": "Rattlesnake", + "description": "For sheer firepower, the Split Rattlesnake is eye-watering. This is the ideal ship choice for pilots whose preferred battle technique is shock-and-awe.", + "size": "large", + "race": "split", + "explosionDamage": 1000, + "hull": 211000, + "storage": { + "missile": 160, + "unit": 10 + }, + "people": 92, + "purpose": "fight", + "thruster": "large", + "type": "destroyer", + "mass": 248.855, + "inertia": { + "pitch": 206.743, + "yaw": 206.743, + "roll": 165.394 + }, + "drag": { + "forward": 72.939, + "reverse": 291.756, + "horizontal": 50.586, + "vertical": 50.586, + "pitch": 116.771, + "yaw": 116.771, + "roll": 116.771 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_up_back_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_up_back_mid_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_down_back_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_down_back_mid_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_mid_up_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_up_back_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_up_back_mid_2", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_down_back_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_up_back_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_down_back_mid_2", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_down_back_mid_2", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 800, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 10617172, + "max": 14364409, + "avg": 12490790 + }, + "production": [ + { + "time": 309, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1710 + }, + { + "ware": "hullparts", + "amount": 11822 + } + ] + } + ] + }, + { + "id": "ship_spl_l_miner_liquid_01_a", + "version": 1, + "name": "Wyvern (Gas)", + "description": "The Split Wyvern is a large resource-harvesting vessel, with the firepower necessary for more challenging environments. This model is fitted for gas mining.", + "size": "large", + "race": "split", + "explosionDamage": 800, + "hull": 21000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 29, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 159.275, + "inertia": { + "pitch": 112.02, + "yaw": 112.02, + "roll": 89.616 + }, + "drag": { + "forward": 40.867, + "reverse": 233.528, + "horizontal": 78.056, + "vertical": 78.056, + "pitch": 98.855, + "yaw": 98.855, + "roll": 98.855 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 22000, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 1368742, + "max": 1851828, + "avg": 1610285 + }, + "production": [ + { + "time": 66, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 365 + }, + { + "ware": "hullparts", + "amount": 1513 + } + ] + } + ] + }, + { + "id": "ship_spl_l_miner_solid_01_a", + "version": 1, + "name": "Wyvern (Mineral)", + "description": "The Split Wyvern is a large resource-harvesting vessel, with the firepower necessary for more challenging environments. This model is fitted for asteroid mining.", + "size": "large", + "race": "split", + "explosionDamage": 800, + "hull": 21000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 29, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 159.275, + "inertia": { + "pitch": 112.02, + "yaw": 112.02, + "roll": 89.616 + }, + "drag": { + "forward": 40.867, + "reverse": 233.528, + "horizontal": 78.056, + "vertical": 78.056, + "pitch": 98.855, + "yaw": 98.855, + "roll": 98.855 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left_2", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right_2", + "size": "large", + "hittable": false, + "types": [ + "mining", + "standard" + ] + }, + { + "group": "group_front_mid_left_2", + "size": "large", + "hittable": false, + "types": [ + "mining", + "standard" + ] + } + ], + "cargo": [ + { + "max": 20000, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 1368742, + "max": 1851828, + "avg": 1610285 + }, + "production": [ + { + "time": 66, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 365 + }, + { + "ware": "hullparts", + "amount": 1513 + } + ] + } + ] + }, + { + "id": "ship_spl_l_trans_container_01_a", + "version": 1, + "name": "Buffalo", + "description": "The Split Buffalo is admittedly unattractive. But with a useful turn of speed, and a large turret emplacement, this ugly freighter can survive more hazards than most.", + "size": "large", + "race": "split", + "explosionDamage": 800, + "hull": 37000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 59, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 286.597, + "inertia": { + "pitch": 140.827, + "yaw": 140.827, + "roll": 112.662 + }, + "drag": { + "forward": 79.072, + "reverse": 316.288, + "horizontal": 140.503, + "vertical": 140.503, + "pitch": 124.319, + "yaw": 124.319, + "roll": 124.319 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_down_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_down_back_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_up_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_down_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_down_back_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 16000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 2497746, + "max": 3379304, + "avg": 2938525 + }, + "production": [ + { + "time": 120, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 666 + }, + { + "ware": "hullparts", + "amount": 2761 + } + ] + } + ] + }, + { + "id": "ship_spl_m_corvette_01_a", + "version": 1, + "name": "Dragon", + "description": "Early tragedies stoked a general sentiment among Split pilots that the Dragon is a cursed vessel. However, it has, over the decades, become recognised as a formidable warship. The Dragon cannot be discounted in a one-on-one battle with any ship in the known universe.", + "size": "medium", + "race": "split", + "explosionDamage": 500, + "hull": 17000, + "storage": { + "missile": 40, + "unit": 0 + }, + "people": 6, + "purpose": "fight", + "thruster": "medium", + "type": "corvette", + "mass": 23.476, + "inertia": { + "pitch": 7.018, + "yaw": 7.018, + "roll": 5.614 + }, + "drag": { + "forward": 2.992, + "reverse": 11.968, + "horizontal": 13.162, + "vertical": 13.162, + "pitch": 11.298, + "yaw": 11.298, + "roll": 11.298 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 450, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "split" + ], + "price": { + "min": 1056903, + "max": 1429927, + "avg": 1243415 + }, + "production": [ + { + "time": 26, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 142 + }, + { + "ware": "hullparts", + "amount": 1179 + } + ] + } + ] + }, + { + "id": "ship_spl_m_corvette_01_b", + "version": 1, + "name": "Dragon Raider", + "description": "Early tragedies stoked a general sentiment among Split pilots that the Dragon is a cursed vessel. However, it has, over the decades, become recognised as a formidable warship. The Dragon cannot be discounted in a one-on-one battle with any ship in the known universe.nnSomething that started out as nothing more than a Split Free Families Dragon modifying competition, eventually resulted in the specification of the Dragon Raider. A fleet of these particular beasts is sufficient to terrorise the most well-defended systems.", + "size": "medium", + "race": "split", + "explosionDamage": 5000, + "hull": 8000, + "storage": { + "missile": 8, + "unit": 0 + }, + "people": 5, + "purpose": "fight", + "thruster": "medium", + "type": "corvette", + "mass": 17.607, + "inertia": { + "pitch": 2.961, + "yaw": 2.961, + "roll": 2.369 + }, + "drag": { + "forward": 2.467, + "reverse": 9.87, + "horizontal": 12.906, + "vertical": 12.906, + "pitch": 9.317, + "yaw": 9.317, + "roll": 9.317 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 340, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit" + ], + "price": { + "min": 628375, + "max": 850155, + "avg": 739265 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 84 + }, + { + "ware": "hullparts", + "amount": 701 + } + ] + } + ] + }, + { + "id": "ship_spl_m_frigate_01_a", + "version": 1, + "name": "Cobra", + "description": "Famed privateer Ra t'Knt built her infamous career on the decks of the Cobra. Starting out as a debt collector, she would swoop in and snipe turrets from her clients' debtors. This typically left them no choice but to repay, with interest and fees, or they would lose their ship as collateral.nnAfter some time, Ra t'Knt's known whereabouts became more sporadic, until they ended altogether. Split speculation is that, under an assumed identity, she now runs a fleet of Cobras and no longer requires a tiresome, legal basis when separating pilots from their vehicles.", + "size": "medium", + "race": "split", + "explosionDamage": 800, + "hull": 32000, + "storage": { + "missile": 100, + "unit": 5 + }, + "people": 25, + "purpose": "fight", + "thruster": "medium", + "type": "frigate", + "mass": 38.045, + "inertia": { + "pitch": 6.732, + "yaw": 6.732, + "roll": 5.386 + }, + "drag": { + "forward": 8.588, + "reverse": 24.046, + "horizontal": 9.306, + "vertical": 9.306, + "pitch": 11.351, + "yaw": 11.351, + "roll": 11.351 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 1290, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 1, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "split" + ], + "price": { + "min": 1846659, + "max": 2498421, + "avg": 2172540 + }, + "production": [ + { + "time": 45, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 248 + }, + { + "ware": "hullparts", + "amount": 2060 + } + ] + } + ] + }, + { + "id": "ship_spl_m_miner_liquid_01_a", + "version": 1, + "name": "Alligator (Gas)", + "description": "The Split Alligator is a light miner, suitable for a range of resource harvesting needs. Function is prioritised over comfort, so pilots may wish to bring a cushion.nnThis version of the Alligator is optimised for gas collection.", + "size": "medium", + "race": "split", + "explosionDamage": 100, + "hull": 4300, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 8, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 33.07, + "inertia": { + "pitch": 10.706, + "yaw": 10.706, + "roll": 8.565 + }, + "drag": { + "forward": 4.042, + "reverse": 23.096, + "horizontal": 12.437, + "vertical": 12.437, + "pitch": 10.767, + "yaw": 10.767, + "roll": 10.767 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 7600, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 180770, + "max": 244571, + "avg": 212670 + }, + "production": [ + { + "time": 13, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 72 + }, + { + "ware": "hullparts", + "amount": 198 + } + ] + } + ] + }, + { + "id": "ship_spl_m_miner_solid_01_a", + "version": 1, + "name": "Alligator (Mineral)", + "description": "The Split Alligator is a light miner, suitable for a range of resource harvesting needs. Function is prioritised over comfort, so pilots may wish to bring a cushion.nnThis version of the Alligator is optimised for asteroid mining.", + "size": "medium", + "race": "split", + "explosionDamage": 100, + "hull": 4800, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 8, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 36.617, + "inertia": { + "pitch": 12.831, + "yaw": 12.831, + "roll": 10.265 + }, + "drag": { + "forward": 4.375, + "reverse": 24.998, + "horizontal": 10.339, + "vertical": 10.339, + "pitch": 11.654, + "yaw": 11.654, + "roll": 11.654 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + } + ], + "cargo": [ + { + "max": 7000, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 200855, + "max": 271745, + "avg": 236300 + }, + "production": [ + { + "time": 14, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 80 + }, + { + "ware": "hullparts", + "amount": 220 + } + ] + } + ] + }, + { + "id": "ship_spl_m_trans_container_01_a", + "version": 1, + "name": "Boa", + "description": "Nowhere in the owner's manual is the Boa explicitly described as a smuggling vessel. Law-abiding pilots insist that the ship's surprising speed is used to outrun pirates.", + "size": "medium", + "race": "split", + "explosionDamage": 100, + "hull": 7400, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 20, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 56.286, + "inertia": { + "pitch": 15.581, + "yaw": 15.581, + "roll": 12.465 + }, + "drag": { + "forward": 8.887, + "reverse": 35.546, + "horizontal": 23.845, + "vertical": 23.845, + "pitch": 16.572, + "yaw": 16.572, + "roll": 16.572 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 7500, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 317679, + "max": 429801, + "avg": 373740 + }, + "production": [ + { + "time": 23, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 126 + }, + { + "ware": "hullparts", + "amount": 348 + } + ] + } + ] + }, + { + "id": "ship_spl_s_fighter_01_a", + "version": 1, + "name": "Mamba", + "description": "The Split Mamba is a versatile, all-round workhorse with reasonable speed and weaponry. While suitable for those with diverse interests, in time, many pilots opt for something more specialised.", + "size": "small", + "race": "split", + "hull": 3500, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 1, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 5.206, + "inertia": { + "pitch": 1.071, + "yaw": 1.071, + "roll": 0.857 + }, + "drag": { + "forward": 3.295, + "reverse": 8.619, + "horizontal": 3.684, + "vertical": 3.684, + "pitch": 2.893, + "yaw": 2.893, + "roll": 2.893 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 130, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "split" + ], + "price": { + "min": 165266, + "max": 223595, + "avg": 194430 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 53 + }, + { + "ware": "hullparts", + "amount": 182 + } + ] + } + ] + }, + { + "id": "ship_spl_s_fighter_02_a", + "version": 1, + "name": "Asp", + "description": "The Asp is a highly manoeuvrable medium-sized fighter, and a commonly preferred ship for Split mercenaries.", + "size": "small", + "race": "split", + "hull": 4600, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 6.843, + "inertia": { + "pitch": 1.657, + "yaw": 1.657, + "roll": 1.325 + }, + "drag": { + "forward": 3.52, + "reverse": 10.256, + "horizontal": 3.676, + "vertical": 3.676, + "pitch": 3.404, + "yaw": 3.404, + "roll": 3.404 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 170, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "split" + ], + "price": { + "min": 216984, + "max": 293566, + "avg": 255275 + }, + "production": [ + { + "time": 13, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 69 + }, + { + "ware": "hullparts", + "amount": 239 + } + ] + } + ] + }, + { + "id": "ship_spl_s_fighter_02_b", + "version": 1, + "name": "Asp Raider", + "description": "The Asp is a highly manoeuvrable medium-sized fighter, and a commonly preferred ship for Split mercenaries.nnShipwright Qal t'Kzt of the Split Free Families designed the Raider variant of the Asp. It is thought to be the answer to t'Kzt's burning question, \"How much hull does Asp really need?\".", + "size": "small", + "race": "split", + "hull": 1800, + "storage": { + "missile": 4, + "unit": 0 + }, + "people": 1, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 4.106, + "inertia": { + "pitch": 0.484, + "yaw": 0.484, + "roll": 0.387 + }, + "drag": { + "forward": 3.346, + "reverse": 7.518, + "horizontal": 3.376, + "vertical": 3.376, + "pitch": 2.549, + "yaw": 2.549, + "roll": 2.549 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 100, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit" + ], + "price": { + "min": 105349, + "max": 142531, + "avg": 123940 + }, + "production": [ + { + "time": 6, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 34 + }, + { + "ware": "hullparts", + "amount": 116 + } + ] + } + ] + }, + { + "id": "ship_spl_s_heavyfighter_01_a", + "version": 1, + "name": "Chimera", + "description": "The Split Chimera was developed by Bala Gi Research Inc., with the aim of improving long-range performance over the Mamba. However, the large ship profile makes it an easy target, even for less competent gunnery personnel.", + "size": "small", + "race": "split", + "hull": 6100, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "heavyfighter", + "mass": 9.056, + "inertia": { + "pitch": 2.931, + "yaw": 2.931, + "roll": 2.344 + }, + "drag": { + "forward": 6.34, + "reverse": 35.14, + "horizontal": 3.632, + "vertical": 3.632, + "pitch": 4.096, + "yaw": 4.096, + "roll": 4.096 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 200, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "split" + ], + "price": { + "min": 287831, + "max": 389419, + "avg": 338625 + }, + "production": [ + { + "time": 17, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 92 + }, + { + "ware": "hullparts", + "amount": 317 + } + ] + } + ] + }, + { + "id": "ship_spl_s_heavyfighter_02_a", + "version": 1, + "name": "Balaur", + "description": "Acclaimed Free Families shipwright Qal t'Kzt considers the Balaur her finest achievement. Her guidance to its pilots is to \"hit hard, hit fast, then run\".", + "size": "small", + "race": "split", + "hull": 5500, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 1, + "purpose": "fight", + "thruster": "small", + "type": "heavyfighter", + "mass": 6.473, + "inertia": { + "pitch": 1.682, + "yaw": 1.682, + "roll": 1.345 + }, + "drag": { + "forward": 4.784, + "reverse": 22.946, + "horizontal": 4.163, + "vertical": 4.163, + "pitch": 3.288, + "yaw": 3.288, + "roll": 3.288 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 180, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit" + ], + "price": { + "min": 230648, + "max": 312053, + "avg": 271350 + }, + "production": [ + { + "time": 13, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 74 + }, + { + "ware": "hullparts", + "amount": 254 + } + ] + } + ] + }, + { + "id": "ship_spl_s_miner_solid_01_a", + "version": 1, + "name": "Tuatara (Mineral)", + "description": "When billionaire heir Soa t'Snt announced his venture into ship design, no-one believed he could fail.nnHow wrong they were.nnDespite many attempts, the only vessel to make it off dry dock to date is the Tuatara. For its class, it is indeed fast, but not notably so. The Tuatara also lacks a generous hold and is, frankly, somewhat on the expensive side.nnThe enduring surprise is that anyone at all purchases this vessel. And yet, it does look attractive and there are always some fundamentalists who will only buy Split technology.nnThe mining variant fails to deliver sufficient speed to make up for the Tuatara's pitiful hold capacity.", + "size": "small", + "race": "split", + "hull": 1200, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 2, + "purpose": "mine", + "thruster": "small", + "type": "miner", + "mass": 9.209, + "inertia": { + "pitch": 3.748, + "yaw": 3.748, + "roll": 2.998 + }, + "drag": { + "forward": 4.002, + "reverse": 19.656, + "horizontal": 3.561, + "vertical": 3.561, + "pitch": 3.815, + "yaw": 3.815, + "roll": 3.815 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "mining", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "cargo": [ + { + "max": 1720, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 108970, + "max": 147430, + "avg": 128200 + }, + "production": [ + { + "time": 6, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 35 + }, + { + "ware": "hullparts", + "amount": 120 + } + ] + } + ] + }, + { + "id": "ship_spl_s_scout_01_a", + "version": 1, + "name": "Jaguar", + "description": "The Split Jaguar is a scout ship with truly phenomenal speed. As such, it is popular with racers, couriers and getaway drivers.", + "size": "small", + "race": "split", + "hull": 2000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 1, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 5.147, + "inertia": { + "pitch": 1.103, + "yaw": 1.103, + "roll": 0.883 + }, + "drag": { + "forward": 1.49, + "reverse": 5.959, + "horizontal": 3.95, + "vertical": 3.95, + "pitch": 3.015, + "yaw": 3.015, + "roll": 3.015 + }, + "engines": [ + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 380, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 124410, + "max": 168320, + "avg": 146365 + }, + "production": [ + { + "time": 7, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "hullparts", + "amount": 137 + } + ] + } + ] + }, + { + "id": "ship_spl_s_trans_container_01_a", + "version": 1, + "name": "Tuatara", + "description": "When billionaire heir Soa t'Snt announced his venture into ship design, no-one believed he could fail.nnHow wrong they were.nnDespite many attempts, the only vessel to make it off dry dock to date is the Tuatara. For its class, it is indeed fast, but not notably so. The Tuatara also lacks a generous hold and is, frankly, somewhat on the expensive side.nnThe enduring surprise is that anyone at all purchases this vessel. And yet, it does look attractive and there are always some fundamentalists who will only buy Split technology.", + "size": "small", + "race": "split", + "hull": 2300, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 4, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 17.257, + "inertia": { + "pitch": 6.473, + "yaw": 6.473, + "roll": 5.179 + }, + "drag": { + "forward": 5.109, + "reverse": 21.807, + "horizontal": 6.061, + "vertical": 6.061, + "pitch": 6.33, + "yaw": 6.33, + "roll": 6.33 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 1350, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 210630, + "max": 284970, + "avg": 247800 + }, + "production": [ + { + "time": 12, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 67 + }, + { + "ware": "hullparts", + "amount": 232 + } + ] + } + ] + }, + { + "id": "ship_spl_xl_builder_01_a", + "version": 1, + "name": "Elephant", + "description": "The Split Elephant is a well-armoured station construction vessel, suited to developing sites in hazardous conditions. While undertaking building works, the Elephant can house a small fleet of building drones to facilitate its endeavours.", + "size": "extralarge", + "race": "split", + "explosionDamage": 1200, + "hull": 181000, + "storage": { + "missile": 40, + "unit": 130 + }, + "people": 182, + "purpose": "build", + "thruster": "extralarge", + "type": "builder", + "mass": 1151.849, + "inertia": { + "pitch": 825.967, + "yaw": 825.967, + "roll": 660.774 + }, + "drag": { + "forward": 151.305, + "reverse": 605.221, + "horizontal": 443.9, + "vertical": 443.9, + "pitch": 930.37, + "yaw": 930.37, + "roll": 930.37 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 50, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 10219542, + "max": 13826439, + "avg": 12022990 + }, + "production": [ + { + "time": 500, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2864 + }, + { + "ware": "hullparts", + "amount": 11286 + } + ] + } + ] + }, + { + "id": "ship_spl_xl_carrier_01_a", + "version": 1, + "name": "Raptor", + "description": "Empire builders report fondness for the Split Raptor carrier. Hideously well armed, the Raptor eschews prosaic trivialities such as shielding and reinforced hulls in favour of violently dismantling anything that enters its vicinity.nnHowever, any antagonist that can remain functional for more than twenty seconds in the Raptor's presence does have the possibility of taking advantage of the vessels cursory defences.", + "size": "extralarge", + "race": "split", + "explosionDamage": 1500, + "hull": 590000, + "storage": { + "missile": 320, + "unit": 20 + }, + "people": 309, + "purpose": "fight", + "thruster": "extralarge", + "type": "carrier", + "mass": 863.742, + "inertia": { + "pitch": 1549.016, + "yaw": 1549.016, + "roll": 1239.213 + }, + "drag": { + "forward": 120.582, + "reverse": 482.329, + "horizontal": 164.282, + "vertical": 164.282, + "pitch": 867.348, + "yaw": 867.348, + "roll": 867.348 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_bottom_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_bottom_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_top_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_top_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_top_l", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_top_l", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_top_l", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_top_l", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid_3", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid_3", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_bottom_l", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_bottom_l", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_bottom_l", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_bottom_l", + "size": "medium", + "hittable": true + }, + { + "group": "group_interior_hangar_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_interior_hangar_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_bottom", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_bottom", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_bottom", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_bottom", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_bottom", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_top_l", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_top_l", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_bottom_l", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_bottom_l", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_bottom_l", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_bottom_l", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_top_l", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_top_l", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid_3", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid_3", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_interior_hangar_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_interior_hangar_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_interior_hangar_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_interior_hangar_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 19000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + }, + { + "capacity": 100, + "size": "small" + }, + { + "capacity": 30, + "size": "medium" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 27714314, + "max": 37495836, + "avg": 32605075 + }, + "production": [ + { + "time": 1007, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 5565 + }, + { + "ware": "hullparts", + "amount": 30775 + } + ] + } + ] + }, + { + "id": "ship_spl_xl_resupplier_01_a", + "version": 1, + "name": "Monitor", + "description": "The Split Monitor is a well-armed and well-armoured auxiliary vessel. This class of ship, if properly crewed and maintained, allows for the continuous rearming, resupply and repair that is necessary for an active war fleet.", + "size": "extralarge", + "race": "split", + "explosionDamage": 1200, + "hull": 160000, + "storage": { + "missile": 40, + "unit": 100 + }, + "people": 128, + "purpose": "auxiliary", + "thruster": "extralarge", + "type": "resupplier", + "mass": 1245.388, + "inertia": { + "pitch": 1401.536, + "yaw": 1401.536, + "roll": 1121.229 + }, + "drag": { + "forward": 213.9, + "reverse": 855.602, + "horizontal": 417.789, + "vertical": 417.789, + "pitch": 949.078, + "yaw": 949.078, + "roll": 949.078 + }, + "engines": [ + { + "group": "group_back_mid_down", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_down", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_mid_left_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_left_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_right_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_left_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_left_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_left_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_right_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_right_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 29000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 14646486, + "max": 19815834, + "avg": 17231160 + }, + "production": [ + { + "time": 532, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2941 + }, + { + "ware": "hullparts", + "amount": 16264 + } + ] + } + ] + }, + { + "id": "ship_atf_l_destroyer_01_a", + "version": 1, + "name": "Syn", + "description": "The Syn-class destroyer is a remnant of the AGI Task Force fleet. With its three front-facing weapons, it was designed to take on large, slow targets. While most other ATF ships were systematically decommissioned and replaced by the Terran Protectorate, the Syn, due to its specialised nature, was absorbed into the Protectorate's military. While the Terran Protectorate developed their own destroyer-class ship, the Osaka, they saw sufficient military value in operating two distinct lines of destroyers side by side.", + "size": "large", + "race": "terran", + "explosionDamage": 1000, + "hull": 119000, + "storage": { + "missile": 160, + "unit": 10 + }, + "people": 187, + "purpose": "fight", + "thruster": "large", + "type": "destroyer", + "mass": 124.088, + "inertia": { + "pitch": 107.528, + "yaw": 107.528, + "roll": 86.022 + }, + "drag": { + "forward": 48.613, + "reverse": 194.453, + "horizontal": 23.482, + "vertical": 23.482, + "pitch": 91.818, + "yaw": 91.818, + "roll": 91.818 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_up_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_up_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_left_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_left_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_up_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_up_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_down_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_down_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_down_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_down_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_left_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_left_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_left_2", + "size": "large", + "hittable": false, + "types": [ + "missile", + "standard" + ] + }, + { + "group": "group_mid_right_up_2", + "size": "large", + "hittable": false, + "types": [ + "missile", + "standard" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_left_1", + "size": "large", + "hittable": false, + "types": [ + "missile", + "standard" + ] + }, + { + "group": "group_mid_right_up_1", + "size": "large", + "hittable": false, + "types": [ + "missile", + "standard" + ] + }, + { + "group": "group_mid_right_down_2", + "size": "large", + "hittable": false, + "types": [ + "missile", + "standard" + ] + }, + { + "group": "group_mid_right_down_1", + "size": "large", + "hittable": false, + "types": [ + "missile", + "standard" + ] + }, + { + "group": "group_mid_down_left_2", + "size": "large", + "hittable": false, + "types": [ + "missile", + "standard" + ] + }, + { + "group": "group_mid_down_left_1", + "size": "large", + "hittable": false, + "types": [ + "missile", + "standard" + ] + } + ], + "cargo": [ + { + "max": 2600, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + }, + { + "capacity": 40, + "size": "small" + } + ], + "owners": [ + "terran" + ], + "price": { + "min": 12600383, + "max": 17047577, + "avg": 14823980 + }, + "production": [ + { + "time": 234, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 352 + }, + { + "ware": "energycells", + "amount": 1296 + }, + { + "ware": "metallicmicrolattice", + "amount": 590 + } + ] + } + ] + }, + { + "id": "ship_atf_xl_battleship_01_a", + "version": 1, + "name": "Asgard", + "description": "The Asgard-class battleship was designed by the ATF to be a moving fortress, capable of taking on even the most monumental Xenon strongholds and capital ships. It is very slow, but also very powerful, and is especially noteworthy because of its unique forward-facing XL Main Battery. This weapon makes use of some unique technology that was specifically designed for the ATF, and is no longer available elsewhere. In terms of raw single-shot damage, it is currently the most powerful gun in the known universe.nnThis was the last ship class designed and produced by the ATF before the organisation was dissolved and its resources absorbed by the Terran Protectorate. Despite the change in administration, the Asgard is still frequently used by the Terran Protectorate because its sheer firepower has yet to be surpassed.", + "size": "extralarge", + "race": "terran", + "explosionDamage": 1500, + "hull": 275000, + "storage": { + "missile": 1160, + "unit": 10 + }, + "people": 360, + "purpose": "fight", + "thruster": "extralarge", + "type": "battleship", + "mass": 487.388, + "inertia": { + "pitch": 485.311, + "yaw": 485.311, + "roll": 388.249 + }, + "drag": { + "forward": 133.108, + "reverse": 532.433, + "horizontal": 259.232, + "vertical": 259.232, + "pitch": 717.73, + "yaw": 717.73, + "roll": 717.73 + }, + "engines": [ + { + "group": "group_back_mid_down", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_mid_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_mid_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "extralarge", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left_1", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left_1", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left_2", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left_2", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right_2", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right_2", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right_1", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right_1", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left_2", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left_2", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left_1", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left_1", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right_2", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right_2", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right_1", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right_1", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 9000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + }, + { + "capacity": 40, + "size": "small" + } + ], + "owners": [ + "terran" + ], + "price": { + "min": 22252932, + "max": 30106908, + "avg": 26179920 + }, + "production": [ + { + "time": 516, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 619 + }, + { + "ware": "energycells", + "amount": 2854 + }, + { + "ware": "metallicmicrolattice", + "amount": 1300 + } + ] + } + ] + }, + { + "id": "ship_gen_m_transdrone_container_02_a", + "version": 1, + "name": "Medium Terraforming Drone", + "description": "The economic benefits of a successful planetary reformat can be immense.nnThe Small Terraforming Drone is a highly complex, state-of-the-art innovation, essential for enabling this work. The Medium Terraforming Drone is an enhanced model, offering a greater operational efficiency.", + "size": "medium", + "explosionDamage": 500, + "hull": 10000, + "storage": { + "missile": 0, + "unit": 0 + }, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 42, + "inertia": { + "pitch": 6, + "yaw": 6, + "roll": 4 + }, + "drag": { + "forward": 7, + "reverse": 29, + "horizontal": 26, + "vertical": 26, + "pitch": 13, + "yaw": 13, + "roll": 13 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "owners": [ + "player" + ], + "price": { + "min": 39610, + "max": 53590, + "avg": 46600 + }, + "production": [] + }, + { + "id": "ship_gen_s_transdrone_container_02_a", + "version": 1, + "name": "Small Terraforming Drone", + "description": "The economic benefits of a successful planetary reformat can be immense.nnThe Small Terraforming Drone is a highly complex, state-of-the-art innovation, essential for enabling this work.", + "size": "small", + "explosionDamage": 100, + "hull": 2200, + "storage": { + "missile": 0, + "unit": 0 + }, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 1, + "inertia": { + "pitch": 3, + "yaw": 17, + "roll": 4 + }, + "drag": { + "forward": 5.5, + "reverse": 24, + "horizontal": 6, + "vertical": 6, + "pitch": 6, + "yaw": 4, + "roll": 6 + }, + "engines": [ + { + "size": "small", + "hittable": false + } + ], + "owners": [ + "player" + ], + "price": { + "min": 19805, + "max": 26795, + "avg": 23300 + }, + "production": [] + }, + { + "id": "ship_ter_l_destroyer_01_a", + "version": 1, + "name": "Osaka", + "description": "This state of the art version of the Osaka-class destroyer is the result of meticulously redesigning and overhauling its predecessor model. The design retained the two-pronged front bow of the older ship, while adopting an elongated rear section more typical of contemporary Terran designs.nnDestroyer-class ships usually play an important role in engaging large enemy targets, while also serving as an anchor point for larger fleet movement. The Terran Protectorate's Osaka, however, specialises only in the first of these two roles, leaving coordination duties to the fleet's carriers and battleships.", + "size": "large", + "race": "terran", + "explosionDamage": 1000, + "hull": 95000, + "storage": { + "missile": 160, + "unit": 10 + }, + "people": 75, + "purpose": "fight", + "thruster": "large", + "type": "destroyer", + "mass": 202.028, + "inertia": { + "pitch": 100.346, + "yaw": 100.346, + "roll": 80.277 + }, + "drag": { + "forward": 80.406, + "reverse": 321.623, + "horizontal": 71.355, + "vertical": 71.355, + "pitch": 107.406, + "yaw": 107.406, + "roll": 107.406 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_mid_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_down_mid_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_down_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_up_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_up_2", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_back_mid_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_down_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_left_2", + "size": "large", + "hittable": false, + "types": [ + "missile", + "standard" + ] + }, + { + "group": "group_mid_right_up_2", + "size": "large", + "hittable": false, + "types": [ + "missile", + "standard" + ] + }, + { + "group": "group_front_down_mid", + "size": "large", + "hittable": false, + "types": [ + "missile", + "standard" + ] + }, + { + "group": "group_down_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_down_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_down_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 2800, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + }, + { + "capacity": 40, + "size": "small" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 10058790, + "max": 13608951, + "avg": 11833870 + }, + "production": [ + { + "time": 187, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 281 + }, + { + "ware": "energycells", + "amount": 1034 + }, + { + "ware": "metallicmicrolattice", + "amount": 471 + } + ] + } + ] + }, + { + "id": "ship_ter_l_miner_liquid_01_a", + "version": 1, + "name": "Hokkaido (Gas)", + "description": "The L-sized Hokkaido mining ship comes in two variants, providing support for both natural gas collection and asteroid mineral mining. With the founding of the Pioneer Initiative, this design really came into its own, and has since been widely adopted by the Segaris Pioneers. On the back of the Pioneers' expansion, this ship model has made its way deeper into the Jump Gate network, and has become a common sight in a variety of areas.", + "size": "extralarge", + "race": "terran", + "explosionDamage": 800, + "hull": 24000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 33, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 105.855, + "inertia": { + "pitch": 85.708, + "yaw": 85.708, + "roll": 68.567 + }, + "drag": { + "forward": 32.115, + "reverse": 183.513, + "horizontal": 76.276, + "vertical": 76.276, + "pitch": 102.991, + "yaw": 102.991, + "roll": 102.991 + }, + "engines": [ + { + "group": "group_back_down_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 38000, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 2426113, + "max": 3282388, + "avg": 2854250 + }, + "production": [ + { + "time": 75, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 67 + }, + { + "ware": "energycells", + "amount": 415 + }, + { + "ware": "metallicmicrolattice", + "amount": 189 + } + ] + } + ] + }, + { + "id": "ship_ter_l_miner_solid_01_a", + "version": 1, + "name": "Hokkaido (Mineral)", + "description": "The L-sized Hokkaido mining ship comes in two variants, providing support for both natural gas collection and asteroid mineral mining. With the founding of the Pioneer Initiative, this design really came into its own, and has since been widely adopted by the Segaris Pioneers. On the back of the Pioneers' expansion, this ship model has made its way deeper into the Jump Gate network, and has become a common sight in a variety of areas.", + "size": "large", + "race": "terran", + "explosionDamage": 800, + "hull": 24000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 33, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 105.855, + "inertia": { + "pitch": 85.708, + "yaw": 85.708, + "roll": 68.567 + }, + "drag": { + "forward": 32.115, + "reverse": 183.513, + "horizontal": 76.276, + "vertical": 76.276, + "pitch": 102.991, + "yaw": 102.991, + "roll": 102.991 + }, + "engines": [ + { + "group": "group_back_down_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_down_mid", + "size": "large", + "hittable": false, + "types": [ + "mining", + "standard" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 38000, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 2426113, + "max": 3282388, + "avg": 2854250 + }, + "production": [ + { + "time": 75, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 67 + }, + { + "ware": "energycells", + "amount": 415 + }, + { + "ware": "metallicmicrolattice", + "amount": 189 + } + ] + } + ] + }, + { + "id": "ship_ter_l_trans_container_01_a", + "version": 1, + "name": "Okinawa", + "description": "This comparatively lightweight freighter became the de-facto standard option for trading among Sol's citizens during the Jump Gate shutdown. The time during which the model was initially developed was an unusually peaceful period in Terran history, so the first models did not include significant defensive capabilities or particularly impressive hull reinforcement. Newer iterations, however, have since added an array of turrets along its flanks to discourage the more belligerent inhabitants of the Gate network.", + "size": "large", + "race": "terran", + "explosionDamage": 800, + "hull": 36000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 57, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 277.66, + "inertia": { + "pitch": 87.408, + "yaw": 87.408, + "roll": 69.927 + }, + "drag": { + "forward": 71.649, + "reverse": 286.596, + "horizontal": 140.535, + "vertical": 140.535, + "pitch": 122.532, + "yaw": 122.532, + "roll": 122.532 + }, + "engines": [ + { + "group": "group_07", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_07", + "size": "medium", + "hittable": true + }, + { + "group": "group_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_01", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_05", + "size": "medium", + "hittable": true + }, + { + "group": "group_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_06", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + } + ], + "turrets": [ + { + "group": "group_05", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_05", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_06", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_06", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 42000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 3801353, + "max": 5143007, + "avg": 4472180 + }, + "production": [ + { + "time": 117, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 105 + }, + { + "ware": "energycells", + "amount": 646 + }, + { + "ware": "metallicmicrolattice", + "amount": 294 + } + ] + } + ] + }, + { + "id": "ship_ter_m_corvette_01_a", + "version": 1, + "name": "Katana", + "description": "A sleek Corvette-class ship, the Katana was engineered to be as compact as possible and minimise its surface area as a potential target. The front-facing weapons make it the Terran Protectorate's first choice for engaging individual targets, as they concentrate all of its available fire-power in one place.", + "size": "medium", + "race": "terran", + "explosionDamage": 500, + "hull": 11000, + "storage": { + "missile": 40, + "unit": 0 + }, + "people": 6, + "purpose": "fight", + "thruster": "medium", + "type": "corvette", + "mass": 29.28, + "inertia": { + "pitch": 3.763, + "yaw": 3.763, + "roll": 3.01 + }, + "drag": { + "forward": 4.051, + "reverse": 16.203, + "horizontal": 15.622, + "vertical": 15.622, + "pitch": 10.311, + "yaw": 10.311, + "roll": 10.311 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 560, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 1499009, + "max": 2028071, + "avg": 1763540 + }, + "production": [ + { + "time": 23, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 42 + }, + { + "ware": "energycells", + "amount": 128 + }, + { + "ware": "metallicmicrolattice", + "amount": 58 + } + ] + } + ] + }, + { + "id": "ship_ter_m_frigate_01_a", + "version": 1, + "name": "Falx", + "description": "In the years since the Jump Gates realigned, this Protectorate-made support ship has become a cornerstone of the Terran fleets. The Falx is heavily inspired by the Argon Cerberus frigate, although the Terran engineers would never admit to that. Because it can carry a small-sized ship on board, it is often used for patrols. Should it encounter hostile forces, it can hold its own in combat until Terran reinforcements arrive, and on the distant fronts of the war against the Xenon it often acts as a reliable support ship.", + "size": "medium", + "race": "terran", + "explosionDamage": 500, + "hull": 20000, + "storage": { + "missile": 100, + "unit": 12 + }, + "people": 23, + "purpose": "fight", + "thruster": "medium", + "type": "frigate", + "mass": 42.29, + "inertia": { + "pitch": 4.412, + "yaw": 4.412, + "roll": 3.529 + }, + "drag": { + "forward": 25.165, + "reverse": 70.461, + "horizontal": 13.477, + "vertical": 13.477, + "pitch": 9.151, + "yaw": 9.151, + "roll": 9.151 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 1500, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 1, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "terran" + ], + "price": { + "min": 2391781, + "max": 3235939, + "avg": 2813860 + }, + "production": [ + { + "time": 37, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 67 + }, + { + "ware": "energycells", + "amount": 207 + }, + { + "ware": "metallicmicrolattice", + "amount": 94 + } + ] + } + ] + }, + { + "id": "ship_ter_m_gunboat_01_a", + "version": 1, + "name": "Jian", + "description": "A successor to the Claymore, the Jian is immediately distinguishable from its predecessor by its numerous turrets. Designed during the Jump Gate shutdown, the Terran Protectorate sought to create a more heavily armed, yet still nimble, gunboat. With its turrets capable of applying pressure in several directions simultaneously, it is easy for the Jian to switch rapidly between targets, allowing it to keep enemy fighter groups at bay.", + "size": "medium", + "race": "terran", + "explosionDamage": 500, + "hull": 13000, + "storage": { + "missile": 40, + "unit": 0 + }, + "people": 8, + "purpose": "fight", + "thruster": "medium", + "type": "gunboat", + "mass": 34.134, + "inertia": { + "pitch": 7.361, + "yaw": 7.361, + "roll": 5.889 + }, + "drag": { + "forward": 9.103, + "reverse": 36.411, + "horizontal": 11.877, + "vertical": 11.877, + "pitch": 11.034, + "yaw": 11.034, + "roll": 11.034 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 950, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "terran" + ], + "price": { + "min": 1789217, + "max": 2366240, + "avg": 2057600 + }, + "production": [ + { + "time": 27, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 49 + }, + { + "ware": "energycells", + "amount": 150 + }, + { + "ware": "metallicmicrolattice", + "amount": 68 + } + ] + } + ] + }, + { + "id": "ship_ter_m_miner_liquid_01_a", + "version": 1, + "name": "Bolo (Gas)", + "description": "As is occasionally the case with emerging technology, the shift from station-based mining technology to the more efficient and adaptable approach of ship-based mining, came about in several disconnected regions of the Jump Gate network almost simultaneously. While the Argon-based Plutarch Mining Corporation developed their initial prototypes, several Sol-based corporations reached the same conclusion independently. When the Jump Gates realigned, both sides tried to sell their technological innovations to the other, only to realise that the market was already saturated.", + "size": "medium", + "race": "terran", + "explosionDamage": 100, + "hull": 5000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 7, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 37.781, + "inertia": { + "pitch": 7.35, + "yaw": 7.35, + "roll": 5.88 + }, + "drag": { + "forward": 6.898, + "reverse": 39.419, + "horizontal": 15.792, + "vertical": 15.792, + "pitch": 11.945, + "yaw": 11.945, + "roll": 11.945 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 10000, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 330429, + "max": 447051, + "avg": 388740 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 9 + }, + { + "ware": "energycells", + "amount": 83 + }, + { + "ware": "metallicmicrolattice", + "amount": 38 + } + ] + } + ] + }, + { + "id": "ship_ter_m_miner_solid_01_a", + "version": 1, + "name": "Bolo (Mineral)", + "description": "As is occasionally the case with emerging technology, the shift from station-based mining technology to the more efficient and adaptable approach of ship-based mining, came about in several disconnected regions of the Jump Gate network almost simultaneously. While the Argon-based Plutarch Mining Corporation developed their initial prototypes, several Sol-based corporations reached the same conclusion independently. When the Jump Gates realigned, both sides tried to sell their technological innovations to the other, only to realise that the market was already saturated.", + "size": "medium", + "race": "terran", + "explosionDamage": 100, + "hull": 5000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 7, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 37.781, + "inertia": { + "pitch": 7.35, + "yaw": 7.35, + "roll": 5.88 + }, + "drag": { + "forward": 6.898, + "reverse": 39.419, + "horizontal": 15.792, + "vertical": 15.792, + "pitch": 11.945, + "yaw": 11.945, + "roll": 11.945 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + } + ], + "cargo": [ + { + "max": 8800, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 330429, + "max": 447051, + "avg": 388740 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 9 + }, + { + "ware": "energycells", + "amount": 83 + }, + { + "ware": "metallicmicrolattice", + "amount": 38 + } + ] + } + ] + }, + { + "id": "ship_ter_m_trans_container_01_a", + "version": 1, + "name": "Baldric", + "description": "The Baldric transporter has long been a staple of the Terran economy. The newest iteration allows for greater modularity and more extensive modification options, and adjusts the design to be more in-line with the Terran Protectorate's modern aesthetic. It also adds an extra turret to make it a less attractive target for pirate raids, and to ensure that no wares critical to the Terran war effort are lost in transit.", + "size": "medium", + "race": "terran", + "explosionDamage": 400, + "hull": 9000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 22, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 72.561, + "inertia": { + "pitch": 13.551, + "yaw": 13.551, + "roll": 10.841 + }, + "drag": { + "forward": 17.028, + "reverse": 68.112, + "horizontal": 26.286, + "vertical": 26.286, + "pitch": 20.64, + "yaw": 20.64, + "roll": 20.64 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 10700, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 624206, + "max": 844514, + "avg": 734360 + }, + "production": [ + { + "time": 28, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 17 + }, + { + "ware": "energycells", + "amount": 157 + }, + { + "ware": "metallicmicrolattice", + "amount": 72 + } + ] + } + ] + }, + { + "id": "ship_ter_s_fighter_01_a", + "version": 1, + "name": "Kukri", + "description": "Initially used by the Terran Protectorate to hunt down the remnants of pirate organisations inside the Sol system, this Fighter-class model soon established itself as the small, nimble ship of choice for Terran military operations, both inside and outside their home system.nnThe asymmetric design neatly brings together firepower and manoeuvrability, and ensures that this ship excels in being adaptable to whatever opposition the pilot faces. The design also factored-in specialised weapon slots, which allow the ship to make use of powerful weapons, unique to the Terran arsenal.", + "size": "small", + "race": "terran", + "hull": 3700, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 7.843, + "inertia": { + "pitch": 1.658, + "yaw": 1.658, + "roll": 1.824 + }, + "drag": { + "forward": 2.273, + "reverse": 9.093, + "horizontal": 3.396, + "vertical": 3.396, + "pitch": 3.05, + "yaw": 3.05, + "roll": 3.05 + }, + "engines": [ + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 140, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 327573, + "max": 443187, + "avg": 385380 + }, + "production": [ + { + "time": 12, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 9 + }, + { + "ware": "energycells", + "amount": 66 + }, + { + "ware": "metallicmicrolattice", + "amount": 30 + } + ] + } + ] + }, + { + "id": "ship_ter_s_fighter_02_a", + "version": 1, + "name": "Kalis", + "description": "When the Pioneer Initiative set out to claim systems beyond the confines of Sol, they were supplied with Kukri-class fighters by the Terran military. Many of these ships, however, came with faulty components, as they were production units that had failed rigorous Terran acceptance testing. The brilliant minds among the Pioneer Initiative worked hard to address these flaws with the limited means available to them and, over time, modified the ships so much that they became almost unrecognisable.nnNow much more standardised, the Kalis-class fighter serves as a sturdier and more reliable Pioneer alternative to its Terran forerunner. The hostile environments in which the Segaris Pioneers operate require a heavily protected ship, so this unconventional design bridges the gap between standard and heavy fighters. It provides handling similar to the latter, due to its heavy shielding, while still being cheaper to produce for the struggling fledgling faction.", + "size": "small", + "race": "terran", + "hull": 3300, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "heavyfighter", + "mass": 7.118, + "inertia": { + "pitch": 1.561, + "yaw": 1.561, + "roll": 1.248 + }, + "drag": { + "forward": 4.811, + "reverse": 18.178, + "horizontal": 4.148, + "vertical": 4.148, + "pitch": 3.162, + "yaw": 3.162, + "roll": 3.162 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 180, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers" + ], + "price": { + "min": 291338, + "max": 394163, + "avg": 342750 + }, + "production": [ + { + "time": 11, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "metallicmicrolattice", + "amount": 27 + } + ] + } + ] + }, + { + "id": "ship_ter_s_fighter_03_a", + "version": 1, + "name": "Takoba", + "description": "Much like the Kalis, the Takoba came about as the result of Segaris Pioneers engineers' modifications to military ships provided to them by the Terran Protectorate, though in this case the ships were mostly decommissioned examples, sold to the Pioneers at a reduced price. Sleek in design, and distinguished from other fighters primarily by its speed, ships of this class are often dispatched to explore unfamiliar territory in which some enemy presence is expected. While useful for small-scale military action, the Takoba is not as adept at engaging the enemy head-on, as its shielding is somewhat weaker than the Terran fighters on which it was based.", + "size": "small", + "race": "terran", + "hull": 3400, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 7.335, + "inertia": { + "pitch": 1.478, + "yaw": 1.478, + "roll": 1.626 + }, + "drag": { + "forward": 3.664, + "reverse": 9.835, + "horizontal": 3.564, + "vertical": 3.564, + "pitch": 2.907, + "yaw": 2.907, + "roll": 2.907 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 110, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers" + ], + "price": { + "min": 291686, + "max": 394634, + "avg": 343160 + }, + "production": [ + { + "time": 11, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 62 + }, + { + "ware": "metallicmicrolattice", + "amount": 28 + } + ] + } + ] + }, + { + "id": "ship_ter_s_heavyfighter_01_a", + "version": 1, + "name": "Gladius", + "description": "With its distinctive sweeping wings, the Gladius was designed for medium to long distance travel, as well as engaging both small- and medium-sized ships in combat. These design criteria were carefully chosen, and the ship trades manoeuvrability for the ability to absorb more damage. The design focuses on allowing the ship to reach far-away pockets of the Jump Gate network, as part of the Terran Protectorate's new, more interventionist, policy in combating the Xenon.", + "size": "small", + "race": "terran", + "hull": 4400, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "heavyfighter", + "mass": 9.477, + "inertia": { + "pitch": 2.562, + "yaw": 2.562, + "roll": 2.05 + }, + "drag": { + "forward": 5.298, + "reverse": 21.715, + "horizontal": 3.426, + "vertical": 3.426, + "pitch": 3.899, + "yaw": 3.899, + "roll": 3.899 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 360, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "terran" + ], + "price": { + "min": 400180, + "max": 541420, + "avg": 470800 + }, + "production": [ + { + "time": 14, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 11 + }, + { + "ware": "energycells", + "amount": 80 + }, + { + "ware": "metallicmicrolattice", + "amount": 36 + } + ] + } + ] + }, + { + "id": "ship_ter_s_miner_solid_01_a", + "version": 1, + "name": "Kopis (Mineral)", + "description": "The Kopis can feel quite claustrophobic when compared to mining ships from other manufacturers. Putting function over comfort, however, was a conscious design decision, since it allowed the engineers to maximise cargo space and thereby increase the profitability of each trip.", + "size": "small", + "race": "terran", + "hull": 1000, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 2, + "purpose": "mine", + "thruster": "small", + "type": "miner", + "mass": 7.475, + "inertia": { + "pitch": 1.696, + "yaw": 1.696, + "roll": 1.357 + }, + "drag": { + "forward": 3.821, + "reverse": 15.678, + "horizontal": 4.105, + "vertical": 4.105, + "pitch": 3.273, + "yaw": 3.273, + "roll": 3.273 + }, + "engines": [ + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "cargo": [ + { + "max": 5480, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 145427, + "max": 196754, + "avg": 171090 + }, + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 28 + }, + { + "ware": "metallicmicrolattice", + "amount": 13 + } + ] + } + ] + }, + { + "id": "ship_ter_s_scout_01_a", + "version": 1, + "name": "Rapier", + "description": "After the restructuring that saw the end of the USC, several changes were implemented by the Terran Protectorate to reform the way that the Sol system was policed. Along with these structural changes, several ship designs were drastically overhauled. The Rapier was redesigned to be lighter and faster, in order to cover more ground and improve the military's response time. These changes also resulted in the ship's somewhat unconventional, but still recognisable, new form.", + "size": "small", + "race": "terran", + "hull": 1400, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 5.844, + "inertia": { + "pitch": 1.213, + "yaw": 1.213, + "roll": 0.97 + }, + "drag": { + "forward": 1.182, + "reverse": 4.729, + "horizontal": 2.858, + "vertical": 2.858, + "pitch": 3.232, + "yaw": 3.232, + "roll": 3.232 + }, + "engines": [ + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 440, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 181730, + "max": 245870, + "avg": 213800 + }, + "production": [ + { + "time": 6, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 35 + }, + { + "ware": "metallicmicrolattice", + "amount": 16 + } + ] + } + ] + }, + { + "id": "ship_ter_s_scout_02_a", + "version": 1, + "name": "Nimcha", + "description": "The Nimcha was developed as a light and fast scout, capable of holding its own even outside heavily patrolled Terran Protectorate territory. It differs from other scout ships of similar size by having a noticeably larger cargo capacity. This means that, in the rare instances when the Protectorate requires a limited load to be delivered to a distant front quickly, the Nimcha can conveniently double as a courier, able to operate even when the destination is behind enemy lines.", + "size": "small", + "race": "terran", + "hull": 3000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 7.872, + "inertia": { + "pitch": 1.407, + "yaw": 1.407, + "roll": 1.125 + }, + "drag": { + "forward": 3.136, + "reverse": 6.498, + "horizontal": 4.031, + "vertical": 4.031, + "pitch": 3.866, + "yaw": 3.866, + "roll": 3.866 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 670, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "terran" + ], + "price": { + "min": 298043, + "max": 394163, + "avg": 342750 + }, + "production": [ + { + "time": 11, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "metallicmicrolattice", + "amount": 27 + } + ] + } + ] + }, + { + "id": "ship_ter_s_trans_container_01_a", + "version": 1, + "name": "Frog", + "description": "The Frog has established itself as the Courier-class ship of choice for anyone who is looking to quickly traverse the Sol system, transporting a limited amount of cargo. The design does not include a defensive arsenal, but since pilots of this ship are not generally expected to leave the Terran Protectorate's sphere of security, it should not really be needed.", + "size": "small", + "race": "terran", + "hull": 1700, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 3, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 13.454, + "inertia": { + "pitch": 2.665, + "yaw": 2.665, + "roll": 2.132 + }, + "drag": { + "forward": 4.643, + "reverse": 16.954, + "horizontal": 7.39, + "vertical": 7.39, + "pitch": 5.142, + "yaw": 5.142, + "roll": 5.142 + }, + "engines": [ + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "cargo": [ + { + "max": 4120, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 254686, + "max": 344575, + "avg": 299630 + }, + "production": [ + { + "time": 9, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 7 + }, + { + "ware": "energycells", + "amount": 51 + }, + { + "ware": "metallicmicrolattice", + "amount": 23 + } + ] + } + ] + }, + { + "id": "ship_ter_xl_builder_01_a", + "version": 1, + "name": "Kyushu", + "description": "Earlier versions of these Terran construction ships were outfitted with specialist disassembly systems that would allow them to dismantle and transport station debris in a highly efficient manner. This focus on tearing down existing structures came about as the result of the arduous task of clearing the space around Earth from the debris of those parts of the Torus Aeternal that did not drift far enough out of their original orbit. Since that clean-up work is now winding down, more recent examples of this ship model have been built without such capabilities, to save on production costs.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 153000, + "storage": { + "missile": 40, + "unit": 132 + }, + "people": 219, + "purpose": "build", + "thruster": "extralarge", + "type": "builder", + "mass": 1170.425, + "inertia": { + "pitch": 842.639, + "yaw": 842.639, + "roll": 674.111 + }, + "drag": { + "forward": 235.564, + "reverse": 942.255, + "horizontal": 439.458, + "vertical": 439.458, + "pitch": 934.085, + "yaw": 934.085, + "roll": 934.085 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 50, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 17974517, + "max": 24318464, + "avg": 21146490 + }, + "production": [ + { + "time": 417, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 500 + }, + { + "ware": "energycells", + "amount": 2303 + }, + { + "ware": "metallicmicrolattice", + "amount": 1049 + } + ] + } + ] + }, + { + "id": "ship_ter_xl_carrier_01_a", + "version": 1, + "name": "Tokyo", + "description": "The Tokyo-class carrier has been revised and refined since its first production run, most recently during the period of the Jump Gate shutdown, but at its core it remains fundamentally the same.nnThe capacious front-facing hangar allows the carrier to quickly issue forth large waves of fighters to meet an enemy fleet head-on. In any fleet, a carrier is the central platform from which to coordinate large-scale fighter-based manoeuvres, and the Terran model does this with aplomb, whether the theatre of battle is on Sol's doorstep, or in a hostile system far removed from Terran domain.", + "size": "extralarge", + "race": "terran", + "explosionDamage": 1500, + "hull": 213000, + "storage": { + "missile": 320, + "unit": 20 + }, + "people": 201, + "purpose": "fight", + "thruster": "extralarge", + "type": "carrier", + "mass": 542.639, + "inertia": { + "pitch": 608.682, + "yaw": 608.682, + "roll": 486.945 + }, + "drag": { + "forward": 141.396, + "reverse": 565.584, + "horizontal": 259.822, + "vertical": 259.822, + "pitch": 808.528, + "yaw": 808.528, + "roll": 808.528 + }, + "engines": [ + { + "group": "group_back_mid_down", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_right_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_front_mid_top", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_mid_left_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_left_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_left_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_right_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_cent_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_cent_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_right_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_right_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_right_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_right_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_cent_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_cent_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 22000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "terran" + ], + "price": { + "min": 20670938, + "max": 27966563, + "avg": 24318750 + }, + "production": [ + { + "time": 479, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 575 + }, + { + "ware": "energycells", + "amount": 2650 + }, + { + "ware": "metallicmicrolattice", + "amount": 1207 + } + ] + } + ] + }, + { + "id": "ship_ter_xl_resupplier_01_a", + "version": 1, + "name": "Honshu", + "description": "This auxiliary ship, the Honshu, is noticeably slower than competitors' supply ships. While other ships of this type are usually aimed at providing immediate, short-term support for a fleet, this ship is designed to take part in long-distance operations that often lead Terran Protectorate fleets far away from Sol, and far also from allied harbours. For this reason, the design sacrifices speed for an exceptionally large storage capacity. However, this is not the only part of the ship that is engineered for long-range travel. Its most distinctive visual feature is its solar sail, which generates additional energy that can be made available to the ship's systems during extended journeys into hostile space.", + "size": "extralarge", + "race": "terran", + "explosionDamage": 1200, + "hull": 157000, + "storage": { + "missile": 40, + "unit": 100 + }, + "people": 123, + "purpose": "auxiliary", + "thruster": "extralarge", + "type": "resupplier", + "mass": 1199.838, + "inertia": { + "pitch": 869.255, + "yaw": 869.255, + "roll": 695.404 + }, + "drag": { + "forward": 239.976, + "reverse": 959.903, + "horizontal": 431.671, + "vertical": 431.671, + "pitch": 939.968, + "yaw": 939.968, + "roll": 939.968 + }, + "engines": [ + { + "group": "group_back_mid_down", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_cent_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_cent_cent_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_right_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_cent_right_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_left_down", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_front_cent_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_cent_cent_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_cent_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_right_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_cent_right_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_left_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_cent_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_cent_right_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_cent_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_cent_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_cent_cent_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_left_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_right_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 43000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + }, + { + "capacity": 10, + "size": "medium" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 22324290, + "max": 30203451, + "avg": 26263870 + }, + "production": [ + { + "time": 517, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 621 + }, + { + "ware": "energycells", + "amount": 2859 + }, + { + "ware": "metallicmicrolattice", + "amount": 1303 + } + ] + } + ] + }, + { + "id": "ship_yak_m_corvette_01_a", + "version": 1, + "name": "Kuraokami", + "description": "When the Yaki established their base of operations close to the Paranid realms, it was only natural that they would pirate Paranid ships and poach their technology, before adapting them to their own purposes. The Kuraokami-class corvette was based on the Nemesis, but over time the Yaki modified the design to fit their own needs.nnTheir familiarity with experimental technology, especially their understanding, albeit imperfect, of Xenon machinery, allowed them to strip away some of the hull plating without significantly sacrificing hull integrity. Ultimately, this design's focus is almost entirely on speed and storage capacity, to enable the Yaki to raid their targets with terrifying efficiency.", + "size": "medium", + "explosionDamage": 500, + "hull": 10000, + "storage": { + "missile": 40, + "unit": 0 + }, + "people": 9, + "purpose": "fight", + "thruster": "medium", + "type": "corvette", + "mass": 16.76, + "inertia": { + "pitch": 3.751, + "yaw": 3.751, + "roll": 3.001 + }, + "drag": { + "forward": 2.76, + "reverse": 11.039, + "horizontal": 12.702, + "vertical": 12.702, + "pitch": 9.032, + "yaw": 9.032, + "roll": 9.032 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 1100, + "types": [ + "container", + "solid", + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "yaki" + ], + "price": { + "min": 836421, + "max": 1131629, + "avg": 984025 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 113 + }, + { + "ware": "hullparts", + "amount": 933 + } + ] + } + ] + }, + { + "id": "ship_yak_s_fighter_01_a", + "version": 1, + "name": "Moreya", + "description": "The Moreya-class fighter is a Yaki powerhouse. The initial design was based on hijacked Paranid Pegasus-class scouts, which were modified with temperamental Yaki technology to tailor it to their specific requirements. Frequently operating alone in enemy territory, and needing to withstand sustained enemy fire, they added reinforced hull plating for improved defence. Similarly, the Yaki made it possible for more weapons to be attached to the front of the ship, to ensure that they could execute their raids successfully.", + "size": "small", + "hull": 4000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 3, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 6.484, + "inertia": { + "pitch": 0.987, + "yaw": 0.987, + "roll": 1.085 + }, + "drag": { + "forward": 2.09, + "reverse": 8.359, + "horizontal": 3.726, + "vertical": 3.726, + "pitch": 3.292, + "yaw": 3.292, + "roll": 3.292 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 510, + "types": [ + "container", + "solid", + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "yaki" + ], + "price": { + "min": 228803, + "max": 309557, + "avg": 269180 + }, + "production": [ + { + "time": 13, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 73 + }, + { + "ware": "hullparts", + "amount": 252 + } + ] + } + ] + }, + { + "id": "ship_gen_m_yacht_01_a", + "version": 1, + "name": "Astrid", + "description": "The Astrid yacht is the Northriver Company's spirit personified: sleek and luxurious to the point of excess. The designers on board Aurora station had to make the ostentatious ship fulfil a large number of extravagant and often conflicting requirements set by their client. As such, both the assembly of the pompous final product and the manufacturing of many of its core components had to happen by hand, and the Astrid therefore remains a prized unicum. A wide array of highly specialised workshops and laboratories had to be commissioned to provide the garish synthetic materials and dazzling, custom-made metalwork used in its lavish interior and uniquely refracting, streamlined hull. This entire process proved to be incredibly expensive, and the Astrid is therefore deemed utterly unsuitable for mass production, much to the delight of the affluent collector. While working on its engine, the Aurora engineers heavily leaned on their previous experience with designing high speed ships like the Lux. The dazzlingly flamboyant ship also carries a thickly shielded storage compartment capable of containing volatile Bose-Einstein Condensates, rumoured to somehow improve its resistance to cosmic particles and improve its flight characteristics. Though this claim may sound like pseudo-scientific marketing lingo, one has to agree that even for a grandiosely cutting-edge yacht, the Astrid turns out to be surprisingly fast, which has given CEO of the Northriver Company the reputation to be in multiple places at once if he so pleases.", + "size": "medium", + "race": "argon", + "explosionDamage": 500, + "hull": 4000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 16, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 30.969, + "inertia": { + "pitch": 6.888, + "yaw": 6.888, + "roll": 5.51 + }, + "drag": { + "forward": 3.155, + "reverse": 8.833, + "horizontal": 10.55, + "vertical": 10.55, + "pitch": 10.242, + "yaw": 10.242, + "roll": 10.242 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + } + ], + "cargo": [ + { + "max": 4300, + "types": [ + "container", + "condensate" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "loanshark" + ], + "price": { + "min": 1844500, + "max": 2495500, + "avg": 2170000 + }, + "production": [ + { + "time": 300, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1000 + }, + { + "ware": "hullparts", + "amount": 2000 + } + ] + } + ] + }, + { + "id": "ship_pir_l_miner_solid_01_a", + "version": 1, + "name": "Donia", + "description": "The Dark left the Windfall system not only isolated, but also ill-equipped for ship building, since it lacked both a wharf and capable engineers. For nearly four decades, the inhabitants largely had to make do with an aging fleet of stranded ships that were taken by surprise by the Jump Gate shutdown. The few remaining engineers in the system were mainly occupied with maintenance, but experimented when they could with custom ship designs. They slowly learned the craft, and became creative with the resources they had to hand. Most of their custom creations were built from repurposed luxury mass traffic vehicles, spare engines disassembled from the leftover fleet, and various parts from scrapped ships that were beyond repair. It was only in 821 (NT), after the Jump Gate to Avarice opened, that a proper supply of resources allowed the engineers to finally abandon their custom creations and develop blueprints for mass production. Arguably, those blueprints still bear the hallmarks of the haphazard designs of the past.nnWhen the Jump Gates between Avarice and Windfall connected in 821 (NT), the ice miners of Windfall, known as the Solid Ice Union, were already a dominant force in the system. For decades they had worked together to maintain an aging fleet of ice miners, of various Commonwealth designs, which were left stranded during the Dark. With a monopoly on food production and ice mining, it was imperative that they incorporated all capital ships in the system into their fleets, whether as working vessels or by scrapping them for parts. After the connection, they were the only faction in Windfall still capable of making full use of capital ships, and were unwavering in defending their mining rights against any newcomers.nnOnce the steady supply of resources from Avarice allowed the mass production of ships to restart, the Solid Ice Union began construction of a shipyard. At the same time, they started development of their own ice miner, the Donia. They drew on their experience with a broad range of ice miners, and their intricate knowledge of the strengths and weaknesses of now-dated Commonwealth designs. The result, introduced in 824 (NT), was a sturdy low-maintenance miner capable of fending off half-hearted boarding attempts, and it would soon replace their barely operable and outdated Commonwealth fleet.", + "size": "large", + "race": "argon", + "explosionDamage": 800, + "hull": 26000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 31, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 168.244, + "inertia": { + "pitch": 78.309, + "yaw": 78.309, + "roll": 62.647 + }, + "drag": { + "forward": 33.51, + "reverse": 191.487, + "horizontal": 77.62, + "vertical": 77.62, + "pitch": 100.649, + "yaw": 100.649, + "roll": 100.649 + }, + "engines": [ + { + "group": "group_rear_mid_left", + "size": "large", + "hittable": false + }, + { + "group": "group_rear_mid_left", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_top", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_mid_left", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_mid_left", + "size": "large", + "hittable": false, + "types": [ + "mining", + "standard" + ] + }, + { + "group": "group_front_mid_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "large", + "hittable": false, + "types": [ + "mining", + "standard" + ] + }, + { + "group": "group_front_mid_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 34000, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + }, + { + "capacity": 4, + "size": "small" + } + ], + "owners": [ + "loanshark" + ], + "price": { + "min": 1090800, + "max": 2038140, + "avg": 1564470 + }, + "production": [ + { + "time": 86, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 354 + }, + { + "ware": "hullparts", + "amount": 1470 + } + ] + } + ] + }, + { + "id": "ship_pir_l_scavenger_01_a", + "version": 1, + "name": "Barbarossa", + "description": "The Dark left the Windfall system not only isolated, but also ill-equipped for ship building, since it lacked both a wharf and capable engineers. For nearly four decades, the inhabitants largely had to make do with an aging fleet of stranded ships that were taken by surprise by the Jump Gate shutdown. The few remaining engineers in the system were mainly occupied with maintenance, but experimented when they could with custom ship designs. They slowly learned the craft, and became creative with the resources they had to hand. Most of their custom creations were built from repurposed luxury mass traffic vehicles, spare engines disassembled from the leftover fleet, and various parts from scrapped ships that were beyond repair. It was only in 821 (NT), after the Jump Gate to Avarice opened, that a proper supply of resources allowed the engineers to finally abandon their custom creations and develop blueprints for mass production. Arguably, those blueprints still bear the hallmarks of the haphazard designs of the past.nnWith the reconnection of the Jump Gate between Avarice and Windfall in 821 (NT), a new vital, and highly contested, trade route opened. The first ships to transport food to Avarice, and building materials to Windfall, were mostly ancient relics from before the Dark. These ships were quickly left inoperable by the actions of pirates, and were replaced by the Raleigh, a courier developed at the Aurora Casino. Soon afterwards, the Alliance of the Word's Wharf began operations, and started producing Commonwealth transporters. It took the Solid Ice Union, a worker conglomerate of ice miners, until 823 (NT) to complete development of their own freighter, the Barbarossa. With its high speed and decent number of turrets, Solid Ice Union captains in their freighters would soon come to dominate the trade between Windfall and Avarice, fending off piracy and even attacking other freighters to fill up their own cargo holds.nnAfter designing the Barbarossa, Solid Ice Union engineers attempted to develop a destroyer, but lacked the required knowledge to design its weapon systems. These attempts were cut short by a moratorium imposed by the Syndicate, who distrusted the already well-armed Solid Ice Union, and threatened a civil war should they attempt to militarise further.", + "size": "large", + "race": "argon", + "explosionDamage": 800, + "hull": 114000, + "storage": { + "missile": 160, + "unit": 10 + }, + "people": 126, + "purpose": "fight", + "thruster": "large", + "type": "scavenger", + "mass": 243.18, + "inertia": { + "pitch": 130.042, + "yaw": 130.042, + "roll": 104.034 + }, + "drag": { + "forward": 86.42, + "reverse": 345.68, + "horizontal": 126.805, + "vertical": 126.805, + "pitch": 115.636, + "yaw": 115.636, + "roll": 115.636 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_left", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 21000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 2, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "loanshark" + ], + "price": { + "min": 5382530, + "max": 10045520, + "avg": 7714025 + }, + "production": [ + { + "time": 258.75, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1056 + }, + { + "ware": "hullparts", + "amount": 7301 + } + ] + } + ] + }, + { + "id": "ship_pir_l_scrapper_01", + "version": 1, + "name": "Teuta", + "description": "With the advent of the Dark, Avarice was forced to rely on a fleet of stranded ships that had been taken by surprise by the Jump Gate shutdown. Despite the almost immediate collapse of the Avarice company, capable scientists and engineers soon took it upon themselves to stabilise the system and work towards sustainability. They first established a functioning wharf for repairs and replacement, and conducted early experiments into developing a recycling economy in anticipation of dwindling resources within the system. The regeneration of this post-shutdown economy was quickly curtailed by the first Tides, which destroyed most stations and ships in the system in 800 (NT). However, a side-effect of the destructive solar event was the greatly increased energy output from solar panels, which allowed for a paradigm shift. The new Rakers economy emerging from Tidebreak, at the time the only station in Avarice, took advantage of this new abundance of energy. This, along with the use of local wrecks, enabled the rebuilding of a new, sustainable, closed-loop economy based on recycling, allowing them to further improve on previous ship and station module designs. Resettlement of Avarice began in 818 (NT), when the Northriver Company introduced Protectyon and the associated Protectyon Shield Generators to safeguard stations from the Tide. A few years later, in 825 (NT), the reconnection of Windfall gave the long-isolated Rakers the opportunity to trade with various Syndicate factions, but also exposed them to their piracy.nnWith the introduction of the large scale recycling economy required for the resettlement of Avarice, Tidebreak's engineers were soon looking for ways to break down and reclaim resources from wrecks that were too big for Tug ships to tow, and for Scrap Processors to process. In 822 (NT) they introduced the first Compactor ship, the Teuta. Similar to capital mining ships, it seeks out resources and breaks them down, but instead of transporting them, it ejects Scrap Cubes to be transported away by Tug ships.", + "size": "large", + "race": "argon", + "explosionDamage": 800, + "hull": 66000, + "storage": { + "missile": 30, + "unit": 40 + }, + "people": 145, + "purpose": "dismantling", + "thruster": "large", + "type": "compactor", + "mass": 505.41, + "inertia": { + "pitch": 218.251, + "yaw": 218.251, + "roll": 174.601 + }, + "drag": { + "forward": 211.623, + "reverse": 846.492, + "horizontal": 202.697, + "vertical": 202.697, + "pitch": 168.082, + "yaw": 168.082, + "roll": 168.082 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_mid_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + } + ], + "turrets": [ + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 7700, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + }, + { + "capacity": 4, + "size": "small" + } + ], + "owners": [ + "scavenger" + ], + "price": { + "min": 3013480, + "max": 5630650, + "avg": 4322065 + }, + "production": [ + { + "time": 239.2, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1094 + }, + { + "ware": "hullparts", + "amount": 4539 + } + ] + } + ] + }, + { + "id": "ship_pir_s_fighter_01_a", + "version": 1, + "name": "Kyd", + "description": "The Dark left the Windfall system not only isolated, but also ill-equipped for ship building, since it lacked both a wharf and capable engineers. For nearly four decades, the inhabitants largely had to make do with an aging fleet of stranded ships that were taken by surprise by the Jump Gate shutdown. The few remaining engineers in the system were mainly occupied with maintenance, but experimented when they could with custom ship designs. They slowly learned the craft, and became creative with the resources they had to hand. Most of their custom creations were built from repurposed luxury mass traffic vehicles, spare engines disassembled from the leftover fleet, and various parts from scrapped ships that were beyond repair. It was only in 821 (NT), after the Jump Gate to Avarice opened, that a proper supply of resources allowed the engineers to finally abandon their custom creations and develop blueprints for mass production. Arguably, those blueprints still bear the hallmarks of the haphazard designs of the past.nnHastily developed in 821 (NT), Scrapyard engineers introduced the first fighter to be mass-produced in Windfall, the Kyd. Demand for the new ship was high. The influx of resources from the newly connected Avarice increased tensions in the system, leading to a struggle for control over the new trade route, and allowing old rivalries to finally finance their vendettas. The Kyd quickly gained a reputation as a cheap, low-maintenance fighter, and was widely deployed in raids and patrols. Most stories of great battles fought between Syndicate leaders at that time happened during the ship's glory days. By now, the Kyd is considered somewhat dated, but is still an inexpensive and reliable choice.", + "size": "small", + "race": "argon", + "hull": 3000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 6.846, + "inertia": { + "pitch": 1.077, + "yaw": 1.077, + "roll": 0.862 + }, + "drag": { + "forward": 3.951, + "reverse": 10.258, + "horizontal": 3.675, + "vertical": 3.675, + "pitch": 3.405, + "yaw": 3.405, + "roll": 3.405 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 650, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "loanshark" + ], + "price": { + "min": 36250, + "max": 69910, + "avg": 53080 + }, + "production": [ + { + "time": 10.35, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 141 + }, + { + "ware": "hullparts", + "amount": 40 + } + ] + } + ] + }, + { + "id": "ship_pir_s_fighter_02_a", + "version": 1, + "name": "Lux", + "description": "The Dark left the Windfall system not only isolated, but also ill-equipped for ship building, since it lacked both a wharf and capable engineers. For nearly four decades, the inhabitants largely had to make do with an aging fleet of stranded ships that were taken by surprise by the Jump Gate shutdown. The few remaining engineers in the system were mainly occupied with maintenance, but experimented when they could with custom ship designs. They slowly learned the craft, and became creative with the resources they had to hand. Most of their custom creations were built from repurposed luxury mass traffic vehicles, spare engines disassembled from the leftover fleet, and various parts from scrapped ships that were beyond repair. It was only in 821 (NT), after the Jump Gate to Avarice opened, that a proper supply of resources allowed the engineers to finally abandon their custom creations and develop blueprints for mass production. Arguably, those blueprints still bear the hallmarks of the haphazard designs of the past.nnFollowing the introduction of the Kyd, Aurora Casino engineers started work on their own design for a viable fighter, able to outperform the existing model. After a series of failures and setbacks over a span of two years, they introduced the Lux in 823 (NT). Equipped with an additional engine, the Lux would set a new standard for both speed and manoeuvrability in Windfall's fighters. Anyone who could afford to do so, would soon decommission their Kyd fleet and replace them with Lux fighters. This lead to a flood of cheap Kyd ships on the market, which were bought up by smaller gangs, or scrapped for their raw materials. The wide availability of these cheap fighters increased local piracy and conflicts in both systems, threatening the unification progress that the Syndicate had made over the preceding years.", + "size": "small", + "race": "argon", + "hull": 2600, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 1, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 5.82, + "inertia": { + "pitch": 0.83, + "yaw": 0.83, + "roll": 0.664 + }, + "drag": { + "forward": 3.967, + "reverse": 10.37, + "horizontal": 3.747, + "vertical": 3.747, + "pitch": 3.084, + "yaw": 3.084, + "roll": 3.084 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 500, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "loanshark" + ], + "price": { + "min": 122070, + "max": 228210, + "avg": 175140 + }, + "production": [ + { + "time": 11.5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 47 + }, + { + "ware": "hullparts", + "amount": 164 + } + ] + } + ] + }, + { + "id": "ship_pir_s_heavyfighter_01_a", + "version": 1, + "name": "Shih", + "description": "The Dark left the Windfall system not only isolated, but also ill-equipped for ship building, since it lacked both a wharf and capable engineers. For nearly four decades, the inhabitants largely had to make do with an aging fleet of stranded ships that were taken by surprise by the Jump Gate shutdown. The few remaining engineers in the system were mainly occupied with maintenance, but experimented when they could with custom ship designs. They slowly learned the craft, and became creative with the resources they had to hand. Most of their custom creations were built from repurposed luxury mass traffic vehicles, spare engines disassembled from the leftover fleet, and various parts from scrapped ships that were beyond repair. It was only in 821 (NT), after the Jump Gate to Avarice opened, that a proper supply of resources allowed the engineers to finally abandon their custom creations and develop blueprints for mass production. Arguably, those blueprints still bear the hallmarks of the haphazard designs of the past.nnIn response to the turmoil caused by the introduction of the Lux fighter, the Syndicate leadership commissioned Scrapyard engineers to develop a heavy fighter. The Syndicate plan was for it to outperform the light fighters, forcing them off the field of combat, while being too expensive for smaller gangs to afford in significant numbers. The Scrapyard engineers based their design on the Kyd, and in 824 (NT) proudly introduced the heavy fighter, the Shih. With a strong focus on durability, the Shih manages to power up to three shield generators. Although they managed to double the firepower of the Kyd, the engineers failed to increase it sufficiently to match that of the major Commonwealth factions. Despite its shortcomings, the Shih was regarded as a major success, and was widely deployed to protect Syndicate property and territory, further securing their power and stabilising the system.", + "size": "small", + "race": "argon", + "hull": 4900, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "heavyfighter", + "mass": 10.353, + "inertia": { + "pitch": 2.393, + "yaw": 2.393, + "roll": 1.914 + }, + "drag": { + "forward": 4.434, + "reverse": 13.765, + "horizontal": 2.893, + "vertical": 2.893, + "pitch": 4.501, + "yaw": 4.501, + "roll": 4.501 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 590, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "loanshark" + ], + "price": { + "min": 191310, + "max": 357660, + "avg": 274485 + }, + "production": [ + { + "time": 18.4, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 74 + }, + { + "ware": "hullparts", + "amount": 257 + } + ] + } + ] + }, + { + "id": "ship_pir_s_trans_condensate_01_a", + "version": 1, + "name": "Raleigh (Condensate)", + "description": "The Dark left the Windfall system not only isolated, but also ill-equipped for ship building, since it lacked both a wharf and capable engineers. For nearly four decades, the inhabitants largely had to make do with an aging fleet of stranded ships that were taken by surprise by the Jump Gate shutdown. The few remaining engineers in the system were mainly occupied with maintenance, but experimented when they could with custom ship designs. They slowly learned the craft, and became creative with the resources they had to hand. Most of their custom creations were built from repurposed luxury mass traffic vehicles, spare engines disassembled from the leftover fleet, and various parts from scrapped ships that were beyond repair. It was only in 821 (NT), after the Jump Gate to Avarice opened, that a proper supply of resources allowed the engineers to finally abandon their custom creations and develop blueprints for mass production. Arguably, those blueprints still bear the hallmarks of the haphazard designs of the past.nnThe Aurora Casino was eager to replace its aging fleet, establish itself on the new trade route, and guarantee the reliable transport of its goods. Their inexperienced crew of engineers soon had to abandon their plans for an Aurora-designed transporter, and settle instead for a courier. Throughout the ship's development, the Casino hired, blackmailed, and even abducted, engineers to ensure its success. After various setbacks, the team were finally able to introduce the Raleigh (Container) courier in 822 (NT), and were soon tasked with their next project.nnShortly after the widespread adoption of the Raleigh courier, the Aurora Casino was approached by the Northriver company, who commissioned them to create a replacement for their own haphazardly constructed courier. The requirement was for a ship capable of transporting a new type of material: Condensate. The well-funded Northriver Company, working with the Aurora engineers, introduced their prototyped storage system into the more robust framework of the Raleigh in 823 (NT), creating a new courier variant.", + "size": "small", + "race": "argon", + "hull": 2200, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 4, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 19.407, + "inertia": { + "pitch": 5.235, + "yaw": 5.235, + "roll": 4.188 + }, + "drag": { + "forward": 5.679, + "reverse": 22.82, + "horizontal": 4.642, + "vertical": 4.642, + "pitch": 7.002, + "yaw": 7.002, + "roll": 7.002 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 250, + "types": [ + "condensate" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "loanshark", + "scavenger" + ], + "price": { + "min": 151870, + "max": 283930, + "avg": 217900 + }, + "production": [ + { + "time": 14.95, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 59 + }, + { + "ware": "hullparts", + "amount": 204 + } + ] + } + ] + }, + { + "id": "ship_pir_s_trans_container_01_a", + "version": 1, + "name": "Raleigh (Container)", + "description": "The Dark left the Windfall system not only isolated, but also ill-equipped for ship building, since it lacked both a wharf and capable engineers. For nearly four decades, the inhabitants largely had to make do with an aging fleet of stranded ships that were taken by surprise by the Jump Gate shutdown. The few remaining engineers in the system were mainly occupied with maintenance, but experimented when they could with custom ship designs. They slowly learned the craft, and became creative with the resources they had to hand. Most of their custom creations were built from repurposed luxury mass traffic vehicles, spare engines disassembled from the leftover fleet, and various parts from scrapped ships that were beyond repair. It was only in 821 (NT), after the Jump Gate to Avarice opened, that a proper supply of resources allowed the engineers to finally abandon their custom creations and develop blueprints for mass production. Arguably, those blueprints still bear the hallmarks of the haphazard designs of the past.nnThe Aurora Casino was eager to replace its aging fleet, establish itself on the new trade route, and guarantee the reliable transport of its goods. Their inexperienced crew of engineers soon had to abandon their plans for an Aurora-designed transporter, and settle instead for a courier. Throughout the ship's development, the Casino hired, blackmailed, and even abducted, engineers to ensure its success. After various setbacks, the team were finally able to introduce the Raleigh (Container) courier in 822 (NT), and were soon tasked with their next project.", + "size": "small", + "race": "argon", + "hull": 2200, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 4, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 16.876, + "inertia": { + "pitch": 4.038, + "yaw": 4.038, + "roll": 3.23 + }, + "drag": { + "forward": 5.331, + "reverse": 20.288, + "horizontal": 6.262, + "vertical": 6.262, + "pitch": 6.211, + "yaw": 6.211, + "roll": 6.211 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 2080, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "loanshark", + "scavenger" + ], + "price": { + "min": 142180, + "max": 265810, + "avg": 203995 + }, + "production": [ + { + "time": 13.8, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 55 + }, + { + "ware": "hullparts", + "amount": 191 + } + ] + } + ] + }, + { + "id": "ship_pir_xl_battleship_01_a", + "version": 1, + "name": "Erlking", + "description": "With the advent of the Dark, Avarice was forced to rely on a fleet of stranded ships that had been taken by surprise by the Jump Gate shutdown. Despite the almost immediate collapse of the Avarice company, capable scientists and engineers soon took it upon themselves to stabilise the system and work towards sustainability. They first established a functioning wharf for repairs and replacement, and conducted early experiments into developing a recycling economy in anticipation of dwindling resources within the system. The regeneration of this post-shutdown economy was quickly curtailed by the first Tides, which destroyed most stations and ships in the system in 800 (NT). However, a side-effect of the destructive solar event was the greatly increased energy output from solar panels, which allowed for a paradigm shift. The new Rakers economy emerging from Tidebreak, at the time the only station in Avarice, took advantage of this new abundance of energy. This, along with the use of local wrecks, enabled the rebuilding of a new, sustainable, closed-loop economy based on recycling, allowing them to further improve on previous ship and station module designs. Resettlement of Avarice began in 818 (NT), when the Northriver Company introduced Protectyon and the associated Protectyon Shield Generators to safeguard stations from the Tide. A few years later, in 825 (NT), the reconnection of Windfall gave the long-isolated Rakers the opportunity to trade with various Syndicate factions, but also exposed them to their piracy.nnShortly after the first Tides in 800 (NT) devastated the Avarice system, nomad engineers on Tidebreak, under their lead engineer Sihi Do, began the Erlking project. This project was an attempt at building a capital ship, sturdy enough to withstand the Tide and be used as a mobile base in Avarice. No sooner had they succeeded in providing the ship with sufficient shielding, than they abandoned all work on the barely operational Erlking. They refocused their attention on another, undisclosed, major project, before ultimately disappearing. Despite being unfinished, the Erlking continued to be deployed, while Tidebreak engineers repeatedly attempted, and failed, to improve on, or even reproduce, the design's unique power core.nnWith the connection of Avarice to the more militarised Syndicate system in 821 (NT), Tidebreak engineers attempted to weaponise the Erlking, and reclassified it as Battleship. They added turret and weapon hard-points, but failed to develop compatible turrets and weapons. The Syndicate later confiscated the ship to remove this potential military threat, and attempted to develop the weapon systems themselves. Among the engineers of Windfall, those of the Solid Ice Union had the most experience with capital ships, but the political situation, and fear of a power grab, meant that they were not allowed to work on the Erlking. Instead, the Scrapyard engineers were tasked with completing the weapon systems. Having previously failed to stabilise the energy supply on the Shih fighter, to increase the number of supported weapons, the Erlking presented them with the opposite problem: all efforts to connect conventional weaponry to its unique power grid resulted in them being blown off the hull. Attempts to modify either the power grid or the weapon systems were also in vain, but their work had started only recently and Syndicate expectations remained high.", + "size": "extralarge", + "race": "argon", + "explosionDamage": 1500, + "hull": 500000, + "storage": { + "missile": 300, + "unit": 20 + }, + "people": 328, + "purpose": "fight", + "thruster": "extralarge", + "type": "battleship", + "mass": 295.441, + "inertia": { + "pitch": 280.021, + "yaw": 280.021, + "roll": 224.017 + }, + "drag": { + "forward": 173.86, + "reverse": 695.441, + "horizontal": 211.606, + "vertical": 211.606, + "pitch": 683.179, + "yaw": 683.179, + "roll": 683.179 + }, + "engines": [ + { + "group": "group_back_mid_down", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_down", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_down", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_top_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "extralarge", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_front_mid_left", + "size": "large", + "hittable": false, + "types": [] + }, + { + "group": "group_back_down_left", + "size": "large", + "hittable": false, + "types": [] + }, + { + "group": "group_back_up_right", + "size": "large", + "hittable": false, + "types": [] + }, + { + "group": "group_front_top_mid", + "size": "large", + "hittable": false, + "types": [] + }, + { + "group": "group_front_mid_right", + "size": "large", + "hittable": false, + "types": [] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true, + "types": [] + } + ], + "cargo": [ + { + "max": 56000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + }, + { + "capacity": 4, + "size": "small" + }, + { + "capacity": 2, + "size": "medium" + } + ], + "owners": [ + "ownerless" + ], + "price": { + "min": 10407890, + "max": 19432940, + "avg": 14920415 + }, + "production": [ + { + "time": 542, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2996 + }, + { + "ware": "hullparts", + "amount": 16569 + } + ] + } + ] + }, + { + "id": "ship_pir_xl_builder_01", + "version": 1, + "name": "Gannascus", + "description": "The inception of the Gannascus construction ship is credited with catalysing unity within the murky Vigor Syndicate of the Windfall system.nnThe need for the vying factions to work together on this feat suppressed otherwise brutal rivalries, turning the loose collection of bandit cadres into a somewhat more cohesive organised crime collective.nnMost observers consider the Vigor Syndicate's ship and station building capacity to be the key factor in its overall threat level.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 115000, + "storage": { + "missile": 40, + "unit": 100 + }, + "people": 219, + "purpose": "build", + "thruster": "extralarge", + "type": "builder", + "mass": 885.723, + "inertia": { + "pitch": 598.799, + "yaw": 598.799, + "roll": 479.039 + }, + "drag": { + "forward": 257.145, + "reverse": 1028.579, + "horizontal": 467.116, + "vertical": 467.116, + "pitch": 877.145, + "yaw": 877.145, + "roll": 877.145 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 50, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "loanshark", + "scavenger" + ], + "price": { + "min": 8001560, + "max": 14939990, + "avg": 11470775 + }, + "production": [ + { + "time": 479.55, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1957 + }, + { + "ware": "hullparts", + "amount": 10827 + } + ] + } + ] + }, + { + "id": "ship_bor_l_carrier_01_a", + "version": 1, + "name": "Guppy", + "description": "The Guppy light carrier was the first carrier Atreus Shipbuilding Currents developed. While development started during the end of the Atreus Era, it carried over into, and was completed during, the Menelaus Era. After six years of development, and a major budget increase, the first Guppy departed from the Ocean of Fantasy Shipyard in 790 (NT) to serve the Boron Royal Navy.nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "large", + "race": "boron", + "explosionDamage": 1000, + "hull": 117000, + "storage": { + "missile": 310, + "unit": 20 + }, + "people": 60, + "purpose": "fight", + "thruster": "large", + "type": "carrier", + "mass": 341.545, + "inertia": { + "pitch": 118.961, + "yaw": 118.961, + "roll": 95.169 + }, + "drag": { + "forward": 141.833, + "reverse": 540.317, + "horizontal": 84.116, + "vertical": 84.116, + "pitch": 112.976, + "yaw": 112.976, + "roll": 112.976 + }, + "engines": [ + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "size": "large", + "hittable": false + }, + { + "size": "large", + "hittable": false + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "cargo": [ + { + "max": 8000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 8, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 5405973, + "max": 7620468, + "avg": 6513220 + }, + "production": [ + { + "time": 175, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1320 + }, + { + "ware": "hullparts", + "amount": 5200 + }, + { + "ware": "water", + "amount": 3660 + } + ] + } + ] + }, + { + "id": "ship_bor_l_destroyer_01_a", + "version": 1, + "name": "Ray", + "description": "With the Ray destroyer, Eleius Astrosecurity developed their largest and last Menelaus Era ship. The first Ray departed in 798 (NT) from the Depths of Silence Shipyard. Soon after entering service the ship's iconic frame became associated with the Royal Boron Navy. The Ray was deployed on major battlefields against both Split and Xenon fleets, where it proved itself to be a reliable and effective destroyer.nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "large", + "race": "boron", + "explosionDamage": 1000, + "hull": 114000, + "storage": { + "missile": 207, + "unit": 10 + }, + "people": 54, + "purpose": "fight", + "thruster": "large", + "type": "destroyer", + "mass": 308.555, + "inertia": { + "pitch": 101.194, + "yaw": 101.194, + "roll": 80.955 + }, + "drag": { + "forward": 96.868, + "reverse": 369.02, + "horizontal": 105.55, + "vertical": 105.55, + "pitch": 106.378, + "yaw": 106.378, + "roll": 106.378 + }, + "engines": [ + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "size": "large", + "hittable": false + }, + { + "size": "large", + "hittable": false + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "large", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_front_up_mid", + "size": "large", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "large", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "cargo": [ + { + "max": 2000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 4, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 5435998, + "max": 7662793, + "avg": 6549396 + }, + "production": [ + { + "time": 175, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1140 + }, + { + "ware": "hullparts", + "amount": 5570 + }, + { + "ware": "water", + "amount": 2385 + } + ] + } + ] + }, + { + "id": "ship_bor_l_miner_liquid_01_a", + "version": 1, + "name": "Rorqual (Gas)", + "description": "Developed by Deepwater Drilling Industries, the Rorqual turned out to be an ambitious project. After several setbacks, the company managed to release their first capital ship when the first Rorqual departed from the Kingdom End Shipyard in 793 (NT). The ship turned out to be barely serviceable and would require multiple overhauls. While Deepwater Drilling Industries managed to rectify all flaws with the design, and salvaged their reputation by recalling and updating ships that had already been sold, the disastrous release brought the company to the brink of bankruptcy.nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "large", + "race": "boron", + "explosionDamage": 800, + "hull": 31000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 52, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 294.322, + "inertia": { + "pitch": 93.943, + "yaw": 93.943, + "roll": 75.155 + }, + "drag": { + "forward": 65.91, + "reverse": 358.692, + "horizontal": 112.846, + "vertical": 112.846, + "pitch": 103.531, + "yaw": 103.531, + "roll": 103.531 + }, + "engines": [ + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "size": "large", + "hittable": false + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "cargo": [ + { + "max": 42000, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 2, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 1146506, + "max": 1616159, + "avg": 1381332 + }, + "production": [ + { + "time": 55, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 500 + }, + { + "ware": "hullparts", + "amount": 1080 + }, + { + "ware": "water", + "amount": 800 + } + ] + } + ] + }, + { + "id": "ship_bor_l_miner_solid_01_a", + "version": 1, + "name": "Rorqual (Mineral)", + "description": "Developed by Deepwater Drilling Industries, the Rorqual turned out to be an ambitious project. After several setbacks, the company managed to release their first capital ship when the first Rorqual departed from the Kingdom End Shipyard in 793 (NT). The ship turned out to be barely serviceable and would require multiple overhauls. While Deepwater Drilling Industries managed to rectify all flaws with the design, and salvaged their reputation by recalling and updating ships that had already been sold, the disastrous release brought the company to the brink of bankruptcy.nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "large", + "race": "boron", + "explosionDamage": 800, + "hull": 31000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 52, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 294.322, + "inertia": { + "pitch": 93.943, + "yaw": 93.943, + "roll": 75.155 + }, + "drag": { + "forward": 65.91, + "reverse": 358.692, + "horizontal": 112.846, + "vertical": 112.846, + "pitch": 103.531, + "yaw": 103.531, + "roll": 103.531 + }, + "engines": [ + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "size": "large", + "hittable": false + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_mid", + "size": "large", + "hittable": false, + "types": [ + "mining" + ] + }, + { + "group": "group_front_down_mid", + "size": "large", + "hittable": false, + "types": [ + "mining" + ] + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "cargo": [ + { + "max": 40000, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 2, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 1128579, + "max": 1590888, + "avg": 1359733 + }, + "production": [ + { + "time": 55, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 500 + }, + { + "ware": "hullparts", + "amount": 1130 + }, + { + "ware": "water", + "amount": 520 + } + ] + } + ] + }, + { + "id": "ship_bor_l_trans_container_01_a", + "version": 1, + "name": "Sturgeon", + "description": "Stellar Shores Shipping was founded in 785 (NT) by graduates of the Royal Academy of Space Engineering. The former students brought with them their engineering experience, from working with Atreus Shipbuilding Currents on the smaller Dolphin transporter, but underestimated the difficulties of founding and running a new company. Various setbacks and delays lead to the company publicly accusing competitors of sabotage, as a project failure would lead to a retraction and reassignment of the government contract. Ultimately the company pulled itself together, and with its departure from the Great Reef Shipyard, the Sturgeon saw its successful release in 794 (NT).nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "large", + "race": "boron", + "explosionDamage": 800, + "hull": 40000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 63, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 320.723, + "inertia": { + "pitch": 59.773, + "yaw": 59.773, + "roll": 47.818 + }, + "drag": { + "forward": 148.778, + "reverse": 566.774, + "horizontal": 139.503, + "vertical": 139.503, + "pitch": 108.811, + "yaw": 108.811, + "roll": 108.811 + }, + "engines": [ + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "cargo": [ + { + "max": 30000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 2, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 3653390, + "max": 5149960, + "avg": 4401675 + }, + "production": [ + { + "time": 130, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1500 + }, + { + "ware": "hullparts", + "amount": 3900 + }, + { + "ware": "water", + "amount": 760 + } + ] + } + ] + }, + { + "id": "ship_bor_m_corvette_01_a", + "version": 1, + "name": "Hydra", + "description": "After their reasonably successful development of the heavy fighter in 788 (NT), and a recent incident disqualifying their main competitor, Eleius Astrosecurity secured the government contract to develop the next Royal Boron Navy corvette. Widely regarded as a successful design, the Hydra entered service in 792 (NT).nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "medium", + "race": "boron", + "explosionDamage": 500, + "hull": 7900, + "storage": { + "missile": 41, + "unit": 0 + }, + "people": 6, + "purpose": "fight", + "thruster": "medium", + "type": "corvette", + "mass": 23.782, + "inertia": { + "pitch": 3.533, + "yaw": 3.533, + "roll": 2.826 + }, + "drag": { + "forward": 6.968, + "reverse": 27.87, + "horizontal": 13.12, + "vertical": 13.12, + "pitch": 7.601, + "yaw": 7.601, + "roll": 7.601 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + } + ], + "cargo": [ + { + "max": 400, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 529993, + "max": 747099, + "avg": 638546 + }, + "production": [ + { + "time": 35, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 110 + }, + { + "ware": "hullparts", + "amount": 540 + }, + { + "ware": "water", + "amount": 245 + } + ] + } + ] + }, + { + "id": "ship_bor_m_corvette_02_a", + "version": 1, + "name": "Hydra Regal", + "description": "After their reasonably successful development of the heavy fighter in 788 (NT), and a recent incident disqualifying their main competitor, Eleius Astrosecurity secured the government contract to develop the next Royal Boron Navy corvette. Widely regarded as a successful design, the Hydra entered service in 792 (NT).nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.nnThe Regal version is a custom build commissioned by the monarchy to be awarded to individuals of outstanding merit.", + "size": "medium", + "race": "boron", + "explosionDamage": 500, + "hull": 8100, + "storage": { + "missile": 41, + "unit": 0 + }, + "people": 6, + "purpose": "fight", + "thruster": "medium", + "type": "corvette", + "mass": 24.216, + "inertia": { + "pitch": 3.461, + "yaw": 3.461, + "roll": 2.769 + }, + "drag": { + "forward": 6.704, + "reverse": 26.817, + "horizontal": 13.051, + "vertical": 13.051, + "pitch": 7.699, + "yaw": 7.699, + "roll": 7.699 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + } + ], + "cargo": [ + { + "max": 400, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 561714, + "max": 791814, + "avg": 676764 + }, + "production": [ + { + "time": 35, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 110 + }, + { + "ware": "hullparts", + "amount": 574 + }, + { + "ware": "water", + "amount": 255 + } + ] + } + ] + }, + { + "id": "ship_bor_m_gunboat_01_a", + "version": 1, + "name": "Thresher", + "description": "Developed by Faded Dreams Defences as their last ship of the Menelaus Era, the Thresher gunboat saw its maiden voyage in 795 (NT). Even while production was still ramping up, the ship had already proved itself on various battlefields, defending convoys and mining operations against Split, Xenon and sometimes pirate incursions. The Royal Boron Navy, as well as various transport and mining corporations, soon valued the Thresher as a competent escort ship, and increasingly deployed it throughout the Queendom.nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "medium", + "race": "boron", + "explosionDamage": 500, + "hull": 10900, + "storage": { + "missile": 88, + "unit": 0 + }, + "people": 8, + "purpose": "fight", + "thruster": "medium", + "type": "gunboat", + "mass": 32.713, + "inertia": { + "pitch": 6.827, + "yaw": 6.827, + "roll": 5.461 + }, + "drag": { + "forward": 4.405, + "reverse": 17.619, + "horizontal": 12.611, + "vertical": 12.611, + "pitch": 10.678, + "yaw": 10.678, + "roll": 10.678 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + } + ], + "cargo": [ + { + "max": 850, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 519734, + "max": 732637, + "avg": 626185 + }, + "production": [ + { + "time": 35, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 140 + }, + { + "ware": "hullparts", + "amount": 510 + }, + { + "ware": "water", + "amount": 308 + } + ] + } + ] + }, + { + "id": "ship_bor_m_miner_liquid_01_a", + "version": 1, + "name": "Porpoise (Gas)", + "description": "The Porpoise mining ship had many of its systems provided by Deepwater Drilling Industries, a company which excelled in the engineering of deep ocean mining machinery and successfully adapted its technology to be suitable for space mining operations. The ship was released in 784 (NT) shortly after the death of Her Majesty Queen Atreus, making it the last ship of the Atreus Era.nnAtreus Era ships were the first ships built in response to the beginning of the Jump Gate shutdowns of 778 (NT). Fearing that systems might be cut off, they were designed to operate more autonomously in contrast to earlier ships which specialised in combined usage. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The Atreus Era ships are sturdier than the later Menelaus Era ships, but not as manoeuvrable.nnIn response to further Jump Gate shutdowns, the Queendom of Boron attempted to expedite the development of new ships through increased funding and the involvement of additional corporations and research facilities. Following the great success of their initial ship frame design for S-sized ships, Atreus Shipbuilding Currents was commissioned to spearhead all work on the M-sized follow-on projects, specifically the Dolphin transporter and Porpoise miner, but it outsourced some aspects of the work and associated research.", + "size": "medium", + "race": "boron", + "explosionDamage": 100, + "hull": 8000, + "storage": { + "missile": 0, + "unit": 0 + }, + "people": 7, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 31.939, + "inertia": { + "pitch": 9.35, + "yaw": 9.35, + "roll": 7.48 + }, + "drag": { + "forward": 8.073, + "reverse": 46.133, + "horizontal": 12.966, + "vertical": 12.966, + "pitch": 10.485, + "yaw": 10.485, + "roll": 10.485 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + } + ], + "cargo": [ + { + "max": 8600, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 136612, + "max": 192573, + "avg": 164592 + }, + "production": [ + { + "time": 25, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 70 + }, + { + "ware": "hullparts", + "amount": 131 + }, + { + "ware": "water", + "amount": 83 + } + ] + } + ] + }, + { + "id": "ship_bor_m_miner_solid_01_a", + "version": 1, + "name": "Porpoise (Mineral)", + "description": "The Porpoise mining ship had many of its systems provided by Deepwater Drilling Industries, a company which excelled in the engineering of deep ocean mining machinery and successfully adapted its technology to be suitable for space mining operations. The ship was released in 784 (NT) shortly after the death of Her Majesty Queen Atreus, making it the last ship of the Atreus Era.nnAtreus Era ships were the first ships built in response to the beginning of the Jump Gate shutdowns of 778 (NT). Fearing that systems might be cut off, they were designed to operate more autonomously in contrast to earlier ships which specialised in combined usage. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The Atreus Era ships are sturdier than the later Menelaus Era ships, but not as manoeuvrable.nnIn response to further Jump Gate shutdowns, the Queendom of Boron attempted to expedite the development of new ships through increased funding and the involvement of additional corporations and research facilities. Following the great success of their initial ship frame design for S-sized ships, Atreus Shipbuilding Currents was commissioned to spearhead all work on the M-sized follow-on projects, specifically the Dolphin transporter and Porpoise miner, but it outsourced some aspects of the work and associated research.", + "size": "medium", + "race": "boron", + "explosionDamage": 100, + "hull": 8000, + "storage": { + "missile": 0, + "unit": 0 + }, + "people": 7, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 31.939, + "inertia": { + "pitch": 9.35, + "yaw": 9.35, + "roll": 7.48 + }, + "drag": { + "forward": 8.073, + "reverse": 46.133, + "horizontal": 12.966, + "vertical": 12.966, + "pitch": 10.485, + "yaw": 10.485, + "roll": 10.485 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "mining" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "mining" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "mining" + ] + } + ], + "cargo": [ + { + "max": 7800, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 12142835, + "max": 201346, + "avg": 172090 + }, + "production": [ + { + "time": 25, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 73 + }, + { + "ware": "hullparts", + "amount": 145 + }, + { + "ware": "water", + "amount": 55 + } + ] + } + ] + }, + { + "id": "ship_bor_m_trans_container_01_a", + "version": 1, + "name": "Dolphin", + "description": "The Dolphin transporter project largely built upon lessons learnt in prior developments, but also saw new innovations and subsystems designed by students and professors of the Royal Academy of Space Engineering. This cooperation proved to be fruitful for both Atreus Shipbuilding Currents, and for the students, who would gain professional experience and grow to become valuable engineers in the field, either by working directly for the company or founding their own. The Dolphin transporter was released in early 784 (NT).nnAtreus Era ships were the first ships built in response to the beginning of the Jump Gate shutdowns of 778 (NT). Fearing that systems might be cut off, they were designed to operate more autonomously in contrast to earlier ships which specialised in combined usage. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The Atreus Era ships are sturdier than the later Menelaus Era ships, but not as manoeuvrable.nnIn response to further Jump Gate shutdowns, the Queendom of Boron attempted to expedite the development of new ships through increased funding and the involvement of additional corporations and research facilities. Following the great success of their initial ship frame design for S-sized ships, Atreus Shipbuilding Currents was commissioned to spearhead all work on the M-sized follow-on projects, specifically the Dolphin transporter and Porpoise miner, but it outsourced some aspects of the work and associated research.", + "size": "medium", + "race": "boron", + "explosionDamage": 100, + "hull": 9000, + "storage": { + "missile": 0, + "unit": 0 + }, + "people": 21, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 59.553, + "inertia": { + "pitch": 16.062, + "yaw": 16.062, + "roll": 12.85 + }, + "drag": { + "forward": 19.127, + "reverse": 76.508, + "horizontal": 22.373, + "vertical": 22.373, + "pitch": 17.388, + "yaw": 17.388, + "roll": 17.388 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [] + } + ], + "cargo": [ + { + "max": 9200, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 212164, + "max": 299075, + "avg": 255620 + }, + "production": [ + { + "time": 18, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 92 + }, + { + "ware": "hullparts", + "amount": 210 + }, + { + "ware": "water", + "amount": 108 + } + ] + } + ] + }, + { + "id": "ship_bor_s_fighter_01_a", + "version": 1, + "name": "Mako", + "description": "The Mako fighter was the second Menelaus Era ship developed by Faded Dreams Defences. As with their prior project, the company could draw upon its experience with Split encounters in the Faded Dreams system. After two years of successful development, and shortly before its ambitious release scheduled in 788 (NT), the company's Mako fighter prototype was stolen by Boron pirates from Barren Shores. This raised serious security questions with the Royal Boron Navy and lead to various audits. As a result the Boron parliament introduced new security requirements for companies working on government contracts. After upgrading their security to the new standards, Faded Dreams Defences continued development and successfully released the Mako fighter in 789 (NT). The fate of the stolen prototype remained unknown, as its incorporated technology was not leaked to other parties.nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "small", + "race": "boron", + "hull": 3100, + "storage": { + "missile": 26, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 6.672, + "inertia": { + "pitch": 0.617, + "yaw": 0.617, + "roll": 0.475 + }, + "drag": { + "forward": 2.543, + "reverse": 10.172, + "horizontal": 3.703, + "vertical": 3.703, + "pitch": 1.904, + "yaw": 1.904, + "roll": 1.904 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "missile" + ] + } + ], + "cargo": [ + { + "max": 270, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 110527, + "max": 155803, + "avg": 133165 + }, + "production": [ + { + "time": 12, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 65 + }, + { + "ware": "hullparts", + "amount": 118 + }, + { + "ware": "water", + "amount": 25 + } + ] + } + ] + }, + { + "id": "ship_bor_s_heavyfighter_01_a", + "version": 1, + "name": "Barracuda", + "description": "In 785 (NT) Eleius Astrosecurity competed with Faded Dreams Defences for the contract to develop a Heavy Fighter for the Royal Boron Navy. The Eleius Astrosecurity plans for the Barracuda won this competition and secured the necessary government funding, along with access to Royal Boron Military Defence technologies. The first Barracudas soon entered service in 788 (NT), but required subsequent system updates to overcome initial design flaws in their software.nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "small", + "race": "boron", + "hull": 3700, + "storage": { + "missile": 34, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "heavyfighter", + "mass": 7.791, + "inertia": { + "pitch": 0.893, + "yaw": 0.893, + "roll": 0.714 + }, + "drag": { + "forward": 2.398, + "reverse": 9.593, + "horizontal": 4.048, + "vertical": 4.048, + "pitch": 2.361, + "yaw": 2.361, + "roll": 2.361 + }, + "engines": [ + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "missile" + ] + } + ], + "cargo": [ + { + "max": 330, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 203922, + "max": 287457, + "avg": 245690 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 79 + }, + { + "ware": "hullparts", + "amount": 201 + }, + { + "ware": "water", + "amount": 110 + } + ] + } + ] + }, + { + "id": "ship_bor_s_miner_solid_01_a", + "version": 1, + "name": "Grouper (Mineral)", + "description": "When Atreus Shipbuilding Currents was tasked with pioneering this design paradigm shift, their first project would be the development of a new ship frame to be used in three configurations: prospecting, mining and transportation. During the two years of development, the corporation would pave the way for future ship development through great advances in component miniaturisation and improvements to the travel mode. In 780 (NT) Atreus Shipbuilding Currents released their new ship frame with the Piranha scout, Grouper miner and Terrapin transporter.nnAtreus Era ships were the first ships built in response to the beginning of the Jump Gate shutdowns of 778 (NT). Fearing that systems might be cut off, they were designed to operate more autonomously in contrast to earlier ships which specialised in combined usage. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The Atreus Era ships are sturdier than the later Menelaus Era ships, but not as manoeuvrable.", + "size": "small", + "race": "boron", + "hull": 4000, + "storage": { + "missile": 0, + "unit": 0 + }, + "people": 2, + "purpose": "mine", + "thruster": "small", + "type": "miner", + "mass": 8.688, + "inertia": { + "pitch": 3.143, + "yaw": 3.143, + "roll": 2.515 + }, + "drag": { + "forward": 4.457, + "reverse": 19.912, + "horizontal": 3.784, + "vertical": 3.784, + "pitch": 3.653, + "yaw": 3.653, + "roll": 3.653 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "mining", + "missile" + ] + } + ], + "cargo": [ + { + "max": 2560, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 69490, + "max": 97955, + "avg": 83723 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 39 + }, + { + "ware": "hullparts", + "amount": 74 + }, + { + "ware": "water", + "amount": 12 + } + ] + } + ] + }, + { + "id": "ship_bor_s_scout_01_a", + "version": 1, + "name": "Piranha", + "description": "When Atreus Shipbuilding Currents was tasked with pioneering this design paradigm shift, their first project would be the development of a new ship frame to be used in three configurations: prospecting, mining and transportation. During the two years of development, the corporation would pave the way for future ship development through great advances in component miniaturisation and improvements to the travel mode. In 780 (NT) Atreus Shipbuilding Currents released their new ship frame with the Piranha scout, Grouper miner and Terrapin transporter.nnAtreus Era ships were the first ships built in response to the beginning of the Jump Gate shutdowns of 778 (NT). Fearing that systems might be cut off, they were designed to operate more autonomously in contrast to earlier ships which specialised in combined usage. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The Atreus Era ships are sturdier than the later Menelaus Era ships, but not as manoeuvrable.", + "size": "small", + "race": "boron", + "hull": 4000, + "storage": { + "missile": 26, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 8.581, + "inertia": { + "pitch": 2.316, + "yaw": 2.316, + "roll": 1.853 + }, + "drag": { + "forward": 2.614, + "reverse": 10.456, + "horizontal": 3.823, + "vertical": 3.823, + "pitch": 4.088, + "yaw": 4.088, + "roll": 4.088 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "missile" + ] + } + ], + "cargo": [ + { + "max": 790, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 85205, + "max": 120109, + "avg": 102657 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "hullparts", + "amount": 90 + }, + { + "ware": "water", + "amount": 20 + } + ] + } + ] + }, + { + "id": "ship_bor_s_scout_02_a", + "version": 1, + "name": "Irukandji", + "description": "Faded Dreams Defences developed the Irukandji as a military scout for the Royal Boron Navy, drawing on its experience with Split encounters in the Faded Dreams system, which was by then already disconnected. As their first project under Queen Menelaus, the development helped the company to familiarise itself with the new technologies and production requirements provided by the Royal Boron Military Defence. The ship saw its first deployment in 787 (NT).nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "small", + "race": "boron", + "hull": 2600, + "storage": { + "missile": 17, + "unit": 0 + }, + "people": 1, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 5.582, + "inertia": { + "pitch": 0.458, + "yaw": 0.458, + "roll": 0.352 + }, + "drag": { + "forward": 2.245, + "reverse": 8.98, + "horizontal": 3.732, + "vertical": 3.732, + "pitch": 1.69, + "yaw": 1.69, + "roll": 1.69 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "missile" + ] + } + ], + "cargo": [ + { + "max": 530, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 99353, + "max": 140052, + "avg": 119702 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "hullparts", + "amount": 102 + }, + { + "ware": "water", + "amount": 37 + } + ] + } + ] + }, + { + "id": "ship_bor_s_trans_container_01_a", + "version": 1, + "name": "Terrapin", + "description": "Atreus Era ships were the first ships built in response to the beginning of the Jump Gate shutdowns of 778 (NT). Fearing that systems might be cut off, they were designed to operate more autonomously in contrast to earlier ships which specialised in combined usage. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The Atreus Era ships are sturdier than the later Menelaus Era ships, but not as manoeuvrable.nnWhen Atreus Shipbuilding Currents was tasked with pioneering this design paradigm shift, their first project would be the development of a new ship frame to be used in three configurations: prospecting, mining and transportation. During the two years of development, the corporation would pave the way for future ship development through great advances in component miniaturisation and improvements to the travel mode. In 780 (NT) Atreus Shipbuilding Currents released their new ship frame with the Piranha scout, Grouper miner and Terrapin transporter.", + "size": "small", + "race": "boron", + "hull": 4000, + "storage": { + "missile": 0, + "unit": 0 + }, + "people": 4, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 15.639, + "inertia": { + "pitch": 5.012, + "yaw": 5.012, + "roll": 4.01 + }, + "drag": { + "forward": 5.253, + "reverse": 20.889, + "horizontal": 6.81, + "vertical": 6.81, + "pitch": 5.825, + "yaw": 5.825, + "roll": 5.825 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "cargo": [ + { + "max": 2230, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 164834, + "max": 232356, + "avg": 198595 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 62 + }, + { + "ware": "hullparts", + "amount": 180 + }, + { + "ware": "water", + "amount": 20 + } + ] + } + ] + }, + { + "id": "ship_bor_xl_builder_01_a", + "version": 1, + "name": "Walrus", + "description": "Lucky Planets Construction Enterprises made a name for itself supplying and servicing Boron colonies surrounding the Lucky Planets system. With their experience in the various space engineering fields involved in station construction, the company secured a contract to develop a builder ship in 782 (NT). Although development began during the Atreus Era, it continued well into the Menelaus Era thereby spanning the major paradigm shifts in ship design that occurred during that time. Development and construction finished with the first Walrus' maiden voyage, when it undocked from the Lucky Planets Shipyard in 789 (NT).nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "extralarge", + "race": "boron", + "explosionDamage": 1200, + "hull": 178000, + "storage": { + "missile": 349, + "unit": 192 + }, + "people": 140, + "purpose": "build", + "thruster": "extralarge", + "type": "builder", + "mass": 1430.356, + "inertia": { + "pitch": 553.233, + "yaw": 553.233, + "roll": 442.587 + }, + "drag": { + "forward": 228.795, + "reverse": 915.178, + "horizontal": 780.723, + "vertical": 780.723, + "pitch": 752.738, + "yaw": 752.738, + "roll": 752.738 + }, + "engines": [ + { + "group": "group_engines", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_mid_down_mid_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_mid_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + } + ], + "turrets": [ + { + "group": "group_mid_down_mid_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_mid_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_mid_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_mid_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "cargo": [ + { + "max": 50, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 2, + "size": "medium" + }, + { + "capacity": 2, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 9921974, + "max": 13986397, + "avg": 11954185 + }, + "production": [ + { + "time": 527, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2866 + }, + { + "ware": "hullparts", + "amount": 9575 + }, + { + "ware": "water", + "amount": 6440 + } + ] + } + ] + }, + { + "id": "ship_bor_xl_carrier_01_a", + "version": 1, + "name": "Shark", + "description": "The Shark heavy carrier was the second carrier developed by Atreus Shipbuilding Currents. Aside from various budget increases, the renowned company managed to engineer and deliver the ship without major incidents. After seven years of development the first Shark was completed, and departed from the Ocean of Fantasy Shipyard in 797 (NT) to serve the Boron Royal Navy.nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "extralarge", + "race": "boron", + "explosionDamage": 1500, + "hull": 383000, + "storage": { + "missile": 500, + "unit": 20 + }, + "people": 405, + "purpose": "fight", + "thruster": "extralarge", + "type": "carrier", + "mass": 1149.882, + "inertia": { + "pitch": 740.894, + "yaw": 740.894, + "roll": 592.715 + }, + "drag": { + "forward": 332.118, + "reverse": 1265.21, + "horizontal": 271.773, + "vertical": 271.773, + "pitch": 696.643, + "yaw": 696.643, + "roll": 696.643 + }, + "engines": [ + { + "group": "group_engines", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_engines", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_engines", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_engines", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_engines", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_mid_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_mid_down_mid_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_mid_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_mid_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_mid_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_mid_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "cargo": [ + { + "max": 35000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 8, + "size": "medium" + }, + { + "capacity": 64, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 18129693, + "max": 25556315, + "avg": 21843004 + }, + "production": [ + { + "time": 780, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 4425 + }, + { + "ware": "hullparts", + "amount": 18800 + }, + { + "ware": "water", + "amount": 6880 + } + ] + } + ] + }, + { + "id": "ship_bor_xl_resupplier_01_a", + "version": 1, + "name": "Orca", + "description": "After their long history of manufacturing exclusively civilian construction and service ships, in 789 (NT) Lucky Planets Construction Enterprises accepted a government contract to develop an XL resupplier for the Royal Boron Navy. While some of their competitors suspected that the contract was acquired through foul play, the company's recent success with the builder, the Walrus, qualified it to develop their second XL sized ship. As one of the last ships to be developed in the Menelaus Era, the Orca saw its maiden voyage when it deployed from the Lucky Planets Shipyard in 798 (NT).nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "extralarge", + "race": "boron", + "explosionDamage": 1200, + "hull": 174000, + "storage": { + "missile": 268, + "unit": 100 + }, + "people": 154, + "purpose": "auxiliary", + "thruster": "extralarge", + "type": "resupplier", + "mass": 1569.585, + "inertia": { + "pitch": 629.542, + "yaw": 629.542, + "roll": 503.633 + }, + "drag": { + "forward": 344.677, + "reverse": 1378.709, + "horizontal": 750.951, + "vertical": 750.951, + "pitch": 750.584, + "yaw": 750.584, + "roll": 750.584 + }, + "engines": [ + { + "group": "group_engines", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_engines", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_engines", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_mid_01", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + } + ], + "turrets": [ + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_mid_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_mid_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "cargo": [ + { + "max": 40000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 4, + "size": "medium" + }, + { + "capacity": 16, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 14605352, + "max": 20588268, + "avg": 17596810 + }, + "production": [ + { + "time": 780, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 3738 + }, + { + "ware": "hullparts", + "amount": 15380 + }, + { + "ware": "water", + "amount": 4560 + } + ] + } + ] } -] +] \ No newline at end of file diff --git a/shared/data/sizes.json b/shared/data/sizes.json new file mode 100644 index 0000000..a153966 --- /dev/null +++ b/shared/data/sizes.json @@ -0,0 +1,7 @@ +[ + "extrasmall", + "small", + "medium", + "large", + "extralarge" +] \ No newline at end of file diff --git a/shared/data/transport-types.json b/shared/data/transport-types.json new file mode 100644 index 0000000..0d81c71 --- /dev/null +++ b/shared/data/transport-types.json @@ -0,0 +1,5 @@ +[ + "container", + "liquid", + "solid" +] \ No newline at end of file diff --git a/shared/data/turret-types.json b/shared/data/turret-types.json new file mode 100644 index 0000000..9fe7644 --- /dev/null +++ b/shared/data/turret-types.json @@ -0,0 +1,5 @@ +[ + "standard", + "missile", + "mining" +] \ No newline at end of file diff --git a/shared/data/ware-groups.json b/shared/data/ware-groups.json new file mode 100644 index 0000000..62b5cff --- /dev/null +++ b/shared/data/ware-groups.json @@ -0,0 +1,76 @@ +[ + { + "id": "agricultural", + "name": "Agricultural Goods", + "factoryName": "Agricultural Goods Factory", + "icon": "be_upgrade_agricultural", + "tier": 5 + }, + { + "id": "energy", + "name": "Energy", + "factoryName": "Energy Complex", + "icon": "be_upgrade_energy", + "tier": 1 + }, + { + "id": "food", + "name": "Food", + "factoryName": "Farm", + "icon": "be_upgrade_food", + "tier": 6 + }, + { + "id": "gases", + "name": "Gases", + "factoryName": "Gas Refinery", + "icon": "be_upgrade_refined" + }, + { + "id": "hightech", + "name": "High Tech Goods", + "factoryName": "High Tech Factory", + "icon": "be_upgrade_hightech", + "tier": 3 + }, + { + "id": "ice", + "name": "Ice", + "factoryName": "Ice Refinery", + "icon": "be_upgrade_water" + }, + { + "id": "minerals", + "name": "Minerals", + "factoryName": "Mineral Refinery", + "icon": "be_upgrade_refined" + }, + { + "id": "pharmaceutical", + "name": "Pharmaceutical Goods", + "factoryName": "Pharmaceutical Goods Factory", + "icon": "be_upgrade_pharmaceutical", + "tier": 7 + }, + { + "id": "refined", + "name": "Refined Goods", + "factoryName": "Refined Goods Complex", + "icon": "be_upgrade_refined", + "tier": 2 + }, + { + "id": "shiptech", + "name": "Ship Technology", + "factoryName": "Ship Technology Factory", + "icon": "be_upgrade_shiptech", + "tier": 4 + }, + { + "id": "water", + "name": "Water", + "factoryName": "Water Refinery", + "icon": "be_upgrade_water", + "tier": 2 + } +] \ No newline at end of file diff --git a/shared/data/workers.json b/shared/data/workers.json new file mode 100644 index 0000000..0cb2860 --- /dev/null +++ b/shared/data/workers.json @@ -0,0 +1,94 @@ +[ + { + "race": "argon", + "amount": 200, + "consumption": [ + { + "ware": "foodrations", + "amount": 450 + }, + { + "ware": "medicalsupplies", + "amount": 270 + } + ] + }, + { + "race": "teladi", + "amount": 200, + "consumption": [ + { + "ware": "nostropoil", + "amount": 228 + }, + { + "ware": "medicalsupplies", + "amount": 270 + } + ] + }, + { + "race": "paranid", + "amount": 200, + "consumption": [ + { + "ware": "sojahusk", + "amount": 288 + }, + { + "ware": "medicalsupplies", + "amount": 270 + } + ] + }, + { + "race": "split", + "amount": 200, + "consumption": [ + { + "ware": "cheltmeat", + "amount": 102 + }, + { + "ware": "scruffinfruits", + "amount": 138 + }, + { + "ware": "medicalsupplies", + "amount": 270 + } + ] + }, + { + "race": "terran", + "amount": 200, + "consumption": [ + { + "ware": "terranmre", + "amount": 258 + }, + { + "ware": "medicalsupplies", + "amount": 270 + } + ] + }, + { + "race": "boron", + "amount": 200, + "consumption": [ + { + "ware": "bofu", + "amount": 90 + }, + { + "ware": "medicalsupplies", + "amount": 198 + }, + { + "ware": "water", + "amount": 162 + } + ] + } +] \ No newline at end of file diff --git a/shared/export/cargo-types-data.json b/shared/export/cargo-types-data.json new file mode 100644 index 0000000..b936353 --- /dev/null +++ b/shared/export/cargo-types-data.json @@ -0,0 +1,18 @@ +[ + { + "id": "liquid", + "name": "Liquid" + }, + { + "id": "solid", + "name": "Solid" + }, + { + "id": "container", + "name": "Container" + }, + { + "id": "condensate", + "name": "Condensate" + } +] \ No newline at end of file diff --git a/shared/export/effects-data.json b/shared/export/effects-data.json new file mode 100644 index 0000000..1d9331d --- /dev/null +++ b/shared/export/effects-data.json @@ -0,0 +1,4 @@ +[ + "work", + "sunlight" +] \ No newline at end of file diff --git a/shared/export/equipment-class-data.json b/shared/export/equipment-class-data.json new file mode 100644 index 0000000..8fb3400 --- /dev/null +++ b/shared/export/equipment-class-data.json @@ -0,0 +1,14 @@ +[ + "countermeasure", + "weapon", + "missileturret", + "turret", + "engine", + "missile", + "shieldgenerator", + "scanner", + "mine", + "missilelauncher", + "ship_s", + "ship_xs" +] \ No newline at end of file diff --git a/shared/export/equipment-data.json b/shared/export/equipment-data.json new file mode 100644 index 0000000..d7cc181 --- /dev/null +++ b/shared/export/equipment-data.json @@ -0,0 +1,24596 @@ +[ + { + "id": "countermeasure_flares_01", + "version": 0, + "name": "Flares", + "description": "A piece of equipment tried and tested over hundreds of years, the modern flare has continued to be a boon for many a combat pilot in recent years. Forcibly ejected from a compartment of a ship, flares then explode so that the sudden heat signature may distract a guided missile from its original target, and before exploding additionally send out a small electro-magnetic signature that can disrupt a target lock before a missile is even fired.", + "type": "countermeasures", + "equipmentClass": "countermeasure", + "price": { + "min": 2179, + "max": 2663, + "avg": 2421 + }, + "production": [ + { + "time": 1, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedcomposites", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 9 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "ore", + "amount": 4 + }, + { + "ware": "silicon", + "amount": 3 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 90 + }, + { + "ware": "metallicmicrolattice", + "amount": 20 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "hullparts", + "amount": 1 + } + ] + } + ] + }, + { + "id": "engine_arg_l_allround_01_mk1", + "version": 0, + "name": "ARG L All-round Engine Mk1", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "large", + "hull": 4033, + "price": { + "min": 321518, + "max": 392966, + "avg": 357242 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 4206, + "reverse": 4627 + }, + "travel": { + "thrust": 31, + "attack": 75, + "charge": 20, + "release": 0 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 147 + }, + { + "ware": "energycells", + "amount": 25 + }, + { + "ware": "engineparts", + "amount": 67 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 19 + }, + { + "ware": "energycells", + "amount": 206 + }, + { + "ware": "hullparts", + "amount": 108 + } + ] + } + ] + }, + { + "id": "engine_arg_l_travel_01_mk1", + "version": 0, + "name": "ARG L Travel Engine Mk1", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "large", + "hull": 4033, + "price": { + "min": 337593, + "max": 412614, + "avg": 375104 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 4006, + "reverse": 3605 + }, + "travel": { + "thrust": 33, + "attack": 85, + "charge": 20, + "release": 0 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 148 + }, + { + "ware": "energycells", + "amount": 37 + }, + { + "ware": "engineparts", + "amount": 76 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 19 + }, + { + "ware": "energycells", + "amount": 304 + }, + { + "ware": "hullparts", + "amount": 111 + } + ] + } + ] + }, + { + "id": "engine_arg_m_allround_01_mk1", + "version": 0, + "name": "ARG M All-round Engine Mk1", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 11767, + "max": 14382, + "avg": 13074 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 1002, + "reverse": 952 + }, + "travel": { + "thrust": 9, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "engineparts", + "amount": 5 + } + ] + }, + { + "time": 15, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 99 + }, + { + "ware": "hullparts", + "amount": 3 + } + ] + } + ] + }, + { + "id": "engine_arg_m_allround_01_mk2", + "version": 0, + "name": "ARG M All-round Engine Mk2", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 58166, + "max": 71092, + "avg": 64629 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 1212, + "reverse": 1228 + }, + "travel": { + "thrust": 9, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 18 + }, + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "engineparts", + "amount": 22 + } + ] + }, + { + "time": 15, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 61 + }, + { + "ware": "hullparts", + "amount": 18 + } + ] + } + ] + }, + { + "id": "engine_arg_m_allround_01_mk3", + "version": 0, + "name": "ARG M All-round Engine Mk3", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 287722, + "max": 351660, + "avg": 319691 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 1353, + "reverse": 1413 + }, + "travel": { + "thrust": 9, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 90 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "engineparts", + "amount": 110 + } + ] + }, + { + "time": 15, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 15 + }, + { + "ware": "energycells", + "amount": 241 + }, + { + "ware": "hullparts", + "amount": 88 + } + ] + } + ] + }, + { + "id": "engine_arg_m_combat_01_mk1", + "version": 0, + "name": "ARG M Combat Engine Mk1", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 14357, + "max": 17547, + "avg": 15952 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 1052, + "reverse": 1105 + }, + "travel": { + "thrust": 8, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "engineparts", + "amount": 7 + } + ] + }, + { + "time": 15, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 109 + }, + { + "ware": "hullparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "engine_arg_m_combat_01_mk2", + "version": 0, + "name": "ARG M Combat Engine Mk2", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 69711, + "max": 85202, + "avg": 77457 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "yaki", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 1273, + "reverse": 1471 + }, + "travel": { + "thrust": 8, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 22 + }, + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "engineparts", + "amount": 26 + } + ] + }, + { + "time": 15, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 156 + }, + { + "ware": "hullparts", + "amount": 21 + } + ] + } + ] + }, + { + "id": "engine_arg_m_combat_01_mk3", + "version": 0, + "name": "ARG M Combat Engine Mk3", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 345444, + "max": 422209, + "avg": 383827 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "yaki", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 1420, + "reverse": 1715 + }, + "travel": { + "thrust": 8, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 110 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "engineparts", + "amount": 130 + } + ] + }, + { + "time": 15, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 18 + }, + { + "ware": "energycells", + "amount": 293 + }, + { + "ware": "hullparts", + "amount": 106 + } + ] + } + ] + }, + { + "id": "engine_arg_m_travel_01_mk1", + "version": 0, + "name": "ARG M Travel Engine Mk1", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 13062, + "max": 15964, + "avg": 14513 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 1002, + "reverse": 902 + }, + "travel": { + "thrust": 12, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "engineparts", + "amount": 6 + } + ] + }, + { + "time": 15, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 97 + }, + { + "ware": "hullparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "engine_arg_m_travel_01_mk2", + "version": 0, + "name": "ARG M Travel Engine Mk2", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 65234, + "max": 79730, + "avg": 72482 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 1212, + "reverse": 1091 + }, + "travel": { + "thrust": 12, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 20 + }, + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "engineparts", + "amount": 25 + } + ] + }, + { + "time": 15, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 113 + }, + { + "ware": "hullparts", + "amount": 20 + } + ] + } + ] + }, + { + "id": "engine_arg_m_travel_01_mk3", + "version": 0, + "name": "ARG M Travel Engine Mk3", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 331013, + "max": 404572, + "avg": 367793 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 1353, + "reverse": 1217 + }, + "travel": { + "thrust": 12, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 105 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "engineparts", + "amount": 125 + } + ] + }, + { + "time": 15, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 17 + }, + { + "ware": "energycells", + "amount": 318 + }, + { + "ware": "hullparts", + "amount": 101 + } + ] + } + ] + }, + { + "id": "engine_arg_s_allround_01_mk1", + "version": 0, + "name": "ARG S All-round Engine Mk1", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 5526, + "max": 6754, + "avg": 6140 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 396, + "reverse": 416 + }, + "travel": { + "thrust": 14, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 4 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 42 + }, + { + "ware": "hullparts", + "amount": 1 + } + ] + } + ] + }, + { + "id": "engine_arg_s_allround_01_mk2", + "version": 0, + "name": "ARG S All-round Engine Mk2", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 26370, + "max": 32230, + "avg": 29300 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 479, + "reverse": 574 + }, + "travel": { + "thrust": 14, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 10 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 79 + }, + { + "ware": "hullparts", + "amount": 8 + } + ] + } + ] + }, + { + "id": "engine_arg_s_allround_01_mk3", + "version": 0, + "name": "ARG S All-round Engine Mk3", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 123301, + "max": 150701, + "avg": 137001 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 535, + "reverse": 679 + }, + "travel": { + "thrust": 14, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 40 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "engineparts", + "amount": 45 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 176 + }, + { + "ware": "hullparts", + "amount": 38 + } + ] + } + ] + }, + { + "id": "engine_arg_s_combat_01_mk1", + "version": 0, + "name": "ARG S Combat Engine Mk1", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 8116, + "max": 9919, + "avg": 9017 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "yaki", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 416, + "reverse": 499 + }, + "travel": { + "thrust": 12, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 6 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 52 + }, + { + "ware": "hullparts", + "amount": 2 + } + ] + } + ] + }, + { + "id": "engine_arg_s_combat_01_mk2", + "version": 0, + "name": "ARG S Combat Engine Mk2", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 40504, + "max": 49505, + "avg": 45005 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 503, + "reverse": 710 + }, + "travel": { + "thrust": 12, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 12 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 16 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 56 + }, + { + "ware": "hullparts", + "amount": 12 + } + ] + } + ] + }, + { + "id": "engine_arg_s_combat_01_mk3", + "version": 0, + "name": "ARG S Combat Engine Mk3", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 181023, + "max": 221250, + "avg": 201137 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 561, + "reverse": 850 + }, + "travel": { + "thrust": 12, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 60 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "engineparts", + "amount": 65 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 9 + }, + { + "ware": "energycells", + "amount": 228 + }, + { + "ware": "hullparts", + "amount": 56 + } + ] + } + ] + }, + { + "id": "engine_arg_s_travel_01_mk1", + "version": 0, + "name": "ARG S Travel Engine Mk1", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 6821, + "max": 8336, + "avg": 7579 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 396, + "reverse": 396 + }, + "travel": { + "thrust": 18, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 54 + }, + { + "ware": "hullparts", + "amount": 1 + } + ] + } + ] + }, + { + "id": "engine_arg_s_travel_01_mk2", + "version": 0, + "name": "ARG S Travel Engine Mk2", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 34732, + "max": 42450, + "avg": 38591 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 479, + "reverse": 499 + }, + "travel": { + "thrust": 18, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 10 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 14 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 142 + }, + { + "ware": "hullparts", + "amount": 10 + } + ] + } + ] + }, + { + "id": "engine_arg_s_travel_01_mk3", + "version": 0, + "name": "ARG S Travel Engine Mk3", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 166592, + "max": 203613, + "avg": 185103 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 535, + "reverse": 568 + }, + "travel": { + "thrust": 18, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 55 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "engineparts", + "amount": 60 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 9 + }, + { + "ware": "energycells", + "amount": 126 + }, + { + "ware": "hullparts", + "amount": 51 + } + ] + } + ] + }, + { + "id": "engine_arg_xl_allround_01_mk1", + "version": 0, + "name": "ARG XL All-round Engine Mk1", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "extralarge", + "hull": 12193, + "price": { + "min": 424061, + "max": 518297, + "avg": 471179 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 11076, + "reverse": 12184 + }, + "travel": { + "thrust": 31, + "attack": 75, + "charge": 30, + "release": 0 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 193 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "engineparts", + "amount": 89 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 25 + }, + { + "ware": "energycells", + "amount": 290 + }, + { + "ware": "hullparts", + "amount": 142 + } + ] + } + ] + }, + { + "id": "engine_arg_xl_travel_01_mk1", + "version": 0, + "name": "ARG XL Travel Engine Mk1", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "extralarge", + "hull": 9955, + "price": { + "min": 445263, + "max": 544210, + "avg": 494737 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "thrust": { + "forward": 10549, + "reverse": 9494 + }, + "travel": { + "thrust": 33, + "attack": 85, + "charge": 30, + "release": 0 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 195 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "engineparts", + "amount": 101 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 25 + }, + { + "ware": "energycells", + "amount": 406 + }, + { + "ware": "hullparts", + "amount": 147 + } + ] + } + ] + }, + { + "id": "engine_kha_m_combat_01_mk1", + "version": 0, + "name": "KHA M Combat Engine Mk1", + "description": "No information available", + "race": "khaak", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "owners": [ + "khaak" + ], + "thrust": { + "forward": 1400, + "reverse": 1600 + }, + "travel": { + "thrust": 7, + "attack": 10, + "charge": 3, + "release": 0 + }, + "production": [] + }, + { + "id": "engine_kha_m_combat_02_mk1", + "version": 0, + "name": "KHA M Combat Engine Array Mk1", + "description": "No information available", + "race": "khaak", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "owners": [ + "khaak" + ], + "thrust": { + "forward": 1400, + "reverse": 1662 + }, + "travel": { + "thrust": 7, + "attack": 10, + "charge": 3, + "release": 0 + }, + "production": [] + }, + { + "id": "engine_kha_s_combat_01_mk1", + "version": 0, + "name": "KHA S Combat Engine Mk1", + "description": "No information available", + "race": "khaak", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "owners": [ + "khaak" + ], + "thrust": { + "forward": 500, + "reverse": 770 + }, + "travel": { + "thrust": 7, + "attack": 10, + "charge": 2, + "release": 0 + }, + "production": [] + }, + { + "id": "engine_par_l_allround_01_mk1", + "version": 0, + "name": "PAR L All-round Engine Mk1", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "large", + "hull": 4018, + "price": { + "min": 324732, + "max": 396895, + "avg": 360814 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 4332, + "reverse": 4766 + }, + "travel": { + "thrust": 29, + "attack": 75, + "charge": 20, + "release": 0 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 147 + }, + { + "ware": "energycells", + "amount": 25 + }, + { + "ware": "engineparts", + "amount": 67 + } + ] + } + ] + }, + { + "id": "engine_par_l_travel_01_mk1", + "version": 0, + "name": "PAR L Travel Engine Mk1", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "large", + "hull": 4018, + "price": { + "min": 340969, + "max": 416740, + "avg": 378855 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 4126, + "reverse": 3713 + }, + "travel": { + "thrust": 31, + "attack": 85, + "charge": 20, + "release": 0 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 148 + }, + { + "ware": "energycells", + "amount": 37 + }, + { + "ware": "engineparts", + "amount": 76 + } + ] + } + ] + }, + { + "id": "engine_par_m_allround_01_mk1", + "version": 0, + "name": "PAR M All-round Engine Mk1", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 11767, + "max": 14382, + "avg": 13074 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 1032, + "reverse": 980 + }, + "travel": { + "thrust": 8, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "engineparts", + "amount": 5 + } + ] + } + ] + }, + { + "id": "engine_par_m_allround_01_mk2", + "version": 0, + "name": "PAR M All-round Engine Mk2", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 58166, + "max": 71092, + "avg": 64629 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 1249, + "reverse": 1265 + }, + "travel": { + "thrust": 8, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 18 + }, + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "engineparts", + "amount": 22 + } + ] + } + ] + }, + { + "id": "engine_par_m_allround_01_mk3", + "version": 0, + "name": "PAR M All-round Engine Mk3", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 287722, + "max": 351660, + "avg": 319691 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 1393, + "reverse": 1455 + }, + "travel": { + "thrust": 8, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 90 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "engineparts", + "amount": 110 + } + ] + } + ] + }, + { + "id": "engine_par_m_combat_01_mk1", + "version": 0, + "name": "PAR M Combat Engine Mk1", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 14357, + "max": 17547, + "avg": 15952 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity", + "yaki" + ], + "thrust": { + "forward": 1084, + "reverse": 1138 + }, + "travel": { + "thrust": 7, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "engineparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "engine_par_m_combat_01_mk2", + "version": 0, + "name": "PAR M Combat Engine Mk2", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 69711, + "max": 85202, + "avg": 77457 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 1311, + "reverse": 1515 + }, + "travel": { + "thrust": 7, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 22 + }, + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "engineparts", + "amount": 26 + } + ] + } + ] + }, + { + "id": "engine_par_m_combat_01_mk3", + "version": 0, + "name": "PAR M Combat Engine Mk3", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 345444, + "max": 422209, + "avg": 383827 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 1463, + "reverse": 1766 + }, + "travel": { + "thrust": 7, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 110 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "engineparts", + "amount": 130 + } + ] + } + ] + }, + { + "id": "engine_par_m_travel_01_mk1", + "version": 0, + "name": "PAR M Travel Engine Mk1", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 13062, + "max": 15964, + "avg": 14513 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 1032, + "reverse": 929 + }, + "travel": { + "thrust": 11, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "engineparts", + "amount": 6 + } + ] + } + ] + }, + { + "id": "engine_par_m_travel_01_mk2", + "version": 0, + "name": "PAR M Travel Engine Mk2", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 65234, + "max": 79730, + "avg": 72482 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 1249, + "reverse": 1124 + }, + "travel": { + "thrust": 11, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 20 + }, + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "engineparts", + "amount": 25 + } + ] + } + ] + }, + { + "id": "engine_par_m_travel_01_mk3", + "version": 0, + "name": "PAR M Travel Engine Mk3", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 331013, + "max": 404572, + "avg": 367793 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 1393, + "reverse": 1254 + }, + "travel": { + "thrust": 11, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 105 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "engineparts", + "amount": 125 + } + ] + } + ] + }, + { + "id": "engine_par_s_allround_01_mk1", + "version": 0, + "name": "PAR S All-round Engine Mk1", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 5526, + "max": 6754, + "avg": 6140 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 408, + "reverse": 428 + }, + "travel": { + "thrust": 13, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "engine_par_s_allround_01_mk2", + "version": 0, + "name": "PAR S All-round Engine Mk2", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 26370, + "max": 32230, + "avg": 29300 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 494, + "reverse": 591 + }, + "travel": { + "thrust": 13, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 10 + } + ] + } + ] + }, + { + "id": "engine_par_s_allround_01_mk3", + "version": 0, + "name": "PAR S All-round Engine Mk3", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 123301, + "max": 150701, + "avg": 137001 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 551, + "reverse": 700 + }, + "travel": { + "thrust": 13, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 40 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "engineparts", + "amount": 45 + } + ] + } + ] + }, + { + "id": "engine_par_s_combat_01_mk1", + "version": 0, + "name": "PAR S Combat Engine Mk1", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 8116, + "max": 9919, + "avg": 9017 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 428, + "reverse": 514 + }, + "travel": { + "thrust": 11, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 6 + } + ] + } + ] + }, + { + "id": "engine_par_s_combat_01_mk2", + "version": 0, + "name": "PAR S Combat Engine Mk2", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 40504, + "max": 49505, + "avg": 45005 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity", + "yaki" + ], + "thrust": { + "forward": 518, + "reverse": 731 + }, + "travel": { + "thrust": 11, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 12 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 16 + } + ] + } + ] + }, + { + "id": "engine_par_s_combat_01_mk3", + "version": 0, + "name": "PAR S Combat Engine Mk3", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 181023, + "max": 221250, + "avg": 201137 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity", + "yaki" + ], + "thrust": { + "forward": 578, + "reverse": 876 + }, + "travel": { + "thrust": 11, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 60 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "engineparts", + "amount": 65 + } + ] + } + ] + }, + { + "id": "engine_par_s_travel_01_mk1", + "version": 0, + "name": "PAR S Travel Engine Mk1", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 6821, + "max": 8336, + "avg": 7579 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 408, + "reverse": 408 + }, + "travel": { + "thrust": 17, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 5 + } + ] + } + ] + }, + { + "id": "engine_par_s_travel_01_mk2", + "version": 0, + "name": "PAR S Travel Engine Mk2", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 34732, + "max": 42450, + "avg": 38591 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 494, + "reverse": 514 + }, + "travel": { + "thrust": 17, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 10 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 14 + } + ] + } + ] + }, + { + "id": "engine_par_s_travel_01_mk3", + "version": 0, + "name": "PAR S Travel Engine Mk3", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 166592, + "max": 203613, + "avg": 185103 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 551, + "reverse": 585 + }, + "travel": { + "thrust": 17, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 55 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "engineparts", + "amount": 60 + } + ] + } + ] + }, + { + "id": "engine_par_xl_allround_01_mk1", + "version": 0, + "name": "PAR XL All-round Engine Mk1", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "extralarge", + "hull": 9899, + "price": { + "min": 428301, + "max": 523479, + "avg": 475890 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 11408, + "reverse": 12549 + }, + "travel": { + "thrust": 29, + "attack": 75, + "charge": 30, + "release": 0 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 193 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "engineparts", + "amount": 89 + } + ] + } + ] + }, + { + "id": "engine_par_xl_travel_01_mk1", + "version": 0, + "name": "PAR XL Travel Engine Mk1", + "description": "No information available", + "race": "paranid", + "type": "engines", + "equipmentClass": "engine", + "size": "extralarge", + "hull": 9955, + "price": { + "min": 449716, + "max": 549653, + "avg": 499685 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "thrust": { + "forward": 10865, + "reverse": 9779 + }, + "travel": { + "thrust": 31, + "attack": 85, + "charge": 30, + "release": 0 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 205 + }, + { + "ware": "energycells", + "amount": 56 + }, + { + "ware": "engineparts", + "amount": 91 + } + ] + } + ] + }, + { + "id": "engine_tel_l_allround_01_mk1", + "version": 0, + "name": "TEL L All-round Engine Mk1", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "large", + "hull": 4018, + "price": { + "min": 321235, + "max": 392621, + "avg": 356928 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "thrust": { + "forward": 4080, + "reverse": 4488 + }, + "travel": { + "thrust": 31, + "attack": 60, + "charge": 20, + "release": 0 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 147 + }, + { + "ware": "energycells", + "amount": 25 + }, + { + "ware": "engineparts", + "amount": 67 + } + ] + } + ] + }, + { + "id": "engine_tel_l_travel_01_mk1", + "version": 0, + "name": "TEL L Travel Engine Mk1", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "large", + "hull": 4018, + "price": { + "min": 337296, + "max": 412251, + "avg": 374774 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 3886, + "reverse": 3497 + }, + "travel": { + "thrust": 33, + "attack": 68, + "charge": 20, + "release": 0 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 148 + }, + { + "ware": "energycells", + "amount": 39 + }, + { + "ware": "engineparts", + "amount": 76 + } + ] + } + ] + }, + { + "id": "engine_tel_m_allround_01_mk1", + "version": 0, + "name": "TEL M All-round Engine Mk1", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 11757, + "max": 14370, + "avg": 13064 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "thrust": { + "forward": 972, + "reverse": 923 + }, + "travel": { + "thrust": 9, + "attack": 24, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "engineparts", + "amount": 5 + } + ] + } + ] + }, + { + "id": "engine_tel_m_allround_01_mk2", + "version": 0, + "name": "TEL M All-round Engine Mk2", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 58118, + "max": 71033, + "avg": 64575 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 1176, + "reverse": 1192 + }, + "travel": { + "thrust": 9, + "attack": 24, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 18 + }, + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "engineparts", + "amount": 22 + } + ] + }, + { + "time": 15, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 61 + }, + { + "ware": "hullparts", + "amount": 18 + } + ] + } + ] + }, + { + "id": "engine_tel_m_allround_01_mk3", + "version": 0, + "name": "TEL M All-round Engine Mk3", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 287479, + "max": 351363, + "avg": 319421 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 1312, + "reverse": 1370 + }, + "travel": { + "thrust": 9, + "attack": 24, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 90 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "engineparts", + "amount": 110 + } + ] + } + ] + }, + { + "id": "engine_tel_m_combat_01_mk1", + "version": 0, + "name": "TEL M Combat Engine Mk1", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 14345, + "max": 17533, + "avg": 15939 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "thrust": { + "forward": 1021, + "reverse": 1072 + }, + "travel": { + "thrust": 8, + "attack": 12, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "engineparts", + "amount": 7 + } + ] + }, + { + "time": 15, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 109 + }, + { + "ware": "hullparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "engine_tel_m_combat_01_mk2", + "version": 0, + "name": "TEL M Combat Engine Mk2", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 69652, + "max": 85131, + "avg": 77391 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "thrust": { + "forward": 1235, + "reverse": 1427 + }, + "travel": { + "thrust": 8, + "attack": 12, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 22 + }, + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "engineparts", + "amount": 26 + } + ] + } + ] + }, + { + "id": "engine_tel_m_combat_01_mk3", + "version": 0, + "name": "TEL M Combat Engine Mk3", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 345151, + "max": 421851, + "avg": 383501 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 1378, + "reverse": 1663 + }, + "travel": { + "thrust": 8, + "attack": 12, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 110 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "engineparts", + "amount": 130 + } + ] + } + ] + }, + { + "id": "engine_tel_m_travel_01_mk1", + "version": 0, + "name": "TEL M Travel Engine Mk1", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 13051, + "max": 15952, + "avg": 14501 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "thrust": { + "forward": 972, + "reverse": 875 + }, + "travel": { + "thrust": 12, + "attack": 36, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "engineparts", + "amount": 6 + } + ] + } + ] + }, + { + "id": "engine_tel_m_travel_01_mk2", + "version": 0, + "name": "TEL M Travel Engine Mk2", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 65179, + "max": 79663, + "avg": 72421 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 1176, + "reverse": 1058 + }, + "travel": { + "thrust": 12, + "attack": 36, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 20 + }, + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "engineparts", + "amount": 25 + } + ] + } + ] + }, + { + "id": "engine_tel_m_travel_01_mk3", + "version": 0, + "name": "TEL M Travel Engine Mk3", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 330733, + "max": 404229, + "avg": 367481 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 1312, + "reverse": 1181 + }, + "travel": { + "thrust": 12, + "attack": 30, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 105 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "engineparts", + "amount": 125 + } + ] + }, + { + "time": 15, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 17 + }, + { + "ware": "energycells", + "amount": 318 + }, + { + "ware": "hullparts", + "amount": 101 + } + ] + } + ] + }, + { + "id": "engine_tel_s_allround_01_mk1", + "version": 0, + "name": "TEL S All-round Engine Mk1", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 5522, + "max": 6749, + "avg": 6135 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "thrust": { + "forward": 384, + "reverse": 403 + }, + "travel": { + "thrust": 14, + "attack": 24, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "engine_tel_s_allround_01_mk2", + "version": 0, + "name": "TEL S All-round Engine Mk2", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 26348, + "max": 32203, + "avg": 29276 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 465, + "reverse": 557 + }, + "travel": { + "thrust": 14, + "attack": 24, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 10 + } + ] + } + ] + }, + { + "id": "engine_tel_s_allround_01_mk3", + "version": 0, + "name": "TEL S All-round Engine Mk3", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 123197, + "max": 150574, + "avg": 136885 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 519, + "reverse": 659 + }, + "travel": { + "thrust": 14, + "attack": 24, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 40 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "engineparts", + "amount": 45 + } + ] + } + ] + }, + { + "id": "engine_tel_s_combat_01_mk1", + "version": 0, + "name": "TEL S Combat Engine Mk1", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 8110, + "max": 9912, + "avg": 9011 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "thrust": { + "forward": 403, + "reverse": 484 + }, + "travel": { + "thrust": 12, + "attack": 12, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 6 + } + ] + } + ] + }, + { + "id": "engine_tel_s_combat_01_mk2", + "version": 0, + "name": "TEL S Combat Engine Mk2", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 40471, + "max": 49464, + "avg": 44967 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "thrust": { + "forward": 488, + "reverse": 688 + }, + "travel": { + "thrust": 12, + "attack": 12, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 12 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 16 + } + ] + } + ] + }, + { + "id": "engine_tel_s_combat_01_mk3", + "version": 0, + "name": "TEL S Combat Engine Mk3", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 180869, + "max": 221062, + "avg": 200966 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 544, + "reverse": 825 + }, + "travel": { + "thrust": 12, + "attack": 12, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 60 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "engineparts", + "amount": 65 + } + ] + } + ] + }, + { + "id": "engine_tel_s_travel_01_mk1", + "version": 0, + "name": "TEL S Travel Engine Mk1", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 6816, + "max": 8330, + "avg": 7573 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "thrust": { + "forward": 384, + "reverse": 384 + }, + "travel": { + "thrust": 18, + "attack": 36, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 5 + } + ] + } + ] + }, + { + "id": "engine_tel_s_travel_01_mk2", + "version": 0, + "name": "TEL S Travel Engine Mk2", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 34703, + "max": 42415, + "avg": 38559 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 465, + "reverse": 484 + }, + "travel": { + "thrust": 18, + "attack": 36, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 10 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 14 + } + ] + } + ] + }, + { + "id": "engine_tel_s_travel_01_mk3", + "version": 0, + "name": "TEL S Travel Engine Mk3", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 166451, + "max": 203440, + "avg": 184946 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 519, + "reverse": 551 + }, + "travel": { + "thrust": 18, + "attack": 36, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 55 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "engineparts", + "amount": 60 + } + ] + } + ] + }, + { + "id": "engine_tel_xl_allround_01_mk1", + "version": 0, + "name": "TEL XL All-round Engine Mk1", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "extralarge", + "hull": 9939, + "price": { + "min": 423689, + "max": 517843, + "avg": 470766 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 10744, + "reverse": 11818 + }, + "travel": { + "thrust": 31, + "attack": 60, + "charge": 30, + "release": 0 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 193 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "engineparts", + "amount": 89 + } + ] + } + ] + }, + { + "id": "engine_tel_xl_travel_01_mk1", + "version": 0, + "name": "TEL XL Travel Engine Mk1", + "description": "No information available", + "race": "teladi", + "type": "engines", + "equipmentClass": "engine", + "size": "extralarge", + "hull": 9955, + "price": { + "min": 444873, + "max": 543734, + "avg": 494304 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "thrust": { + "forward": 10232, + "reverse": 9209 + }, + "travel": { + "thrust": 33, + "attack": 68, + "charge": 30, + "release": 0 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 196 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "engineparts", + "amount": 100 + } + ] + } + ] + }, + { + "id": "engine_xen_l_allround_01_mk1", + "version": 0, + "name": "XEN L All-round Engine Mk1", + "description": "No information available", + "race": "xenon", + "type": "engines", + "equipmentClass": "engine", + "size": "large", + "hull": 4033, + "price": { + "min": 321322, + "max": 392726, + "avg": 357024 + }, + "owners": [ + "xenon" + ], + "thrust": { + "forward": 4206, + "reverse": 4627 + }, + "travel": { + "thrust": 25, + "attack": 49, + "charge": 20, + "release": 0 + }, + "production": [ + { + "time": 8, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 25 + }, + { + "ware": "ore", + "amount": 411 + }, + { + "ware": "silicon", + "amount": 411 + } + ] + } + ] + }, + { + "id": "engine_xen_m_combat_01_mk1", + "version": 0, + "name": "XEN M Combat Engine Mk1", + "description": "No information available", + "race": "xenon", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 15811, + "max": 19325, + "avg": 17568 + }, + "owners": [ + "xenon" + ], + "thrust": { + "forward": 1286, + "reverse": 1486 + }, + "travel": { + "thrust": 8, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 4, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "ore", + "amount": 19 + }, + { + "ware": "silicon", + "amount": 19 + } + ] + } + ] + }, + { + "id": "engine_xen_m_travel_01_mk1", + "version": 0, + "name": "XEN M Travel Engine Mk1", + "description": "No information available", + "race": "xenon", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 14256, + "max": 17424, + "avg": 15840 + }, + "owners": [ + "xenon" + ], + "thrust": { + "forward": 1224, + "reverse": 1102 + }, + "travel": { + "thrust": 12, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "ore", + "amount": 17 + }, + { + "ware": "silicon", + "amount": 17 + } + ] + } + ] + }, + { + "id": "engine_xen_s_combat_01_mk1", + "version": 0, + "name": "XEN S Combat Engine Mk1", + "description": "No information available", + "race": "xenon", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 6134, + "max": 7498, + "avg": 6816 + }, + "owners": [ + "xenon" + ], + "thrust": { + "forward": 503, + "reverse": 768 + }, + "travel": { + "thrust": 18, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 2, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 7 + }, + { + "ware": "silicon", + "amount": 7 + } + ] + } + ] + }, + { + "id": "engine_xen_xl_allround_01_mk1", + "version": 0, + "name": "XEN XL All-round Engine Mk1", + "description": "No information available", + "race": "xenon", + "type": "engines", + "equipmentClass": "engine", + "size": "extralarge", + "hull": 29561, + "price": { + "min": 424138, + "max": 518390, + "avg": 471264 + }, + "owners": [ + "xenon" + ], + "thrust": { + "forward": 11076, + "reverse": 12184 + }, + "travel": { + "thrust": 25, + "attack": 49, + "charge": 30, + "release": 0 + }, + "production": [ + { + "time": 16, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "ore", + "amount": 541 + }, + { + "ware": "silicon", + "amount": 541 + } + ] + } + ] + }, + { + "id": "missile_cluster_heavy_mk1", + "version": 0, + "name": "Heavy Cluster Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 12141, + "hull": 2, + "price": { + "min": 1530, + "max": 2070, + "avg": 1800 + }, + "production": [ + { + "time": 3, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "missilecomponents", + "amount": 12 + } + ] + }, + { + "time": 3, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 8 + }, + { + "ware": "ore", + "amount": 4 + }, + { + "ware": "silicon", + "amount": 3 + } + ] + }, + { + "time": 3, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "metallicmicrolattice", + "amount": 27 + } + ] + }, + { + "time": 3, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 37 + } + ] + } + ] + }, + { + "id": "missile_cluster_light_mk1", + "version": 0, + "name": "Light Cluster Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 2361, + "hull": 1, + "price": { + "min": 680, + "max": 920, + "avg": 800 + }, + "production": [ + { + "time": 1.5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "missilecomponents", + "amount": 4 + } + ] + }, + { + "time": 2, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 6 + }, + { + "ware": "ore", + "amount": 2 + }, + { + "ware": "silicon", + "amount": 1 + } + ] + }, + { + "time": 1.5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "metallicmicrolattice", + "amount": 12 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 17 + } + ] + } + ] + }, + { + "id": "missile_dumbfire_heavy_mk1", + "version": 0, + "name": "Heavy Dumbfire Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 3960, + "hull": 2, + "price": { + "min": 451, + "max": 610, + "avg": 530 + }, + "production": [ + { + "time": 1, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 7 + }, + { + "ware": "missilecomponents", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 2 + }, + { + "ware": "ore", + "amount": 1 + }, + { + "ware": "silicon", + "amount": 1 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 7 + }, + { + "ware": "metallicmicrolattice", + "amount": 31 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 10 + } + ] + } + ] + }, + { + "id": "missile_dumbfire_heavy_mk2", + "version": 0, + "name": "Heavy Dumbfire Missile Mk2", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 4320, + "hull": 3, + "price": { + "min": 1539, + "max": 2082, + "avg": 1810 + }, + "production": [ + { + "time": 1.5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 14 + }, + { + "ware": "missilecomponents", + "amount": 25 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 9 + }, + { + "ware": "ore", + "amount": 4 + }, + { + "ware": "silicon", + "amount": 3 + } + ] + }, + { + "time": 1.5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 14 + }, + { + "ware": "metallicmicrolattice", + "amount": 32 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 28 + } + ] + } + ] + }, + { + "id": "missile_dumbfire_light_mk1", + "version": 0, + "name": "Light Dumbfire Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 1100, + "hull": 1, + "price": { + "min": 213, + "max": 288, + "avg": 250 + }, + "production": [ + { + "time": 1, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "missilecomponents", + "amount": 1 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 1 + }, + { + "ware": "ore", + "amount": 1 + }, + { + "ware": "silicon", + "amount": 1 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "metallicmicrolattice", + "amount": 4 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 6 + } + ] + } + ] + }, + { + "id": "missile_dumbfire_light_mk2", + "version": 0, + "name": "Light Dumbfire Missile Mk2", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 1200, + "hull": 1, + "price": { + "min": 553, + "max": 748, + "avg": 650 + }, + "production": [ + { + "time": 1.5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "missilecomponents", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 2 + }, + { + "ware": "ore", + "amount": 2 + }, + { + "ware": "silicon", + "amount": 1 + } + ] + }, + { + "time": 1.5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "metallicmicrolattice", + "amount": 10 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 13 + } + ] + } + ] + }, + { + "id": "missile_emp_mk1", + "version": 0, + "name": "EMP Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 0, + "hull": 1, + "price": { + "min": 808, + "max": 1093, + "avg": 950 + }, + "production": [ + { + "time": 1, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "missilecomponents", + "amount": 11 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 2 + }, + { + "ware": "silicon", + "amount": 1 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "metallicmicrolattice", + "amount": 16 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 16 + } + ] + } + ] + }, + { + "id": "missile_guided_heavy_mk1", + "version": 0, + "name": "Heavy Guided Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 3520, + "hull": 3, + "price": { + "min": 1915, + "max": 2590, + "avg": 2253 + }, + "production": [ + { + "time": 2, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 16 + }, + { + "ware": "missilecomponents", + "amount": 3 + }, + { + "ware": "smartchips", + "amount": 3 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 16 + }, + { + "ware": "ore", + "amount": 5 + }, + { + "ware": "silicon", + "amount": 3 + } + ] + }, + { + "time": 2, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 16 + }, + { + "ware": "metallicmicrolattice", + "amount": 12 + }, + { + "ware": "siliconcarbide", + "amount": 1 + } + ] + }, + { + "time": 2, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 28 + } + ] + } + ] + }, + { + "id": "missile_guided_light_mk1", + "version": 0, + "name": "Light Guided Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 685, + "hull": 1, + "price": { + "min": 729, + "max": 986, + "avg": 858 + }, + "production": [ + { + "time": 1, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 8 + }, + { + "ware": "missilecomponents", + "amount": 1 + }, + { + "ware": "smartchips", + "amount": 1 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 2 + }, + { + "ware": "silicon", + "amount": 1 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 8 + }, + { + "ware": "metallicmicrolattice", + "amount": 15 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 12 + } + ] + } + ] + }, + { + "id": "missile_heatseeker_heavy_mk1", + "version": 0, + "name": "Heavy Heatseeker Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 3592, + "hull": 2, + "price": { + "min": 2178, + "max": 2947, + "avg": 2563 + }, + "production": [ + { + "time": 4, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "missilecomponents", + "amount": 6 + }, + { + "ware": "smartchips", + "amount": 3 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "ore", + "amount": 5 + }, + { + "ware": "silicon", + "amount": 4 + } + ] + }, + { + "time": 4, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "metallicmicrolattice", + "amount": 17 + }, + { + "ware": "siliconcarbide", + "amount": 1 + } + ] + }, + { + "time": 4, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 34 + } + ] + } + ] + }, + { + "id": "missile_heatseeker_light_mk1", + "version": 0, + "name": "Light Heatseeker Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 698, + "hull": 1, + "price": { + "min": 839, + "max": 1136, + "avg": 988 + }, + "production": [ + { + "time": 2, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "missilecomponents", + "amount": 2 + }, + { + "ware": "smartchips", + "amount": 1 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "ore", + "amount": 1 + }, + { + "ware": "silicon", + "amount": 1 + } + ] + }, + { + "time": 2, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "metallicmicrolattice", + "amount": 17 + } + ] + }, + { + "time": 2, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 15 + } + ] + } + ] + }, + { + "id": "missile_smart_heavy_mk1", + "version": 0, + "name": "Heavy Smart Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 3378, + "hull": 3, + "price": { + "min": 2465, + "max": 3335, + "avg": 2900 + }, + "production": [ + { + "time": 2, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "missilecomponents", + "amount": 3 + }, + { + "ware": "smartchips", + "amount": 4 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "ore", + "amount": 6 + }, + { + "ware": "silicon", + "amount": 5 + } + ] + }, + { + "time": 2, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "metallicmicrolattice", + "amount": 24 + }, + { + "ware": "siliconcarbide", + "amount": 1 + } + ] + }, + { + "time": 2, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 36 + } + ] + } + ] + }, + { + "id": "missile_smart_light_mk1", + "version": 0, + "name": "Light Smart Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 657, + "hull": 1, + "price": { + "min": 1211, + "max": 1639, + "avg": 1425 + }, + "production": [ + { + "time": 1, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "missilecomponents", + "amount": 1 + }, + { + "ware": "smartchips", + "amount": 2 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 3 + }, + { + "ware": "silicon", + "amount": 2 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "metallicmicrolattice", + "amount": 26 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 18 + } + ] + } + ] + }, + { + "id": "missile_swarm_heavy_mk1", + "version": 0, + "name": "Heavy Swarm Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 690, + "hull": 3, + "price": { + "min": 1934, + "max": 2616, + "avg": 2275 + }, + "production": [ + { + "time": 2, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "missilecomponents", + "amount": 10 + }, + { + "ware": "smartchips", + "amount": 2 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "ore", + "amount": 4 + }, + { + "ware": "silicon", + "amount": 3 + } + ] + }, + { + "time": 2, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "metallicmicrolattice", + "amount": 11 + }, + { + "ware": "siliconcarbide", + "amount": 1 + } + ] + }, + { + "time": 2, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 33 + } + ] + } + ] + }, + { + "id": "missile_swarm_light_mk1", + "version": 0, + "name": "Light Swarm Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 134, + "hull": 1, + "price": { + "min": 967, + "max": 1308, + "avg": 1138 + }, + "production": [ + { + "time": 1, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "missilecomponents", + "amount": 5 + }, + { + "ware": "smartchips", + "amount": 1 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 2 + }, + { + "ware": "silicon", + "amount": 2 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "metallicmicrolattice", + "amount": 20 + } + ] + }, + { + "time": 1, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 16 + } + ] + } + ] + }, + { + "id": "missile_torpedo_heavy_mk1", + "version": 0, + "name": "Heavy Torpedo Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 17246, + "hull": 38, + "price": { + "min": 17563, + "max": 23762, + "avg": 20663 + }, + "production": [ + { + "time": 6, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "missilecomponents", + "amount": 40 + }, + { + "ware": "smartchips", + "amount": 35 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "ore", + "amount": 30 + }, + { + "ware": "silicon", + "amount": 20 + } + ] + }, + { + "time": 6, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "metallicmicrolattice", + "amount": 13 + }, + { + "ware": "siliconcarbide", + "amount": 2 + } + ] + }, + { + "time": 6, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 122 + }, + { + "ware": "hullparts", + "amount": 5 + } + ] + } + ] + }, + { + "id": "missile_torpedo_light_mk1", + "version": 0, + "name": "Light Torpedo Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 4791, + "hull": 8, + "price": { + "min": 3921, + "max": 5304, + "avg": 4613 + }, + "production": [ + { + "time": 3, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "missilecomponents", + "amount": 8 + }, + { + "ware": "smartchips", + "amount": 7 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "ore", + "amount": 20 + }, + { + "ware": "silicon", + "amount": 15 + } + ] + }, + { + "time": 3, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "metallicmicrolattice", + "amount": 30 + }, + { + "ware": "siliconcarbide", + "amount": 2 + } + ] + }, + { + "time": 3, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 36 + }, + { + "ware": "hullparts", + "amount": 1 + } + ] + } + ] + }, + { + "id": "shield_arg_l_standard_01_mk1", + "version": 0, + "name": "ARG L Shield Generator Mk1", + "description": "No information available", + "race": "argon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 2000, + "recharge": { + "max": 38844, + "rate": 173, + "delay": 0 + }, + "price": { + "min": 42166, + "max": 51536, + "avg": 46851 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "fieldcoils", + "amount": 13 + }, + { + "ware": "shieldcomponents", + "amount": 10 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 77 + }, + { + "ware": "hullparts", + "amount": 13 + } + ] + } + ] + }, + { + "id": "shield_arg_l_standard_01_mk2", + "version": 0, + "name": "ARG L Shield Generator Mk2", + "description": "No information available", + "race": "argon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 2000, + "recharge": { + "max": 46282, + "rate": 268, + "delay": 0 + }, + "price": { + "min": 205644, + "max": 251343, + "avg": 228494 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "fieldcoils", + "amount": 65 + }, + { + "ware": "shieldcomponents", + "amount": 50 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 11 + }, + { + "ware": "energycells", + "amount": 136 + }, + { + "ware": "hullparts", + "amount": 63 + } + ] + } + ] + }, + { + "id": "shield_arg_m_standard_01_mk1", + "version": 0, + "name": "ARG M Shield Generator Mk1", + "description": "No information available", + "race": "argon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 5147, + "rate": 26, + "delay": 0.5 + }, + "price": { + "min": 12838, + "max": 15691, + "avg": 14264 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "fieldcoils", + "amount": 3 + }, + { + "ware": "shieldcomponents", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 104 + }, + { + "ware": "hullparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "shield_arg_m_standard_01_mk2", + "version": 0, + "name": "ARG M Shield Generator Mk2", + "description": "No information available", + "race": "argon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 6133, + "rate": 41, + "delay": 0.5 + }, + "price": { + "min": 62115, + "max": 75918, + "avg": 69017 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "fieldcoils", + "amount": 15 + }, + { + "ware": "shieldcomponents", + "amount": 25 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 89 + }, + { + "ware": "hullparts", + "amount": 19 + } + ] + } + ] + }, + { + "id": "shield_arg_m_standard_02_mk1", + "version": 0, + "name": "ARG M Shield Generator Mk1", + "description": "No information available", + "race": "argon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 5147, + "rate": 26, + "delay": 0.5 + }, + "price": { + "min": 12838, + "max": 15691, + "avg": 14264 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "fieldcoils", + "amount": 3 + }, + { + "ware": "shieldcomponents", + "amount": 5 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 104 + }, + { + "ware": "hullparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "shield_arg_m_standard_02_mk2", + "version": 0, + "name": "ARG M Shield Generator Mk2", + "description": "No information available", + "race": "argon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 6133, + "rate": 41, + "delay": 0.5 + }, + "price": { + "min": 61597, + "max": 75285, + "avg": 68441 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "fieldcoils", + "amount": 15 + }, + { + "ware": "shieldcomponents", + "amount": 25 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 89 + }, + { + "ware": "hullparts", + "amount": 19 + } + ] + } + ] + }, + { + "id": "shield_arg_s_standard_01_mk1", + "version": 0, + "name": "ARG S Shield Generator Mk1", + "description": "No information available", + "race": "argon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 827, + "rate": 82, + "delay": 12.1 + }, + "price": { + "min": 1218, + "max": 1489, + "avg": 1354 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "shieldcomponents", + "amount": 1 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 17 + } + ] + } + ] + }, + { + "id": "shield_arg_s_standard_01_mk2", + "version": 0, + "name": "ARG S Shield Generator Mk2", + "description": "No information available", + "race": "argon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 988, + "rate": 128, + "delay": 12.1 + }, + "price": { + "min": 10186, + "max": 12449, + "avg": 11318 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "fieldcoils", + "amount": 2 + }, + { + "ware": "shieldcomponents", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 81 + }, + { + "ware": "hullparts", + "amount": 3 + } + ] + } + ] + }, + { + "id": "shield_arg_s_standard_01_mk3", + "version": 0, + "name": "ARG S Shield Generator Mk3", + "description": "No information available", + "race": "argon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 1411, + "rate": 219, + "delay": 12.1 + }, + "price": { + "min": 49892, + "max": 60979, + "avg": 55436 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "fieldcoils", + "amount": 10 + }, + { + "ware": "shieldcomponents", + "amount": 25 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 120 + }, + { + "ware": "hullparts", + "amount": 15 + } + ] + } + ] + }, + { + "id": "shield_arg_xl_standard_01_mk1", + "version": 0, + "name": "ARG XL Shield Generator Mk1", + "description": "No information available", + "race": "argon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "extralarge", + "hull": 6000, + "recharge": { + "max": 129481, + "rate": 492, + "delay": 0 + }, + "price": { + "min": 225671, + "max": 275820, + "avg": 250745 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 150 + }, + { + "ware": "fieldcoils", + "amount": 82 + }, + { + "ware": "shieldcomponents", + "amount": 30 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 12 + }, + { + "ware": "energycells", + "amount": 170 + }, + { + "ware": "hullparts", + "amount": 70 + } + ] + } + ] + }, + { + "id": "shield_kha_m_standard_01_mk1", + "version": 0, + "name": "KHA M Shield Generator Mk1", + "description": "No information available", + "race": "khaak", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "recharge": { + "max": 4632, + "rate": 25, + "delay": 0.57 + }, + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "owners": [ + "khaak" + ], + "production": [] + }, + { + "id": "shield_kha_m_standard_02_mk1", + "version": 0, + "name": "KHA M Shield Generator Mk1", + "description": "No information available", + "race": "khaak", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "recharge": { + "max": 4632, + "rate": 25, + "delay": 0.57 + }, + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "owners": [ + "khaak" + ], + "production": [] + }, + { + "id": "shield_kha_s_standard_01_mk1", + "version": 0, + "name": "KHA S Shield Generator Mk1", + "description": "No information available", + "race": "khaak", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 745, + "rate": 79, + "delay": 13.9 + }, + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "owners": [ + "khaak" + ], + "production": [] + }, + { + "id": "shield_par_l_standard_01_mk1", + "version": 0, + "name": "PAR L Shield Generator Mk1", + "description": "No information available", + "race": "paranid", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 2000, + "recharge": { + "max": 34960, + "rate": 184, + "delay": 0 + }, + "price": { + "min": 42166, + "max": 51536, + "avg": 46851 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "fieldcoils", + "amount": 13 + }, + { + "ware": "shieldcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "shield_par_l_standard_01_mk2", + "version": 0, + "name": "PAR L Shield Generator Mk2", + "description": "No information available", + "race": "paranid", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 2000, + "recharge": { + "max": 41654, + "rate": 284, + "delay": 0 + }, + "price": { + "min": 205644, + "max": 251343, + "avg": 228494 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "fieldcoils", + "amount": 65 + }, + { + "ware": "shieldcomponents", + "amount": 50 + } + ] + } + ] + }, + { + "id": "shield_par_m_standard_01_mk1", + "version": 0, + "name": "PAR M Shield Generator Mk1", + "description": "No information available", + "race": "paranid", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 4632, + "rate": 28, + "delay": 0.42 + }, + "price": { + "min": 12838, + "max": 15691, + "avg": 14264 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "fieldcoils", + "amount": 3 + }, + { + "ware": "shieldcomponents", + "amount": 5 + } + ] + } + ] + }, + { + "id": "shield_par_m_standard_01_mk2", + "version": 0, + "name": "PAR M Shield Generator Mk2", + "description": "No information available", + "race": "paranid", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 5520, + "rate": 43, + "delay": 0.42 + }, + "price": { + "min": 62115, + "max": 75918, + "avg": 69017 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "fieldcoils", + "amount": 15 + }, + { + "ware": "shieldcomponents", + "amount": 25 + } + ] + } + ] + }, + { + "id": "shield_par_m_standard_02_mk1", + "version": 0, + "name": "PAR M Shield Generator Mk1", + "description": "No information available", + "race": "paranid", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 4632, + "rate": 28, + "delay": 0.42 + }, + "price": { + "min": 12015, + "max": 14685, + "avg": 13350 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "fieldcoils", + "amount": 3 + }, + { + "ware": "shieldcomponents", + "amount": 5 + } + ] + } + ] + }, + { + "id": "shield_par_m_standard_02_mk2", + "version": 0, + "name": "PAR M Shield Generator Mk2", + "description": "No information available", + "race": "paranid", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 5520, + "rate": 43, + "delay": 0.42 + }, + "price": { + "min": 26058, + "max": 31849, + "avg": 28954 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "fieldcoils", + "amount": 15 + }, + { + "ware": "shieldcomponents", + "amount": 25 + } + ] + } + ] + }, + { + "id": "shield_par_s_standard_01_mk1", + "version": 0, + "name": "PAR S Shield Generator Mk1", + "description": "No information available", + "race": "paranid", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 745, + "rate": 87, + "delay": 10.2 + }, + "price": { + "min": 1218, + "max": 1489, + "avg": 1354 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "shieldcomponents", + "amount": 1 + } + ] + } + ] + }, + { + "id": "shield_par_s_standard_01_mk2", + "version": 0, + "name": "PAR S Shield Generator Mk2", + "description": "No information available", + "race": "paranid", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 889, + "rate": 135, + "delay": 10.2 + }, + "price": { + "min": 10186, + "max": 12449, + "avg": 11318 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "fieldcoils", + "amount": 2 + }, + { + "ware": "shieldcomponents", + "amount": 5 + } + ] + } + ] + }, + { + "id": "shield_par_s_standard_01_mk3", + "version": 0, + "name": "PAR S Shield Generator Mk3", + "description": "No information available", + "race": "paranid", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 1270, + "rate": 232, + "delay": 10.2 + }, + "price": { + "min": 49892, + "max": 60979, + "avg": 55436 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "fieldcoils", + "amount": 10 + }, + { + "ware": "shieldcomponents", + "amount": 25 + } + ] + } + ] + }, + { + "id": "shield_par_xl_standard_01_mk1", + "version": 0, + "name": "PAR XL Shield Generator Mk1", + "description": "No information available", + "race": "paranid", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "extralarge", + "hull": 6000, + "recharge": { + "max": 116532, + "rate": 521, + "delay": 0 + }, + "price": { + "min": 225671, + "max": 275820, + "avg": 250745 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 150 + }, + { + "ware": "fieldcoils", + "amount": 82 + }, + { + "ware": "shieldcomponents", + "amount": 30 + } + ] + } + ] + }, + { + "id": "shield_tel_l_standard_01_mk1", + "version": 0, + "name": "TEL L Shield Generator Mk1", + "description": "No information available", + "race": "teladi", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 2000, + "recharge": { + "max": 42729, + "rate": 166, + "delay": 0 + }, + "price": { + "min": 42166, + "max": 51536, + "avg": 46851 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "fieldcoils", + "amount": 13 + }, + { + "ware": "shieldcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "shield_tel_l_standard_01_mk2", + "version": 0, + "name": "TEL L Shield Generator Mk2", + "description": "No information available", + "race": "teladi", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 2000, + "recharge": { + "max": 50911, + "rate": 257, + "delay": 0 + }, + "price": { + "min": 205644, + "max": 251343, + "avg": 228494 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "fieldcoils", + "amount": 65 + }, + { + "ware": "shieldcomponents", + "amount": 50 + } + ] + } + ] + }, + { + "id": "shield_tel_m_standard_01_mk1", + "version": 0, + "name": "TEL M Shield Generator Mk1", + "description": "No information available", + "race": "teladi", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 5662, + "rate": 25, + "delay": 0.57 + }, + "price": { + "min": 12838, + "max": 15691, + "avg": 14264 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "fieldcoils", + "amount": 3 + }, + { + "ware": "shieldcomponents", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 104 + }, + { + "ware": "hullparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "shield_tel_m_standard_01_mk2", + "version": 0, + "name": "TEL M Shield Generator Mk2", + "description": "No information available", + "race": "teladi", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 6746, + "rate": 39, + "delay": 0.57 + }, + "price": { + "min": 62115, + "max": 75918, + "avg": 69017 + }, + "owners": [ + "alliance", + "ministry", + "teladi", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "fieldcoils", + "amount": 15 + }, + { + "ware": "shieldcomponents", + "amount": 25 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 89 + }, + { + "ware": "hullparts", + "amount": 19 + } + ] + } + ] + }, + { + "id": "shield_tel_m_standard_02_mk1", + "version": 0, + "name": "TEL M Shield Generator Mk1", + "description": "No information available", + "race": "teladi", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 5662, + "rate": 25, + "delay": 0.57 + }, + "price": { + "min": 12015, + "max": 14685, + "avg": 13350 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "fieldcoils", + "amount": 3 + }, + { + "ware": "shieldcomponents", + "amount": 5 + } + ] + } + ] + }, + { + "id": "shield_tel_m_standard_02_mk2", + "version": 0, + "name": "TEL M Shield Generator Mk2", + "description": "No information available", + "race": "teladi", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 6746, + "rate": 39, + "delay": 0.57 + }, + "price": { + "min": 26058, + "max": 31849, + "avg": 28954 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "fieldcoils", + "amount": 15 + }, + { + "ware": "shieldcomponents", + "amount": 25 + } + ] + } + ] + }, + { + "id": "shield_tel_s_standard_01_mk1", + "version": 0, + "name": "TEL S Shield Generator Mk1", + "description": "No information available", + "race": "teladi", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 910, + "rate": 79, + "delay": 13.9 + }, + "price": { + "min": 1218, + "max": 1489, + "avg": 1354 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "shieldcomponents", + "amount": 1 + } + ] + } + ] + }, + { + "id": "shield_tel_s_standard_01_mk2", + "version": 0, + "name": "TEL S Shield Generator Mk2", + "description": "No information available", + "race": "teladi", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 1087, + "rate": 122, + "delay": 13.9 + }, + "price": { + "min": 10186, + "max": 12449, + "avg": 11318 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "fieldcoils", + "amount": 2 + }, + { + "ware": "shieldcomponents", + "amount": 5 + } + ] + } + ] + }, + { + "id": "shield_tel_s_standard_01_mk3", + "version": 0, + "name": "TEL S Shield Generator Mk3", + "description": "No information available", + "race": "teladi", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 1552, + "rate": 210, + "delay": 13.9 + }, + "price": { + "min": 49892, + "max": 60979, + "avg": 55436 + }, + "owners": [ + "alliance", + "ministry", + "teladi", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "fieldcoils", + "amount": 10 + }, + { + "ware": "shieldcomponents", + "amount": 25 + } + ] + } + ] + }, + { + "id": "shield_tel_xl_standard_01_mk1", + "version": 0, + "name": "TEL XL Shield Generator Mk1", + "description": "No information available", + "race": "teladi", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "extralarge", + "hull": 6000, + "recharge": { + "max": 142429, + "rate": 470, + "delay": 0 + }, + "price": { + "min": 225671, + "max": 275820, + "avg": 250745 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 150 + }, + { + "ware": "fieldcoils", + "amount": 82 + }, + { + "ware": "shieldcomponents", + "amount": 30 + } + ] + } + ] + }, + { + "id": "shield_xen_l_standard_01_mk1", + "version": 0, + "name": "XEN L Shield Generator Mk1", + "description": "No information available", + "race": "xenon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 2000, + "recharge": { + "max": 36902, + "rate": 194, + "delay": 0 + }, + "price": { + "min": 41386, + "max": 50582, + "avg": 45984 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 25 + }, + { + "ware": "ore", + "amount": 51 + }, + { + "ware": "silicon", + "amount": 51 + } + ] + } + ] + }, + { + "id": "shield_xen_l_standard_01_mk2", + "version": 0, + "name": "XEN L Shield Generator Mk2", + "description": "No information available", + "race": "xenon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 2000, + "recharge": { + "max": 43968, + "rate": 300, + "delay": 0 + }, + "price": { + "min": 110765, + "max": 135379, + "avg": 123072 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "ore", + "amount": 138 + }, + { + "ware": "silicon", + "amount": 138 + } + ] + } + ] + }, + { + "id": "shield_xen_m_standard_01_mk1", + "version": 0, + "name": "XEN M Shield Generator Mk1", + "description": "No information available", + "race": "xenon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 4890, + "rate": 29, + "delay": 0.55 + }, + "price": { + "min": 13478, + "max": 16474, + "avg": 14976 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "ore", + "amount": 16 + }, + { + "ware": "silicon", + "amount": 16 + } + ] + } + ] + }, + { + "id": "shield_xen_m_standard_01_mk2", + "version": 0, + "name": "XEN M Shield Generator Mk2", + "description": "No information available", + "race": "xenon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 5826, + "rate": 45, + "delay": 0.55 + }, + "price": { + "min": 27821, + "max": 34003, + "avg": 30912 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "ore", + "amount": 34 + }, + { + "ware": "silicon", + "amount": 34 + } + ] + } + ] + }, + { + "id": "shield_xen_m_standard_02_mk1", + "version": 0, + "name": "XEN M Shield Generator Mk1", + "description": "No information available", + "race": "xenon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 4890, + "rate": 29, + "delay": 0.55 + }, + "price": { + "min": 13478, + "max": 16474, + "avg": 14976 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "ore", + "amount": 16 + }, + { + "ware": "silicon", + "amount": 16 + } + ] + } + ] + }, + { + "id": "shield_xen_m_standard_02_mk2", + "version": 0, + "name": "XEN M Shield Generator Mk2", + "description": "No information available", + "race": "xenon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 5826, + "rate": 45, + "delay": 0.55 + }, + "price": { + "min": 27821, + "max": 34003, + "avg": 30912 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "ore", + "amount": 34 + }, + { + "ware": "silicon", + "amount": 34 + } + ] + } + ] + }, + { + "id": "shield_xen_s_standard_01_mk1", + "version": 0, + "name": "XEN S Shield Generator Mk1", + "description": "No information available", + "race": "xenon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 786, + "rate": 92, + "delay": 13.3 + }, + "price": { + "min": 1901, + "max": 2323, + "avg": 2112 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "ore", + "amount": 2 + }, + { + "ware": "silicon", + "amount": 2 + } + ] + } + ] + }, + { + "id": "shield_xen_s_standard_01_mk2", + "version": 0, + "name": "XEN S Shield Generator Mk2", + "description": "No information available", + "race": "xenon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 938, + "rate": 143, + "delay": 13.3 + }, + "price": { + "min": 4579, + "max": 5597, + "avg": 5088 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 5 + }, + { + "ware": "silicon", + "amount": 5 + } + ] + } + ] + }, + { + "id": "shield_xen_xl_standard_01_mk1", + "version": 0, + "name": "XEN XL Shield Generator Mk1", + "description": "No information available", + "race": "xenon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "extralarge", + "hull": 6000, + "recharge": { + "max": 123007, + "rate": 550, + "delay": 0 + }, + "price": { + "min": 221493, + "max": 270714, + "avg": 246104 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 77 + }, + { + "ware": "ore", + "amount": 278 + }, + { + "ware": "silicon", + "amount": 278 + } + ] + } + ] + }, + { + "id": "ship_arg_xs_police_01_a", + "version": 0, + "name": "Argon Station Security Vessel", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_xs", + "hull": 281, + "price": { + "min": 9707, + "max": 13133, + "avg": 11420 + }, + "owners": [ + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 60, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "dronecomponents", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "smartchips", + "amount": 10 + } + ] + }, + { + "time": 60, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 104 + }, + { + "ware": "hullparts", + "amount": 3 + } + ] + } + ] + }, + { + "id": "ship_gen_s_fightingdrone_01_a", + "version": 0, + "name": "Defence Drone", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_s", + "hull": 1900, + "price": { + "min": 11611, + "max": 15709, + "avg": 13660 + }, + "production": [ + { + "time": 90, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "dronecomponents", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "smartchips", + "amount": 30 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "ore", + "amount": 10 + }, + { + "ware": "silicon", + "amount": 10 + } + ] + }, + { + "time": 90, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 500 + }, + { + "ware": "metallicmicrolattice", + "amount": 29 + }, + { + "ware": "siliconcarbide", + "amount": 3 + } + ] + }, + { + "time": 90, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 21 + }, + { + "ware": "hullparts", + "amount": 5 + } + ] + } + ] + }, + { + "id": "ship_gen_s_miningdrone_liquid_01_a", + "version": 0, + "name": "Gas Collector Drone", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_s", + "hull": 1700, + "price": { + "min": 11781, + "max": 15939, + "avg": 13860 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "dronecomponents", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "smartchips", + "amount": 20 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "ore", + "amount": 15 + }, + { + "ware": "silicon", + "amount": 10 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 500 + }, + { + "ware": "metallicmicrolattice", + "amount": 33 + }, + { + "ware": "siliconcarbide", + "amount": 3 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 126 + }, + { + "ware": "hullparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "ship_gen_s_miningdrone_solid_01_a", + "version": 0, + "name": "Mining Drone", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_s", + "hull": 1700, + "price": { + "min": 11781, + "max": 15939, + "avg": 13860 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "dronecomponents", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "smartchips", + "amount": 20 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "ore", + "amount": 15 + }, + { + "ware": "silicon", + "amount": 10 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 500 + }, + { + "ware": "metallicmicrolattice", + "amount": 33 + }, + { + "ware": "siliconcarbide", + "amount": 3 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 126 + }, + { + "ware": "hullparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "ship_gen_xs_buildingdrone_01_a", + "version": 0, + "name": "Building Drone", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_xs", + "hull": 207, + "price": { + "min": 12980, + "max": 17561, + "avg": 15270 + }, + "production": [ + { + "time": 60, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "dronecomponents", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "smartchips", + "amount": 10 + } + ] + }, + { + "time": 3, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 14 + }, + { + "ware": "ore", + "amount": 20 + }, + { + "ware": "silicon", + "amount": 20 + } + ] + }, + { + "time": 60, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 500 + }, + { + "ware": "metallicmicrolattice", + "amount": 33 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + }, + { + "time": 60, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 104 + }, + { + "ware": "hullparts", + "amount": 3 + } + ] + } + ] + }, + { + "id": "ship_gen_xs_cargodrone_empty_01_a", + "version": 0, + "name": "Cargo Drone", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_xs", + "hull": 523, + "price": { + "min": 13728, + "max": 18573, + "avg": 16150 + }, + "production": [ + { + "time": 60, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "dronecomponents", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "smartchips", + "amount": 10 + } + ] + }, + { + "time": 6, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 36 + }, + { + "ware": "ore", + "amount": 20 + }, + { + "ware": "silicon", + "amount": 20 + } + ] + }, + { + "time": 60, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 500 + }, + { + "ware": "metallicmicrolattice", + "amount": 51 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + }, + { + "time": 60, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 104 + }, + { + "ware": "hullparts", + "amount": 3 + } + ] + } + ] + }, + { + "id": "ship_gen_xs_repairdrone_01_a", + "version": 0, + "name": "Repair Drone", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_xs", + "hull": 207, + "price": { + "min": 12980, + "max": 17561, + "avg": 15270 + }, + "production": [ + { + "time": 60, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "dronecomponents", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "smartchips", + "amount": 10 + } + ] + }, + { + "time": 3, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 14 + }, + { + "ware": "ore", + "amount": 20 + }, + { + "ware": "silicon", + "amount": 20 + } + ] + }, + { + "time": 60, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 500 + }, + { + "ware": "metallicmicrolattice", + "amount": 33 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + }, + { + "time": 60, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 104 + }, + { + "ware": "hullparts", + "amount": 3 + } + ] + } + ] + }, + { + "id": "ship_par_xs_police_01_a", + "version": 0, + "name": "Paranid Station Security Vessel", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_xs", + "hull": 281, + "price": { + "min": 9707, + "max": 13133, + "avg": 11420 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 60, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "dronecomponents", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "smartchips", + "amount": 10 + } + ] + } + ] + }, + { + "id": "ship_tel_xs_police_01_a", + "version": 0, + "name": "Teladi Station Security Vessel A", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_xs", + "hull": 281, + "price": { + "min": 9707, + "max": 13133, + "avg": 11420 + }, + "owners": [ + "ministry", + "teladi" + ], + "production": [ + { + "time": 60, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "dronecomponents", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "smartchips", + "amount": 10 + } + ] + } + ] + }, + { + "id": "ship_tel_xs_police_02_a", + "version": 0, + "name": "Teladi Station Security Vessel B", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_xs", + "hull": 281, + "price": { + "min": 9707, + "max": 13133, + "avg": 11420 + }, + "owners": [ + "ministry", + "teladi" + ], + "production": [ + { + "time": 60, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "dronecomponents", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "smartchips", + "amount": 10 + } + ] + } + ] + }, + { + "id": "ship_tel_xs_police_03_a", + "version": 0, + "name": "Teladi Station Security Vessel C", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_xs", + "hull": 281, + "price": { + "min": 9707, + "max": 13133, + "avg": 11420 + }, + "owners": [ + "ministry", + "teladi" + ], + "production": [ + { + "time": 60, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "dronecomponents", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "smartchips", + "amount": 10 + } + ] + } + ] + }, + { + "id": "software_dockmk1", + "version": 0, + "name": "Docking Computer Mk1", + "description": "This flight software automates the final stages of the docking procedure.", + "type": "software", + "price": { + "min": 5000, + "max": 10000, + "avg": 7500 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [] + } + ] + }, + { + "id": "software_dockmk2", + "version": 0, + "name": "Docking Computer Mk2", + "description": "This flight software increases the range at which the docking procedure can be automated.", + "type": "software", + "price": { + "min": 24576, + "max": 40960, + "avg": 32768 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [] + } + ] + }, + { + "id": "software_flightassistmk1", + "version": 0, + "name": "Flight Assist Software Mk1", + "description": "This flight software assists a pilot by automatically compensating for drift when changing flight direction.", + "type": "software", + "price": { + "min": 6825, + "max": 11375, + "avg": 9100 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [] + } + ] + }, + { + "id": "software_scannerlongrangemk1", + "version": 0, + "name": "Long-range Scanner Software Mk1", + "description": "This scanning software provides a means to detect objects at great distances.", + "type": "software", + "equipmentClass": "scanner", + "price": { + "min": 29274, + "max": 35779, + "avg": 32526 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [] + } + ] + }, + { + "id": "software_scannerlongrangemk2", + "version": 0, + "name": "Long-range Scanner Software Mk2", + "description": "This scanning software increases scan resolution, allowing more accurate identification of certain types of objects.", + "type": "software", + "equipmentClass": "scanner", + "price": { + "min": 58547, + "max": 71558, + "avg": 65052 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [] + } + ] + }, + { + "id": "software_scannerobjectmk1", + "version": 0, + "name": "Basic Scanner", + "description": "This scanning software provides basic identification of nearby objects.", + "type": "software", + "equipmentClass": "scanner", + "price": { + "min": 10907, + "max": 13331, + "avg": 12119 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [] + } + ] + }, + { + "id": "software_scannerobjectmk2", + "version": 0, + "name": "Police Scanner", + "description": "This scanning software allows a pilot to inspect the contents of the cargo hold of another ship. Its use is illegal unless an appropriate police licence has been obtained.", + "type": "software", + "equipmentClass": "scanner", + "price": { + "min": 36733, + "max": 44896, + "avg": 40815 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [] + } + ] + }, + { + "id": "software_targetmk1", + "version": 0, + "name": "Targeting Computer Extension Mk1", + "description": "This targeting software allows a ship's targeting system to lock on to small objects such as debris and floating containers.", + "type": "software", + "price": { + "min": 6144, + "max": 10240, + "avg": 8192 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [] + } + ] + }, + { + "id": "software_trademk1", + "version": 0, + "name": "Trading Computer Extension Mk1", + "description": "This trading software maintains a link to potential buyers and sellers for a limited time, to provide current trade offer information.", + "type": "software", + "price": { + "min": 8438, + "max": 14063, + "avg": 11250 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [] + } + ] + }, + { + "id": "thruster_gen_l_allround_01_mk1", + "version": 0, + "name": "L All-round Thrusters Mk1", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "large", + "price": { + "min": 253435, + "max": 309754, + "avg": 281595 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 120 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 48 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 324 + }, + { + "ware": "silicon", + "amount": 324 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 28 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 173 + }, + { + "ware": "siliconcarbide", + "amount": 28 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 15 + }, + { + "ware": "energycells", + "amount": 175 + }, + { + "ware": "hullparts", + "amount": 86 + } + ] + } + ] + }, + { + "id": "thruster_gen_l_allround_01_mk2", + "version": 0, + "name": "L All-round Thrusters Mk2", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "large", + "price": { + "min": 1266139, + "max": 1547503, + "avg": 1406821 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 600 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 240 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "ore", + "amount": 648 + }, + { + "ware": "silicon", + "amount": 648 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 144 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 724 + }, + { + "ware": "siliconcarbide", + "amount": 124 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 75 + }, + { + "ware": "energycells", + "amount": 859 + }, + { + "ware": "hullparts", + "amount": 429 + } + ] + } + ] + }, + { + "id": "thruster_gen_l_allround_01_mk3", + "version": 0, + "name": "L All-round Thrusters Mk3", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "large", + "price": { + "min": 6328619, + "max": 7734979, + "avg": 7031799 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 3000 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "engineparts", + "amount": 1200 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "ore", + "amount": 1296 + }, + { + "ware": "silicon", + "amount": 1296 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 721 + }, + { + "ware": "energycells", + "amount": 400 + }, + { + "ware": "metallicmicrolattice", + "amount": 3571 + }, + { + "ware": "siliconcarbide", + "amount": 621 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 376 + }, + { + "ware": "energycells", + "amount": 4106 + }, + { + "ware": "hullparts", + "amount": 2145 + } + ] + } + ] + }, + { + "id": "thruster_gen_m_allround_01_mk1", + "version": 0, + "name": "M All-round Thrusters Mk1", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 11717, + "max": 14321, + "avg": 13019 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "engineparts", + "amount": 4 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "ore", + "amount": 15 + }, + { + "ware": "silicon", + "amount": 15 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 23 + }, + { + "ware": "siliconcarbide", + "amount": 2 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "hullparts", + "amount": 3 + } + ] + } + ] + }, + { + "id": "thruster_gen_m_allround_01_mk2", + "version": 0, + "name": "M All-round Thrusters Mk2", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 58067, + "max": 70971, + "avg": 64519 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 20 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 20 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 30 + }, + { + "ware": "silicon", + "amount": 30 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 68 + }, + { + "ware": "siliconcarbide", + "amount": 7 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 62 + }, + { + "ware": "hullparts", + "amount": 18 + } + ] + } + ] + }, + { + "id": "thruster_gen_m_allround_01_mk3", + "version": 0, + "name": "M All-round Thrusters Mk3", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 289300, + "max": 353589, + "avg": 321445 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 100 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 100 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "ore", + "amount": 60 + }, + { + "ware": "silicon", + "amount": 60 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 32 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 191 + }, + { + "ware": "siliconcarbide", + "amount": 31 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 15 + }, + { + "ware": "energycells", + "amount": 282 + }, + { + "ware": "hullparts", + "amount": 90 + } + ] + } + ] + }, + { + "id": "thruster_gen_m_combat_01_mk1", + "version": 0, + "name": "M Combat Thrusters Mk1", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 14899, + "max": 18210, + "avg": 16555 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "engineparts", + "amount": 4 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "ore", + "amount": 19 + }, + { + "ware": "silicon", + "amount": 19 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 37 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 131 + }, + { + "ware": "hullparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "thruster_gen_m_combat_01_mk2", + "version": 0, + "name": "M Combat Thrusters Mk2", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 73978, + "max": 90418, + "avg": 82198 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 30 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 20 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 38 + }, + { + "ware": "silicon", + "amount": 38 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 62 + }, + { + "ware": "siliconcarbide", + "amount": 8 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 78 + }, + { + "ware": "hullparts", + "amount": 24 + } + ] + } + ] + }, + { + "id": "thruster_gen_m_combat_01_mk3", + "version": 0, + "name": "M Combat Thrusters Mk3", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 368854, + "max": 450821, + "avg": 409838 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 150 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 100 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "ore", + "amount": 76 + }, + { + "ware": "silicon", + "amount": 76 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 41 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 242 + }, + { + "ware": "siliconcarbide", + "amount": 39 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 21 + }, + { + "ware": "energycells", + "amount": 244 + }, + { + "ware": "hullparts", + "amount": 119 + } + ] + } + ] + }, + { + "id": "thruster_gen_s_allround_01_mk1", + "version": 0, + "name": "S All-round Thrusters Mk1", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 5353, + "max": 6542, + "avg": 5948 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "engineparts", + "amount": 4 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "ore", + "amount": 7 + }, + { + "ware": "silicon", + "amount": 7 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 19 + }, + { + "ware": "siliconcarbide", + "amount": 3 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 37 + }, + { + "ware": "hullparts", + "amount": 1 + } + ] + } + ] + }, + { + "id": "thruster_gen_s_allround_01_mk2", + "version": 0, + "name": "S All-round Thrusters Mk2", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 83968, + "max": 102627, + "avg": 93298 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 20 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 40 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 14 + }, + { + "ware": "silicon", + "amount": 14 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 9 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 62 + }, + { + "ware": "siliconcarbide", + "amount": 10 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 84 + }, + { + "ware": "hullparts", + "amount": 24 + } + ] + } + ] + }, + { + "id": "thruster_gen_s_allround_01_mk3", + "version": 0, + "name": "S All-round Thrusters Mk3", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 199757, + "max": 244147, + "avg": 221952 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 60 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 80 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "ore", + "amount": 28 + }, + { + "ware": "silicon", + "amount": 28 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 22 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 139 + }, + { + "ware": "siliconcarbide", + "amount": 21 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 10 + }, + { + "ware": "energycells", + "amount": 199 + }, + { + "ware": "hullparts", + "amount": 60 + } + ] + } + ] + }, + { + "id": "thruster_gen_s_combat_01_mk1", + "version": 0, + "name": "S Combat Thrusters Mk1", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 6241, + "max": 7628, + "avg": 6934 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "engineparts", + "amount": 1 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "ore", + "amount": 8 + }, + { + "ware": "silicon", + "amount": 8 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 39 + }, + { + "ware": "siliconcarbide", + "amount": 3 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 57 + }, + { + "ware": "hullparts", + "amount": 2 + } + ] + } + ] + }, + { + "id": "thruster_gen_s_combat_01_mk2", + "version": 0, + "name": "S Combat Thrusters Mk2", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 39752, + "max": 48586, + "avg": 44169 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 15 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 12 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 16 + }, + { + "ware": "silicon", + "amount": 16 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 48 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 67 + }, + { + "ware": "hullparts", + "amount": 12 + } + ] + } + ] + }, + { + "id": "thruster_gen_s_combat_01_mk3", + "version": 0, + "name": "S Combat Thrusters Mk3", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 157946, + "max": 193045, + "avg": 175495 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 50 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 60 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "ore", + "amount": 32 + }, + { + "ware": "silicon", + "amount": 32 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 17 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 123 + }, + { + "ware": "siliconcarbide", + "amount": 18 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 162 + }, + { + "ware": "hullparts", + "amount": 48 + } + ] + } + ] + }, + { + "id": "thruster_gen_xl_allround_01_mk1", + "version": 0, + "name": "XL All-round Thrusters Mk1", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "extralarge", + "price": { + "min": 538346, + "max": 657978, + "avg": 598162 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 260 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "engineparts", + "amount": 96 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 687 + }, + { + "ware": "silicon", + "amount": 687 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 61 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 333 + }, + { + "ware": "siliconcarbide", + "amount": 53 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 32 + }, + { + "ware": "energycells", + "amount": 384 + }, + { + "ware": "hullparts", + "amount": 183 + } + ] + } + ] + }, + { + "id": "thruster_gen_xl_allround_01_mk2", + "version": 0, + "name": "XL All-round Thrusters Mk2", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "extralarge", + "price": { + "min": 2690693, + "max": 3288625, + "avg": 2989659 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 1300 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "engineparts", + "amount": 480 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "ore", + "amount": 1374 + }, + { + "ware": "silicon", + "amount": 1374 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 306 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 1543 + }, + { + "ware": "siliconcarbide", + "amount": 266 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 161 + }, + { + "ware": "energycells", + "amount": 1737 + }, + { + "ware": "hullparts", + "amount": 917 + } + ] + } + ] + }, + { + "id": "thruster_gen_xl_allround_01_mk3", + "version": 0, + "name": "XL All-round Thrusters Mk3", + "description": "No information available", + "type": "thrusters", + "equipmentClass": "engine", + "size": "extralarge", + "price": { + "min": 13451392, + "max": 16440590, + "avg": 14945991 + }, + "thrust": { + "forward": 0, + "reverse": 0 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 6500 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "engineparts", + "amount": 2400 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "ore", + "amount": 2748 + }, + { + "ware": "silicon", + "amount": 2748 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1533 + }, + { + "ware": "energycells", + "amount": 400 + }, + { + "ware": "metallicmicrolattice", + "amount": 7559 + }, + { + "ware": "siliconcarbide", + "amount": 1323 + } + ] + }, + { + "time": 30, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 805 + }, + { + "ware": "energycells", + "amount": 8623 + }, + { + "ware": "hullparts", + "amount": 4585 + } + ] + } + ] + }, + { + "id": "turret_arg_l_beam_01_mk1", + "version": 0, + "name": "ARG L Beam Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 2300, + "price": { + "min": 135464, + "max": 165567, + "avg": 150515 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 18 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 30 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 7 + }, + { + "ware": "energycells", + "amount": 195 + }, + { + "ware": "hullparts", + "amount": 44 + } + ] + } + ] + }, + { + "id": "turret_arg_l_dumbfire_01_mk1", + "version": 0, + "name": "ARG L Dumbfire Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "large", + "hull": 5000, + "price": { + "min": 67905, + "max": 82995, + "avg": 75450 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 9 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 15 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 166 + }, + { + "ware": "hullparts", + "amount": 22 + } + ] + } + ] + }, + { + "id": "turret_arg_l_guided_01_mk1", + "version": 0, + "name": "ARG L Tracking Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "large", + "hull": 5000, + "price": { + "min": 78261, + "max": 95652, + "avg": 86957 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 30 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 79 + }, + { + "ware": "hullparts", + "amount": 24 + } + ] + } + ] + }, + { + "id": "turret_arg_l_laser_01_mk1", + "version": 0, + "name": "ARG L Pulse Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 2300, + "price": { + "min": 52289, + "max": 63909, + "avg": 58099 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 20 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 141 + }, + { + "ware": "hullparts", + "amount": 16 + } + ] + } + ] + }, + { + "id": "turret_arg_l_mining_01_mk1", + "version": 0, + "name": "ARG L Mining Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 2300, + "price": { + "min": 49166, + "max": 60092, + "avg": 54629 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 21 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 121 + }, + { + "ware": "hullparts", + "amount": 14 + } + ] + } + ] + }, + { + "id": "turret_arg_l_plasma_01_mk1", + "version": 0, + "name": "ARG L Plasma Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 2300, + "price": { + "min": 93055, + "max": 113734, + "avg": 103395 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 39 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 180 + }, + { + "ware": "hullparts", + "amount": 28 + } + ] + } + ] + }, + { + "id": "turret_arg_m_beam_01_mk1", + "version": 0, + "name": "ARG M Beam Turret Mk1", + "description": "Beam Turret", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 45385, + "max": 55471, + "avg": 50428 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 110 + }, + { + "ware": "hullparts", + "amount": 15 + } + ] + } + ] + }, + { + "id": "turret_arg_m_beam_02_mk1", + "version": 0, + "name": "ARG M Beam Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 500, + "price": { + "min": 45385, + "max": 55471, + "avg": 50428 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 110 + }, + { + "ware": "hullparts", + "amount": 15 + } + ] + } + ] + }, + { + "id": "turret_arg_m_dumbfire_02_mk1", + "version": 0, + "name": "ARG M Dumbfire Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "medium", + "hull": 1100, + "price": { + "min": 22865, + "max": 27946, + "avg": 25406 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 67 + }, + { + "ware": "hullparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "turret_arg_m_flak_01_mk1", + "version": 0, + "name": "ARG M Flak Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 41730, + "max": 87581, + "avg": 64655 + }, + "owners": [ + "alliance", + "argon", + "buccaneers" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 18 + }, + { + "ware": "turretcomponents", + "amount": 21 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 76 + }, + { + "ware": "hullparts", + "amount": 18 + } + ] + } + ] + }, + { + "id": "turret_arg_m_flak_02_mk1", + "version": 0, + "name": "ARG M Flak Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 500, + "price": { + "min": 41730, + "max": 87581, + "avg": 64655 + }, + "owners": [ + "alliance", + "argon", + "buccaneers" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 18 + }, + { + "ware": "turretcomponents", + "amount": 21 + } + ] + } + ] + }, + { + "id": "turret_arg_m_gatling_01_mk1", + "version": 0, + "name": "ARG M Bolt Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 24665, + "max": 30147, + "avg": 27406 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 12 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 54 + }, + { + "ware": "hullparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "turret_arg_m_gatling_02_mk1", + "version": 0, + "name": "ARG M Bolt Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 500, + "price": { + "min": 22857, + "max": 27936, + "avg": 25397 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 8 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 49 + }, + { + "ware": "hullparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "turret_arg_m_guided_02_mk1", + "version": 0, + "name": "ARG M Tracking Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "medium", + "hull": 1100, + "price": { + "min": 26317, + "max": 32166, + "avg": 29242 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 75 + }, + { + "ware": "hullparts", + "amount": 8 + } + ] + } + ] + }, + { + "id": "turret_arg_m_laser_01_mk1", + "version": 0, + "name": "ARG M Pulse Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 21378, + "max": 26128, + "avg": 23753 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 33 + }, + { + "ware": "hullparts", + "amount": 6 + } + ] + } + ] + }, + { + "id": "turret_arg_m_laser_02_mk1", + "version": 0, + "name": "ARG M Pulse Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 500, + "price": { + "min": 21378, + "max": 26128, + "avg": 23753 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 33 + }, + { + "ware": "hullparts", + "amount": 6 + } + ] + } + ] + }, + { + "id": "turret_arg_m_mining_01_mk1", + "version": 0, + "name": "ARG M Mining Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 16446, + "max": 20101, + "avg": 18274 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 7 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 123 + }, + { + "ware": "hullparts", + "amount": 5 + } + ] + } + ] + }, + { + "id": "turret_arg_m_mining_02_mk1", + "version": 0, + "name": "ARG M Mining Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 500, + "price": { + "min": 16446, + "max": 20101, + "avg": 18274 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 7 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 123 + }, + { + "ware": "hullparts", + "amount": 5 + } + ] + } + ] + }, + { + "id": "turret_arg_m_plasma_01_mk1", + "version": 0, + "name": "ARG M Plasma Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 31249, + "max": 38193, + "avg": 34721 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 13 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 114 + }, + { + "ware": "hullparts", + "amount": 9 + } + ] + } + ] + }, + { + "id": "turret_arg_m_plasma_02_mk1", + "version": 0, + "name": "ARG M Plasma Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 500, + "price": { + "min": 31249, + "max": 38193, + "avg": 34721 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 13 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 114 + }, + { + "ware": "hullparts", + "amount": 9 + } + ] + } + ] + }, + { + "id": "turret_arg_m_shotgun_01_mk1", + "version": 0, + "name": "ARG M Shard Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 22857, + "max": 27936, + "avg": 25397 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 8 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 49 + }, + { + "ware": "hullparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "turret_arg_m_shotgun_02_mk1", + "version": 0, + "name": "ARG M Shard Turret Mk1", + "description": "No information available", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 500, + "price": { + "min": 24665, + "max": 30147, + "avg": 27406 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 12 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 54 + }, + { + "ware": "hullparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "turret_gen_m_scrapbeam_01_mk1", + "version": 0, + "name": "Scrap Tractor", + "description": "The Scrap Tractor employs an array of graviton beams to leash an object to a towing ship. The beams automatically and independently adjust their focus to further enhance the gravitational forces as the distance between the two objects becomes greater, resulting in an elasticity effect. All resistance is not futile, however, since severe disruptions, such as being hit by weapon fire, will cause the connection to break. Likewise, the graviton beams are inherently unstable until the artificial gravitational field is fully engaged, and even minor distortions such as the lingering effects of depleted shields, or electrical currents behind the target's hull, will prompt them to lose focus. Because of these limitations, the Scrap Tractor is mainly used to tow ship wrecks below a certain size limit, to avoid exceeding the maximum energy output of the weapon mount. For reasons which are not entirely clear, the connection remains stable during Jump Gate traversals.nnThe modern Scrap Tractor has only recently been made available to the wider Gate Network by the Alliance of the Word. The Alliance received the designs for it by deep space messenger drone, sent from the Avarice system, which was once thought lost. It is, however, by no means an entirely new technology. Before the Terran Conflict, and even up until the Gate Shutdown, a predecessor of this weapon - or rather tool - was occasionally deployed by opportunistic scavengers, looking to profit from the ongoing destruction of advanced warships in conflict zones. However, due to the general abundance of resources in the well-connected Gate Network at the time, and the inherent danger of the profession, it never saw widespread use, and the factories necessary for its production were often dismantled as quickly as they sprung up.", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 12154, + "max": 16444, + "avg": 14299 + }, + "owners": [ + "alliance", + "scaleplate", + "teladi", + "pioneers", + "scavenger" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 75 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 46 + }, + { + "ware": "siliconcarbide", + "amount": 2 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 127 + }, + { + "ware": "hullparts", + "amount": 9 + } + ] + } + ] + }, + { + "id": "turret_kha_m_beam_01_mk1", + "version": 0, + "name": "KHA M Kyon Turret Mk1", + "description": "No information available", + "race": "khaak", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 500, + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "owners": [ + "khaak" + ], + "production": [] + }, + { + "id": "turret_par_l_beam_01_mk1", + "version": 0, + "name": "PAR L Beam Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3450, + "price": { + "min": 135464, + "max": 165567, + "avg": 150515 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 18 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 30 + } + ] + } + ] + }, + { + "id": "turret_par_l_dumbfire_01_mk1", + "version": 0, + "name": "PAR L Dumbfire Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "large", + "hull": 7500, + "price": { + "min": 67905, + "max": 82995, + "avg": 75450 + }, + "owners": [ + "alliance", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 9 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 15 + } + ] + } + ] + }, + { + "id": "turret_par_l_guided_01_mk1", + "version": 0, + "name": "PAR L Tracking Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "large", + "hull": 7500, + "price": { + "min": 78261, + "max": 95652, + "avg": 86957 + }, + "owners": [ + "alliance", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 30 + } + ] + } + ] + }, + { + "id": "turret_par_l_laser_01_mk1", + "version": 0, + "name": "PAR L Pulse Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3450, + "price": { + "min": 52289, + "max": 63909, + "avg": 58099 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 20 + } + ] + } + ] + }, + { + "id": "turret_par_l_mining_01_mk1", + "version": 0, + "name": "PAR L Mining Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3450, + "price": { + "min": 49166, + "max": 60092, + "avg": 54629 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 21 + } + ] + } + ] + }, + { + "id": "turret_par_l_plasma_01_mk1", + "version": 0, + "name": "PAR L Plasma Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3450, + "price": { + "min": 93055, + "max": 113734, + "avg": 103395 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 39 + } + ] + } + ] + }, + { + "id": "turret_par_m_beam_01_mk1", + "version": 0, + "name": "PAR M Beam Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 45385, + "max": 55471, + "avg": 50428 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_par_m_beam_02_mk1", + "version": 0, + "name": "PAR M Beam Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 750, + "price": { + "min": 24665, + "max": 30147, + "avg": 27406 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 12 + } + ] + } + ] + }, + { + "id": "turret_par_m_dumbfire_02_mk1", + "version": 0, + "name": "PAR M Dumbfire Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "medium", + "hull": 1650, + "price": { + "min": 31249, + "max": 38193, + "avg": 34721 + }, + "owners": [ + "alliance", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 13 + } + ] + } + ] + }, + { + "id": "turret_par_m_gatling_01_mk1", + "version": 0, + "name": "PAR M Bolt Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 24665, + "max": 30147, + "avg": 27406 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 12 + } + ] + } + ] + }, + { + "id": "turret_par_m_gatling_02_mk1", + "version": 0, + "name": "PAR M Bolt Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 750, + "price": { + "min": 26317, + "max": 32166, + "avg": 29242 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_par_m_guided_02_mk1", + "version": 0, + "name": "PAR M Tracking Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "medium", + "hull": 1650, + "price": { + "min": 45385, + "max": 55471, + "avg": 50428 + }, + "owners": [ + "alliance", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_par_m_laser_01_mk1", + "version": 0, + "name": "PAR M Pulse Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 21378, + "max": 26128, + "avg": 23753 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_par_m_laser_02_mk1", + "version": 0, + "name": "PAR M Pulse Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 750, + "price": { + "min": 16446, + "max": 20101, + "avg": 18274 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 7 + } + ] + } + ] + }, + { + "id": "turret_par_m_mining_01_mk1", + "version": 0, + "name": "PAR M Mining Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 16446, + "max": 20101, + "avg": 18274 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 7 + } + ] + } + ] + }, + { + "id": "turret_par_m_mining_02_mk1", + "version": 0, + "name": "PAR M Mining Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 750, + "price": { + "min": 22857, + "max": 27936, + "avg": 25397 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 8 + } + ] + } + ] + }, + { + "id": "turret_par_m_plasma_01_mk1", + "version": 0, + "name": "PAR M Plasma Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 31249, + "max": 38193, + "avg": 34721 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 13 + } + ] + } + ] + }, + { + "id": "turret_par_m_plasma_02_mk1", + "version": 0, + "name": "PAR M Plasma Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 750, + "price": { + "min": 21378, + "max": 26128, + "avg": 23753 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_par_m_shotgun_01_mk1", + "version": 0, + "name": "PAR M Shard Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 22857, + "max": 27936, + "avg": 25397 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 8 + } + ] + } + ] + }, + { + "id": "turret_par_m_shotgun_02_mk1", + "version": 0, + "name": "PAR M Shard Turret Mk1", + "description": "No information available", + "race": "paranid", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 750, + "price": { + "min": 22865, + "max": 27946, + "avg": 25406 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 5 + } + ] + } + ] + }, + { + "id": "turret_tel_l_beam_01_mk1", + "version": 0, + "name": "TEL L Beam Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3450, + "price": { + "min": 135460, + "max": 165562, + "avg": 150511 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 18 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 30 + } + ] + } + ] + }, + { + "id": "turret_tel_l_dumbfire_01_mk1", + "version": 0, + "name": "TEL L Dumbfire Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "large", + "hull": 7500, + "price": { + "min": 67903, + "max": 82992, + "avg": 75447 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 9 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 15 + } + ] + } + ] + }, + { + "id": "turret_tel_l_guided_01_mk1", + "version": 0, + "name": "TEL L Tracking Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "large", + "hull": 7500, + "price": { + "min": 78257, + "max": 95647, + "avg": 86952 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 30 + } + ] + } + ] + }, + { + "id": "turret_tel_l_laser_01_mk1", + "version": 0, + "name": "TEL L Pulse Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3450, + "price": { + "min": 52286, + "max": 63906, + "avg": 58096 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 20 + } + ] + } + ] + }, + { + "id": "turret_tel_l_mining_01_mk1", + "version": 0, + "name": "TEL L Mining Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3450, + "price": { + "min": 49163, + "max": 60088, + "avg": 54626 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 21 + } + ] + } + ] + }, + { + "id": "turret_tel_l_plasma_01_mk1", + "version": 0, + "name": "TEL L Plasma Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3450, + "price": { + "min": 93050, + "max": 113728, + "avg": 103389 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 39 + } + ] + } + ] + }, + { + "id": "turret_tel_m_beam_01_mk1", + "version": 0, + "name": "TEL M Beam Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 45384, + "max": 55469, + "avg": 50426 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_tel_m_beam_02_mk1", + "version": 0, + "name": "TEL M Beam Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 750, + "price": { + "min": 45384, + "max": 55469, + "avg": 50426 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_tel_m_dumbfire_02_mk1", + "version": 0, + "name": "TEL M Dumbfire Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "medium", + "hull": 1650, + "price": { + "min": 22865, + "max": 27946, + "avg": 25405 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 5 + } + ] + } + ] + }, + { + "id": "turret_tel_m_gatling_01_mk1", + "version": 0, + "name": "TEL M Bolt Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 24664, + "max": 30145, + "avg": 27404 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 12 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 54 + }, + { + "ware": "hullparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "turret_tel_m_gatling_02_mk1", + "version": 0, + "name": "TEL M Bolt Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 750, + "price": { + "min": 22856, + "max": 27935, + "avg": 25395 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 8 + } + ] + } + ] + }, + { + "id": "turret_tel_m_guided_02_mk1", + "version": 0, + "name": "TEL M Tracking Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "medium", + "hull": 1650, + "price": { + "min": 26316, + "max": 32164, + "avg": 29240 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_tel_m_laser_01_mk1", + "version": 0, + "name": "TEL M Pulse Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 21376, + "max": 26127, + "avg": 23752 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 33 + }, + { + "ware": "hullparts", + "amount": 6 + } + ] + } + ] + }, + { + "id": "turret_tel_m_laser_02_mk1", + "version": 0, + "name": "TEL M Pulse Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 750, + "price": { + "min": 21376, + "max": 26127, + "avg": 23752 + }, + "owners": [ + "alliance", + "ministry", + "scaleplate", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_tel_m_mining_01_mk1", + "version": 0, + "name": "TEL M Mining Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 16445, + "max": 20100, + "avg": 18273 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 7 + } + ] + } + ] + }, + { + "id": "turret_tel_m_mining_02_mk1", + "version": 0, + "name": "TEL M Mining Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 750, + "price": { + "min": 16445, + "max": 20100, + "avg": 18273 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 7 + } + ] + } + ] + }, + { + "id": "turret_tel_m_plasma_01_mk1", + "version": 0, + "name": "TEL M Plasma Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 31247, + "max": 38191, + "avg": 34719 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 13 + } + ] + } + ] + }, + { + "id": "turret_tel_m_plasma_02_mk1", + "version": 0, + "name": "TEL M Plasma Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 750, + "price": { + "min": 31247, + "max": 38191, + "avg": 34719 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "turretcomponents", + "amount": 13 + } + ] + } + ] + }, + { + "id": "turret_tel_m_shotgun_01_mk1", + "version": 0, + "name": "TEL M Shard Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 22856, + "max": 27935, + "avg": 25395 + }, + "owners": [ + "alliance", + "ministry", + "teladi", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 8 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 49 + }, + { + "ware": "hullparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "turret_tel_m_shotgun_02_mk1", + "version": 0, + "name": "TEL M Shard Turret Mk1", + "description": "No information available", + "race": "teladi", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 750, + "price": { + "min": 24664, + "max": 30145, + "avg": 27404 + }, + "owners": [ + "alliance", + "ministry", + "teladi", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "turretcomponents", + "amount": 12 + } + ] + } + ] + }, + { + "id": "turret_xen_l_laser_01_mk1", + "version": 0, + "name": "XEN L Pulse Turret Mk1", + "description": "No information available", + "race": "xenon", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3500, + "price": { + "min": 13392, + "max": 16368, + "avg": 14880 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 25 + }, + { + "ware": "ore", + "amount": 15 + }, + { + "ware": "silicon", + "amount": 15 + } + ] + } + ] + }, + { + "id": "turret_xen_m_beam_02_mk1", + "version": 0, + "name": "XEN M Beam Turret Mk1", + "description": "No information available", + "race": "xenon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 800, + "price": { + "min": 23243, + "max": 28407, + "avg": 25825 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 29 + }, + { + "ware": "silicon", + "amount": 29 + } + ] + } + ] + }, + { + "id": "turret_xen_m_laser_01_mk1", + "version": 0, + "name": "XEN M Pulse Turret Mk1", + "description": "No information available", + "race": "xenon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 23242, + "max": 28406, + "avg": 25824 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 29 + }, + { + "ware": "silicon", + "amount": 29 + } + ] + } + ] + }, + { + "id": "turret_xen_m_laser_02_mk1", + "version": 0, + "name": "XEN M Pulse Turret Mk1", + "description": "No information available", + "race": "xenon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 800, + "price": { + "min": 23242, + "max": 28406, + "avg": 25824 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 29 + }, + { + "ware": "silicon", + "amount": 29 + } + ] + } + ] + }, + { + "id": "weapon_arg_l_destroyer_01_mk1", + "version": 0, + "name": "Behemoth Main Battery", + "description": "No information available", + "race": "argon", + "type": "weapons", + "equipmentClass": "weapon", + "size": "large", + "hull": 8000, + "price": { + "min": 936709, + "max": 1144866, + "avg": 1040788 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "scaleplate" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 140 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 170 + } + ] + } + ] + }, + { + "id": "weapon_arg_m_ion_01_mk1", + "version": 0, + "name": "ARG M Ion Blaster Mk1", + "description": "This Argon weapon was designed to be an effective anti-shield measure, carried by small and medium-sized ships. While the electrically charged particles it dispenses will eat through a shield in a remarkably short time, the velocity of the projectile itself is not quite as impressive. For this reason, and the fact that the projectiles are not as damaging once the target's shields have dropped and the projectiles are hitting the ship's hull, the Ion Blaster is often used by the first wave of vanguard ships. It is also effective when used in combination with weapons that are more suited to penetrating the hull. The technology behind this weapon was developed by the Argon Navy's Research and Development team, in cooperation with Jinko-Tekina Technologies. Their goal was to replicate the Boron-made Ion weapon technology, to which the Argon had lost all access during the Jump Gate shutdown. Their success was mixed; although they managed to apply the technology to make Blasters suitable for small ships, their team struggled to develop something suitable for outfitting larger vessels.nnThe Mk2 variant offers a significant boost in damage against shields, but actually deals less damage to a ship's hull than the Mk1, making it an even more specialised weapon.", + "race": "argon", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 302254, + "max": 597081, + "avg": 449667 + }, + "owners": [ + "alliance", + "argon", + "buccaneers", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 56 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 77 + } + ] + } + ] + }, + { + "id": "weapon_arg_m_ion_01_mk2", + "version": 0, + "name": "ARG M Ion Blaster Mk2", + "description": "This Argon weapon was designed to be an effective anti-shield measure, carried by small and medium-sized ships. While the electrically charged particles it dispenses will eat through a shield in a remarkably short time, the velocity of the projectile itself is not quite as impressive. For this reason, and the fact that the projectiles are not as damaging once the target's shields have dropped and the projectiles are hitting the ship's hull, the Ion Blaster is often used by the first wave of vanguard ships. It is also effective when used in combination with weapons that are more suited to penetrating the hull. The technology behind this weapon was developed by the Argon Navy's Research and Development team, in cooperation with Jinko-Tekina Technologies. Their goal was to replicate the Boron-made Ion weapon technology, to which the Argon had lost all access during the Jump Gate shutdown. Their success was mixed; although they managed to apply the technology to make Blasters suitable for small ships, their team struggled to develop something suitable for outfitting larger vessels.nnThe Mk2 variant offers a significant boost in damage against shields, but actually deals less damage to a ship's hull than the Mk1, making it an even more specialised weapon.", + "race": "argon", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 931956, + "max": 1819218, + "avg": 1375587 + }, + "owners": [ + "alliance", + "argon", + "buccaneers", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 184 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "weaponcomponents", + "amount": 191 + } + ] + } + ] + }, + { + "id": "weapon_arg_s_ion_01_mk1", + "version": 0, + "name": "ARG S Ion Blaster Mk1", + "description": "This Argon weapon was designed to be an effective anti-shield measure, carried by small and medium-sized ships. While the electrically charged particles it dispenses will eat through a shield in a remarkably short time, the velocity of the projectile itself is not quite as impressive. For this reason, and the fact that the projectiles are not as damaging once the target's shields have dropped and the projectiles are hitting the ship's hull, the Ion Blaster is often used by the first wave of vanguard ships. It is also effective when used in combination with weapons that are more suited to penetrating the hull. The technology behind this weapon was developed by the Argon Navy's Research and Development team, in cooperation with Jinko-Tekina Technologies. Their goal was to replicate the Boron-made Ion weapon technology, to which the Argon had lost all access during the Jump Gate shutdown. Their success was mixed; although they managed to apply the technology to make Blasters suitable for small ships, their team struggled to develop something suitable for outfitting larger vessels.nnThe Mk2 variant offers a significant boost in damage against shields, but actually deals less damage to a ship's hull than the Mk1, making it an even more specialised weapon.", + "race": "argon", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 160820, + "max": 319189, + "avg": 240004 + }, + "owners": [ + "alliance", + "argon", + "buccaneers", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 29 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 44 + } + ] + } + ] + }, + { + "id": "weapon_arg_s_ion_01_mk2", + "version": 0, + "name": "ARG S Ion Blaster Mk2", + "description": "This Argon weapon was designed to be an effective anti-shield measure, carried by small and medium-sized ships. While the electrically charged particles it dispenses will eat through a shield in a remarkably short time, the velocity of the projectile itself is not quite as impressive. For this reason, and the fact that the projectiles are not as damaging once the target's shields have dropped and the projectiles are hitting the ship's hull, the Ion Blaster is often used by the first wave of vanguard ships. It is also effective when used in combination with weapons that are more suited to penetrating the hull. The technology behind this weapon was developed by the Argon Navy's Research and Development team, in cooperation with Jinko-Tekina Technologies. Their goal was to replicate the Boron-made Ion weapon technology, to which the Argon had lost all access during the Jump Gate shutdown. Their success was mixed; although they managed to apply the technology to make Blasters suitable for small ships, their team struggled to develop something suitable for outfitting larger vessels.nnThe Mk2 variant offers a significant boost in damage against shields, but actually deals less damage to a ship's hull than the Mk1, making it an even more specialised weapon.", + "race": "argon", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 777281, + "max": 1543247, + "avg": 1160264 + }, + "owners": [ + "alliance", + "argon", + "buccaneers", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 140 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "weaponcomponents", + "amount": 215 + } + ] + } + ] + }, + { + "id": "weapon_gen_mine_01", + "version": 0, + "name": "Mine", + "description": "Mines are a commonly-used static combat tool that explode and cause massive hull damage under a number of circumstances. Some explode on contact, some when a target comes within a certain range. Some even track their targets and can be programmed to recognise friend from foe.", + "type": "weapons", + "equipmentClass": "mine", + "explosionDamage": 10000, + "hull": 100, + "price": { + "min": 4843, + "max": 6552, + "avg": 5698 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 3 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 1 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 42 + }, + { + "ware": "siliconcarbide", + "amount": 2 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 45 + }, + { + "ware": "hullparts", + "amount": 1 + } + ] + } + ] + }, + { + "id": "weapon_gen_mine_02", + "version": 0, + "name": "Tracker Mine", + "description": "Tracker Mines are deadly devices that have two phases of operation. In the detection phase, the mine detects a valid target within outer detection range and initiates a limited manoeuvre to intercept the target. When it is deemed close enough to trigger, the second detection phase sees the mine's explosive payload detonate. Tracker Mines are less effective at chasing fast and agile targets, but can be incredibly dangerous when used in number or against larger and less agile targets.", + "type": "weapons", + "equipmentClass": "mine", + "explosionDamage": 10000, + "hull": 100, + "price": { + "min": 9055, + "max": 12250, + "avg": 10653 + }, + "production": [ + { + "time": 60, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 7 + }, + { + "ware": "smartchips", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 3 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "ore", + "amount": 2 + } + ] + }, + { + "time": 60, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 32 + } + ] + }, + { + "time": 60, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 70 + }, + { + "ware": "hullparts", + "amount": 2 + } + ] + } + ] + }, + { + "id": "weapon_gen_mine_03", + "version": 0, + "name": "Friend/Foe Mine", + "description": "Friend/Foe Mines are equipped with specialist software that allows the user to program the mine not to respond to friendly targets. This is usually achieved over comm-frequency identification, and friendly targets must stay informed of changes to the frequency as not to accidentally fall foul of the mine's dangerous payload - this in of itself is almost always an automated process.", + "type": "weapons", + "equipmentClass": "mine", + "explosionDamage": 10000, + "hull": 100, + "price": { + "min": 17478, + "max": 23647, + "avg": 20563 + }, + "production": [ + { + "time": 60, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 11 + }, + { + "ware": "smartchips", + "amount": 30 + }, + { + "ware": "weaponcomponents", + "amount": 3 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "ore", + "amount": 1 + }, + { + "ware": "silicon", + "amount": 1 + } + ] + }, + { + "time": 60, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "metallicmicrolattice", + "amount": 33 + }, + { + "ware": "siliconcarbide", + "amount": 1 + } + ] + }, + { + "time": 60, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 119 + }, + { + "ware": "hullparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_beam_01_mk1", + "version": 0, + "name": "M Beam Emitter Mk1", + "description": "The Beam Emitter is a highly specialised anti-fighter weapon, notable for its high accuracy. It discharges high-velocity beams which hit their target almost immediately. However, somewhat counterintuitively, it achieves this instantaneous accuracy by restraining the energy that the beam puts out. Since the beam is not as intense as the projectiles fired by many of its contemporaries, it only inflicts damage gradually, which exposes the pilot to a counter-attack. Because of this, and the fact that the weapon inflicts more damage the nearer it is to its target, the Beam Emitter is mainly used on nimble fighters which are able to get up close and out-manoeuvre their target when necessary.nnThe Mk2 variant tries to rectify the weak damage output somewhat by ramping up the beam's intensity, but this comes at the cost of the weapon overheating more rapidly.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 25530, + "max": 31203, + "avg": 28367 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 10 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 51 + }, + { + "ware": "siliconcarbide", + "amount": 6 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 78 + }, + { + "ware": "hullparts", + "amount": 8 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_beam_01_mk2", + "version": 0, + "name": "M Beam Emitter Mk2", + "description": "The Beam Emitter is a highly specialised anti-fighter weapon, notable for its high accuracy. It discharges high-velocity beams which hit their target almost immediately. However, somewhat counterintuitively, it achieves this instantaneous accuracy by restraining the energy that the beam puts out. Since the beam is not as intense as the projectiles fired by many of its contemporaries, it only inflicts damage gradually, which exposes the pilot to a counter-attack. Because of this, and the fact that the weapon inflicts more damage the nearer it is to its target, the Beam Emitter is mainly used on nimble fighters which are able to get up close and out-manoeuvre their target when necessary.nnThe Mk2 variant tries to rectify the weak damage output somewhat by ramping up the beam's intensity, but this comes at the cost of the weapon overheating more rapidly.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 127132, + "max": 155383, + "avg": 141257 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 10 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 50 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 14 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 108 + }, + { + "ware": "siliconcarbide", + "amount": 13 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 7 + }, + { + "ware": "energycells", + "amount": 106 + }, + { + "ware": "hullparts", + "amount": 41 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_dumbfire_01_mk1", + "version": 0, + "name": "M Dumbfire Launcher Mk1", + "description": "No information available", + "type": "weapons", + "equipmentClass": "missilelauncher", + "size": "medium", + "hull": 1001, + "price": { + "min": 22558, + "max": 27571, + "avg": 25064 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "hatikvah", + "holyorder", + "ministry", + "paranid", + "scaleplate", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "pioneers", + "terran", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 5 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 26 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 70 + }, + { + "ware": "hullparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_dumbfire_01_mk2", + "version": 0, + "name": "M Dumbfire Launcher Mk2", + "description": "No information available", + "type": "weapons", + "equipmentClass": "missilelauncher", + "size": "medium", + "hull": 1001, + "price": { + "min": 111753, + "max": 136587, + "avg": 124170 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "pioneers", + "terran", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 15 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "weaponcomponents", + "amount": 25 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 12 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 94 + }, + { + "ware": "siliconcarbide", + "amount": 12 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 168 + }, + { + "ware": "hullparts", + "amount": 37 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_gatling_01_mk1", + "version": 0, + "name": "M Bolt Repeater Mk1", + "description": "The Bolt Repeater's average damage output and cooling make it an excellent choice for the indecisive military pilot. It is often considered the logical next step after having familiarised oneself with the Pulse Laser. Its prolonged bursts can easily tear apart targets of a similar size, but the projectiles are larger and move at a slower pace than Pulse Laser particles. This means that the pilot needs to have experience in gauging when to expend their burst, and when to let the weapon cool down and wait for a better opportunity. When facing off against this weapon, nimble ships may be able to dodge its stream of bullets by strafing and making spiral movements. Against capital ships, the Bolt Repeater is a suitable choice for destroying surface elements such as turrets and shields, though it struggles to leave a lasting impact on the ship's hull.nnThe modern-day Bolt Repeater is the result of a development path taken by Argon military scientists from old Mass Driver designs; a weapon which first saw use during the era of the Kha'ak threat. By stripping out the original weapon's ability to penetrate shields, and instead maximising the force of its continuous bullet output, they created a robust all-rounder that was soon adopted by the Federation's allies because of its sheer brutal efficiency.nnThe Mk2 variant uses even larger projectiles while maintaining the same projectile speed, resulting in a lower rate of fire but an increased level of overall trauma to the target's hull and shields.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 23928, + "max": 29245, + "avg": 26586 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 12 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 44 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 63 + }, + { + "ware": "hullparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_gatling_01_mk2", + "version": 0, + "name": "M Bolt Repeater Mk2", + "description": "The Bolt Repeater's average damage output and cooling make it an excellent choice for the indecisive military pilot. It is often considered the logical next step after having familiarised oneself with the Pulse Laser. Its prolonged bursts can easily tear apart targets of a similar size, but the projectiles are larger and move at a slower pace than Pulse Laser particles. This means that the pilot needs to have experience in gauging when to expend their burst, and when to let the weapon cool down and wait for a better opportunity. When facing off against this weapon, nimble ships may be able to dodge its stream of bullets by strafing and making spiral movements. Against capital ships, the Bolt Repeater is a suitable choice for destroying surface elements such as turrets and shields, though it struggles to leave a lasting impact on the ship's hull.nnThe modern-day Bolt Repeater is the result of a development path taken by Argon military scientists from old Mass Driver designs; a weapon which first saw use during the era of the Kha'ak threat. By stripping out the original weapon's ability to penetrate shields, and instead maximising the force of its continuous bullet output, they created a robust all-rounder that was soon adopted by the Federation's allies because of its sheer brutal efficiency.nnThe Mk2 variant uses even larger projectiles while maintaining the same projectile speed, resulting in a lower rate of fire but an increased level of overall trauma to the target's hull and shields.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 119121, + "max": 145592, + "avg": 132356 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 60 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 13 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 96 + }, + { + "ware": "siliconcarbide", + "amount": 13 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 147 + }, + { + "ware": "hullparts", + "amount": 37 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_guided_01_mk1", + "version": 0, + "name": "M Tracking Launcher Mk1", + "description": "No information available", + "type": "weapons", + "equipmentClass": "missilelauncher", + "size": "medium", + "hull": 1001, + "price": { + "min": 44770, + "max": 54719, + "avg": 49745 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "pioneers", + "terran", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 10 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 75 + }, + { + "ware": "siliconcarbide", + "amount": 8 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 117 + }, + { + "ware": "hullparts", + "amount": 15 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_guided_01_mk2", + "version": 0, + "name": "M Tracking Launcher Mk2", + "description": "No information available", + "type": "weapons", + "equipmentClass": "missilelauncher", + "size": "medium", + "hull": 1001, + "price": { + "min": 222815, + "max": 272330, + "avg": 247572 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "pioneers", + "terran", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 30 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "weaponcomponents", + "amount": 50 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 25 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 127 + }, + { + "ware": "siliconcarbide", + "amount": 22 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 13 + }, + { + "ware": "energycells", + "amount": 175 + }, + { + "ware": "hullparts", + "amount": 75 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_laser_01_mk1", + "version": 0, + "name": "M Pulse Laser Mk1", + "description": "Many experienced pilots fondly remember the affordable and reliable Pulse Laser as their first weapon. Its pin-point accuracy and high projectile speed make it an excellent choice for fighting small and fast targets, handling fragile lockboxes, and for dealing with deployables like mines and lasertowers. Often initially scoffed at for its comparatively low damage output, its slow heat generation and sublime cooling result in a steady stream of disruptive fire, which in turn rewards pilots who can stay on target for an extended period. Faced with larger enemies, the Pulse Laser does not become obsolete as quickly as one might expect. Used in greater numbers, it can still be a formidable choice against frigates and corvettes, though an upgrade to a larger weapon mount may be advisable to maintain a level playing field. The Pulse Laser remains the preferred choice of commanders who favour versatility over optimisation against specific opponents, or who have little trust in the aim of their subordinates.nnThe technology behind the Pulse Laser is advanced and efficient. Within a shielded chamber, microscopic fragments of matter are superheated and accelerated by a pulsed neodymium laser. The weapon was originally designed by the Ministry of Finance to provide a robust loadout for their escort fleets, without having to invest time and resources into the maintenance of a well-rounded combined arms setup. Over time, and thanks to the Teladi Company's aggressive marketing, it has been adopted as the number one weapon of convenience by all other former members of the Community of Planets.nnThe Mk2 variant sports a slightly longer burst. This lowers the efficiency of the heat dissipation between bursts and thereby exponentially drives up the cost of the internal shielding, but results in an overall higher damage output.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 20763, + "max": 25377, + "avg": 23070 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "holyorder", + "ministry", + "paranid", + "scaleplate", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 10 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 30 + }, + { + "ware": "siliconcarbide", + "amount": 3 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 41 + }, + { + "ware": "hullparts", + "amount": 6 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_laser_01_mk2", + "version": 0, + "name": "M Pulse Laser Mk2", + "description": "Many experienced pilots fondly remember the affordable and reliable Pulse Laser as their first weapon. Its pin-point accuracy and high projectile speed make it an excellent choice for fighting small and fast targets, handling fragile lockboxes, and for dealing with deployables like mines and lasertowers. Often initially scoffed at for its comparatively low damage output, its slow heat generation and sublime cooling result in a steady stream of disruptive fire, which in turn rewards pilots who can stay on target for an extended period. Faced with larger enemies, the Pulse Laser does not become obsolete as quickly as one might expect. Used in greater numbers, it can still be a formidable choice against frigates and corvettes, though an upgrade to a larger weapon mount may be advisable to maintain a level playing field. The Pulse Laser remains the preferred choice of commanders who favour versatility over optimisation against specific opponents, or who have little trust in the aim of their subordinates.nnThe technology behind the Pulse Laser is advanced and efficient. Within a shielded chamber, microscopic fragments of matter are superheated and accelerated by a pulsed neodymium laser. The weapon was originally designed by the Ministry of Finance to provide a robust loadout for their escort fleets, without having to invest time and resources into the maintenance of a well-rounded combined arms setup. Over time, and thanks to the Teladi Company's aggressive marketing, it has been adopted as the number one weapon of convenience by all other former members of the Community of Planets.nnThe Mk2 variant sports a slightly longer burst. This lowers the efficiency of the heat dissipation between bursts and thereby exponentially drives up the cost of the internal shielding, but results in an overall higher damage output.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 103297, + "max": 126252, + "avg": 114775 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 50 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 11 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 75 + }, + { + "ware": "siliconcarbide", + "amount": 13 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 162 + }, + { + "ware": "hullparts", + "amount": 32 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_mining_01_mk1", + "version": 0, + "name": "M Mining Drill Mk1", + "description": "No information available", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 16016, + "max": 19575, + "avg": 17796 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "holyorder", + "ministry", + "paranid", + "scaleplate", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "pioneers", + "terran", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 7 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 34 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 128 + }, + { + "ware": "hullparts", + "amount": 5 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_mining_01_mk2", + "version": 0, + "name": "M Mining Drill Mk2", + "description": "No information available", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 79562, + "max": 97243, + "avg": 88402 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "pioneers", + "terran", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 35 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 73 + }, + { + "ware": "siliconcarbide", + "amount": 12 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 114 + }, + { + "ware": "hullparts", + "amount": 25 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_plasma_01_mk1", + "version": 0, + "name": "M Plasma Cannon Mk1", + "description": "The Plasma Cannon combines high damage output with long range. Its drawbacks, slow projectile speed and fire rate, made worse by high heat generation, can make landing hits as challenging as it is important. This results in its predominant use being against capital ships, where swarms of fighters deploy Plasma Cannons to great success. Unlike short ranged weapons such as the Shard Battery and the Split Tau Accelerator, which outperform it in damage output and are more suited to attacking capital ships from a blind spot, the Plasma Cannon's greatest advantage is its range. Skilled pilots are also able to hunt down smaller targets efficiently, either by deploying the Plasma Cannon at short range or by predicting the courses of the projectile and target. Similarly, skilled pilots are also able to evade and avoid being hit by such attempts.nnThe Plasma Cannon was developed during the early days of the Paranid Civil War, by the Holy Order of the Pontifex, building upon the High Energy Plasma Thrower. Like its predecessor, it suffers from high radiation build-up, and this needs to be purged between shots to prevent it from damaging itself. The blueprint for the Plasma Cannon was stolen by the Argon Secret Service and distributed throughout the Commonwealth when the Argon Federation joined the war effort.nnThe Mk2 variant has a higher rate of fire, lower heat generation and increased damage output.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 30277, + "max": 37005, + "avg": 33641 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 13 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 48 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 118 + }, + { + "ware": "hullparts", + "amount": 9 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_plasma_01_mk2", + "version": 0, + "name": "M Plasma Cannon Mk2", + "description": "The Plasma Cannon combines high damage output with long range. Its drawbacks, slow projectile speed and fire rate, made worse by high heat generation, can make landing hits as challenging as it is important. This results in its predominant use being against capital ships, where swarms of fighters deploy Plasma Cannons to great success. Unlike short ranged weapons such as the Shard Battery and the Split Tau Accelerator, which outperform it in damage output and are more suited to attacking capital ships from a blind spot, the Plasma Cannon's greatest advantage is its range. Skilled pilots are also able to hunt down smaller targets efficiently, either by deploying the Plasma Cannon at short range or by predicting the courses of the projectile and target. Similarly, skilled pilots are also able to evade and avoid being hit by such attempts.nnThe Plasma Cannon was developed during the early days of the Paranid Civil War, by the Holy Order of the Pontifex, building upon the High Energy Plasma Thrower. Like its predecessor, it suffers from high radiation build-up, and this needs to be purged between shots to prevent it from damaging itself. The blueprint for the Plasma Cannon was stolen by the Argon Secret Service and distributed throughout the Commonwealth when the Argon Federation joined the war effort.nnThe Mk2 variant has a higher rate of fire, lower heat generation and increased damage output.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 150867, + "max": 184393, + "avg": 167630 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 10 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 65 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 17 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 111 + }, + { + "ware": "siliconcarbide", + "amount": 14 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 155 + }, + { + "ware": "hullparts", + "amount": 48 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_shotgun_01_mk1", + "version": 0, + "name": "M Shard Battery Mk1", + "description": "The Shard Battery is essentially a spaceborne shotgun, that makes up for its low effective range and accuracy by inflicting devastating trauma against shields and hull alike. At its core, it is functionally similar to the Bolt Repeater that it was originally developed from. However, the ejection of multiple projectiles at once requires a wider barrel aperture, a larger spacing between shots, and generates a higher energy drain. When it comes to its damage output, the Shard Battery has been compared to the Plasma Cannon, but it offers a slightly different range of applications. Skilled military pilots may occasionally make use of this weapon against small targets in an attempt to end the fight quickly, but it is generally agreed upon that one should try to avoid these situations. The Shard Battery reaches its fullest potential against larger and slower targets such as M-sized ships, which cannot as easily evade its projectiles. It is also especially effective against capital ship surface elements, provided that the pilot can find an opportunity to target them from the blind spots of nearby turrets.nnThe Mk2 variant fires fewer shards at a higher speed but with a shorter interval. This raises the overall damage output and improves the weapon's accuracy, especially against more nimble targets, but in turn incurs a quicker heat build-up.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 22365, + "max": 27335, + "avg": 24850 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 8 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 37 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 55 + }, + { + "ware": "hullparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_shotgun_01_mk2", + "version": 0, + "name": "M Shard Battery Mk2", + "description": "The Shard Battery is essentially a spaceborne shotgun, that makes up for its low effective range and accuracy by inflicting devastating trauma against shields and hull alike. At its core, it is functionally similar to the Bolt Repeater that it was originally developed from. However, the ejection of multiple projectiles at once requires a wider barrel aperture, a larger spacing between shots, and generates a higher energy drain. When it comes to its damage output, the Shard Battery has been compared to the Plasma Cannon, but it offers a slightly different range of applications. Skilled military pilots may occasionally make use of this weapon against small targets in an attempt to end the fight quickly, but it is generally agreed upon that one should try to avoid these situations. The Shard Battery reaches its fullest potential against larger and slower targets such as M-sized ships, which cannot as easily evade its projectiles. It is also especially effective against capital ship surface elements, provided that the pilot can find an opportunity to target them from the blind spots of nearby turrets.nnThe Mk2 variant fires fewer shards at a higher speed but with a shorter interval. This raises the overall damage output and improves the weapon's accuracy, especially against more nimble targets, but in turn incurs a quicker heat build-up.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 111308, + "max": 136043, + "avg": 123676 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 10 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 40 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 12 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 88 + }, + { + "ware": "siliconcarbide", + "amount": 13 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 121 + }, + { + "ware": "hullparts", + "amount": 36 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_torpedo_01_mk1", + "version": 0, + "name": "M Torpedo Launcher Mk1", + "description": "No information available", + "type": "weapons", + "equipmentClass": "missilelauncher", + "size": "medium", + "hull": 1001, + "price": { + "min": 78039, + "max": 95381, + "avg": 86710 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 25 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 67 + }, + { + "ware": "siliconcarbide", + "amount": 11 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 126 + }, + { + "ware": "hullparts", + "amount": 25 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_torpedo_01_mk2", + "version": 0, + "name": "M Torpedo Launcher Mk2", + "description": "No information available", + "type": "weapons", + "equipmentClass": "missilelauncher", + "size": "medium", + "hull": 1001, + "price": { + "min": 389160, + "max": 475640, + "avg": 432400 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 40 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "weaponcomponents", + "amount": 125 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 44 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 225 + }, + { + "ware": "siliconcarbide", + "amount": 38 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 22 + }, + { + "ware": "energycells", + "amount": 305 + }, + { + "ware": "hullparts", + "amount": 128 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_beam_01_mk1", + "version": 0, + "name": "S Beam Emitter Mk1", + "description": "The Beam Emitter is a highly specialised anti-fighter weapon, notable for its high accuracy. It discharges high-velocity beams which hit their target almost immediately. However, somewhat counterintuitively, it achieves this instantaneous accuracy by restraining the energy that the beam puts out. Since the beam is not as intense as the projectiles fired by many of its contemporaries, it only inflicts damage gradually, which exposes the pilot to a counter-attack. Because of this, and the fact that the weapon inflicts more damage the nearer it is to its target, the Beam Emitter is mainly used on nimble fighters which are able to get up close and out-manoeuvre their target when necessary.nnThe Mk2 variant tries to rectify the weak damage output somewhat by ramping up the beam's intensity, but this comes at the cost of the weapon overheating more rapidly.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 23948, + "max": 29269, + "avg": 26609 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 9 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 44 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 73 + }, + { + "ware": "hullparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_beam_01_mk2", + "version": 0, + "name": "S Beam Emitter Mk2", + "description": "The Beam Emitter is a highly specialised anti-fighter weapon, notable for its high accuracy. It discharges high-velocity beams which hit their target almost immediately. However, somewhat counterintuitively, it achieves this instantaneous accuracy by restraining the energy that the beam puts out. Since the beam is not as intense as the projectiles fired by many of its contemporaries, it only inflicts damage gradually, which exposes the pilot to a counter-attack. Because of this, and the fact that the weapon inflicts more damage the nearer it is to its target, the Beam Emitter is mainly used on nimble fighters which are able to get up close and out-manoeuvre their target when necessary.nnThe Mk2 variant tries to rectify the weak damage output somewhat by ramping up the beam's intensity, but this comes at the cost of the weapon overheating more rapidly.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 104979, + "max": 128308, + "avg": 116643 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 10 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 36 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 11 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 84 + }, + { + "ware": "siliconcarbide", + "amount": 14 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 76 + }, + { + "ware": "hullparts", + "amount": 34 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_burst_01_mk1", + "version": 0, + "name": "S Burst Ray Mk1", + "description": "Because of its amplified destructive power against surface elements, the Burst Ray is the weapon of choice for daring fighter pilots who want to strip capital ships of their engines, shield generators and turrets. As the name suggests, it fires a sequenced burst of focused radiation to deliver several galvanic calefactions in quick succession, causing the target's surface material to lose cohesion on a molecular level. This niche ability comes at a cost, however: its short range and low energy output against the main shield and hull of its target make the Burst Ray an ineffective weapon for skirmishes with small and medium-sized ships. In a pinch, the fact that the individual beams deliver their damage instantaneously, may nevertheless prove useful against small and evasive targets.nnIt is said that the Priest Duke of Pious Mists himself ordered the development of a specialised anti-capital ship weapon to counter the overreliance on heavy fleets and long-range weaponry of the Holy Order of the Pontifex.nnThe Mk2 variant fires more often per burst, which increases the energy output significantly. In turn, the effective range drops slightly and the weapon becomes prone to overheating.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 18582, + "max": 39398, + "avg": 28990 + }, + "owners": [ + "alliance", + "buccaneers", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 13 + }, + { + "ware": "weaponcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_burst_01_mk2", + "version": 0, + "name": "S Burst Ray Mk2", + "description": "Because of its amplified destructive power against surface elements, the Burst Ray is the weapon of choice for daring fighter pilots who want to strip capital ships of their engines, shield generators and turrets. As the name suggests, it fires a sequenced burst of focused radiation to deliver several galvanic calefactions in quick succession, causing the target's surface material to lose cohesion on a molecular level. This niche ability comes at a cost, however: its short range and low energy output against the main shield and hull of its target make the Burst Ray an ineffective weapon for skirmishes with small and medium-sized ships. In a pinch, the fact that the individual beams deliver their damage instantaneously, may nevertheless prove useful against small and evasive targets.nnIt is said that the Priest Duke of Pious Mists himself ordered the development of a specialised anti-capital ship weapon to counter the overreliance on heavy fleets and long-range weaponry of the Holy Order of the Pontifex.nnThe Mk2 variant fires more often per burst, which increases the energy output significantly. In turn, the effective range drops slightly and the weapon becomes prone to overheating.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 56299, + "max": 108078, + "avg": 82188 + }, + "owners": [ + "alliance", + "buccaneers", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 12 + }, + { + "ware": "energycells", + "amount": 16 + }, + { + "ware": "weaponcomponents", + "amount": 7 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_cannon_01_mk1", + "version": 0, + "name": "S Blast Mortar Mk1", + "description": "The Blast Mortar launches a tightly packed ball of high explosives, carefully separated from a layer of crushed and superheated asteroid matter. This swirling bubble of doom detonates on impact, or upon reaching its maximum effective range. Its decent blast radius, added to the already high damage per projectile, make it an excellent choice for taking out the engines, turrets and shield generators of capital ships. It is often favourably compared to the Plasma Cannon, a household standard in the post-realignment Jump Gate network, because it has the higher projectile speed of the two. This offers desperate pilots the ability to engage smaller targets when necessary. However, it is no flak cannon and, if given the choice, it is usually advisable to use this weapon against ships of at least medium size, which cannot evade its fire.nnBefore the Holy Order of the Pontifex was even officially proclaimed, its constituents began experimenting with equipment that would make efficient use of the limited resources available at the time. This resulted in weapons such as the Blast Mortar: surprisingly simple to produce, at least from the perspective of the superior Paranid intellect, yet at the same time brutally effective. Though they were initially ordered to build stronger beams for their visual effect, the priest engineers put their faith in what they most believed in: local maxima in the parameter space. Like a paradise yet untouched by mortal interference, the Blast Mortar works in perfect equilibrium as long as its careful calibration isn't disturbed. Bafflingly resistant to attempts at reverse engineering and improvement by foreign powers' militaries, the mechanism tends to suffer drastic loss of efficiency if one dares to adjust its properties, even in the most miniscule way.nnThe Mk2 variant is the exception to this rule, being a creation by the very same priest engineers that designed the original. It is an upgrade as straightforward as it gets, simply offering significantly enhanced destructive power and slightly improved heat dissipation.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "price": { + "min": 40538, + "max": 81008, + "avg": 60773 + }, + "owners": [ + "buccaneers", + "holyorder", + "ministry", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 7 + }, + { + "ware": "energycells", + "amount": 9 + }, + { + "ware": "weaponcomponents", + "amount": 12 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_cannon_01_mk2", + "version": 0, + "name": "S Blast Mortar Mk2", + "description": "The Blast Mortar launches a tightly packed ball of high explosives, carefully separated from a layer of crushed and superheated asteroid matter. This swirling bubble of doom detonates on impact, or upon reaching its maximum effective range. Its decent blast radius, added to the already high damage per projectile, make it an excellent choice for taking out the engines, turrets and shield generators of capital ships. It is often favourably compared to the Plasma Cannon, a household standard in the post-realignment Jump Gate network, because it has the higher projectile speed of the two. This offers desperate pilots the ability to engage smaller targets when necessary. However, it is no flak cannon and, if given the choice, it is usually advisable to use this weapon against ships of at least medium size, which cannot evade its fire.nnBefore the Holy Order of the Pontifex was even officially proclaimed, its constituents began experimenting with equipment that would make efficient use of the limited resources available at the time. This resulted in weapons such as the Blast Mortar: surprisingly simple to produce, at least from the perspective of the superior Paranid intellect, yet at the same time brutally effective. Though they were initially ordered to build stronger beams for their visual effect, the priest engineers put their faith in what they most believed in: local maxima in the parameter space. Like a paradise yet untouched by mortal interference, the Blast Mortar works in perfect equilibrium as long as its careful calibration isn't disturbed. Bafflingly resistant to attempts at reverse engineering and improvement by foreign powers' militaries, the mechanism tends to suffer drastic loss of efficiency if one dares to adjust its properties, even in the most miniscule way.nnThe Mk2 variant is the exception to this rule, being a creation by the very same priest engineers that designed the original. It is an upgrade as straightforward as it gets, simply offering significantly enhanced destructive power and slightly improved heat dissipation.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "price": { + "min": 57963, + "max": 111999, + "avg": 84981 + }, + "owners": [ + "buccaneers", + "holyorder", + "ministry", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 12 + }, + { + "ware": "energycells", + "amount": 11 + }, + { + "ware": "weaponcomponents", + "amount": 9 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_dumbfire_01_mk1", + "version": 0, + "name": "S Dumbfire Launcher Mk1", + "description": "No information available", + "type": "weapons", + "equipmentClass": "missilelauncher", + "size": "small", + "hull": 500, + "price": { + "min": 6695, + "max": 8183, + "avg": 7439 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "hatikvah", + "holyorder", + "ministry", + "paranid", + "scaleplate", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "pioneers", + "terran", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 1 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 33 + }, + { + "ware": "siliconcarbide", + "amount": 3 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 65 + }, + { + "ware": "hullparts", + "amount": 2 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_dumbfire_01_mk2", + "version": 0, + "name": "S Dumbfire Launcher Mk2", + "description": "No information available", + "type": "weapons", + "equipmentClass": "missilelauncher", + "size": "small", + "hull": 500, + "price": { + "min": 13370, + "max": 16341, + "avg": 14855 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "pioneers", + "terran", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "weaponcomponents", + "amount": 5 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 40 + }, + { + "ware": "siliconcarbide", + "amount": 1 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 120 + }, + { + "ware": "hullparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_gatling_01_mk1", + "version": 0, + "name": "S Bolt Repeater Mk1", + "description": "The Bolt Repeater's average damage output and cooling make it an excellent choice for the indecisive military pilot. It is often considered the logical next step after having familiarised oneself with the Pulse Laser. Its prolonged bursts can easily tear apart targets of a similar size, but the projectiles are larger and move at a slower pace than Pulse Laser particles. This means that the pilot needs to have experience in gauging when to expend their burst, and when to let the weapon cool down and wait for a better opportunity. When facing off against this weapon, nimble ships may be able to dodge its stream of bullets by strafing and making spiral movements. Against capital ships, the Bolt Repeater is a suitable choice for destroying surface elements such as turrets and shields, though it struggles to leave a lasting impact on the ship's hull.nnThe modern-day Bolt Repeater is the result of a development path taken by Argon military scientists from old Mass Driver designs; a weapon which first saw use during the era of the Kha'ak threat. By stripping out the original weapon's ability to penetrate shields, and instead maximising the force of its continuous bullet output, they created a robust all-rounder that was soon adopted by the Federation's allies because of its sheer brutal efficiency.nnThe Mk2 variant uses even larger projectiles while maintaining the same projectile speed, resulting in a lower rate of fire but an increased level of overall trauma to the target's hull and shields.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 43055, + "max": 52623, + "avg": 47839 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 3 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 53 + }, + { + "ware": "siliconcarbide", + "amount": 8 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 115 + }, + { + "ware": "hullparts", + "amount": 15 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_gatling_01_mk2", + "version": 0, + "name": "S Bolt Repeater Mk2", + "description": "The Bolt Repeater's average damage output and cooling make it an excellent choice for the indecisive military pilot. It is often considered the logical next step after having familiarised oneself with the Pulse Laser. Its prolonged bursts can easily tear apart targets of a similar size, but the projectiles are larger and move at a slower pace than Pulse Laser particles. This means that the pilot needs to have experience in gauging when to expend their burst, and when to let the weapon cool down and wait for a better opportunity. When facing off against this weapon, nimble ships may be able to dodge its stream of bullets by strafing and making spiral movements. Against capital ships, the Bolt Repeater is a suitable choice for destroying surface elements such as turrets and shields, though it struggles to leave a lasting impact on the ship's hull.nnThe modern-day Bolt Repeater is the result of a development path taken by Argon military scientists from old Mass Driver designs; a weapon which first saw use during the era of the Kha'ak threat. By stripping out the original weapon's ability to penetrate shields, and instead maximising the force of its continuous bullet output, they created a robust all-rounder that was soon adopted by the Federation's allies because of its sheer brutal efficiency.nnThe Mk2 variant uses even larger projectiles while maintaining the same projectile speed, resulting in a lower rate of fire but an increased level of overall trauma to the target's hull and shields.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 214756, + "max": 262480, + "avg": 238618 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 40 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 15 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 24 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 145 + }, + { + "ware": "siliconcarbide", + "amount": 22 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 13 + }, + { + "ware": "energycells", + "amount": 175 + }, + { + "ware": "hullparts", + "amount": 75 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_guided_01_mk1", + "version": 0, + "name": "S Tracking Launcher Mk1", + "description": "No information available", + "type": "weapons", + "equipmentClass": "missilelauncher", + "size": "small", + "hull": 500, + "price": { + "min": 8277, + "max": 10117, + "avg": 9197 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "pioneers", + "terran", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 2 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 40 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 83 + }, + { + "ware": "hullparts", + "amount": 2 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_guided_01_mk2", + "version": 0, + "name": "S Tracking Launcher Mk2", + "description": "No information available", + "type": "weapons", + "equipmentClass": "missilelauncher", + "size": "small", + "hull": 500, + "price": { + "min": 40349, + "max": 49316, + "avg": 44832 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "pioneers", + "terran", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "weaponcomponents", + "amount": 10 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 30 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 90 + }, + { + "ware": "hullparts", + "amount": 13 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_laser_01_mk1", + "version": 0, + "name": "S Pulse Laser Mk1", + "description": "Many experienced pilots fondly remember the affordable and reliable Pulse Laser as their first weapon. Its pin-point accuracy and high projectile speed make it an excellent choice for fighting small and fast targets, handling fragile lockboxes, and for dealing with deployables like mines and lasertowers. Often initially scoffed at for its comparatively low damage output, its slow heat generation and sublime cooling result in a steady stream of disruptive fire, which in turn rewards pilots who can stay on target for an extended period. Faced with larger enemies, the Pulse Laser does not become obsolete as quickly as one might expect. Used in greater numbers, it can still be a formidable choice against frigates and corvettes, though an upgrade to a larger weapon mount may be advisable to maintain a level playing field. The Pulse Laser remains the preferred choice of commanders who favour versatility over optimisation against specific opponents, or who have little trust in the aim of their subordinates.nnThe technology behind the Pulse Laser is advanced and efficient. Within a shielded chamber, microscopic fragments of matter are superheated and accelerated by a pulsed neodymium laser. The weapon was originally designed by the Ministry of Finance to provide a robust loadout for their escort fleets, without having to invest time and resources into the maintenance of a well-rounded combined arms setup. Over time, and thanks to the Teladi Company's aggressive marketing, it has been adopted as the number one weapon of convenience by all other former members of the Community of Planets.nnThe Mk2 variant sports a slightly longer burst. This lowers the efficiency of the heat dissipation between bursts and thereby exponentially drives up the cost of the internal shielding, but results in an overall higher damage output.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 16056, + "max": 19624, + "avg": 17840 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "hatikvah", + "holyorder", + "ministry", + "paranid", + "scaleplate", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 1 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 35 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "hullparts", + "amount": 5 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_laser_01_mk2", + "version": 0, + "name": "S Pulse Laser Mk2", + "description": "Many experienced pilots fondly remember the affordable and reliable Pulse Laser as their first weapon. Its pin-point accuracy and high projectile speed make it an excellent choice for fighting small and fast targets, handling fragile lockboxes, and for dealing with deployables like mines and lasertowers. Often initially scoffed at for its comparatively low damage output, its slow heat generation and sublime cooling result in a steady stream of disruptive fire, which in turn rewards pilots who can stay on target for an extended period. Faced with larger enemies, the Pulse Laser does not become obsolete as quickly as one might expect. Used in greater numbers, it can still be a formidable choice against frigates and corvettes, though an upgrade to a larger weapon mount may be advisable to maintain a level playing field. The Pulse Laser remains the preferred choice of commanders who favour versatility over optimisation against specific opponents, or who have little trust in the aim of their subordinates.nnThe technology behind the Pulse Laser is advanced and efficient. Within a shielded chamber, microscopic fragments of matter are superheated and accelerated by a pulsed neodymium laser. The weapon was originally designed by the Ministry of Finance to provide a robust loadout for their escort fleets, without having to invest time and resources into the maintenance of a well-rounded combined arms setup. Over time, and thanks to the Teladi Company's aggressive marketing, it has been adopted as the number one weapon of convenience by all other former members of the Community of Planets.nnThe Mk2 variant sports a slightly longer burst. This lowers the efficiency of the heat dissipation between bursts and thereby exponentially drives up the cost of the internal shielding, but results in an overall higher damage output.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 79761, + "max": 97485, + "avg": 88623 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 15 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 77 + }, + { + "ware": "siliconcarbide", + "amount": 12 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 174 + }, + { + "ware": "hullparts", + "amount": 28 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_mining_01_mk1", + "version": 0, + "name": "S Mining Drill Mk1", + "description": "No information available", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 6522, + "max": 7971, + "avg": 7247 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "pioneers", + "terran", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 1 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 45 + }, + { + "ware": "siliconcarbide", + "amount": 3 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "hullparts", + "amount": 2 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_mining_01_mk2", + "version": 0, + "name": "S Mining Drill Mk2", + "description": "No information available", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 32092, + "max": 39223, + "avg": 35658 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "pioneers", + "terran", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 44 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 145 + }, + { + "ware": "hullparts", + "amount": 11 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_plasma_01_mk1", + "version": 0, + "name": "S Plasma Cannon Mk1", + "description": "The Plasma Cannon combines high damage output with long range. Its drawbacks, slow projectile speed and fire rate, made worse by high heat generation, can make landing hits as challenging as it is important. This results in its predominant use being against capital ships, where swarms of fighters deploy Plasma Cannons to great success. Unlike short ranged weapons such as the Shard Battery and the Split Tau Accelerator, which outperform it in damage output and are more suited to attacking capital ships from a blind spot, the Plasma Cannon's greatest advantage is its range. Skilled pilots are also able to hunt down smaller targets efficiently, either by deploying the Plasma Cannon at short range or by predicting the courses of the projectile and target. Similarly, skilled pilots are also able to evade and avoid being hit by such attempts.nnThe Plasma Cannon was developed during the early days of the Paranid Civil War, by the Holy Order of the Pontifex, building upon the High Energy Plasma Thrower. Like its predecessor, it suffers from high radiation build-up, and this needs to be purged between shots to prevent it from damaging itself. The blueprint for the Plasma Cannon was stolen by the Argon Secret Service and distributed throughout the Commonwealth when the Argon Federation joined the war effort.nnThe Mk2 variant has a higher rate of fire, lower heat generation and increased damage output.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 12851, + "max": 15707, + "avg": 14279 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 20 + }, + { + "ware": "siliconcarbide", + "amount": 3 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 105 + }, + { + "ware": "hullparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_plasma_01_mk2", + "version": 0, + "name": "S Plasma Cannon Mk2", + "description": "The Plasma Cannon combines high damage output with long range. Its drawbacks, slow projectile speed and fire rate, made worse by high heat generation, can make landing hits as challenging as it is important. This results in its predominant use being against capital ships, where swarms of fighters deploy Plasma Cannons to great success. Unlike short ranged weapons such as the Shard Battery and the Split Tau Accelerator, which outperform it in damage output and are more suited to attacking capital ships from a blind spot, the Plasma Cannon's greatest advantage is its range. Skilled pilots are also able to hunt down smaller targets efficiently, either by deploying the Plasma Cannon at short range or by predicting the courses of the projectile and target. Similarly, skilled pilots are also able to evade and avoid being hit by such attempts.nnThe Plasma Cannon was developed during the early days of the Paranid Civil War, by the Holy Order of the Pontifex, building upon the High Energy Plasma Thrower. Like its predecessor, it suffers from high radiation build-up, and this needs to be purged between shots to prevent it from damaging itself. The blueprint for the Plasma Cannon was stolen by the Argon Secret Service and distributed throughout the Commonwealth when the Argon Federation joined the war effort.nnThe Mk2 variant has a higher rate of fire, lower heat generation and increased damage output.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 55827, + "max": 68233, + "avg": 62030 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 20 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 46 + }, + { + "ware": "siliconcarbide", + "amount": 6 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 66 + }, + { + "ware": "hullparts", + "amount": 18 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_shotgun_01_mk1", + "version": 0, + "name": "S Shard Battery Mk1", + "description": "The Shard Battery is essentially a spaceborne shotgun, that makes up for its low effective range and accuracy by inflicting devastating trauma against shields and hull alike. At its core, it is functionally similar to the Bolt Repeater that it was originally developed from. However, the ejection of multiple projectiles at once requires a wider barrel aperture, a larger spacing between shots, and generates a higher energy drain. When it comes to its damage output, the Shard Battery has been compared to the Plasma Cannon, but it offers a slightly different range of applications. Skilled military pilots may occasionally make use of this weapon against small targets in an attempt to end the fight quickly, but it is generally agreed upon that one should try to avoid these situations. The Shard Battery reaches its fullest potential against larger and slower targets such as M-sized ships, which cannot as easily evade its projectiles. It is also especially effective against capital ship surface elements, provided that the pilot can find an opportunity to target them from the blind spots of nearby turrets.nnThe Mk2 variant fires fewer shards at a higher speed but with a shorter interval. This raises the overall damage output and improves the weapon's accuracy, especially against more nimble targets, but in turn incurs a quicker heat build-up.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 27152, + "max": 33186, + "avg": 30169 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 5 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 35 + }, + { + "ware": "siliconcarbide", + "amount": 2 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 103 + }, + { + "ware": "hullparts", + "amount": 9 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_shotgun_01_mk2", + "version": 0, + "name": "S Shard Battery Mk2", + "description": "The Shard Battery is essentially a spaceborne shotgun, that makes up for its low effective range and accuracy by inflicting devastating trauma against shields and hull alike. At its core, it is functionally similar to the Bolt Repeater that it was originally developed from. However, the ejection of multiple projectiles at once requires a wider barrel aperture, a larger spacing between shots, and generates a higher energy drain. When it comes to its damage output, the Shard Battery has been compared to the Plasma Cannon, but it offers a slightly different range of applications. Skilled military pilots may occasionally make use of this weapon against small targets in an attempt to end the fight quickly, but it is generally agreed upon that one should try to avoid these situations. The Shard Battery reaches its fullest potential against larger and slower targets such as M-sized ships, which cannot as easily evade its projectiles. It is also especially effective against capital ship surface elements, provided that the pilot can find an opportunity to target them from the blind spots of nearby turrets.nnThe Mk2 variant fires fewer shards at a higher speed but with a shorter interval. This raises the overall damage output and improves the weapon's accuracy, especially against more nimble targets, but in turn incurs a quicker heat build-up.", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 135242, + "max": 165296, + "avg": 150269 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "yaki", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 20 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 25 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 15 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 95 + }, + { + "ware": "siliconcarbide", + "amount": 14 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 102 + }, + { + "ware": "hullparts", + "amount": 46 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_torpedo_01_mk1", + "version": 0, + "name": "S Torpedo Launcher Mk1", + "description": "No information available", + "type": "weapons", + "equipmentClass": "missilelauncher", + "size": "small", + "hull": 500, + "price": { + "min": 22558, + "max": 27571, + "avg": 25064 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 5 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 26 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 70 + }, + { + "ware": "hullparts", + "amount": 7 + } + ] + } + ] + }, + { + "id": "weapon_gen_s_torpedo_01_mk2", + "version": 0, + "name": "S Torpedo Launcher Mk2", + "description": "No information available", + "type": "weapons", + "equipmentClass": "missilelauncher", + "size": "small", + "hull": 500, + "price": { + "min": 111753, + "max": 136587, + "avg": 124170 + }, + "owners": [ + "alliance", + "antigone", + "argon", + "buccaneers", + "holyorder", + "ministry", + "paranid", + "teladi", + "trinity", + "court", + "freesplit", + "split", + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 15 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "weaponcomponents", + "amount": 25 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 12 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 94 + }, + { + "ware": "siliconcarbide", + "amount": 12 + } + ] + }, + { + "time": 5, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 168 + }, + { + "ware": "hullparts", + "amount": 37 + } + ] + } + ] + }, + { + "id": "weapon_kha_m_laser_01_mk1", + "version": 0, + "name": "KHA M Kyon Emitter Mk1", + "description": "No information available", + "race": "khaak", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1000, + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "owners": [ + "khaak" + ], + "production": [] + }, + { + "id": "weapon_kha_s_laser_01_mk1", + "version": 0, + "name": "KHA S Kyon Emitter Mk1", + "description": "No information available", + "race": "khaak", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "owners": [ + "khaak" + ], + "production": [] + }, + { + "id": "weapon_par_l_destroyer_01_mk1", + "version": 0, + "name": "Odysseus Main Battery", + "description": "No information available", + "race": "paranid", + "type": "weapons", + "equipmentClass": "weapon", + "size": "large", + "hull": 8000, + "price": { + "min": 1000201, + "max": 1222468, + "avg": 1111335 + }, + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 150 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 180 + } + ] + } + ] + }, + { + "id": "weapon_par_m_railgun_01_mk1", + "version": 0, + "name": "PAR M Mass Driver Mk1", + "description": "The Mass Driver fires a single high energy projectile, which maintains its accuracy and destructive force over a very long distance. Heat accumulates almost instantaneously when the trigger is engaged, after which the pilot can release the shot immediately or take their time to aim. These unique features come at a cost, however: the weapon is mounted in a fixed forward-facing orientation, which makes automatic target tracking impossible and means that the pilot has to rely solely on their own skill. Over an extended period of time, the energy output of this weapon may appear relatively poor, but its strength lies in the initial attack, which can surprise the target and take out vital systems before a skirmish. It is therefore most commonly used in a combined arms approach, to support an already engaged force. On fast and nimble ships, which can reliably keep their opponents at a distance, the weapon's superior range may also allow the pilot to defeat their opponent without ever coming under fire themselves.nnThis weapon is not to be confused with pre-Shutdown versions of the Mass Driver, which fired constant streams of shield-penetrating projectiles. The militaries of both the Argon Federation and the Godrealm of the Paranid attempted to improve on the old design, and both developed weapons that now bear little resemblance to the original. The Paranid opted for a dual barrel, lined with perfectly synchronised, superconductive electromagnets. It appears curious, therefore, that the weapons development experts in Trinity Sanctum, upon presenting what was essentially an entirely new type of weapon, chose to keep the traditional name.nnThe Mk2 variant incorporates expensive, highly calibrated electromagnets, greatly reducing the weapon's heat build-up before each shot.", + "race": "paranid", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 304352, + "max": 600045, + "avg": 452198 + }, + "owners": [ + "alliance", + "buccaneers", + "paranid", + "trinity", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 57 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 75 + } + ] + } + ] + }, + { + "id": "weapon_par_m_railgun_01_mk2", + "version": 0, + "name": "PAR M Mass Driver Mk2", + "description": "The Mass Driver fires a single high energy projectile, which maintains its accuracy and destructive force over a very long distance. Heat accumulates almost instantaneously when the trigger is engaged, after which the pilot can release the shot immediately or take their time to aim. These unique features come at a cost, however: the weapon is mounted in a fixed forward-facing orientation, which makes automatic target tracking impossible and means that the pilot has to rely solely on their own skill. Over an extended period of time, the energy output of this weapon may appear relatively poor, but its strength lies in the initial attack, which can surprise the target and take out vital systems before a skirmish. It is therefore most commonly used in a combined arms approach, to support an already engaged force. On fast and nimble ships, which can reliably keep their opponents at a distance, the weapon's superior range may also allow the pilot to defeat their opponent without ever coming under fire themselves.nnThis weapon is not to be confused with pre-Shutdown versions of the Mass Driver, which fired constant streams of shield-penetrating projectiles. The militaries of both the Argon Federation and the Godrealm of the Paranid attempted to improve on the old design, and both developed weapons that now bear little resemblance to the original. The Paranid opted for a dual barrel, lined with perfectly synchronised, superconductive electromagnets. It appears curious, therefore, that the weapons development experts in Trinity Sanctum, upon presenting what was essentially an entirely new type of weapon, chose to keep the traditional name.nnThe Mk2 variant incorporates expensive, highly calibrated electromagnets, greatly reducing the weapon's heat build-up before each shot.", + "race": "paranid", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 1188194, + "max": 2380428, + "avg": 1784311 + }, + "owners": [ + "alliance", + "buccaneers", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 203 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "weaponcomponents", + "amount": 375 + } + ] + } + ] + }, + { + "id": "weapon_par_s_railgun_01_mk1", + "version": 0, + "name": "PAR S Mass Driver Mk1", + "description": "The Mass Driver fires a single high energy projectile, which maintains its accuracy and destructive force over a very long distance. Heat accumulates almost instantaneously when the trigger is engaged, after which the pilot can release the shot immediately or take their time to aim. These unique features come at a cost, however: the weapon is mounted in a fixed forward-facing orientation, which makes automatic target tracking impossible and means that the pilot has to rely solely on their own skill. Over an extended period of time, the energy output of this weapon may appear relatively poor, but its strength lies in the initial attack, which can surprise the target and take out vital systems before a skirmish. It is therefore most commonly used in a combined arms approach, to support an already engaged force. On fast and nimble ships, which can reliably keep their opponents at a distance, the weapon's superior range may also allow the pilot to defeat their opponent without ever coming under fire themselves.nnThis weapon is not to be confused with pre-Shutdown versions of the Mass Driver, which fired constant streams of shield-penetrating projectiles. The militaries of both the Argon Federation and the Godrealm of the Paranid attempted to improve on the old design, and both developed weapons that now bear little resemblance to the original. The Paranid opted for a dual barrel, lined with perfectly synchronised, superconductive electromagnets. It appears curious, therefore, that the weapons development experts in Trinity Sanctum, upon presenting what was essentially an entirely new type of weapon, chose to keep the traditional name.nnThe Mk2 variant incorporates expensive, highly calibrated electromagnets, greatly reducing the weapon's heat build-up before each shot.", + "race": "paranid", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 163448, + "max": 329181, + "avg": 246314 + }, + "owners": [ + "alliance", + "buccaneers", + "paranid", + "trinity", + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 27 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 55 + } + ] + } + ] + }, + { + "id": "weapon_par_s_railgun_01_mk2", + "version": 0, + "name": "PAR S Mass Driver Mk2", + "description": "The Mass Driver fires a single high energy projectile, which maintains its accuracy and destructive force over a very long distance. Heat accumulates almost instantaneously when the trigger is engaged, after which the pilot can release the shot immediately or take their time to aim. These unique features come at a cost, however: the weapon is mounted in a fixed forward-facing orientation, which makes automatic target tracking impossible and means that the pilot has to rely solely on their own skill. Over an extended period of time, the energy output of this weapon may appear relatively poor, but its strength lies in the initial attack, which can surprise the target and take out vital systems before a skirmish. It is therefore most commonly used in a combined arms approach, to support an already engaged force. On fast and nimble ships, which can reliably keep their opponents at a distance, the weapon's superior range may also allow the pilot to defeat their opponent without ever coming under fire themselves.nnThis weapon is not to be confused with pre-Shutdown versions of the Mass Driver, which fired constant streams of shield-penetrating projectiles. The militaries of both the Argon Federation and the Godrealm of the Paranid attempted to improve on the old design, and both developed weapons that now bear little resemblance to the original. The Paranid opted for a dual barrel, lined with perfectly synchronised, superconductive electromagnets. It appears curious, therefore, that the weapons development experts in Trinity Sanctum, upon presenting what was essentially an entirely new type of weapon, chose to keep the traditional name.nnThe Mk2 variant incorporates expensive, highly calibrated electromagnets, greatly reducing the weapon's heat build-up before each shot.", + "race": "paranid", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 860045, + "max": 1724780, + "avg": 1292412 + }, + "owners": [ + "alliance", + "buccaneers", + "paranid", + "trinity" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 146 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "weaponcomponents", + "amount": 275 + } + ] + } + ] + }, + { + "id": "weapon_tel_l_destroyer_01_mk1", + "version": 0, + "name": "Phoenix Main Battery", + "description": "No information available", + "race": "teladi", + "type": "weapons", + "equipmentClass": "weapon", + "size": "large", + "hull": 8000, + "price": { + "min": 873217, + "max": 1067265, + "avg": 970241 + }, + "owners": [ + "alliance", + "ministry", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 130 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 160 + } + ] + } + ] + }, + { + "id": "weapon_tel_m_charge_01_mk1", + "version": 0, + "name": "TEL M Muon Charger Mk1", + "description": "The Muon Charger is a short range, high damage weapon. Its unusual handling requires the pilot to - as the name implies - manually charge every shot. It is recommended that it only be used when fully charged, as the damage potential is otherwise greatly reduced. Upon release, it fires multiple bolts, with a relatively small spread, which are able to stick to a target and deal damage over time. These bolts are sometimes deflected off the target entirely, resulting in them dealing little damage. If used correctly, the Muon Charger will never overheat, allowing for a continuous and consistent damage output.nnThe Ministry of Finance Science Division developed this weapon for all-round use, though arguably it can be difficult to deploy effectively in dogfights against fast targets. The ability to hold the charge and release at will was intended to give pilots more control over their weapon, and increase the fighter fleet's accuracy statistics. The unique characteristics of this weapon, however, mean that custom training is required, making it unsuitable for the Ministry's novice fighter program.nnThe Mk2 variant offers increased damage output.", + "race": "teladi", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 17978, + "max": 39980, + "avg": 28979 + }, + "owners": [ + "alliance", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 14 + } + ] + } + ] + }, + { + "id": "weapon_tel_m_charge_01_mk2", + "version": 0, + "name": "TEL M Muon Charger Mk2", + "description": "The Muon Charger is a short range, high damage weapon. Its unusual handling requires the pilot to - as the name implies - manually charge every shot. It is recommended that it only be used when fully charged, as the damage potential is otherwise greatly reduced. Upon release, it fires multiple bolts, with a relatively small spread, which are able to stick to a target and deal damage over time. These bolts are sometimes deflected off the target entirely, resulting in them dealing little damage. If used correctly, the Muon Charger will never overheat, allowing for a continuous and consistent damage output.nnThe Ministry of Finance Science Division developed this weapon for all-round use, though arguably it can be difficult to deploy effectively in dogfights against fast targets. The ability to hold the charge and release at will was intended to give pilots more control over their weapon, and increase the fighter fleet's accuracy statistics. The unique characteristics of this weapon, however, mean that custom training is required, making it unsuitable for the Ministry's novice fighter program.nnThe Mk2 variant offers increased damage output.", + "race": "teladi", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 89034, + "max": 198018, + "avg": 143526 + }, + "owners": [ + "alliance", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 70 + } + ] + } + ] + }, + { + "id": "weapon_tel_s_charge_01_mk1", + "version": 0, + "name": "TEL S Muon Charger Mk1", + "description": "The Muon Charger is a short range, high damage weapon. Its unusual handling requires the pilot to - as the name implies - manually charge every shot. It is recommended that it only be used when fully charged, as the damage potential is otherwise greatly reduced. Upon release, it fires multiple bolts, with a relatively small spread, which are able to stick to a target and deal damage over time. These bolts are sometimes deflected off the target entirely, resulting in them dealing little damage. If used correctly, the Muon Charger will never overheat, allowing for a continuous and consistent damage output.nnThe Ministry of Finance Science Division developed this weapon for all-round use, though arguably it can be difficult to deploy effectively in dogfights against fast targets. The ability to hold the charge and release at will was intended to give pilots more control over their weapon, and increase the fighter fleet's accuracy statistics. The unique characteristics of this weapon, however, mean that custom training is required, making it unsuitable for the Ministry's novice fighter program.nnThe Mk2 variant offers increased damage output.", + "race": "teladi", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 7256, + "max": 14963, + "avg": 11109 + }, + "owners": [ + "alliance", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "weaponcomponents", + "amount": 3 + } + ] + } + ] + }, + { + "id": "weapon_tel_s_charge_01_mk2", + "version": 0, + "name": "TEL S Muon Charger Mk2", + "description": "The Muon Charger is a short range, high damage weapon. Its unusual handling requires the pilot to - as the name implies - manually charge every shot. It is recommended that it only be used when fully charged, as the damage potential is otherwise greatly reduced. Upon release, it fires multiple bolts, with a relatively small spread, which are able to stick to a target and deal damage over time. These bolts are sometimes deflected off the target entirely, resulting in them dealing little damage. If used correctly, the Muon Charger will never overheat, allowing for a continuous and consistent damage output.nnThe Ministry of Finance Science Division developed this weapon for all-round use, though arguably it can be difficult to deploy effectively in dogfights against fast targets. The ability to hold the charge and release at will was intended to give pilots more control over their weapon, and increase the fighter fleet's accuracy statistics. The unique characteristics of this weapon, however, mean that custom training is required, making it unsuitable for the Ministry's novice fighter program.nnThe Mk2 variant offers increased damage output.", + "race": "teladi", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 35426, + "max": 72932, + "avg": 54179 + }, + "owners": [ + "alliance", + "teladi" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 15 + }, + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "weaponcomponents", + "amount": 5 + } + ] + } + ] + }, + { + "id": "weapon_xen_m_laser_01_mk1", + "version": 0, + "name": "M Pulse Laser Mk1", + "description": "Many experienced pilots fondly remember the affordable and reliable Pulse Laser as their first weapon. Its pin-point accuracy and high projectile speed make it an excellent choice for fighting small and fast targets, handling fragile lockboxes, and for dealing with deployables like mines and lasertowers. Often initially scoffed at for its comparatively low damage output, its slow heat generation and sublime cooling result in a steady stream of disruptive fire, which in turn rewards pilots who can stay on target for an extended period. Faced with larger enemies, the Pulse Laser does not become obsolete as quickly as one might expect. Used in greater numbers, it can still be a formidable choice against frigates and corvettes, though an upgrade to a larger weapon mount may be advisable to maintain a level playing field. The Pulse Laser remains the preferred choice of commanders who favour versatility over optimisation against specific opponents, or who have little trust in the aim of their subordinates.nnThe technology behind the Pulse Laser is advanced and efficient. Within a shielded chamber, microscopic fragments of matter are superheated and accelerated by a pulsed neodymium laser. The weapon was originally designed by the Ministry of Finance to provide a robust loadout for their escort fleets, without having to invest time and resources into the maintenance of a well-rounded combined arms setup. Over time, and thanks to the Teladi Company's aggressive marketing, it has been adopted as the number one weapon of convenience by all other former members of the Community of Planets.nnThe Mk2 variant sports a slightly longer burst. This lowers the efficiency of the heat dissipation between bursts and thereby exponentially drives up the cost of the internal shielding, but results in an overall higher damage output.", + "race": "xenon", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1001, + "price": { + "min": 24019, + "max": 29357, + "avg": 26688 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 30 + }, + { + "ware": "silicon", + "amount": 30 + } + ] + } + ] + }, + { + "id": "weapon_xen_m_mining_01_mk1", + "version": 0, + "name": "M Mining Drill Mk1", + "description": "No information available", + "race": "xenon", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "price": { + "min": 24019, + "max": 29357, + "avg": 26688 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "ore", + "amount": 30 + }, + { + "ware": "silicon", + "amount": 30 + } + ] + } + ] + }, + { + "id": "weapon_xen_s_laser_01_mk1", + "version": 0, + "name": "S Pulse Laser Mk1", + "description": "Many experienced pilots fondly remember the affordable and reliable Pulse Laser as their first weapon. Its pin-point accuracy and high projectile speed make it an excellent choice for fighting small and fast targets, handling fragile lockboxes, and for dealing with deployables like mines and lasertowers. Often initially scoffed at for its comparatively low damage output, its slow heat generation and sublime cooling result in a steady stream of disruptive fire, which in turn rewards pilots who can stay on target for an extended period. Faced with larger enemies, the Pulse Laser does not become obsolete as quickly as one might expect. Used in greater numbers, it can still be a formidable choice against frigates and corvettes, though an upgrade to a larger weapon mount may be advisable to maintain a level playing field. The Pulse Laser remains the preferred choice of commanders who favour versatility over optimisation against specific opponents, or who have little trust in the aim of their subordinates.nnThe technology behind the Pulse Laser is advanced and efficient. Within a shielded chamber, microscopic fragments of matter are superheated and accelerated by a pulsed neodymium laser. The weapon was originally designed by the Ministry of Finance to provide a robust loadout for their escort fleets, without having to invest time and resources into the maintenance of a well-rounded combined arms setup. Over time, and thanks to the Teladi Company's aggressive marketing, it has been adopted as the number one weapon of convenience by all other former members of the Community of Planets.nnThe Mk2 variant sports a slightly longer burst. This lowers the efficiency of the heat dissipation between bursts and thereby exponentially drives up the cost of the internal shielding, but results in an overall higher damage output.", + "race": "xenon", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "price": { + "min": 778, + "max": 950, + "avg": 864 + }, + "owners": [ + "xenon" + ], + "production": [ + { + "time": 4, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "ore", + "amount": 2 + } + ] + } + ] + }, + { + "id": "engine_spl_l_allround_01_mk1", + "version": 1, + "name": "SPL L All-round Engine Mk1", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "large", + "hull": 4018, + "price": { + "min": 258153, + "max": 480054, + "avg": 368448 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 5678, + "reverse": 6246 + }, + "travel": { + "thrust": 12, + "attack": 75, + "charge": 20, + "release": 0 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 129 + }, + { + "ware": "energycells", + "amount": 37 + }, + { + "ware": "engineparts", + "amount": 101 + } + ] + } + ] + }, + { + "id": "engine_spl_l_travel_01_mk1", + "version": 1, + "name": "SPL L Travel Engine Mk1", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "large", + "hull": 4018, + "price": { + "min": 266600, + "max": 496641, + "avg": 380897 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 5408, + "reverse": 4867 + }, + "travel": { + "thrust": 14, + "attack": 85, + "charge": 20, + "release": 0 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 111 + }, + { + "ware": "energycells", + "amount": 94 + }, + { + "ware": "engineparts", + "amount": 143 + } + ] + } + ] + }, + { + "id": "engine_spl_m_allround_01_mk1", + "version": 1, + "name": "SPL M All-round Engine Mk1", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 8721, + "max": 16644, + "avg": 12654 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 1353, + "reverse": 1285 + }, + "travel": { + "thrust": 5, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 25 + }, + { + "ware": "engineparts", + "amount": 10 + } + ] + } + ] + }, + { + "id": "engine_spl_m_allround_01_mk2", + "version": 1, + "name": "SPL M All-round Engine Mk2", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 43115, + "max": 81054, + "avg": 61948 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 1637, + "reverse": 1658 + }, + "travel": { + "thrust": 5, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 7 + }, + { + "ware": "energycells", + "amount": 58 + }, + { + "ware": "engineparts", + "amount": 41 + } + ] + } + ] + }, + { + "id": "engine_spl_m_allround_01_mk3", + "version": 1, + "name": "SPL M All-round Engine Mk3", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 210854, + "max": 392833, + "avg": 301234 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 1826, + "reverse": 1907 + }, + "travel": { + "thrust": 5, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 73 + }, + { + "ware": "energycells", + "amount": 84 + }, + { + "ware": "engineparts", + "amount": 141 + } + ] + } + ] + }, + { + "id": "engine_spl_m_combat_01_mk1", + "version": 1, + "name": "SPL M Combat Engine Mk1", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 10078, + "max": 19374, + "avg": 14695 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 1420, + "reverse": 1491 + }, + "travel": { + "thrust": 5, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 36 + }, + { + "ware": "engineparts", + "amount": 11 + } + ] + } + ] + }, + { + "id": "engine_spl_m_combat_01_mk2", + "version": 1, + "name": "SPL M Combat Engine Mk2", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 51756, + "max": 96917, + "avg": 74180 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 1719, + "reverse": 1986 + }, + "travel": { + "thrust": 5, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 13 + }, + { + "ware": "energycells", + "amount": 48 + }, + { + "ware": "engineparts", + "amount": 42 + } + ] + } + ] + }, + { + "id": "engine_spl_m_combat_01_mk3", + "version": 1, + "name": "SPL M Combat Engine Mk3", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 253468, + "max": 472712, + "avg": 362360 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 1917, + "reverse": 2315 + }, + "travel": { + "thrust": 5, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 87 + }, + { + "ware": "energycells", + "amount": 126 + }, + { + "ware": "engineparts", + "amount": 169 + } + ] + } + ] + }, + { + "id": "engine_spl_m_combat_01_mk4", + "version": 1, + "name": "SPL M Combat Engine Mk4", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 1267862, + "max": 2363619, + "avg": 1811825 + }, + "owners": [ + "court", + "split" + ], + "thrust": { + "forward": 2017, + "reverse": 2480 + }, + "travel": { + "thrust": 5, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 335 + }, + { + "ware": "energycells", + "amount": 636 + }, + { + "ware": "engineparts", + "amount": 1039 + } + ] + } + ] + }, + { + "id": "engine_spl_m_travel_01_mk1", + "version": 1, + "name": "SPL M Travel Engine Mk1", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 9348, + "max": 18023, + "avg": 13657 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 1353, + "reverse": 1217 + }, + "travel": { + "thrust": 7, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 36 + }, + { + "ware": "engineparts", + "amount": 10 + } + ] + } + ] + }, + { + "id": "engine_spl_m_travel_01_mk2", + "version": 1, + "name": "SPL M Travel Engine Mk2", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 48165, + "max": 90288, + "avg": 69084 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 1637, + "reverse": 1473 + }, + "travel": { + "thrust": 7, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 13 + }, + { + "ware": "energycells", + "amount": 49 + }, + { + "ware": "engineparts", + "amount": 37 + } + ] + } + ] + }, + { + "id": "engine_spl_m_travel_01_mk3", + "version": 1, + "name": "SPL M Travel Engine Mk3", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 243287, + "max": 452449, + "avg": 347073 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 1826, + "reverse": 1644 + }, + "travel": { + "thrust": 7, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 52 + }, + { + "ware": "energycells", + "amount": 73 + }, + { + "ware": "engineparts", + "amount": 227 + } + ] + } + ] + }, + { + "id": "engine_spl_s_allround_01_mk1", + "version": 1, + "name": "SPL S All-round Engine Mk1", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 3443, + "max": 6812, + "avg": 5119 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 535, + "reverse": 561 + }, + "travel": { + "thrust": 8, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 22 + }, + { + "ware": "engineparts", + "amount": 3 + } + ] + } + ] + }, + { + "id": "engine_spl_s_allround_01_mk2", + "version": 1, + "name": "SPL S All-round Engine Mk2", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 19551, + "max": 37244, + "avg": 28340 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 647, + "reverse": 775 + }, + "travel": { + "thrust": 8, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 51 + }, + { + "ware": "engineparts", + "amount": 17 + } + ] + } + ] + }, + { + "id": "engine_spl_s_allround_01_mk3", + "version": 1, + "name": "SPL S All-round Engine Mk3", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 91360, + "max": 171342, + "avg": 131077 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 722, + "reverse": 917 + }, + "travel": { + "thrust": 8, + "attack": 30, + "charge": 1, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 23 + }, + { + "ware": "energycells", + "amount": 98 + }, + { + "ware": "engineparts", + "amount": 73 + } + ] + } + ] + }, + { + "id": "engine_spl_s_combat_01_mk1", + "version": 1, + "name": "SPL S Combat Engine Mk1", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 4902, + "max": 9513, + "avg": 7193 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 561, + "reverse": 674 + }, + "travel": { + "thrust": 7, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 22 + }, + { + "ware": "engineparts", + "amount": 5 + } + ] + } + ] + }, + { + "id": "engine_spl_s_combat_01_mk2", + "version": 1, + "name": "SPL S Combat Engine Mk2", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 29617, + "max": 55883, + "avg": 42659 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 679, + "reverse": 958 + }, + "travel": { + "thrust": 7, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "engineparts", + "amount": 27 + } + ] + } + ] + }, + { + "id": "engine_spl_s_combat_01_mk3", + "version": 1, + "name": "SPL S Combat Engine Mk3", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 134474, + "max": 250800, + "avg": 192227 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 758, + "reverse": 1148 + }, + "travel": { + "thrust": 7, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 37 + }, + { + "ware": "energycells", + "amount": 72 + }, + { + "ware": "engineparts", + "amount": 107 + } + ] + } + ] + }, + { + "id": "engine_spl_s_combat_01_mk4", + "version": 1, + "name": "SPL S Combat Engine Mk4", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 672885, + "max": 1254040, + "avg": 961168 + }, + "owners": [ + "court", + "split" + ], + "thrust": { + "forward": 797, + "reverse": 1243 + }, + "travel": { + "thrust": 7, + "attack": 15, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 95 + }, + { + "ware": "energycells", + "amount": 361 + }, + { + "ware": "engineparts", + "amount": 710 + } + ] + } + ] + }, + { + "id": "engine_spl_s_travel_01_mk1", + "version": 1, + "name": "SPL S Travel Engine Mk1", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 4172, + "max": 8162, + "avg": 6156 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 535, + "reverse": 535 + }, + "travel": { + "thrust": 11, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 22 + }, + { + "ware": "engineparts", + "amount": 4 + } + ] + } + ] + }, + { + "id": "engine_spl_s_travel_01_mk2", + "version": 1, + "name": "SPL S Travel Engine Mk2", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 25342, + "max": 47977, + "avg": 36583 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 647, + "reverse": 674 + }, + "travel": { + "thrust": 11, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 51 + }, + { + "ware": "engineparts", + "amount": 23 + } + ] + } + ] + }, + { + "id": "engine_spl_s_travel_01_mk3", + "version": 1, + "name": "SPL S Travel Engine Mk3", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "small", + "price": { + "min": 123724, + "max": 230850, + "avg": 176882 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 722, + "reverse": 767 + }, + "travel": { + "thrust": 11, + "attack": 45, + "charge": 3, + "release": 0 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 23 + }, + { + "ware": "energycells", + "amount": 77 + }, + { + "ware": "engineparts", + "amount": 119 + } + ] + } + ] + }, + { + "id": "engine_spl_xl_allround_01_mk1", + "version": 1, + "name": "SPL XL All-round Engine Mk1", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "extralarge", + "hull": 9899, + "price": { + "min": 340974, + "max": 633834, + "avg": 486335 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 14953, + "reverse": 16448 + }, + "travel": { + "thrust": 12, + "attack": 75, + "charge": 30, + "release": 0 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 92 + }, + { + "ware": "energycells", + "amount": 78 + }, + { + "ware": "engineparts", + "amount": 283 + } + ] + } + ] + }, + { + "id": "engine_spl_xl_travel_01_mk1", + "version": 1, + "name": "SPL XL Travel Engine Mk1", + "description": "No information available", + "race": "split", + "type": "engines", + "equipmentClass": "engine", + "size": "extralarge", + "hull": 9955, + "price": { + "min": 352716, + "max": 656275, + "avg": 503356 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "thrust": { + "forward": 14241, + "reverse": 12817 + }, + "travel": { + "thrust": 14, + "attack": 85, + "charge": 30, + "release": 0 + }, + "production": [ + { + "time": 30, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 79 + }, + { + "ware": "energycells", + "amount": 120 + }, + { + "ware": "engineparts", + "amount": 321 + } + ] + } + ] + }, + { + "id": "missile_disruptor_light_mk1", + "version": 1, + "name": "Light Disruptor Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 896, + "hull": 1, + "price": { + "min": 1387, + "max": 1877, + "avg": 1632 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "missilecomponents", + "amount": 3 + }, + { + "ware": "smartchips", + "amount": 2 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 24 + } + ] + } + ] + }, + { + "id": "missile_interceptor_light_mk1", + "version": 1, + "name": "Light Interceptor Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 100, + "hull": 1, + "price": { + "min": 1267, + "max": 1714, + "avg": 1490 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 12 + }, + { + "ware": "missilecomponents", + "amount": 11 + }, + { + "ware": "smartchips", + "amount": 1 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 22 + } + ] + } + ] + }, + { + "id": "missile_scatter_heavy_mk1", + "version": 1, + "name": "Heavy Scatter Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 400, + "hull": 20, + "price": { + "min": 1078, + "max": 1458, + "avg": 1268 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "missilecomponents", + "amount": 24 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 19 + } + ] + } + ] + }, + { + "id": "missile_starburst_heavy_mk1", + "version": 1, + "name": "Heavy Starburst Missile Mk1", + "description": "No information available", + "type": "missiles", + "equipmentClass": "missile", + "explosionDamage": 3800, + "hull": 3, + "price": { + "min": 1700, + "max": 2300, + "avg": 2000 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 17 + }, + { + "ware": "missilecomponents", + "amount": 9 + }, + { + "ware": "smartchips", + "amount": 2 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "energycells", + "amount": 29 + } + ] + } + ] + }, + { + "id": "shield_spl_l_standard_01_mk1", + "version": 1, + "name": "SPL L Shield Generator Mk1", + "description": "No information available", + "race": "split", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 3000, + "recharge": { + "max": 33018, + "rate": 140, + "delay": 0 + }, + "price": { + "min": 27782, + "max": 64068, + "avg": 45874 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 104 + }, + { + "ware": "fieldcoils", + "amount": 5 + }, + { + "ware": "shieldcomponents", + "amount": 23 + } + ] + } + ] + }, + { + "id": "shield_spl_l_standard_01_mk2", + "version": 1, + "name": "SPL L Shield Generator Mk2", + "description": "No information available", + "race": "split", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 3000, + "recharge": { + "max": 39340, + "rate": 217, + "delay": 0 + }, + "price": { + "min": 136139, + "max": 316589, + "avg": 226085 + }, + "owners": [ + "court", + "split" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 165 + }, + { + "ware": "fieldcoils", + "amount": 31 + }, + { + "ware": "shieldcomponents", + "amount": 129 + } + ] + } + ] + }, + { + "id": "shield_spl_m_standard_01_mk1", + "version": 1, + "name": "SPL M Shield Generator Mk1", + "description": "No information available", + "race": "split", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 4375, + "rate": 21, + "delay": 0.36 + }, + "price": { + "min": 8653, + "max": 19836, + "avg": 14227 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 48 + }, + { + "ware": "fieldcoils", + "amount": 1 + }, + { + "ware": "shieldcomponents", + "amount": 7 + } + ] + } + ] + }, + { + "id": "shield_spl_m_standard_01_mk2", + "version": 1, + "name": "SPL M Shield Generator Mk2", + "description": "No information available", + "race": "split", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 5213, + "rate": 33, + "delay": 0.36 + }, + "price": { + "min": 39644, + "max": 91930, + "avg": 65687 + }, + "owners": [ + "court", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 84 + }, + { + "ware": "fieldcoils", + "amount": 6 + }, + { + "ware": "shieldcomponents", + "amount": 41 + } + ] + } + ] + }, + { + "id": "shield_spl_m_standard_02_mk1", + "version": 1, + "name": "SPL M Shield Generator Mk1", + "description": "No information available", + "race": "split", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 4375, + "rate": 21, + "delay": 0.36 + }, + "price": { + "min": 8653, + "max": 19836, + "avg": 14227 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 48 + }, + { + "ware": "fieldcoils", + "amount": 1 + }, + { + "ware": "shieldcomponents", + "amount": 7 + } + ] + } + ] + }, + { + "id": "shield_spl_m_standard_02_mk2", + "version": 1, + "name": "SPL M Shield Generator Mk2", + "description": "No information available", + "race": "split", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 5213, + "rate": 33, + "delay": 0.36 + }, + "price": { + "min": 39644, + "max": 91930, + "avg": 65687 + }, + "owners": [ + "court", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 84 + }, + { + "ware": "fieldcoils", + "amount": 6 + }, + { + "ware": "shieldcomponents", + "amount": 41 + } + ] + } + ] + }, + { + "id": "shield_spl_s_standard_01_mk1", + "version": 1, + "name": "SPL S Shield Generator Mk1", + "description": "No information available", + "race": "split", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 703, + "rate": 67, + "delay": 8.9 + }, + "price": { + "min": 929, + "max": 2132, + "avg": 1528 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 5 + }, + { + "ware": "shieldcomponents", + "amount": 1 + } + ] + } + ] + }, + { + "id": "shield_spl_s_standard_01_mk2", + "version": 1, + "name": "SPL S Shield Generator Mk2", + "description": "No information available", + "race": "split", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 840, + "rate": 103, + "delay": 8.9 + }, + "price": { + "min": 6658, + "max": 15447, + "avg": 11035 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 13 + }, + { + "ware": "fieldcoils", + "amount": 1 + }, + { + "ware": "shieldcomponents", + "amount": 7 + } + ] + } + ] + }, + { + "id": "shield_spl_s_standard_01_mk3", + "version": 1, + "name": "SPL S Shield Generator Mk3", + "description": "No information available", + "race": "split", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 1200, + "rate": 177, + "delay": 8.9 + }, + "price": { + "min": 31475, + "max": 73051, + "avg": 52166 + }, + "owners": [ + "court", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "fieldcoils", + "amount": 3 + }, + { + "ware": "shieldcomponents", + "amount": 37 + } + ] + } + ] + }, + { + "id": "shield_spl_xl_standard_01_mk1", + "version": 1, + "name": "SPL XL Shield Generator Mk1", + "description": "No information available", + "race": "split", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "extralarge", + "hull": 9000, + "recharge": { + "max": 110058, + "rate": 398, + "delay": 0 + }, + "price": { + "min": 143572, + "max": 333746, + "avg": 238442 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 184 + }, + { + "ware": "fieldcoils", + "amount": 41 + }, + { + "ware": "shieldcomponents", + "amount": 117 + } + ] + } + ] + }, + { + "id": "ship_spl_xs_police_01_a", + "version": 1, + "name": "Split Station Security Vessel", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_xs", + "hull": 281, + "price": { + "min": 7999, + "max": 10822, + "avg": 9410 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 60, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "dronecomponents", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "smartchips", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_spl_l_beam_01_mk1", + "version": 1, + "name": "SPL L Beam Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 2000, + "price": { + "min": 98006, + "max": 203353, + "avg": 150548 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 13 + }, + { + "ware": "energycells", + "amount": 42 + }, + { + "ware": "turretcomponents", + "amount": 46 + } + ] + } + ] + }, + { + "id": "turret_spl_l_dumbfire_01_mk1", + "version": 1, + "name": "SPL L Dumbfire Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "large", + "hull": 4250, + "price": { + "min": 49955, + "max": 102822, + "avg": 76329 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 7 + }, + { + "ware": "energycells", + "amount": 35 + }, + { + "ware": "turretcomponents", + "amount": 21 + } + ] + } + ] + }, + { + "id": "turret_spl_l_guided_01_mk1", + "version": 1, + "name": "SPL L Tracking Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "large", + "hull": 4250, + "price": { + "min": 51277, + "max": 113573, + "avg": 82314 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 47 + }, + { + "ware": "turretcomponents", + "amount": 39 + } + ] + } + ] + }, + { + "id": "turret_spl_l_laser_01_mk1", + "version": 1, + "name": "SPL L Pulse Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 2000, + "price": { + "min": 33835, + "max": 76716, + "avg": 55193 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 47 + }, + { + "ware": "turretcomponents", + "amount": 29 + } + ] + } + ] + }, + { + "id": "turret_spl_l_mining_01_mk1", + "version": 1, + "name": "SPL L Mining Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 2000, + "price": { + "min": 30723, + "max": 71387, + "avg": 50969 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 47 + }, + { + "ware": "turretcomponents", + "amount": 30 + } + ] + } + ] + }, + { + "id": "turret_spl_l_plasma_01_mk1", + "version": 1, + "name": "SPL L Plasma Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 2000, + "price": { + "min": 59861, + "max": 132964, + "avg": 96290 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 132 + }, + { + "ware": "turretcomponents", + "amount": 43 + } + ] + } + ] + }, + { + "id": "turret_spl_m_beam_01_mk1", + "version": 1, + "name": "SPL M Beam Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 32650, + "max": 69808, + "avg": 51180 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 81 + }, + { + "ware": "turretcomponents", + "amount": 17 + } + ] + } + ] + }, + { + "id": "turret_spl_m_beam_02_mk1", + "version": 1, + "name": "SPL M Beam Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 425, + "price": { + "min": 32650, + "max": 69808, + "avg": 51180 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 81 + }, + { + "ware": "turretcomponents", + "amount": 17 + } + ] + } + ] + }, + { + "id": "turret_spl_m_dumbfire_02_mk1", + "version": 1, + "name": "SPL M Dumbfire Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "medium", + "hull": 1000, + "price": { + "min": 15800, + "max": 36406, + "avg": 26066 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 64 + }, + { + "ware": "turretcomponents", + "amount": 13 + } + ] + } + ] + }, + { + "id": "turret_spl_m_flak_01_mk1", + "version": 1, + "name": "SPL M Flak Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 41023, + "max": 89587, + "avg": 65305 + }, + "owners": [ + "court", + "freesplit" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 45 + }, + { + "ware": "turretcomponents", + "amount": 27 + } + ] + } + ] + }, + { + "id": "turret_spl_m_flak_02_mk1", + "version": 1, + "name": "SPL M Flak Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 425, + "price": { + "min": 41023, + "max": 89587, + "avg": 65305 + }, + "owners": [ + "court", + "freesplit" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 45 + }, + { + "ware": "turretcomponents", + "amount": 27 + } + ] + } + ] + }, + { + "id": "turret_spl_m_gatling_01_mk1", + "version": 1, + "name": "SPL M Bolt Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 15116, + "max": 34901, + "avg": 24972 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 52 + }, + { + "ware": "turretcomponents", + "amount": 13 + } + ] + } + ] + }, + { + "id": "turret_spl_m_gatling_02_mk1", + "version": 1, + "name": "SPL M Bolt Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 425, + "price": { + "min": 15116, + "max": 34901, + "avg": 24972 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 52 + }, + { + "ware": "turretcomponents", + "amount": 13 + } + ] + } + ] + }, + { + "id": "turret_spl_m_guided_02_mk1", + "version": 1, + "name": "SPL M Tracking Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "medium", + "hull": 1000, + "price": { + "min": 17066, + "max": 37546, + "avg": 27275 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 48 + }, + { + "ware": "turretcomponents", + "amount": 11 + } + ] + } + ] + }, + { + "id": "turret_spl_m_laser_01_mk1", + "version": 1, + "name": "SPL M Pulse Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 13247, + "max": 30535, + "avg": 21860 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 52 + }, + { + "ware": "turretcomponents", + "amount": 11 + } + ] + } + ] + }, + { + "id": "turret_spl_m_laser_02_mk1", + "version": 1, + "name": "SPL M Pulse Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 425, + "price": { + "min": 13247, + "max": 30535, + "avg": 21860 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 52 + }, + { + "ware": "turretcomponents", + "amount": 11 + } + ] + } + ] + }, + { + "id": "turret_spl_m_mining_01_mk1", + "version": 1, + "name": "SPL M Mining Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 10374, + "max": 24088, + "avg": 17203 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 18 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_spl_m_mining_02_mk1", + "version": 1, + "name": "SPL M Mining Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 425, + "price": { + "min": 10374, + "max": 24088, + "avg": 17203 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 18 + }, + { + "ware": "turretcomponents", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_spl_m_plasma_01_mk1", + "version": 1, + "name": "SPL M Plasma Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 20258, + "max": 45201, + "avg": 32684 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 22 + }, + { + "ware": "turretcomponents", + "amount": 16 + } + ] + } + ] + }, + { + "id": "turret_spl_m_plasma_02_mk1", + "version": 1, + "name": "SPL M Plasma Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 425, + "price": { + "min": 20258, + "max": 45201, + "avg": 32684 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 22 + }, + { + "ware": "turretcomponents", + "amount": 16 + } + ] + } + ] + }, + { + "id": "turret_spl_m_shotgun_01_mk1", + "version": 1, + "name": "SPL M Shard Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 14797, + "max": 34325, + "avg": 24521 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "turretcomponents", + "amount": 14 + } + ] + } + ] + }, + { + "id": "turret_spl_m_shotgun_02_mk1", + "version": 1, + "name": "SPL M Shard Turret Mk1", + "description": "No information available", + "race": "split", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 425, + "price": { + "min": 14797, + "max": 34325, + "avg": 24521 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "turretcomponents", + "amount": 14 + } + ] + } + ] + }, + { + "id": "weapon_spl_l_destroyer_01_mk1", + "version": 1, + "name": "Rattlesnake Main Battery", + "description": "No information available", + "race": "split", + "type": "weapons", + "equipmentClass": "weapon", + "size": "large", + "hull": 8000, + "price": { + "min": 727725, + "max": 1444922, + "avg": 1086323 + }, + "owners": [ + "court", + "freesplit", + "split" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 131 + }, + { + "ware": "energycells", + "amount": 29 + }, + { + "ware": "weaponcomponents", + "amount": 201 + } + ] + } + ] + }, + { + "id": "shield_ter_l_standard_01_mk1", + "version": 2, + "name": "TER L Shield Generator Mk1", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 2000, + "recharge": { + "max": 40786, + "rate": 173, + "delay": 0 + }, + "price": { + "min": 101270, + "max": 123775, + "avg": 112523 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 500 + }, + { + "ware": "metallicmicrolattice", + "amount": 55 + }, + { + "ware": "siliconcarbide", + "amount": 8 + } + ] + } + ] + }, + { + "id": "shield_ter_l_standard_01_mk2", + "version": 2, + "name": "TER L Shield Generator Mk2", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 2000, + "recharge": { + "max": 48597, + "rate": 247, + "delay": 0 + }, + "price": { + "min": 493645, + "max": 603344, + "avg": 548494 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 21 + }, + { + "ware": "energycells", + "amount": 1000 + }, + { + "ware": "metallicmicrolattice", + "amount": 152 + }, + { + "ware": "siliconcarbide", + "amount": 22 + } + ] + } + ] + }, + { + "id": "shield_ter_l_standard_01_mk3", + "version": 2, + "name": "TER L Shield Generator Mk3", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "large", + "hull": 2000, + "recharge": { + "max": 69424, + "rate": 424, + "delay": 0 + }, + "price": { + "min": 1295367, + "max": 1752556, + "avg": 1523962 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 61 + }, + { + "ware": "energycells", + "amount": 1500 + }, + { + "ware": "metallicmicrolattice", + "amount": 393 + }, + { + "ware": "siliconcarbide", + "amount": 61 + } + ] + } + ] + }, + { + "id": "shield_ter_m_standard_01_mk1", + "version": 2, + "name": "TER M Shield Generator Mk1", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 5405, + "rate": 29, + "delay": 0.47 + }, + "price": { + "min": 30852, + "max": 37709, + "avg": 34281 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 28 + }, + { + "ware": "siliconcarbide", + "amount": 1 + } + ] + } + ] + }, + { + "id": "shield_ter_m_standard_01_mk2", + "version": 2, + "name": "TER M Shield Generator Mk2", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 6439, + "rate": 45, + "delay": 0.47 + }, + "price": { + "min": 149164, + "max": 182311, + "avg": 165737 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 400 + }, + { + "ware": "metallicmicrolattice", + "amount": 62 + }, + { + "ware": "siliconcarbide", + "amount": 7 + } + ] + } + ] + }, + { + "id": "shield_ter_m_standard_01_mk3", + "version": 2, + "name": "TER M Shield Generator Mk3", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 9199, + "rate": 77, + "delay": 0.47 + }, + "price": { + "min": 673420, + "max": 911098, + "avg": 792259 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 32 + }, + { + "ware": "energycells", + "amount": 600 + }, + { + "ware": "metallicmicrolattice", + "amount": 206 + }, + { + "ware": "siliconcarbide", + "amount": 32 + } + ] + } + ] + }, + { + "id": "shield_ter_m_standard_02_mk1", + "version": 2, + "name": "TER M Shield Generator Mk1", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 5405, + "rate": 29, + "delay": 0.47 + }, + "price": { + "min": 30852, + "max": 37709, + "avg": 34281 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 28 + }, + { + "ware": "siliconcarbide", + "amount": 1 + } + ] + } + ] + }, + { + "id": "shield_ter_m_standard_02_mk2", + "version": 2, + "name": "TER M Shield Generator Mk2", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 6439, + "rate": 45, + "delay": 0.47 + }, + "price": { + "min": 147892, + "max": 180757, + "avg": 164325 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 250 + }, + { + "ware": "metallicmicrolattice", + "amount": 70 + }, + { + "ware": "siliconcarbide", + "amount": 8 + } + ] + } + ] + }, + { + "id": "shield_ter_m_standard_02_mk3", + "version": 2, + "name": "TER M Shield Generator Mk3", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "hull": 500, + "recharge": { + "max": 9199, + "rate": 77, + "delay": 0.47 + }, + "price": { + "min": 673420, + "max": 911098, + "avg": 792259 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 32 + }, + { + "ware": "energycells", + "amount": 600 + }, + { + "ware": "metallicmicrolattice", + "amount": 206 + }, + { + "ware": "siliconcarbide", + "amount": 32 + } + ] + } + ] + }, + { + "id": "shield_ter_s_standard_01_mk1", + "version": 2, + "name": "TER S Shield Generator Mk1", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 869, + "rate": 91, + "delay": 11.5 + }, + "price": { + "min": 3014, + "max": 3684, + "avg": 3349 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 12 + } + ] + } + ] + }, + { + "id": "shield_ter_s_standard_01_mk2", + "version": 2, + "name": "TER S Shield Generator Mk2", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 1037, + "rate": 141, + "delay": 11.5 + }, + "price": { + "min": 24519, + "max": 29968, + "avg": 27243 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 54 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + } + ] + }, + { + "id": "shield_ter_s_standard_01_mk3", + "version": 2, + "name": "TER S Shield Generator Mk3", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "small", + "recharge": { + "max": 1482, + "rate": 242, + "delay": 11.5 + }, + "price": { + "min": 119811, + "max": 146436, + "avg": 133124 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 48 + }, + { + "ware": "siliconcarbide", + "amount": 6 + } + ] + } + ] + }, + { + "id": "shield_ter_xl_standard_01_mk1", + "version": 2, + "name": "TER XL Shield Generator Mk1", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "extralarge", + "hull": 6000, + "recharge": { + "max": 135955, + "rate": 544, + "delay": 0 + }, + "price": { + "min": 541710, + "max": 662091, + "avg": 601900 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 23 + }, + { + "ware": "energycells", + "amount": 1500 + }, + { + "ware": "metallicmicrolattice", + "amount": 134 + }, + { + "ware": "siliconcarbide", + "amount": 21 + } + ] + } + ] + }, + { + "id": "shield_ter_xl_standard_01_mk2", + "version": 2, + "name": "TER XL Shield Generator Mk2", + "description": "No information available", + "race": "terran", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "extralarge", + "hull": 8000, + "recharge": { + "max": 161988, + "rate": 842, + "delay": 0 + }, + "price": { + "min": 3060534, + "max": 4140723, + "avg": 3600629 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 150 + }, + { + "ware": "energycells", + "amount": 2000 + }, + { + "ware": "metallicmicrolattice", + "amount": 764 + }, + { + "ware": "siliconcarbide", + "amount": 133 + } + ] + } + ] + }, + { + "id": "ship_ter_xs_police_01_a", + "version": 2, + "name": "Terran Station Security Vessel", + "description": "No information available", + "type": "drones", + "equipmentClass": "ship_xs", + "hull": 300, + "price": { + "min": 24676, + "max": 30160, + "avg": 27418 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 60, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 2 + }, + { + "ware": "siliconcarbide", + "amount": 2 + } + ] + } + ] + }, + { + "id": "turret_ter_l_beam_01_mk1", + "version": 2, + "name": "TER L Beam Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3600, + "price": { + "min": 325218, + "max": 397488, + "avg": 361353 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 15 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 100 + }, + { + "ware": "siliconcarbide", + "amount": 14 + } + ] + } + ] + }, + { + "id": "turret_ter_l_dumbfire_01_mk1", + "version": 2, + "name": "TER L Dumbfire Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "large", + "hull": 7800, + "price": { + "min": 163005, + "max": 199229, + "avg": 181117 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 7 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 64 + }, + { + "ware": "siliconcarbide", + "amount": 9 + } + ] + } + ] + }, + { + "id": "turret_ter_l_gatling_01_mk1", + "version": 2, + "name": "TER L Bolt Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3600, + "price": { + "min": 157080, + "max": 212520, + "avg": 184800 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 7 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 66 + }, + { + "ware": "siliconcarbide", + "amount": 10 + } + ] + } + ] + }, + { + "id": "turret_ter_l_guided_01_mk1", + "version": 2, + "name": "TER L Tracking Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "large", + "hull": 7800, + "price": { + "min": 187858, + "max": 229604, + "avg": 208731 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 72 + }, + { + "ware": "siliconcarbide", + "amount": 11 + } + ] + } + ] + }, + { + "id": "turret_ter_l_laser_01_mk1", + "version": 2, + "name": "TER L Pulse Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3600, + "price": { + "min": 125573, + "max": 153479, + "avg": 139526 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 77 + }, + { + "ware": "siliconcarbide", + "amount": 8 + } + ] + } + ] + }, + { + "id": "turret_ter_l_mining_01_mk1", + "version": 2, + "name": "TER L Mining Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 3600, + "price": { + "min": 118070, + "max": 144308, + "avg": 131189 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 64 + }, + { + "ware": "siliconcarbide", + "amount": 6 + } + ] + } + ] + }, + { + "id": "turret_ter_m_beam_01_mk1", + "version": 2, + "name": "TER M Beam Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 108959, + "max": 133172, + "avg": 121065 + }, + "owners": [ + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 36 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + } + ] + }, + { + "id": "turret_ter_m_beam_02_mk1", + "version": 2, + "name": "TER M Beam Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 800, + "price": { + "min": 108959, + "max": 133172, + "avg": 121065 + }, + "owners": [ + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 36 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + } + ] + }, + { + "id": "turret_ter_m_dumbfire_02_mk1", + "version": 2, + "name": "TER M Dumbfire Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "medium", + "hull": 1700, + "price": { + "min": 54983, + "max": 67201, + "avg": 61092 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 33 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + } + ] + }, + { + "id": "turret_ter_m_gatling_01_mk1", + "version": 2, + "name": "TER M Bolt Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 59203, + "max": 72360, + "avg": 65782 + }, + "owners": [ + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 60 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + } + ] + }, + { + "id": "turret_ter_m_gatling_02_mk1", + "version": 2, + "name": "TER M Bolt Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 800, + "price": { + "min": 54862, + "max": 67054, + "avg": 60958 + }, + "owners": [ + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 48 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + } + ] + }, + { + "id": "turret_ter_m_guided_02_mk1", + "version": 2, + "name": "TER M Tracking Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "missileturret", + "size": "medium", + "hull": 1700, + "price": { + "min": 63237, + "max": 77289, + "avg": 70263 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 53 + }, + { + "ware": "siliconcarbide", + "amount": 6 + } + ] + } + ] + }, + { + "id": "turret_ter_m_laser_01_mk1", + "version": 2, + "name": "TER M Pulse Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 51378, + "max": 62796, + "avg": 57087 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 44 + }, + { + "ware": "siliconcarbide", + "amount": 3 + } + ] + } + ] + }, + { + "id": "turret_ter_m_laser_02_mk1", + "version": 2, + "name": "TER M Pulse Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 800, + "price": { + "min": 51378, + "max": 62796, + "avg": 57087 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 44 + }, + { + "ware": "siliconcarbide", + "amount": 3 + } + ] + } + ] + }, + { + "id": "turret_ter_m_mining_01_mk1", + "version": 2, + "name": "TER M Mining Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 39497, + "max": 48274, + "avg": 43886 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 43 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + } + ] + }, + { + "id": "turret_ter_m_mining_02_mk1", + "version": 2, + "name": "TER M Mining Turret Mk1", + "description": "No information available", + "race": "terran", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 800, + "price": { + "min": 39497, + "max": 48274, + "avg": 43886 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 43 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + } + ] + }, + { + "id": "weapon_atf_xl_battleship_01_mk1", + "version": 2, + "name": "ATF XL Main Battery", + "description": "No information available", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "extralarge", + "hull": 10000, + "price": { + "min": 7888918, + "max": 9642011, + "avg": 8765465 + }, + "owners": [ + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 373 + }, + { + "ware": "energycells", + "amount": 1000 + }, + { + "ware": "metallicmicrolattice", + "amount": 1862 + }, + { + "ware": "siliconcarbide", + "amount": 322 + } + ] + } + ] + }, + { + "id": "weapon_clustermine_01", + "version": 2, + "name": "Cluster Mine", + "description": "Cluster Mines are much like Friend/Foe Mines, but are used for area coverage. Instead of a single explosive device, deployment of a cluster package results in an array of such devices, each equipped with its own target detection and detonation mechanisms. The result is a deadly carpet of mines, which is hard to navigate through and even harder to disarm without the correct security codes.", + "type": "weapons", + "equipmentClass": "mine", + "explosionDamage": 200, + "hull": 100, + "price": { + "min": 5812, + "max": 7862, + "avg": 6838 + }, + "owners": [ + "yaki" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 6 + }, + { + "ware": "weaponcomponents", + "amount": 4 + } + ] + } + ] + }, + { + "id": "weapon_ter_l_destroyer_01_mk1", + "version": 2, + "name": "Terran Main Battery", + "description": "No information available", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "large", + "hull": 8000, + "price": { + "min": 2423602, + "max": 3278990, + "avg": 2851296 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 123 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 500 + }, + { + "ware": "siliconcarbide", + "amount": 100 + } + ] + } + ] + }, + { + "id": "weapon_ter_m_beam_01_mk1", + "version": 2, + "name": "TER M Meson Stream Mk1", + "description": "The Meson Stream is an incredibly powerful, and correspondingly expensive, weapon that fires a single transient beam that strikes almost instantly. Similar to other high precision weapons, the Meson Stream does not automatically track its target, and relies on the pilot's skill for aiming. In other respects, including its moderate range, it handles more similarly to beam weapons such as the Beam Emitter. The Meson Stream does not require charging, and can theoretically be fired without releasing the trigger. However, the ship's maximum heat capacity will usually prevent this kind of usage. Because of the weapon's extreme power consumption and heat generation, it can only be attached to high-energy weapon mounts.nnFor a variety of reasons, the Terran military had long since toyed with the idea of an oversized laser cannon. Despite requiring an entirely new, specialised platform, and bearing an abysmally wasteful energy profile, such a weapon's potential as a deterrent was never in question. Moreover, superweapons maintain a special place in the heart of Terran popular culture, and when the time came to develop the first small-scale prototype, there was overwhelming public support for the project. In light of this, the Meson Stream represented the first cautious, yet determined, steps of the Terran Protectorate towards fulfilling a long-harboured fantasy.nnIn return for massively increased material cost, the Mk2 variant manages to raise the energy output of the weapon to an even higher level.", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1000, + "price": { + "min": 917470, + "max": 1241282, + "avg": 1079376 + }, + "owners": [ + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 46 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 230 + }, + { + "ware": "siliconcarbide", + "amount": 40 + } + ] + } + ] + }, + { + "id": "weapon_ter_m_beam_01_mk2", + "version": 2, + "name": "TER M Meson Stream Mk2", + "description": "The Meson Stream is an incredibly powerful, and correspondingly expensive, weapon that fires a single transient beam that strikes almost instantly. Similar to other high precision weapons, the Meson Stream does not automatically track its target, and relies on the pilot's skill for aiming. In other respects, including its moderate range, it handles more similarly to beam weapons such as the Beam Emitter. The Meson Stream does not require charging, and can theoretically be fired without releasing the trigger. However, the ship's maximum heat capacity will usually prevent this kind of usage. Because of the weapon's extreme power consumption and heat generation, it can only be attached to high-energy weapon mounts.nnFor a variety of reasons, the Terran military had long since toyed with the idea of an oversized laser cannon. Despite requiring an entirely new, specialised platform, and bearing an abysmally wasteful energy profile, such a weapon's potential as a deterrent was never in question. Moreover, superweapons maintain a special place in the heart of Terran popular culture, and when the time came to develop the first small-scale prototype, there was overwhelming public support for the project. In light of this, the Meson Stream represented the first cautious, yet determined, steps of the Terran Protectorate towards fulfilling a long-harboured fantasy.nnIn return for massively increased material cost, the Mk2 variant manages to raise the energy output of the weapon to an even higher level.", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1000, + "price": { + "min": 4559808, + "max": 6169148, + "avg": 5364478 + }, + "owners": [ + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 141 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 713 + }, + { + "ware": "siliconcarbide", + "amount": 121 + } + ] + } + ] + }, + { + "id": "weapon_ter_m_gatling_01_mk1", + "version": 2, + "name": "TER M Proton Barrage Mk1", + "description": "The Terran Proton Barrage is a short range weapon which can only be attached to high-energy weapon mounts. It is considered the Terran high-energy variant of the Commonwealth Bolt Repeater. Compared to the Bolt Repeater, the Proton Barrage offers higher damage output and projectile speed, but forfeits some of its range. While providing more damage in total, the Barrage has a lower fire rate and focusses on delivering more powerful individual projectiles during its long bursts. Its main downsides are its compatibility restriction that limits it to Terran ship designs, and the fact that it is twice as expensive when compared to the weaker Commonwealth Bolt Repeater. The Proton Barrage is a generalist weapon which performs well against most reasonable targets.nnWith the reconnection of the Commonwealth, the Terran Secret Service acquired the Bolt Repeater blueprint, enabling Terran engineers to develop it into the Proton Barrage. They adjusted it for Terran high-energy mount compatibility, effectively increasing its power, while also preventing the Commonwealth from using it.nnThe Mk2 variant increases the damage output, despite reducing the rate of fire, by making the individual projectiles more powerful still.", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1000, + "price": { + "min": 140876, + "max": 190596, + "avg": 165736 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 44 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + } + ] + }, + { + "id": "weapon_ter_m_gatling_01_mk2", + "version": 2, + "name": "TER M Proton Barrage Mk2", + "description": "The Terran Proton Barrage is a short range weapon which can only be attached to high-energy weapon mounts. It is considered the Terran high-energy variant of the Commonwealth Bolt Repeater. Compared to the Bolt Repeater, the Proton Barrage offers higher damage output and projectile speed, but forfeits some of its range. While providing more damage in total, the Barrage has a lower fire rate and focusses on delivering more powerful individual projectiles during its long bursts. Its main downsides are its compatibility restriction that limits it to Terran ship designs, and the fact that it is twice as expensive when compared to the weaker Commonwealth Bolt Repeater. The Proton Barrage is a generalist weapon which performs well against most reasonable targets.nnWith the reconnection of the Commonwealth, the Terran Secret Service acquired the Bolt Repeater blueprint, enabling Terran engineers to develop it into the Proton Barrage. They adjusted it for Terran high-energy mount compatibility, effectively increasing its power, while also preventing the Commonwealth from using it.nnThe Mk2 variant increases the damage output, despite reducing the rate of fire, by making the individual projectiles more powerful still.", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1000, + "price": { + "min": 700151, + "max": 947263, + "avg": 823707 + }, + "owners": [ + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 13 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 96 + }, + { + "ware": "siliconcarbide", + "amount": 13 + } + ] + } + ] + }, + { + "id": "weapon_ter_m_laser_01_mk1", + "version": 2, + "name": "M Pulse Laser Mk1", + "description": "Many experienced pilots fondly remember the affordable and reliable Pulse Laser as their first weapon. Its pin-point accuracy and high projectile speed make it an excellent choice for fighting small and fast targets, handling fragile lockboxes, and for dealing with deployables like mines and lasertowers. Often initially scoffed at for its comparatively low damage output, its slow heat generation and sublime cooling result in a steady stream of disruptive fire, which in turn rewards pilots who can stay on target for an extended period. Faced with larger enemies, the Pulse Laser does not become obsolete as quickly as one might expect. Used in greater numbers, it can still be a formidable choice against frigates and corvettes, though an upgrade to a larger weapon mount may be advisable to maintain a level playing field. The Pulse Laser remains the preferred choice of commanders who favour versatility over optimisation against specific opponents, or who have little trust in the aim of their subordinates.nnThe technology behind the Pulse Laser is advanced and efficient. Within a shielded chamber, microscopic fragments of matter are superheated and accelerated by a pulsed neodymium laser. The weapon was originally designed by the Ministry of Finance to provide a robust loadout for their escort fleets, without having to invest time and resources into the maintenance of a well-rounded combined arms setup. Over time, and thanks to the Teladi Company's aggressive marketing, it has been adopted as the number one weapon of convenience by all other former members of the Community of Planets.nnThe Mk2 variant sports a slightly longer burst. This lowers the efficiency of the heat dissipation between bursts and thereby exponentially drives up the cost of the internal shielding, but results in an overall higher damage output.", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1000, + "price": { + "min": 47128, + "max": 63762, + "avg": 55445 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 30 + }, + { + "ware": "siliconcarbide", + "amount": 3 + } + ] + } + ] + }, + { + "id": "weapon_ter_m_laser_01_mk2", + "version": 2, + "name": "M Pulse Laser Mk2", + "description": "Many experienced pilots fondly remember the affordable and reliable Pulse Laser as their first weapon. Its pin-point accuracy and high projectile speed make it an excellent choice for fighting small and fast targets, handling fragile lockboxes, and for dealing with deployables like mines and lasertowers. Often initially scoffed at for its comparatively low damage output, its slow heat generation and sublime cooling result in a steady stream of disruptive fire, which in turn rewards pilots who can stay on target for an extended period. Faced with larger enemies, the Pulse Laser does not become obsolete as quickly as one might expect. Used in greater numbers, it can still be a formidable choice against frigates and corvettes, though an upgrade to a larger weapon mount may be advisable to maintain a level playing field. The Pulse Laser remains the preferred choice of commanders who favour versatility over optimisation against specific opponents, or who have little trust in the aim of their subordinates.nnThe technology behind the Pulse Laser is advanced and efficient. Within a shielded chamber, microscopic fragments of matter are superheated and accelerated by a pulsed neodymium laser. The weapon was originally designed by the Ministry of Finance to provide a robust loadout for their escort fleets, without having to invest time and resources into the maintenance of a well-rounded combined arms setup. Over time, and thanks to the Teladi Company's aggressive marketing, it has been adopted as the number one weapon of convenience by all other former members of the Community of Planets.nnThe Mk2 variant sports a slightly longer burst. This lowers the efficiency of the heat dissipation between bursts and thereby exponentially drives up the cost of the internal shielding, but results in an overall higher damage output.", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "hull": 1000, + "price": { + "min": 234216, + "max": 316881, + "avg": 275549 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 11 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 75 + }, + { + "ware": "siliconcarbide", + "amount": 13 + } + ] + } + ] + }, + { + "id": "weapon_ter_s_beam_01_mk1", + "version": 2, + "name": "TER S Meson Stream Mk1", + "description": "The Meson Stream is an incredibly powerful, and correspondingly expensive, weapon that fires a single transient beam that strikes almost instantly. Similar to other high precision weapons, the Meson Stream does not automatically track its target, and relies on the pilot's skill for aiming. In other respects, including its moderate range, it handles more similarly to beam weapons such as the Beam Emitter. The Meson Stream does not require charging, and can theoretically be fired without releasing the trigger. However, the ship's maximum heat capacity will usually prevent this kind of usage. Because of the weapon's extreme power consumption and heat generation, it can only be attached to high-energy weapon mounts.nnFor a variety of reasons, the Terran military had long since toyed with the idea of an oversized laser cannon. Despite requiring an entirely new, specialised platform, and bearing an abysmally wasteful energy profile, such a weapon's potential as a deterrent was never in question. Moreover, superweapons maintain a special place in the heart of Terran popular culture, and when the time came to develop the first small-scale prototype, there was overwhelming public support for the project. In light of this, the Meson Stream represented the first cautious, yet determined, steps of the Terran Protectorate towards fulfilling a long-harboured fantasy.nnIn return for massively increased material cost, the Mk2 variant manages to raise the energy output of the weapon to an even higher level.", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 489788, + "max": 662654, + "avg": 576221 + }, + "owners": [ + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 24 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 161 + }, + { + "ware": "siliconcarbide", + "amount": 23 + } + ] + } + ] + }, + { + "id": "weapon_ter_s_beam_01_mk2", + "version": 2, + "name": "TER S Meson Stream Mk2", + "description": "The Meson Stream is an incredibly powerful, and correspondingly expensive, weapon that fires a single transient beam that strikes almost instantly. Similar to other high precision weapons, the Meson Stream does not automatically track its target, and relies on the pilot's skill for aiming. In other respects, including its moderate range, it handles more similarly to beam weapons such as the Beam Emitter. The Meson Stream does not require charging, and can theoretically be fired without releasing the trigger. However, the ship's maximum heat capacity will usually prevent this kind of usage. Because of the weapon's extreme power consumption and heat generation, it can only be attached to high-energy weapon mounts.nnFor a variety of reasons, the Terran military had long since toyed with the idea of an oversized laser cannon. Despite requiring an entirely new, specialised platform, and bearing an abysmally wasteful energy profile, such a weapon's potential as a deterrent was never in question. Moreover, superweapons maintain a special place in the heart of Terran popular culture, and when the time came to develop the first small-scale prototype, there was overwhelming public support for the project. In light of this, the Meson Stream represented the first cautious, yet determined, steps of the Terran Protectorate towards fulfilling a long-harboured fantasy.nnIn return for massively increased material cost, the Mk2 variant manages to raise the energy output of the weapon to an even higher level.", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 2367396, + "max": 3202947, + "avg": 2785171 + }, + "owners": [ + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 118 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 611 + }, + { + "ware": "siliconcarbide", + "amount": 107 + } + ] + } + ] + }, + { + "id": "weapon_ter_s_gatling_01_mk1", + "version": 2, + "name": "TER S Proton Barrage Mk1", + "description": "The Terran Proton Barrage is a short range weapon which can only be attached to high-energy weapon mounts. It is considered the Terran high-energy variant of the Commonwealth Bolt Repeater. Compared to the Bolt Repeater, the Proton Barrage offers higher damage output and projectile speed, but forfeits some of its range. While providing more damage in total, the Barrage has a lower fire rate and focusses on delivering more powerful individual projectiles during its long bursts. Its main downsides are its compatibility restriction that limits it to Terran ship designs, and the fact that it is twice as expensive when compared to the weaker Commonwealth Bolt Repeater. The Proton Barrage is a generalist weapon which performs well against most reasonable targets.nnWith the reconnection of the Commonwealth, the Terran Secret Service acquired the Bolt Repeater blueprint, enabling Terran engineers to develop it into the Proton Barrage. They adjusted it for Terran high-energy mount compatibility, effectively increasing its power, while also preventing the Commonwealth from using it.nnThe Mk2 variant increases the damage output, despite reducing the rate of fire, by making the individual projectiles more powerful still.", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 97679, + "max": 132154, + "avg": 114917 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 53 + }, + { + "ware": "siliconcarbide", + "amount": 8 + } + ] + } + ] + }, + { + "id": "weapon_ter_s_gatling_01_mk2", + "version": 2, + "name": "TER S Proton Barrage Mk2", + "description": "The Terran Proton Barrage is a short range weapon which can only be attached to high-energy weapon mounts. It is considered the Terran high-energy variant of the Commonwealth Bolt Repeater. Compared to the Bolt Repeater, the Proton Barrage offers higher damage output and projectile speed, but forfeits some of its range. While providing more damage in total, the Barrage has a lower fire rate and focusses on delivering more powerful individual projectiles during its long bursts. Its main downsides are its compatibility restriction that limits it to Terran ship designs, and the fact that it is twice as expensive when compared to the weaker Commonwealth Bolt Repeater. The Proton Barrage is a generalist weapon which performs well against most reasonable targets.nnWith the reconnection of the Commonwealth, the Terran Secret Service acquired the Bolt Repeater blueprint, enabling Terran engineers to develop it into the Proton Barrage. They adjusted it for Terran high-energy mount compatibility, effectively increasing its power, while also preventing the Commonwealth from using it.nnThe Mk2 variant increases the damage output, despite reducing the rate of fire, by making the individual projectiles more powerful still.", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 486903, + "max": 658751, + "avg": 572827 + }, + "owners": [ + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 24 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 145 + }, + { + "ware": "siliconcarbide", + "amount": 22 + } + ] + } + ] + }, + { + "id": "weapon_ter_s_laser_01_mk1", + "version": 2, + "name": "S Pulse Laser Mk1", + "description": "Many experienced pilots fondly remember the affordable and reliable Pulse Laser as their first weapon. Its pin-point accuracy and high projectile speed make it an excellent choice for fighting small and fast targets, handling fragile lockboxes, and for dealing with deployables like mines and lasertowers. Often initially scoffed at for its comparatively low damage output, its slow heat generation and sublime cooling result in a steady stream of disruptive fire, which in turn rewards pilots who can stay on target for an extended period. Faced with larger enemies, the Pulse Laser does not become obsolete as quickly as one might expect. Used in greater numbers, it can still be a formidable choice against frigates and corvettes, though an upgrade to a larger weapon mount may be advisable to maintain a level playing field. The Pulse Laser remains the preferred choice of commanders who favour versatility over optimisation against specific opponents, or who have little trust in the aim of their subordinates.nnThe technology behind the Pulse Laser is advanced and efficient. Within a shielded chamber, microscopic fragments of matter are superheated and accelerated by a pulsed neodymium laser. The weapon was originally designed by the Ministry of Finance to provide a robust loadout for their escort fleets, without having to invest time and resources into the maintenance of a well-rounded combined arms setup. Over time, and thanks to the Teladi Company's aggressive marketing, it has been adopted as the number one weapon of convenience by all other former members of the Community of Planets.nnThe Mk2 variant sports a slightly longer burst. This lowers the efficiency of the heat dissipation between bursts and thereby exponentially drives up the cost of the internal shielding, but results in an overall higher damage output.", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 36516, + "max": 49404, + "avg": 42960 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 1 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "metallicmicrolattice", + "amount": 35 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + } + ] + }, + { + "id": "weapon_ter_s_laser_01_mk2", + "version": 2, + "name": "S Pulse Laser Mk2", + "description": "Many experienced pilots fondly remember the affordable and reliable Pulse Laser as their first weapon. Its pin-point accuracy and high projectile speed make it an excellent choice for fighting small and fast targets, handling fragile lockboxes, and for dealing with deployables like mines and lasertowers. Often initially scoffed at for its comparatively low damage output, its slow heat generation and sublime cooling result in a steady stream of disruptive fire, which in turn rewards pilots who can stay on target for an extended period. Faced with larger enemies, the Pulse Laser does not become obsolete as quickly as one might expect. Used in greater numbers, it can still be a formidable choice against frigates and corvettes, though an upgrade to a larger weapon mount may be advisable to maintain a level playing field. The Pulse Laser remains the preferred choice of commanders who favour versatility over optimisation against specific opponents, or who have little trust in the aim of their subordinates.nnThe technology behind the Pulse Laser is advanced and efficient. Within a shielded chamber, microscopic fragments of matter are superheated and accelerated by a pulsed neodymium laser. The weapon was originally designed by the Ministry of Finance to provide a robust loadout for their escort fleets, without having to invest time and resources into the maintenance of a well-rounded combined arms setup. Over time, and thanks to the Teladi Company's aggressive marketing, it has been adopted as the number one weapon of convenience by all other former members of the Community of Planets.nnThe Mk2 variant sports a slightly longer burst. This lowers the efficiency of the heat dissipation between bursts and thereby exponentially drives up the cost of the internal shielding, but results in an overall higher damage output.", + "race": "terran", + "type": "weapons", + "equipmentClass": "weapon", + "size": "small", + "hull": 500, + "price": { + "min": 180862, + "max": 244696, + "avg": 212779 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "metallicmicrolattice", + "amount": 77 + }, + { + "ware": "siliconcarbide", + "amount": 12 + } + ] + } + ] + }, + { + "id": "engine_gen_m_yacht_01_mk1", + "version": 2, + "name": "Astrid M Engine", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "medium", + "price": { + "min": 601290, + "max": 813510, + "avg": 707400 + }, + "owners": [ + "loanshark" + ], + "thrust": { + "forward": 2415, + "reverse": 3139 + }, + "travel": { + "thrust": 12, + "attack": 10, + "charge": 0, + "release": 0 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 200 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "engineparts", + "amount": 250 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 34 + }, + { + "ware": "energycells", + "amount": 460 + }, + { + "ware": "hullparts", + "amount": 197 + } + ] + } + ] + }, + { + "id": "engine_pir_xl_battleship_01_allround_01_mk1", + "version": 2, + "name": "Erlking XL Engine", + "description": "No information available", + "race": "argon", + "type": "engines", + "equipmentClass": "engine", + "size": "extralarge", + "hull": 10973, + "price": { + "min": 45773, + "max": 61928, + "avg": 53850 + }, + "owners": [ + "ownerless" + ], + "thrust": { + "forward": 20560, + "reverse": 22616 + }, + "travel": { + "thrust": 33, + "attack": 75, + "charge": 30, + "release": 0 + }, + "production": [ + { + "time": 140, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimatterconverters", + "amount": 11 + }, + { + "ware": "energycells", + "amount": 45 + }, + { + "ware": "engineparts", + "amount": 93 + } + ] + } + ] + }, + { + "id": "shield_gen_m_yacht_01_mk1", + "version": 2, + "name": "Astrid M Shield Generator", + "description": "No information available", + "race": "argon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "medium", + "recharge": { + "max": 50911, + "rate": 709, + "delay": 0.28 + }, + "price": { + "min": 52958, + "max": 71650, + "avg": 62304 + }, + "owners": [ + "loanshark" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "fieldcoils", + "amount": 50 + }, + { + "ware": "shieldcomponents", + "amount": 20 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 7 + }, + { + "ware": "energycells", + "amount": 168 + }, + { + "ware": "hullparts", + "amount": 43 + } + ] + } + ] + }, + { + "id": "shield_pir_xl_battleship_01_standard_01_mk1", + "version": 2, + "name": "Erlking XL Shield Generator", + "description": "No information available", + "race": "argon", + "type": "shields", + "equipmentClass": "shieldgenerator", + "size": "extralarge", + "hull": 8100, + "recharge": { + "max": 158600, + "rate": 662, + "delay": 0 + }, + "price": { + "min": 102082, + "max": 138110, + "avg": 120096 + }, + "owners": [ + "ownerless" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "fieldcoils", + "amount": 100 + }, + { + "ware": "shieldcomponents", + "amount": 30 + } + ] + } + ] + }, + { + "id": "turret_gen_m_yacht_01_mk1", + "version": 2, + "name": "Astrid M Turret", + "description": "\"You won't believe how many pointless features this turret has that nobody asked for. I can also immediately tell, without looking at it, that the target acquisition code suffers from extreme spaghettification. It's unfathomable to me, how the designers can keep adding functions to each version before ironing out the countless flaws that have riddled it since its inception. I should have known better than to buy anything that comes out of Windfall these days. Those swindlers on Aurora are the worst of the bunch. Have I mentioned that the AI in this thing is atrocious? 7/10\" - Anonymous", + "race": "argon", + "type": "weapons", + "equipmentClass": "turret", + "size": "medium", + "price": { + "min": 81192, + "max": 109848, + "avg": 95520 + }, + "owners": [ + "loanshark" + ], + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 10 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "turretcomponents", + "amount": 20 + } + ] + }, + { + "time": 20, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 145 + }, + { + "ware": "hullparts", + "amount": 26 + } + ] + } + ] + }, + { + "id": "turret_pir_l_battleship_01_laser_01_mk1", + "version": 2, + "name": "Erlking L Turret", + "description": "The Erlking L Turret fires a single high speed projectile, superheated and accelerated by a custom pulsed laser. While fixed weapons usually outperform their turret counterparts of the same size, the Erlking's turrets are an unusual exception; the damage from this turret is comparable to, and might even exceed, that of L Pulse Laser weapons at close range. Over distance, however, the damage output falls off steeply, and at maximum range barely matches that of a standard L Pulse Laser turret. Although the Erlking is perfectly capable of defending itself at a distance, the high damage output of its turrets at short range makes it much more dangerous at close proximity, meaning that aggressive manoeuvres by the Erlking's pilot are rewarded. This exceptional performance is attributed to the Erlking's power core, from which the turrets draw energy.nnBoso Ta commented that this turret employs electronic redundancies designed to be especially robust against internal radiation damage, and that this is necessary due to its slight but continuous exposure to the power core. ", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "large", + "hull": 4140, + "price": { + "min": 12105, + "max": 16378, + "avg": 14242 + }, + "owners": [ + "ownerless" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 15 + }, + { + "ware": "turretcomponents", + "amount": 6 + } + ] + } + ] + }, + { + "id": "turret_pir_m_battleship_01_gatling_02_mk1", + "version": 2, + "name": "Erlking M Turret", + "description": "The Erlking M Turret fires bursts of high speed projectiles, reminiscent of Bolt Repeater burst fire. While fixed weapons usually outperform their turret counterparts of the same size, the Erlking's turrets are an unusual exception; the damage from this turret is comparable to, and might even exceed, that of M Bolt Repeater weapons at close range. Over distance, however, the damage output falls off steeply, and at maximum range barely matches that of a standard M Bolt Repeater turret. Although the Erlking is perfectly capable of defending itself at a distance, the high damage output of its turrets at short range makes it much more dangerous at close proximity, meaning that aggressive manoeuvres by the Erlking's pilot are rewarded. This exceptional performance is attributed to the Erlking's power core, from which the turrets draw energy.nnBoso Ta was particularly keen to go into detail about how this turret manages to rapidly access the power core, for only the blink of an eye at a time, before just as rapidly cutting the connection, thereby preventing an energy draining feedback loop capable of destroying the ship. Boso Ta also said not to worry, as the safety mechanisms will prevent this from happening most of the time.", + "race": "argon", + "type": "turrets", + "equipmentClass": "turret", + "size": "medium", + "hull": 900, + "price": { + "min": 11451, + "max": 15492, + "avg": 13471 + }, + "owners": [ + "ownerless" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 12 + }, + { + "ware": "turretcomponents", + "amount": 5 + } + ] + } + ] + }, + { + "id": "weapon_gen_m_yacht_01_mk1", + "version": 2, + "name": "Astrid Primary Weapon", + "description": "\"An ambitious, complex space weapon that allows you to do almost anything from pressing the trigger to letting go of the trigger.\" - Gungrinnn\"I was well pleased.\" - Sydneenn\"Received this weapon as a gift for my 18th birthday. Wish I'd known what it was because as soon as I fired it, I split down the middle and became the CEO of a multi-billion credit enterprise. Minus 2 stars because it doesn't one-shot a Xenon I.\" - Sir Kitnn\"It has a little something for everyone.\" - Envision Arms Network", + "race": "argon", + "type": "weapons", + "equipmentClass": "weapon", + "size": "medium", + "price": { + "min": 116382, + "max": 157458, + "avg": 136920 + }, + "owners": [ + "loanshark" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 30 + }, + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "weaponcomponents", + "amount": 120 + } + ] + }, + { + "time": 10, + "amount": 1, + "method": "closedloop", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 19 + }, + { + "ware": "energycells", + "amount": 340 + }, + { + "ware": "hullparts", + "amount": 113 + } + ] + } + ] + }, + { + "id": "weapon_pir_xl_battleship_01_mk1", + "version": 2, + "name": "Erlking Main Battery", + "description": "The Erlking Main Battery is the only Erlking armament which does not suffer from decreased damage output over distance. This allows the Erlking to fight at range, or attack effectively while closing in on its target.nnBoso Ta claims that this weapon employs various kinds of titanium alloys and conductors to draw a large amount of energy from the power core, while disposing of excess hazardous radiation and keeping it from leaking into the ship. Unfortunately he wasn't so keen to go into detail about how it performs as a weapon.", + "race": "argon", + "type": "weapons", + "equipmentClass": "weapon", + "size": "extralarge", + "hull": 12000, + "price": { + "min": 485683, + "max": 657101, + "avg": 571392 + }, + "owners": [ + "ownerless" + ], + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedelectronics", + "amount": 150 + }, + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "weaponcomponents", + "amount": 300 + } + ] + } + ] + } +] \ No newline at end of file diff --git a/shared/export/equipment-type-data.json b/shared/export/equipment-type-data.json new file mode 100644 index 0000000..039e911 --- /dev/null +++ b/shared/export/equipment-type-data.json @@ -0,0 +1,11 @@ +[ + "countermeasures", + "drones", + "engines", + "missiles", + "shields", + "software", + "thrusters", + "turrets", + "weapons" +] \ No newline at end of file diff --git a/shared/export/factions-data.json b/shared/export/factions-data.json new file mode 100644 index 0000000..1203eef --- /dev/null +++ b/shared/export/factions-data.json @@ -0,0 +1,2136 @@ +[ + { + "id": "player", + "version": 0, + "name": "Player", + "description": "No information available", + "icon": "faction_player", + "licenses": [ + { + "type": "generaluseship", + "name": "Licence", + "icon": "", + "price": 0 + } + ] + }, + { + "id": "alliance", + "version": 0, + "name": "Alliance of the Word", + "description": "As the universe cascaded into chaos during the first years of the Jump Gate shutdown, a new faction emerged, made up of scholars, scientists, and historians. In those most uncertain of times, they dedicated themselves to collecting the cultures and histories of all known species into their archives, fearing that the shutdown could result in that knowledge being lost forever.nnThey also threw themselves into researching Jump Gate technology in the hopes of reversing the shutdown. These attempts, unfortunately, bore little in the way of fruit. They could not avert the shutdown, but they did set out to re-establish contact with the disparate systems by sending out durable drones that could withstand the arduous journeys.nnAfter the Gates resumed function, their focus shifted to mapping out the network's changed layout and exploring newly discovered systems. However, they have not given up on the idea of getting to grips with Jump Gate technology and work out contingency plans, as a future shutdown cannot be entirely ruled out.", + "race": "paranid", + "icon": "faction_alliance", + "licenses": [ + { + "type": "capitalequipment", + "name": "Alliance Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Alliance Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Trusted Alliance Ally", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Trusted Alliance Friend", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Alliance General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Alliance General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Alliance Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Alliance Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "shipsalecontract", + "name": "Alliance Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Alliance Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Alliance Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Alliance Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Alliance Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Alliance Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "subgroupfriend", + "name": "Stargazers' Guild Membership", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Alliance Trade Offer Subscription", + "icon": "", + "price": 10000 + } + ] + }, + { + "id": "antigone", + "version": 0, + "name": "Antigone Republic", + "description": "The Antigone Republic is made up of representatives of several sectors that were cut off from the Argon Federation during the Gate Shutdown. The fledgling republic was named after the system in which it resides, the system itself paying tribute to the Argon station whose loss is recorded in history as one of the greatest horrors of the Xenon wars. While the Antigone Republic is a distinct entity detached from the Argon Federation, and they are wary of returning back into the Federation, they maintain close ties, and cooperate on many levels. Sandwell, for example, is a planet of the Antigone Memorial system, which hosts the Argon Federation's biggest data archive. The Antigone Republic and the Argon Federation frequently conduct joint military operations to beat back Xenon invasions, and they trade freely and often.", + "race": "argon", + "icon": "faction_antigone", + "licenses": [ + { + "type": "capitalequipment", + "name": "Republic Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Republic Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Citizen of the Republic", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Friend of the Republic", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Republic General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Republic General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Republic Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Republic Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "shipsalecontract", + "name": "Republic Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Republic Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Republic Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Republic Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Republic Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Republic Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Republic Trade Offer Subscription", + "icon": "", + "price": 10000000 + } + ] + }, + { + "id": "argon", + "version": 0, + "name": "Argon Federation", + "description": "The Argon Federation was founded by the descendants of Terran settlers cut off from their home system and stranded in deep space during the Terraformer wars. The settlers' colonised planet, Argon Prime, is the Federation's heart, and a cultural and industrial hotspot to this day. The Federation tries to maintain good relations with the other races, if they deem these relations to be mutually beneficial, but ever since the Gate Shutdown, diplomatic relations on all sides are deteriorating, and conflicts, such as the war with Holy Order of the Pontifex, emerge.", + "race": "argon", + "icon": "faction_argon", + "licenses": [ + { + "type": "capitalequipment", + "name": "Federation Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Federation Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Hero of the Federation", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Friend of the Federation", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Argon General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Federation General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Federation Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Federation Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "police", + "name": "Federation Police Licence", + "icon": "", + "price": 156000 + }, + { + "type": "shipsalecontract", + "name": "Federation Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Federation Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Federation Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Federation Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Federation Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Federation Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "subgroupfriend", + "name": "Argon Secret Service Membership", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Federation Trade Offer Subscription", + "icon": "", + "price": 10000000 + } + ] + }, + { + "id": "buccaneers", + "version": 0, + "name": "Duke's Buccaneers", + "description": "At the time of its inception, the Duke's Buccaneers was outwardly an officially sanctioned, non-governmental security outfit that operated within the New Duchy systems of the Paranid Empire. Behind this facade, a corrupt organisation began to form, determined to undermine the authority of the very government that had originally permitted its rise. The Buccaneers were led by the shadowy and cunning Pirate Duke who unified smugglers, pirates and other discontent denizens of this largely unexplored and unstable region under his rule. During the Terran Conflict, which forcefully distracted the Paranid Pontifex's attention, Duke's Haven was established as the faction headquarters in a newly discovered border system. That system was later grandiosely renamed Lasting Vengeance, presumably in honour of one of the Duke's driving motivations in the subsequent escalation.nnThe Duke's Buccaneers were infamous for requiring absolute commitment from their members, demanding that they cut all former ties, and sending them on dangerous infiltration and assassination missions against their former affiliates to prove their allegiance. For most of the faction's supporters, this made maintaining good standings with major political powers, or even pirate organisations, nigh on impossible, and over time resulting in them serving only the Buccaneers. Eventually, political tensions rose and the Buccaneers became hunted by their Paranid neighbours, leading to attacks on their headquarters itself. Regardless of the meticulous planning and seeming precision of those strikes, they never managed to corner or kill the pirate leader himself. The Duke always seemed to stay one step ahead of his pursuers, all the while giving his loyal subjects ample opportunity to make a profit in the ensuing chaos.nnAccording to the sparse pre-shutdown records, during a wave of warp instabilities between 780 and 782 NT, the Pirate Duke was on the verge of achieving his grandest scheme yet, when suddenly, the Buccaneers headquarters in Lasting Vengeance, and with it a large part of the admiralty, was cut off from the rest of the network. The faction as a whole, like many others at the time, dispersed quickly, with only a handful of small pirate bands continuing to vie for control of the now-isolated systems of the New Duchy. After the realignment of the Jump Gates, the Buccaneers were at first thought extinct. Though there were occasional supposed sightings in Paranid territory, these reports weren't given much attention, especially considering the much more pressing issue of the Paranid Civil War.", + "race": "paranid", + "icon": "faction_buccaneers", + "licenses": [ + { + "type": "capitalequipment", + "name": "Duke's Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Duke's Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Duke's Honour Guard", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Duke's Buccaneer", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Duke's General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Duke's General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Duke's Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Duke's Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "police", + "name": "Duke's Police Licence", + "icon": "", + "price": 156000 + }, + { + "type": "shipsalecontract", + "name": "Duke's Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Duke's Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Duke's Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Duke's Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Duke's Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Duke's Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Duke's Trade Offer Subscription", + "icon": "", + "price": 12000000 + } + ] + }, + { + "id": "civilian", + "version": 0, + "name": "Civilian", + "description": "No information available", + "icon": "faction_civilian", + "licenses": [] + }, + { + "id": "criminal", + "version": 0, + "name": "Criminal", + "description": "No information available", + "icon": "faction_criminal", + "licenses": [] + }, + { + "id": "hatikvah", + "version": 0, + "name": "Hatikvah Free League", + "description": "The Hatikvah Free League split from the Argon Federation over frictions involving policymaking, especially those pertaining to the deregulation of trade and a peaceful, egalitarian coexistence of all races. After some political back-and-forth, they were officially recognised by the Argon Federation, but because they were perceived as naive by some elements of the Federation's government, the Hatikvah Free League was kept somewhat at arm's length. As a result of their inherent openness and their penchant for dealing in extra-legal wares, they soon attracted criminals and disenfranchised people seeking safe haven. When the Jump Gates shut down and their situation grew more desperate, the organisation shifted even further towards piracy, and began working with the Scale Plate Pact.nnMore recently, the Hatikvah Free League has shown a desire to re-align themselves more closely with the Argon Federation, and shift their focus towards more legitimate business in an attempt to rebuild and mend relations.", + "race": "argon", + "icon": "faction_hatikvah", + "licenses": [ + { + "type": "capitalequipment", + "name": "Free League Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Free League Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "League Member", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "League Associate", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Free League General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Free League General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Free League Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Free League Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "shipsalecontract", + "name": "Free League Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_illegal", + "name": "League Illegal Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "subgroupfriend", + "name": "Mercenary Guild Membership", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Free League Trade Offer Subscription", + "icon": "", + "price": 1000000 + } + ] + }, + { + "id": "holyorder", + "version": 0, + "name": "Holy Order of the Pontifex", + "description": "The Holy Order of the Pontifex established itself as an authority on Paranid religious affairs and took control of systems during the tumultuous times of the Gate Shutdown. Their Pontifex is shrouded in mystery and defends this radical new interpretation of the Paranid faith with a zealous frenzy. The Holy Order is steadfast in their beliefs, which puts them at odds with the Godrealm of the Paranid. They do not wish to eradicate the Godrealm, but to convert them to their beliefs. Their fanatic attitude is less accommodating towards non-Paranid heretics.", + "race": "paranid", + "icon": "faction_holyorder", + "licenses": [ + { + "type": "capitalequipment", + "name": "Holy Order Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Holy Order Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Servant of the Order", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Order Initiate", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Holy Order General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Holy Order General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Holy Order Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Holy Order Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "police", + "name": "Holy Order Police Licence", + "icon": "", + "price": 156000 + }, + { + "type": "shipsalecontract", + "name": "Holy Order Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Holy Order Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Holy Order Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Holy Order Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Holy Order Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Holy Order Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Holy Order Trade Offer Subscription", + "icon": "", + "price": 10000000 + } + ] + }, + { + "id": "holyorderfanatic", + "version": 0, + "name": "Holy Order Faithful", + "description": "As peace negotiations between the Godrealm of the Paranid and the Holy Order of the Pontifex began in earnest, the numbers flocking to the Holy Order Faithful rose quickly to threatening levels. Driven by an absolute commitment to the True Pontifex and backed by high-ranking officials, this not-so-secret organisation regularly mobilises elite pilots and saboteurs, against ally and enemy alike, to stop any semblance of diplomacy between the Paranid factions dead in its tracks. According to their official propaganda, they pursue a conviction which is shared by a significant proportion of the Paranid populace: that the Paranid Civil War - originating from the fundamental geometric imperfection of the duality of Pontifices - can only truly be resolved through the utter annihilation of the opposing faith. It has, however, been theorised that something far less spiritual lies at the heart of their strategic outlook on the schism. Over the course of the last decade, entire economies have become reliant on the extraordinary military spending fuelled by this conflict, so it comes as no surprise that whenever the Faithful appear to be defeated, they're able to rapidly rebuild their forces with the support of anonymous donors from across the Jump Gate network.", + "race": "paranid", + "icon": "faction_holyorder", + "licenses": [] + }, + { + "id": "khaak", + "version": 0, + "name": "Kha'ak", + "description": "The Kha'ak infesting the local Jump Gate network are a loose collection of hives that do not currently seem to operate under any sort of central authority. While most of their swarms were eradicated in the aftermath of Operation Final Fury, these hives were fortunate enough to be cut off from the Community of Planets during the Jump Gate shutdown. Some of them were able to slowly grow and prosper in relative peace and quiet, but others were forced to transform most of their sparse populace into warriors who engaged in a decades-long struggle to defend their homes against the similarly stranded Xenon matrices. Since the realignment, Kha'ak can be frequently observed travelling the network, brazenly using the Highway installations, presumably in an attempt to reestablish a connection between their scattered hives.nnBecause their communication signals remain unintelligible, little can be established about the goals of the Kha'ak as a whole. However, it is universally agreed upon that the Kha'ak do, in fact, originate from beyond our galaxy and were drawn towards the network by Argon experiments with Jump Drive technology, probably coinciding with an irrevocable deterioration of the Kha'ak homeworld. It stands to reason that they are currently primarily focused on survival in an environment that largely considers them to be an unthinking scourge; a supposition that the actions of the Kha'ak are yet to fundamentally contradict.", + "race": "khaak", + "icon": "faction_khaak", + "licenses": [] + }, + { + "id": "ministry", + "version": 0, + "name": "Ministry of Finance", + "description": "The Ministry of Finance is responsible for protecting Teladi business interests. The Teladi race is quite cautious by nature. To turn a Teladi pilot into an efficient Ministry of Finance fighter, their natural instinct to avoid conflict has to be overcome in an arduous, and sometimes brutal, training regime.nnWhile their main purpose used to be to support the Teladi Company's expansionist efforts and keep internal corruption at bay, their attention has more recently shifted towards protecting the Teladi from external threats. The resurgence of Xenon activity at the borders of Teladi space keeps a large part of their forces occupied. Those who are not busy fighting off the Xenon, patrol Teladi territory for pirate activity. Scale Plate pirates may be tolerated as a minor nuisance by most in the Teladi Company, and may even be tentatively looked toward as business partners by the more unscrupulous elements within the Company, but the Ministry of Finance has no tolerance at all for their lawlessness.", + "race": "teladi", + "icon": "faction_ministry", + "licenses": [ + { + "type": "capitalequipment", + "name": "Ministry Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Ministry Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Ministry Profiteer", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Ministry Helper", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Ministry General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Ministry General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Ministry Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Ministry Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "police", + "name": "Company Police Licence", + "icon": "", + "price": 156000 + }, + { + "type": "shipsalecontract", + "name": "Ministry Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Ministry Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Ministry Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Ministry Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Ministry Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Ministry Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_illegal", + "name": "Ministry Illegal Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Ministry Trade Offer Subscription", + "icon": "", + "price": 100000 + } + ] + }, + { + "id": "ownerless", + "version": 0, + "name": "", + "description": "", + "icon": "faction_ownerless", + "licenses": [] + }, + { + "id": "paranid", + "version": 0, + "name": "Godrealm of the Paranid", + "description": "The Godrealm of the Paranid is a theocratic feudal society worshipping the concept of the three-dimensionality. They refer to their ancient holy texts to justify their archaic power structure and pervasive authority. Although this Godrealm has been cut off from Paranid Prime, they understand themselves to be the true purveyors of the Paranid faith. After the Gates realigned, their strict interpretation of this faith resulted in tensions with the Holy Order of the Pontifex, and eventually, a civil war broke out. Still, the Godrealm maintains that the ultimate goal is not to exterminate the Paranids fighting for Holy Order, but to welcome them back into the fold.", + "race": "paranid", + "icon": "faction_paranid", + "licenses": [ + { + "type": "capitalequipment", + "name": "Godrealm Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Godrealm Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Honour Guard of Xaar", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Friend of the Godrealm", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Paranid General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Godrealm General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Godrealm Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Godrealm Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "police", + "name": "Godrealm Police Licence", + "icon": "", + "price": 156000 + }, + { + "type": "shipsalecontract", + "name": "Godrealm Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Godrealm Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Godrealm Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Godrealm Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Godrealm Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Godrealm Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Godrealm Trade Offer Subscription", + "icon": "", + "price": 12000000 + } + ] + }, + { + "id": "scaleplate", + "version": 0, + "name": "Scale Plate Pact", + "description": "The Scale Plate Pact emerged as a conglomeration of greedy businessmen, desperate cutthroats and refugees displaced by the Xenon overrunning Scale Plate Green. A local phenomenon at first, these pirates were soon joined in their illicit endeavours by Teladi Company workers who had lost their livelihoods in the economic downturn created by the Jump Gate shutdown, and spread throughout the universe. According to rumours, some of their most ferocious fighters were once Ministry of Finance cadets who were not able to cope with the strict training regime and dubious mental conditioning required to turn Teladi pilots into efficient police.nnWhile all of these disparate groups originally came together to ensure their survival by dealing in illicit goods, the scope of operations soon widened to maximise profits. Hired killings, capturing ships and hostage-taking now account for a large share of their profits. Those who could not live with the direction this organisation had taken, found themselves left behind or shot in the back.", + "race": "teladi", + "icon": "faction_scaleplate", + "licenses": [ + { + "type": "capitalequipment", + "name": "Pact Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Pact Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Pact Holder", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Pact Trustee", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Pact General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Pact General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Pact Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Pact Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "shipsalecontract", + "name": "Pact Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_gen_advanced", + "name": "Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_illegal", + "name": "Pact Illegal Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "subgroupfriend", + "name": "Scaleless/Profiteers Membership", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Pact Trade Offer Subscription", + "icon": "", + "price": 1000000 + } + ] + }, + { + "id": "smuggler", + "version": 0, + "name": "Criminal", + "description": "No information available", + "icon": "faction_smuggler", + "licenses": [] + }, + { + "id": "teladi", + "version": 0, + "name": "Teladi Company", + "description": "The Teladi Company took to space travel relatively recently, at least compared to other factions. Everything they do is driven by their overriding imperative to turn a profit. They expand their reach in the hopes of coming across potential new trading partners and novel, exciting technologies they can sell. As the name implies, their organisation is structured like a company, with a CEO in the leadership position, surrounded by a board of directors. The Company's internal divisions are governed by Chairmen, who are given a lot of room to manoeuvre, as long as their policies increase the bottom line. As a result of this outlook, it is not uncommon for Chairmen to be in league with pirates and smugglers.", + "race": "teladi", + "icon": "faction_teladi", + "licenses": [ + { + "type": "capitalequipment", + "name": "Company Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Company Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Honorary Company Director", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Honorary Company Shareholder", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Teladi General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Company General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Company Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Company Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "shipsalecontract", + "name": "Company Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Company Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Company Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Company Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Company Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Company Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_illegal", + "name": "Company Illegal Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "subgroupfriend", + "name": "Free Traders' Association Membership", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Company Trade Offer Subscription", + "icon": "", + "price": 16000000 + } + ] + }, + { + "id": "trinity", + "version": 0, + "name": "Realm of the Trinity", + "description": "The Realm of the Trinity is the unified successor to the former states of the Godrealm of the Paranid and the Holy Order of the Pontifex. Through its inception, the unthinkable geometric paradox of the two Pontifices has been remedied, and thus the Paranid Civil War officially brought to an end. Though there were numerous attempts to sabotage the negotiations, including a heinous attack on the construction site of the anonymously funded Sacrosanct Conclave, unity was ultimately achieved and defended by a most holy alliance of benefactors and proponents of peace. The political goals of the Trinity of Pontifices remain yet unknown, though it is universally expected that they will use their newly gained power to shift the political climate of the network towards peaceful coexistence.nnHistorical record: Godrealm of the ParanidnThe Godrealm of the Paranid is a theocratic feudal society worshipping the concept of the three-dimensionality. They refer to their ancient holy texts to justify their archaic power structure and pervasive authority. Although this Godrealm has been cut off from Paranid Prime, they understand themselves to be the true purveyors of the Paranid faith. After the Gates realigned, their strict interpretation of this faith resulted in tensions with the Holy Order of the Pontifex, and eventually, a civil war broke out. Still, the Godrealm maintains that the ultimate goal is not to exterminate the Paranids fighting for Holy Order, but to welcome them back into the fold.nnHistorical record: Holy Order of the PontifexnThe Holy Order of the Pontifex established itself as an authority on Paranid religious affairs and took control of systems during the tumultuous times of the Gate Shutdown. Their Pontifex is shrouded in mystery and defends this radical new interpretation of the Paranid faith with a zealous frenzy. The Holy Order is steadfast in their beliefs, which puts them at odds with the Godrealm of the Paranid. They do not wish to eradicate the Godrealm, but to convert them to their beliefs. Their fanatic attitude is less accommodating towards non-Paranid heretics.", + "race": "paranid", + "icon": "faction_trinity", + "licenses": [ + { + "type": "capitalequipment", + "name": "Paranid Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Paranid Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Seeker of the Holy Light", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Creature of Merit", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Paranid General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Paranid General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Paranid Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Paranid Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "police", + "name": "Paranid Police Licence", + "icon": "", + "price": 156000 + }, + { + "type": "shipsalecontract", + "name": "Paranid Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Paranid Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Paranid Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Paranid Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Paranid Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Paranid Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Paranid Trade Offer Subscription", + "icon": "", + "price": 12000000 + } + ] + }, + { + "id": "visitor", + "version": 0, + "name": "Visitor", + "description": "No information available", + "icon": "faction_visitor", + "licenses": [ + { + "type": "station_venture", + "name": "Venture Module Licence", + "icon": "", + "price": 0 + } + ] + }, + { + "id": "xenon", + "version": 0, + "name": "Xenon", + "description": "Originally merely a tool created to help in the Terrans' colonisation of the stars, these terraforming machines would eventually become the greatest threat facing the universe. The Xenon are notable for their Artificial General Intelligence (AGI), which brought with it a flexible problem-solving approach. This AGI technology allowed the machines to modify themselves to better carry out their tasks, but eventually resulted in their uncontrollable self-replication.nnNow, the Xenon roam the universe, drifting ever deeper into all areas of space; a mechanical scourge that cannot be reasoned with. Attempts to shut them down have ultimately proved futile, and most people have resigned themselves to the fact that this is a threat that could potentially be managed, but never defeated.", + "race": "xenon", + "icon": "faction_xenon", + "licenses": [] + }, + { + "id": "court", + "version": 1, + "name": "Court of Curbs", + "description": "Throughout Split history it has been the males of the species, known to be more aggressive and impulsive, who have wielded political power, be it as Patriarchs of their own families or as High Patriarchs uniting inferiors under their empires. High Patriarch Ghus t'Gllt once noted that Patriarchs' impulsiveness often contributed to their untimely demise. To combat the worst excesses of male Split enthusiasm, he set up the position of \"Curb\", a female advisory role to work alongside male warriors and decision-makers. While some families later abandoned this function in their communities, others still employ Curbs to the present day.nAfter the Free Families failed to completely unite and fend off the invasion by the Zyarth Patriarchy at the Fires, the Curbs of the Free Families attributed this failure to the Patriarchs' irrational nature. At this pivotal point, the Curbs decided that it was within their mandate, set out by the historical High Patriarch Ghus t'Gllt, to curb not only their own Patriarchs, but Split society as well, by seizing power themselves.nBetraying their own Patriarchs, the Curbs secretly united into a separatist movement, targeted Patriarchs loyal to the Zyarth occupation, and attacked the Zyarth stronghold known as Hall of Judgement. Their goal was not only to expel Zyarth's High Patriarchy from their territory, but ultimately to unite the quarrelling families under one Court of Curbs.", + "race": "split", + "icon": "faction_cabal", + "licenses": [ + { + "type": "capitalequipment", + "name": "Court of Curbs Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Court of Curbs Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Courtier of the Curbs", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Court Debutant", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Court of Curbs General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Court of Curbs General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Court of Curbs Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Court of Curbs Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "police", + "name": "Court of Curbs Police Licence", + "icon": "", + "price": 175000 + }, + { + "type": "shipsalecontract", + "name": "Court of Curbs Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Court of Curbs Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Court of Curbs Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Court of Curbs Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Court of Curbs Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Court of Curbs Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Court of Curbs Trade Offer Subscription", + "icon": "", + "price": 10000000 + } + ] + }, + { + "id": "fallensplit", + "version": 1, + "name": "Fallen Families", + "description": "Known as the Fallen Families, these pariahs are nomadic Split who live in their military fleets and individual ships. They consist of a diverse assortment of Split made up of individuals who went into exile after their former Families were defeated, slaves who regained their freedom, freelance mercenaries, adventurers, and assorted criminals. Taking full advantage of their military prowess, the Fallen Families survive through raids and plundering, sometimes under the employ of third parties. Having no ties to any of the numerous Split families, they are often looked down upon as Split with neither political influence nor power. However, they are also surreptitiously admired for their dedication to the militaristic life and for surviving beyond the safety of a family. They take pride in being called the Fallen, and are willing to endure the accompanying loss of face. Their goal is not just to struggle to survive as outcasts of society, however, but to become famous through their heroic deeds, and ultimately to rise again as they establish their own Patriarchies.", + "race": "split", + "icon": "faction_fallensplit", + "licenses": [] + }, + { + "id": "freesplit", + "version": 1, + "name": "Free Families", + "description": "The Empire of Patriarch Rhonkar was in disarray even before the Gate shutdown fractured the Empire. When the systems disconnected, the smaller families rebelled against the Patriarch of all Split and fought an intense war for independence. They persevered and managed to establish a different kind of Split society in their systems, one that is not lorded over by one Patriarch. Instead, every family is governed autonomously by their own Patriarchs. Now that the Jump Gates have reconnected, this new way of governance is opposed by the Patriarchy. After the Fires the patriarchal empire seeks to unite the Split under a single family once again.", + "race": "split", + "icon": "faction_freesplit", + "licenses": [ + { + "type": "capitalequipment", + "name": "Free Split Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Free Split Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Strong Arm of the Families", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Friend of the Families", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Free Split General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Free Split General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Free Split Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Free Split Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "police", + "name": "Free Split Police Licence", + "icon": "", + "price": 125000 + }, + { + "type": "shipsalecontract", + "name": "Free Split Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Free Split Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Free Split Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Free Split Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Free Split Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Free Split Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Free Split Trade Offer Subscription", + "icon": "", + "price": 10000000 + } + ] + }, + { + "id": "split", + "version": 1, + "name": "Zyarth Patriarchy", + "description": "Patriarch Zyarth has always been known to be a hardened warrior. He served under Patriarch Rhonkar before the Gates shut down, but due to his system's close proximity to Xenon space, he learned how to be self-sufficient. This familiarity with self-reliance would become his biggest asset when, as the larger Split empire was disconnected, he rose to power, unifying the neighbouring Patriarchs under him. When the Gates reconnected, the Zyarth Patriarchy emerged as the clear victor. Many long-established Patriarchs had died during those tumultuous times. While many families in close proximity came together under the Zyarth, other families seized the same opportunity to declare their independence from the former Patriarch Rhonkar. Now the ambitious Zyarth seeks to unify all Split, even the Free Families, under his banner.", + "race": "split", + "icon": "faction_split", + "licenses": [ + { + "type": "capitalequipment", + "name": "Patriarchy Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Patriarchy Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Patriarch's Confidant", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Spear of the Patriarch", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Patriarchy General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Patriarchy General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Patriarchy Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Patriarchy Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "police", + "name": "Patriarchy Police Licence", + "icon": "", + "price": 125000 + }, + { + "type": "shipsalecontract", + "name": "Patriarchy Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Patriarchy Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Patriarchy Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Patriarchy Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Patriarchy Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Patriarchy Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Patriarchy Trade Offer Subscription", + "icon": "", + "price": 10000000 + } + ] + }, + { + "id": "pioneers", + "version": 1, + "name": "Segaris Pioneers", + "description": "When the Jump Gates started to shut down, many disparate groups from all across the network were stranded in the Sol system. The Terran government was wary of these refugee communities suddenly forming in their midst. In order to keep them away from Sol's inner core, and make the best of a difficult situation, the Terran government brought the Pioneer Initiative into being. With the stated aim of exploring and settling the furthest outskirts of Sol, they then rallied the displaced groups under its banner. When a Gate connection was restored, and Neptune was suddenly adjacent to several unclaimed systems, the Terran government encouraged the Pioneer Initiative to venture out of Sol and explore and settle this new-found space.nnDelighted to now have a home of their own, the Pioneer Initiative, upon re-discovering the Segaris system, welcomed more and more disparate groups into their fold and distanced themselves from their Terran origin by changing their name to Segaris Pioneers. Their effort to gain true independence is a work in progress, however. It is a delicate balancing act, as they are still heavily reliant on the Terran government for protection and economic support. Their hope and belief is that the best way out of this disadvantageous situation, is to throw themselves into seeking scientific advancements that can one day lead to them to true independence.", + "race": "terran", + "icon": "faction_pioneers", + "licenses": [ + { + "type": "capitalequipment", + "name": "Pioneers Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Pioneers Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Patron of Terranova", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Honorary Assistant", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Pioneers General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Pioneers General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Pioneers Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Pioneers Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "police", + "name": "Pioneers Police Licence", + "icon": "", + "price": 156000 + }, + { + "type": "shipsalecontract", + "name": "Pioneers Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Pioneers Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Pioneers Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Pioneers Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Pioneers Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Pioneers Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Pioneers Trade Offer Subscription", + "icon": "", + "price": 10000000 + } + ] + }, + { + "id": "terran", + "version": 1, + "name": "Terran Protectorate", + "description": "The Terran Protectorate is the successor to the United Space Command (USC) and the AGI Task Force (ATF), and is tasked by the Terran High Command with safeguarding Sol and eliminating the Xenon menace. The restructuring of these responsibilities came about following the USC's failure to prevent the destruction of the Torus Aeternal by foreign saboteurs; an incident which scarred the Terran population and threw the government's ability to protect Sol into question.nnDuring the Jump Gate shutdown, the Terran government seized the opportunity to reassure their citizens. Separated from the network, their economy thrived and the Terran Protectorate fortified their presence in Sol. Critics of the Terran government have claimed that establishing the Protectorate was merely an attempt to re-brand the USC, and that the underlying structural problems remained. However, there is no disputing that the Terran Protectorate does now operate differently from its predecessors. Not only is the Protectorate extremely zealous in its defence of the inner core of Sol, to the point where not even all Terran citizens are allowed to approach Earth, but they are also heavily involved in Sol's external relations. Frustrated with how the Commonwealth has, in their eyes, mishandled the Xenon, they have taken a much more proactive approach to engaging the Xenon across the network. Fleets are regularly sent out to ensure that Xenon pockets are eradicated, without regard for the sovereignty of the space in question. Nor do they shy away from actively trying to meddle in other governments' affairs in order to influence their stance on AGI technology. Their preoccupation with destroying the Xenon at all costs frequently puts them at odds with the Community of Planets.", + "race": "terran", + "icon": "faction_terran", + "licenses": [ + { + "type": "capitalequipment", + "name": "Protectorate Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Protectorate Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Hero of Humanity", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Servant of Sol", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Protectorate General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Protectorate General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "innercore_access", + "name": "Protectorate Inner Core Access Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Protectorate Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Protectorate Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "outercore_access", + "name": "Protectorate Outer Core Access Licence", + "icon": "", + "price": 0 + }, + { + "type": "police", + "name": "Protectorate Police Licence", + "icon": "", + "price": 156000 + }, + { + "type": "shipsalecontract", + "name": "Protectorate Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Protectorate Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Protectorate Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Protectorate Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Protectorate Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Protectorate Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Protectorate Trade Offer Subscription", + "icon": "", + "price": 10000000 + } + ] + }, + { + "id": "yaki", + "version": 1, + "name": "Yaki", + "description": "The Yaki were an infamous organised crime syndicate operating mostly in Argon space, turning a profit by raiding traders and deliberately inciting chaos from which they then could benefit. They were well known for their professional and precise mode of operation, choosing their targets carefully and acting swiftly before any reinforcements could arrive. One branch of the Yaki Syndicate who were especially notorious were the Beryll, specialising in the theft and trade of advanced technologies. Their focus on near-AGI technology would inevitably put them at odds with the Terran government.nnDuring the Jump Gate shutdown, things quietened down considerably. Over time, Yaki raids became a less common occurrence. It appeared that different clans were splintering off and disappearing into obscurity. Even after the gate network was re-established, the Yaki were not as significant a presence as before.nnIt is now quite rare to spot Yaki ships. To the Community of Planets, it is currently unclear whether the Yaki have a fixed base hidden away somewhere, or whether their remnants are purely nomadic people, as they seem to disappear without a trace after what few raids they do still conduct. In fact, it is not even clear whether there is a coordinated Yaki organisation at all, any more, as their ships have been observed displaying wildly varying and erratic behaviours. All attempts at re-establishing official contact have failed, and on the scant occasions when a pilot has actually managed to communicate with a Yaki, the Yaki pilots' behaviour could only be described as bizarre and their ramblings incoherent. It remains to be seen whether the Yaki pose a real threat to the law-abiding citizens of the network, or whether, in their current state, they are a mere shadow of their former selves.", + "race": "argon", + "icon": "faction_yaki", + "licenses": [ + { + "type": "ceremonyfriend", + "name": "Among Friends", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Yaki General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Yaki Military Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryship", + "name": "Yaki Military Ship Licence", + "icon": "", + "price": 0 + } + ] + }, + { + "id": "loanshark", + "version": 1, + "name": "Vigor Syndicate", + "description": "Before the Windfall system became connected to Avarice, and later the network at large, the Vigor Syndicate used to be made up of smaller criminal organisations. They quarrelled amongst themselves almost as much as they antagonised outsiders and the common citizens of Windfall. These smaller outfits mostly made money by offering security services to the large, wealthy gambling institutions, by running their own high-stakes games, and by manufacturing and trading illicit substances. The time spent in isolation was chaotic and violent, but the absence of any organised law enforcement also provided ample opportunities to get incredibly rich with comparatively little effort. Maintaining that wealth amid all the other cut-throats was the bigger challenge, and the reason why these smaller groups eventually banded together.nnThe Vigor Syndicate was not the only semi-organised criminal enterprise to arise out of this unstable but prolific environment, but ultimately it would be the one to assert itself. Its power and influence grew when contact with the people of Avarice was established. With no-one to oppose them, they soon began to exploit the Riptide Rakers by offering them predatory loans, and methodically nurturing industrial dependencies among their destitute neighbours.nnNow, although there still is no clearly identifiable leadership and back-stabbings are still a regular occurrence, the organisation has grown to such a size that it has stabilised and effectively presents a united front to the outside. With Windfall now connected to both Argon and Teladi space, the Syndicate has fully consolidated in order to project enough power to keep other organisations out of Windfall. They keep the law away, and offer unscrupulous entities the space in which to grow however they see fit; as long as the Vigor Syndicate gets their cut, of course.", + "race": "argon", + "icon": "faction_loanshark", + "licenses": [ + { + "type": "capitalequipment", + "name": "Syndicate Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Syndicate Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Capo", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Syndicate Enforcer", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Syndicate General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Syndicate General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Syndicate Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Syndicate Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "police", + "name": "Syndicate Police Licence", + "icon": "", + "price": 512000 + }, + { + "type": "shipsalecontract", + "name": "Syndicate Ship Sale Contract", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_lxl", + "name": "Syndicate Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Syndicate Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Syndicate Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Syndicate Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Syndicate Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Syndicate Trade Offer Subscription", + "icon": "", + "price": 20000000 + } + ] + }, + { + "id": "scavenger", + "version": 1, + "name": "Riptide Rakers", + "description": "The Riptide Rakers are a loose collective of miners, traders and scavengers, perpetually down on their luck and struggling to ensure their continued existence. Their way of life has been forged by the hostile environments of the Avarice system. Largely disorganised, and without any military capabilities, they do not pose a threat to any of the other inhabitants of the Jump Gate network; nor would they want to, since they are entirely focused on their own survival.nnBeing extremely resourceful, the Riptide Rakers have specialised in scrapping wrecked ships and other space debris commonly found in and around Avarice. Ingeniously making use of the exceptional stellar properties of Avarice, they are uniquely capable of maintaining an economy almost entirely focussed on recycling and reusing materials. Since they are generally on good terms with the other groups inhabiting the network, they have taken to dismantling wrecks and trading their recycled materials on a larger scale, ever since their gate re-established a connection.nnTheir resourcefulness and resilience is only matched by their stubbornness. Despite regularly suffering from the impact of the Tide, they stoically continue to live under the hazardous circumstances that make their large scale operations possible. In recent years they have found ways to shelter from the most devastating effects of the phenomenon, but stranded ships and the occasional station are still tragically annihilated. Many inhabitants of the network wonder why the Riptide Rakers would expose themselves to these dangers, but if you asked a Riptide Raker, the answer would be quite simple. They have become numb to the dangers of Avarice. It is their way of life, they will tell you, and they really just have nowhere else to go.", + "race": "argon", + "icon": "faction_scavenger", + "licenses": [ + { + "type": "capitalequipment", + "name": "Rakers Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Rakers Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Tide Breaker", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Tide Runner", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Rakers General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Rakers General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Rakers Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Rakers Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "shipsalecontract", + "name": "Rakers Ship Sale Contract", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_lxl", + "name": "Rakers Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Rakers Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Rakers Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Rakers Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Rakers Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Rakers Trade Offer Subscription", + "icon": "", + "price": 20000000 + } + ] + }, + { + "id": "boron", + "version": 1, + "name": "Queendom of Boron", + "description": "If you were to single out one feature that makes the Queendom of Boron stand out from any other entity in the known network it would be its serene stability. Notoriously pacifist in nature, the Queendom perpetually works towards the greater good by advancing its knowledge of the sciences, and furthering inter-species understanding. Due to their innate trustworthiness, Queendom officials are often employed as peace-brokers by conflicting parties. However, it is also important to note that their inherently conflict-avoidant nature does not mean that they will fail to defend themselves when attacked. They boast an impressive arsenal of weapon technologies, afforded to them by their comparative wealth and scientific accomplishment.nnAs the name implies, the Queendom of Boron is headed by a queen, currently Queen Polypheides. Although Princess Celeus is the current heir, the succession is not strictly matrilineal. Non-royal Boron could theoretically ascend to the throne if they were to distinguish themselves through their actions and prove themselves to be the most capable leader. Counterintuitively, while the Queendom is reigned over by a monarch, it is still a democracy, overseen by a parliament of elected officials who vote on all policy and succession-related matters.", + "race": "boron", + "icon": "faction_boron", + "licenses": [ + { + "type": "capitalequipment", + "name": "Boron Capital Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "capitalship", + "name": "Boron Capital Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "ceremonyally", + "name": "Queen's Knight", + "icon": "", + "price": 0 + }, + { + "type": "ceremonyfriend", + "name": "Accepted Friend", + "icon": "", + "price": 0 + }, + { + "type": "generaluseequipment", + "name": "Boron General Use Equipment Licence", + "icon": "", + "price": 0 + }, + { + "type": "generaluseship", + "name": "Boron General Use Ship Licence", + "icon": "", + "price": 0 + }, + { + "type": "militaryequipment", + "name": "Boron Military Equipment Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "militaryship", + "name": "Boron Military Ship Licence", + "icon": "bse_star", + "price": 0 + }, + { + "type": "police", + "name": "Boron Police Licence", + "icon": "", + "price": 156000 + }, + { + "type": "shipsalecontract", + "name": "Boron Ship Sale Contract", + "icon": "", + "price": 1 + }, + { + "type": "station_equip_lxl", + "name": "Boron Capital Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_equip_sm", + "name": "Boron Ancillary Ship Building Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_advanced", + "name": "Boron Advanced Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_basic", + "name": "Boron Basic Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "station_gen_intermediate", + "name": "Boron Intermediate Module Licence", + "icon": "", + "price": 0 + }, + { + "type": "tradesubscription", + "name": "Boron Trade Offer Subscription", + "icon": "", + "price": 10000000 + } + ] + } +] \ No newline at end of file diff --git a/shared/export/module-types-data.json b/shared/export/module-types-data.json new file mode 100644 index 0000000..2597b3e --- /dev/null +++ b/shared/export/module-types-data.json @@ -0,0 +1,26 @@ +{ + "ModuleTypes": [ + "connectionmodule", + "production", + "defencemodule", + "dockarea", + "habitation", + "pier", + "storage", + "buildmodule", + "ventureplatform", + "processingmodule", + "recycling" + ], + "AllModuleTypes": [ + "habitation", + "buildmodule", + "dockarea", + "pier", + "storage", + "defencemodule", + "connectionmodule", + "processingmodule", + "recycling" + ] +} \ No newline at end of file diff --git a/shared/export/modules-data.json b/shared/export/modules-data.json new file mode 100644 index 0000000..91e8d95 --- /dev/null +++ b/shared/export/modules-data.json @@ -0,0 +1,28373 @@ +[ + { + "id": "module_arg_conn_base_01", + "version": 0, + "name": "Argon Base Connection Structure 01", + "macro": "struct_arg_base_01_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 150000, + "makerRace": "argon", + "price": { + "min": 92363, + "max": 124961, + "avg": 108662 + }, + "owners": [ + "antigone", + "argon" + ], + "production": [ + { + "time": 59, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 14 + }, + { + "ware": "energycells", + "amount": 27 + }, + { + "ware": "hullparts", + "amount": 50 + } + ] + } + ] + }, + { + "id": "module_arg_conn_base_02", + "version": 0, + "name": "Argon Base Connection Structure 02", + "macro": "struct_arg_base_02_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 237000, + "makerRace": "argon", + "price": { + "min": 75585, + "max": 102263, + "avg": 88924 + }, + "owners": [ + "antigone", + "argon" + ], + "production": [ + { + "time": 53, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 17 + }, + { + "ware": "energycells", + "amount": 34 + }, + { + "ware": "hullparts", + "amount": 62 + } + ] + } + ] + }, + { + "id": "module_arg_conn_base_03", + "version": 0, + "name": "Argon Base Connection Structure 03", + "macro": "struct_arg_base_03_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 280000, + "makerRace": "argon", + "price": { + "min": 98841, + "max": 133727, + "avg": 116284 + }, + "owners": [ + "antigone", + "argon" + ], + "production": [ + { + "time": 72, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 18 + }, + { + "ware": "energycells", + "amount": 37 + }, + { + "ware": "hullparts", + "amount": 68 + } + ] + } + ] + }, + { + "id": "module_arg_conn_cross_01", + "version": 0, + "name": "Argon Cross Connection Structure 01", + "macro": "struct_arg_cross_01_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 120000, + "makerRace": "argon", + "price": { + "min": 65300, + "max": 88348, + "avg": 76824 + }, + "owners": [ + "antigone", + "argon" + ], + "production": [ + { + "time": 47, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 12 + }, + { + "ware": "energycells", + "amount": 24 + }, + { + "ware": "hullparts", + "amount": 44 + } + ] + } + ] + }, + { + "id": "module_arg_conn_vertical_01", + "version": 0, + "name": "Argon Vertical Connection Structure 01", + "macro": "struct_arg_vertical_01_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 79000, + "makerRace": "argon", + "price": { + "min": 54125, + "max": 73227, + "avg": 63676 + }, + "owners": [ + "antigone", + "argon" + ], + "production": [ + { + "time": 38, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 10 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "hullparts", + "amount": 36 + } + ] + } + ] + }, + { + "id": "module_arg_conn_vertical_02", + "version": 0, + "name": "Argon Vertical Connection Structure 02", + "macro": "struct_arg_vertical_02_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 143000, + "makerRace": "argon", + "price": { + "min": 70888, + "max": 95908, + "avg": 83398 + }, + "owners": [ + "antigone", + "argon" + ], + "production": [ + { + "time": 52, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 13 + }, + { + "ware": "energycells", + "amount": 26 + }, + { + "ware": "hullparts", + "amount": 48 + } + ] + } + ] + }, + { + "id": "module_arg_def_claim_01", + "version": 0, + "name": "Argon Administrative Centre", + "macro": "defence_arg_claim_01_macro", + "description": "No information available", + "type": "defencemodule", + "explosionDamage": 2000, + "hull": 512000, + "makerRace": "argon", + "price": { + "min": 744928, + "max": 1007844, + "avg": 876386 + }, + "owners": [ + "antigone", + "argon" + ], + "production": [ + { + "time": 536, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 137 + }, + { + "ware": "energycells", + "amount": 274 + }, + { + "ware": "hullparts", + "amount": 501 + } + ] + } + ] + }, + { + "id": "module_arg_def_disc_01", + "version": 0, + "name": "Argon Disc Defence Platform", + "macro": "defence_arg_disc_01_macro", + "description": "No information available", + "type": "defencemodule", + "explosionDamage": 1200, + "hull": 197400, + "makerRace": "argon", + "price": { + "min": 533140, + "max": 721308, + "avg": 627224 + }, + "owners": [ + "antigone", + "argon" + ], + "shields": [ + { + "group": "group01", + "size": "medium", + "hittable": true + }, + { + "group": "group02", + "size": "medium", + "hittable": true + }, + { + "group": "group04", + "size": "medium", + "hittable": true + }, + { + "group": "group03", + "size": "medium", + "hittable": true + }, + { + "group": "group05", + "size": "large", + "hittable": false + }, + { + "group": "group06", + "size": "large", + "hittable": false + }, + { + "group": "group07", + "size": "large", + "hittable": false + }, + { + "group": "group08", + "size": "large", + "hittable": false + } + ], + "turrets": [ + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group07", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group08", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group07", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group08", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group07", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group07", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group08", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group08", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 384, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 98 + }, + { + "ware": "energycells", + "amount": 196 + }, + { + "ware": "hullparts", + "amount": 359 + } + ] + }, + { + "time": 384, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 196 + }, + { + "ware": "ore", + "amount": 496 + }, + { + "ware": "silicon", + "amount": 290 + } + ] + } + ] + }, + { + "id": "module_arg_def_tube_01", + "version": 0, + "name": "Argon Bridge Defence Platform", + "macro": "defence_arg_tube_01_macro", + "description": "No information available", + "type": "defencemodule", + "explosionDamage": 1200, + "hull": 148800, + "makerRace": "argon", + "price": { + "min": 462691, + "max": 625993, + "avg": 544342 + }, + "owners": [ + "antigone", + "argon" + ], + "shields": [ + { + "group": "group01", + "size": "medium", + "hittable": true + }, + { + "group": "group02", + "size": "medium", + "hittable": true + }, + { + "group": "group04", + "size": "medium", + "hittable": true + }, + { + "group": "group03", + "size": "medium", + "hittable": true + }, + { + "group": "group05", + "size": "large", + "hittable": false + }, + { + "group": "group06", + "size": "large", + "hittable": false + } + ], + "turrets": [ + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 334, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 85 + }, + { + "ware": "energycells", + "amount": 170 + }, + { + "ware": "hullparts", + "amount": 312 + } + ] + }, + { + "time": 334, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 170 + }, + { + "ware": "ore", + "amount": 431 + }, + { + "ware": "silicon", + "amount": 252 + } + ] + } + ] + }, + { + "id": "module_arg_dock_m_01", + "version": 0, + "name": "1M6S Standard Dock Area", + "macro": "dockarea_arg_m_station_01_macro", + "description": "No information available", + "type": "dockarea", + "explosionDamage": 1000, + "hull": 240000, + "price": { + "min": 293852, + "max": 397564, + "avg": 345708 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split" + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "production": [ + { + "time": 424, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 54 + }, + { + "ware": "energycells", + "amount": 108 + }, + { + "ware": "hullparts", + "amount": 198 + } + ] + } + ] + }, + { + "id": "module_arg_dock_m_01_hightech", + "version": 0, + "name": "1M6S Luxury Dock Area", + "macro": "dockarea_arg_m_station_01_hightech_macro", + "description": "No information available", + "type": "dockarea", + "explosionDamage": 1000, + "hull": 275000, + "price": { + "min": 315326, + "max": 426618, + "avg": 370972 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split" + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "production": [ + { + "time": 454, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 58 + }, + { + "ware": "energycells", + "amount": 116 + }, + { + "ware": "hullparts", + "amount": 212 + } + ] + } + ] + }, + { + "id": "module_arg_dock_m_01_lowtech", + "version": 0, + "name": "1M6S Basic Dock Area", + "macro": "dockarea_arg_m_station_01_lowtech_macro", + "description": "No information available", + "type": "dockarea", + "explosionDamage": 1000, + "hull": 210000, + "price": { + "min": 276636, + "max": 374272, + "avg": 325454 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split" + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "production": [ + { + "time": 397, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 51 + }, + { + "ware": "energycells", + "amount": 101 + }, + { + "ware": "hullparts", + "amount": 185 + } + ] + } + ] + }, + { + "id": "module_arg_dock_m_02", + "version": 0, + "name": "3M6S Standard Dock Area", + "macro": "dockarea_arg_m_station_02_macro", + "description": "No information available", + "type": "dockarea", + "explosionDamage": 1000, + "hull": 495000, + "price": { + "min": 423562, + "max": 573054, + "avg": 498308 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split" + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "production": [ + { + "time": 609, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 78 + }, + { + "ware": "energycells", + "amount": 155 + }, + { + "ware": "hullparts", + "amount": 284 + } + ] + } + ] + }, + { + "id": "module_arg_dock_m_02_hightech", + "version": 0, + "name": "3M6S Luxury Dock Area", + "macro": "dockarea_arg_m_station_02_hightech_macro", + "description": "No information available", + "type": "dockarea", + "explosionDamage": 1000, + "hull": 530000, + "price": { + "min": 435642, + "max": 589398, + "avg": 512520 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split" + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "production": [ + { + "time": 631, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 80 + }, + { + "ware": "energycells", + "amount": 161 + }, + { + "ware": "hullparts", + "amount": 294 + } + ] + } + ] + }, + { + "id": "module_arg_dock_m_02_lowtech", + "version": 0, + "name": "3M6S Basic Dock Area", + "macro": "dockarea_arg_m_station_02_lowtech_macro", + "description": "No information available", + "type": "dockarea", + "explosionDamage": 10000, + "hull": 460000, + "price": { + "min": 407689, + "max": 551579, + "avg": 479634 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split" + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "production": [ + { + "time": 587, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 75 + }, + { + "ware": "energycells", + "amount": 150 + }, + { + "ware": "hullparts", + "amount": 274 + } + ] + } + ] + }, + { + "id": "module_arg_dock_tradestation_02", + "version": 0, + "name": "8M Standard Dock Area", + "macro": "dockarea_arg_m_02_tradestation_01_macro", + "description": "No information available", + "type": "dockarea", + "explosionDamage": 10000, + "hull": 1100000, + "price": { + "min": 630652, + "max": 853236, + "avg": 741944 + }, + "owners": [ + "antigone", + "argon" + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "production": [ + { + "time": 908, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 116 + }, + { + "ware": "energycells", + "amount": 232 + }, + { + "ware": "hullparts", + "amount": 424 + } + ] + } + ] + }, + { + "id": "module_arg_hab_l_01", + "version": 0, + "name": "Argon L Habitat", + "macro": "hab_arg_l_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 500000, + "makerRace": "argon", + "workForce": { + "capacity": 1000, + "race": "argon" + }, + "price": { + "min": 16627714, + "max": 22496318, + "avg": 19562016 + }, + "owners": [ + "antigone", + "argon" + ], + "production": [ + { + "time": 750, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 191 + }, + { + "ware": "energycells", + "amount": 383 + }, + { + "ware": "hullparts", + "amount": 700 + } + ] + } + ] + }, + { + "id": "module_arg_hab_m_01", + "version": 0, + "name": "Argon M Habitat", + "macro": "hab_arg_m_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 250000, + "makerRace": "argon", + "workForce": { + "capacity": 500, + "race": "argon" + }, + "price": { + "min": 11754290, + "max": 15902862, + "avg": 13828576 + }, + "owners": [ + "antigone", + "argon" + ], + "production": [ + { + "time": 530, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 135 + }, + { + "ware": "energycells", + "amount": 271 + }, + { + "ware": "hullparts", + "amount": 495 + } + ] + } + ] + }, + { + "id": "module_arg_hab_s_01", + "version": 0, + "name": "Argon S Habitat", + "macro": "hab_arg_s_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 120000, + "makerRace": "argon", + "workForce": { + "capacity": 250, + "race": "argon" + }, + "price": { + "min": 8172621, + "max": 11057075, + "avg": 9614848 + }, + "owners": [ + "antigone", + "argon" + ], + "production": [ + { + "time": 367, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 94 + }, + { + "ware": "energycells", + "amount": 188 + }, + { + "ware": "hullparts", + "amount": 343 + } + ] + } + ] + }, + { + "id": "module_arg_pier_l_01", + "version": 0, + "name": "Argon 3-Dock T Pier", + "macro": "pier_arg_harbor_01_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 750000, + "makerRace": "argon", + "price": { + "min": 2946171, + "max": 3985997, + "avg": 3466084 + }, + "owners": [ + "argon" + ], + "production": [ + { + "time": 750, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 542 + }, + { + "ware": "energycells", + "amount": 1083 + }, + { + "ware": "hullparts", + "amount": 1980 + } + ] + } + ] + }, + { + "id": "module_arg_pier_l_02", + "version": 0, + "name": "Argon 1-Dock Pier", + "macro": "pier_arg_harbor_02_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 250000, + "makerRace": "argon", + "price": { + "min": 1701192, + "max": 2301612, + "avg": 2001402 + }, + "owners": [ + "antigone", + "argon" + ], + "production": [ + { + "time": 433, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 313 + }, + { + "ware": "energycells", + "amount": 625 + }, + { + "ware": "hullparts", + "amount": 1143 + } + ] + } + ] + }, + { + "id": "module_arg_pier_l_03", + "version": 0, + "name": "Argon 3-Dock E Pier", + "macro": "pier_arg_harbor_03_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 1000000, + "makerRace": "argon", + "price": { + "min": 3399016, + "max": 4598668, + "avg": 3998842 + }, + "owners": [ + "antigone" + ], + "production": [ + { + "time": 866, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 625 + }, + { + "ware": "energycells", + "amount": 1250 + }, + { + "ware": "hullparts", + "amount": 2287 + } + ] + } + ] + }, + { + "id": "module_arg_prod_foodrations_01", + "version": 0, + "name": "Food Ration Production", + "macro": "prod_arg_foodrations_macro", + "description": "No information available", + "type": "production", + "product": [ + "foodrations" + ], + "explosionDamage": 1000, + "hull": 133000, + "makerRace": "argon", + "workForce": { + "max": 90 + }, + "price": { + "min": 1425885, + "max": 1929139, + "avg": 1677512 + }, + "owners": [ + "antigone", + "argon" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 757, + "amount": 1, + "method": "default", + "name": "Argon", + "wares": [ + { + "ware": "claytronics", + "amount": 262 + }, + { + "ware": "energycells", + "amount": 525 + }, + { + "ware": "hullparts", + "amount": 961 + } + ] + } + ] + }, + { + "id": "module_arg_prod_meat_01", + "version": 0, + "name": "Meat Production", + "macro": "prod_arg_meat_macro", + "description": "No information available", + "type": "production", + "product": [ + "meat" + ], + "explosionDamage": 1000, + "hull": 198000, + "makerRace": "argon", + "workForce": { + "max": 75 + }, + "price": { + "min": 1349848, + "max": 1826264, + "avg": 1588056 + }, + "owners": [ + "antigone", + "argon" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 750, + "amount": 1, + "method": "default", + "name": "Argon", + "wares": [ + { + "ware": "claytronics", + "amount": 248 + }, + { + "ware": "energycells", + "amount": 497 + }, + { + "ware": "hullparts", + "amount": 910 + } + ] + } + ] + }, + { + "id": "module_arg_prod_medicalsupplies_01", + "version": 0, + "name": "Argon Medical Supply Production", + "macro": "prod_arg_medicalsupplies_macro", + "description": "No information available", + "type": "production", + "product": [ + "medicalsupplies" + ], + "explosionDamage": 1000, + "hull": 197000, + "makerRace": "argon", + "workForce": { + "max": 90 + }, + "price": { + "min": 1223505, + "max": 1655331, + "avg": 1439418 + }, + "owners": [ + "argon" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 739, + "amount": 1, + "method": "default", + "name": "Argon", + "wares": [ + { + "ware": "claytronics", + "amount": 225 + }, + { + "ware": "energycells", + "amount": 450 + }, + { + "ware": "hullparts", + "amount": 823 + } + ] + } + ] + }, + { + "id": "module_arg_prod_spacefuel_01", + "version": 0, + "name": "Spacefuel Production", + "macro": "prod_arg_spacefuel_macro", + "description": "No information available", + "type": "production", + "product": [ + "spacefuel" + ], + "explosionDamage": 1000, + "hull": 148000, + "makerRace": "argon", + "workForce": { + "max": 225 + }, + "price": { + "min": 1735171, + "max": 2347585, + "avg": 2041378 + }, + "owners": [ + "scaleplate" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 781, + "amount": 1, + "method": "default", + "name": "Argon", + "wares": [ + { + "ware": "claytronics", + "amount": 319 + }, + { + "ware": "energycells", + "amount": 638 + }, + { + "ware": "hullparts", + "amount": 1168 + } + ] + } + ] + }, + { + "id": "module_arg_prod_wheat_01", + "version": 0, + "name": "Wheat Production", + "macro": "prod_arg_wheat_macro", + "description": "No information available", + "type": "production", + "product": [ + "wheat" + ], + "explosionDamage": 1000, + "hull": 262000, + "makerRace": "argon", + "workForce": { + "max": 75 + }, + "price": { + "min": 1610158, + "max": 2178450, + "avg": 1894304 + }, + "owners": [ + "antigone", + "argon" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 772, + "amount": 1, + "method": "default", + "name": "Argon", + "wares": [ + { + "ware": "claytronics", + "amount": 296 + }, + { + "ware": "energycells", + "amount": 592 + }, + { + "ware": "hullparts", + "amount": 1084 + } + ] + } + ] + }, + { + "id": "module_arg_stor_container_l_01", + "version": 0, + "name": "Argon L Container Storage", + "macro": "storage_arg_l_container_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 565000, + "makerRace": "argon", + "cargo": { + "max": 1000000, + "type": "container" + }, + "price": { + "min": 625503, + "max": 846269, + "avg": 735886 + }, + "owners": [ + "antigone", + "argon" + ], + "shields": [ + { + "group": "top_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 582, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 115 + }, + { + "ware": "energycells", + "amount": 230 + }, + { + "ware": "hullparts", + "amount": 421 + } + ] + } + ] + }, + { + "id": "module_arg_stor_container_m_01", + "version": 0, + "name": "Argon M Container Storage", + "macro": "storage_arg_m_container_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 800, + "hull": 285000, + "makerRace": "argon", + "cargo": { + "max": 100000, + "type": "container" + }, + "price": { + "min": 445475, + "max": 602701, + "avg": 524088 + }, + "owners": [ + "antigone", + "argon" + ], + "shields": [ + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 414, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 82 + }, + { + "ware": "energycells", + "amount": 163 + }, + { + "ware": "hullparts", + "amount": 299 + } + ] + } + ] + }, + { + "id": "module_arg_stor_container_s_01", + "version": 0, + "name": "Argon S Container Storage", + "macro": "storage_arg_s_container_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 500, + "hull": 114000, + "makerRace": "argon", + "cargo": { + "max": 25000, + "type": "container" + }, + "price": { + "min": 282224, + "max": 381832, + "avg": 332028 + }, + "owners": [ + "antigone", + "argon" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 261, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 52 + }, + { + "ware": "energycells", + "amount": 103 + }, + { + "ware": "hullparts", + "amount": 189 + } + ] + } + ] + }, + { + "id": "module_arg_stor_liquid_l_01", + "version": 0, + "name": "Argon L Liquid Storage", + "macro": "storage_arg_l_liquid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 565000, + "makerRace": "argon", + "cargo": { + "max": 1000000, + "type": "liquid" + }, + "price": { + "min": 625503, + "max": 846269, + "avg": 735886 + }, + "owners": [ + "antigone", + "argon" + ], + "shields": [ + { + "group": "top_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 582, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 115 + }, + { + "ware": "energycells", + "amount": 230 + }, + { + "ware": "hullparts", + "amount": 421 + } + ] + } + ] + }, + { + "id": "module_arg_stor_liquid_m_01", + "version": 0, + "name": "Argon M Liquid Storage", + "macro": "storage_arg_m_liquid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 800, + "hull": 285000, + "makerRace": "argon", + "cargo": { + "max": 500000, + "type": "liquid" + }, + "price": { + "min": 445475, + "max": 602701, + "avg": 524088 + }, + "owners": [ + "antigone", + "argon" + ], + "shields": [ + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 414, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 82 + }, + { + "ware": "energycells", + "amount": 163 + }, + { + "ware": "hullparts", + "amount": 299 + } + ] + } + ] + }, + { + "id": "module_arg_stor_liquid_s_01", + "version": 0, + "name": "Argon S Liquid Storage", + "macro": "storage_arg_s_liquid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 500, + "hull": 114000, + "makerRace": "argon", + "cargo": { + "max": 100000, + "type": "liquid" + }, + "price": { + "min": 282224, + "max": 381832, + "avg": 332028 + }, + "owners": [ + "antigone", + "argon" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 261, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 52 + }, + { + "ware": "energycells", + "amount": 103 + }, + { + "ware": "hullparts", + "amount": 189 + } + ] + } + ] + }, + { + "id": "module_arg_stor_solid_l_01", + "version": 0, + "name": "Argon L Solid Storage", + "macro": "storage_arg_l_solid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 565000, + "makerRace": "argon", + "cargo": { + "max": 1000000, + "type": "solid" + }, + "price": { + "min": 625503, + "max": 846269, + "avg": 735886 + }, + "owners": [ + "antigone", + "argon" + ], + "shields": [ + { + "group": "top_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 582, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 115 + }, + { + "ware": "energycells", + "amount": 230 + }, + { + "ware": "hullparts", + "amount": 421 + } + ] + } + ] + }, + { + "id": "module_arg_stor_solid_m_01", + "version": 0, + "name": "Argon M Solid Storage", + "macro": "storage_arg_m_solid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 800, + "hull": 285000, + "makerRace": "argon", + "cargo": { + "max": 500000, + "type": "solid" + }, + "price": { + "min": 445475, + "max": 602701, + "avg": 524088 + }, + "owners": [ + "antigone", + "argon" + ], + "shields": [ + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 414, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 82 + }, + { + "ware": "energycells", + "amount": 163 + }, + { + "ware": "hullparts", + "amount": 299 + } + ] + } + ] + }, + { + "id": "module_arg_stor_solid_s_01", + "version": 0, + "name": "Argon S Solid Storage", + "macro": "storage_arg_s_solid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 500, + "hull": 114000, + "makerRace": "argon", + "cargo": { + "max": 100000, + "type": "solid" + }, + "price": { + "min": 282224, + "max": 381832, + "avg": 332028 + }, + "owners": [ + "antigone", + "argon" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 261, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 52 + }, + { + "ware": "energycells", + "amount": 103 + }, + { + "ware": "hullparts", + "amount": 189 + } + ] + } + ] + }, + { + "id": "module_gen_build_dockarea_m_01", + "version": 0, + "name": "S/M Ship Fabrication Bay", + "macro": "buildmodule_gen_ships_m_dockarea_01_macro", + "description": "No information available", + "type": "buildmodule", + "explosionDamage": 2500, + "hull": 1020000, + "workForce": { + "max": 800 + }, + "price": { + "min": 86008820, + "max": 116364875, + "avg": 101186848 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "xenon", + "freesplit", + "split" + ], + "docks": [ + { + "capacity": 30, + "size": "medium" + }, + { + "capacity": 100, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "production": [ + { + "time": 1298, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 3312 + }, + { + "ware": "energycells", + "amount": 6620 + }, + { + "ware": "hullparts", + "amount": 12112 + } + ] + }, + { + "time": 539, + "amount": 1, + "method": "xenon", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 6620 + }, + { + "ware": "ore", + "amount": 6952 + }, + { + "ware": "silicon", + "amount": 4062 + } + ] + } + ] + }, + { + "id": "module_gen_build_l_01", + "version": 0, + "name": "L Ship Fabrication Bay", + "macro": "buildmodule_gen_ships_l_macro", + "description": "No information available", + "type": "buildmodule", + "explosionDamage": 10000, + "hull": 324000, + "workForce": { + "max": 700 + }, + "price": { + "min": 180147181, + "max": 243728539, + "avg": 211937860 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split" + ], + "production": [ + { + "time": 731, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 1866 + }, + { + "ware": "energycells", + "amount": 3731 + }, + { + "ware": "hullparts", + "amount": 6826 + } + ] + } + ] + }, + { + "id": "module_gen_build_xl_01", + "version": 0, + "name": "XL Ship Fabrication Bay", + "macro": "buildmodule_gen_ships_xl_macro", + "description": "No information available", + "type": "buildmodule", + "explosionDamage": 10000, + "hull": 551000, + "workForce": { + "max": 700 + }, + "price": { + "min": 183235129, + "max": 247906351, + "avg": 215570740 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split" + ], + "production": [ + { + "time": 954, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 2434 + }, + { + "ware": "energycells", + "amount": 4866 + }, + { + "ware": "hullparts", + "amount": 8902 + } + ] + } + ] + }, + { + "id": "module_gen_equip_dockarea_m_01", + "version": 0, + "name": "S/M Ship Maintenance Bay", + "macro": "buildmodule_gen_equip_m_dockarea_01_macro", + "description": "No information available", + "type": "buildmodule", + "explosionDamage": 2500, + "hull": 1020000, + "workForce": { + "max": 400 + }, + "price": { + "min": 26053880, + "max": 35249367, + "avg": 30651624 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split" + ], + "docks": [ + { + "capacity": 30, + "size": "medium" + }, + { + "capacity": 100, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "production": [ + { + "time": 650, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 1604 + }, + { + "ware": "energycells", + "amount": 3312 + }, + { + "ware": "hullparts", + "amount": 6620 + } + ] + } + ] + }, + { + "id": "module_gen_equip_l_01", + "version": 0, + "name": "L Ship Maintenance Bay", + "macro": "buildmodule_gen_equip_l_macro", + "description": "No information available", + "type": "buildmodule", + "explosionDamage": 5000, + "hull": 324000, + "workForce": { + "max": 500 + }, + "price": { + "min": 47705459, + "max": 64542680, + "avg": 56124070 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split" + ], + "production": [ + { + "time": 364, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 931 + }, + { + "ware": "energycells", + "amount": 1866 + }, + { + "ware": "hullparts", + "amount": 3731 + } + ] + } + ] + }, + { + "id": "module_gen_equip_xl_01", + "version": 0, + "name": "XL Ship Maintenance Bay", + "macro": "buildmodule_gen_equip_xl_macro", + "description": "No information available", + "type": "buildmodule", + "explosionDamage": 5000, + "hull": 551000, + "workForce": { + "max": 500 + }, + "price": { + "min": 49280566, + "max": 66673706, + "avg": 57977136 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split" + ], + "production": [ + { + "time": 477, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 1212 + }, + { + "ware": "energycells", + "amount": 2434 + }, + { + "ware": "hullparts", + "amount": 4866 + } + ] + } + ] + }, + { + "id": "module_gen_proc_scrapworks", + "version": 0, + "name": "Scrap Processor", + "macro": "proc_gen_scrapworks_macro", + "description": "The Jump Gate shutdown left Avarice with very limited access to resources, so stranded Argon engineers started development of various recycling facilities. One of these was the Scrap Processor; a module that takes in S- and M-sized ship wrecks to process the contained Raw Scrap into Scrap Metal, which can, in turn, be recycled into other useable resources. The first Tug ships were also developed at this time, to transport the wrecks to the Scrap Processor. Scrap Cubes were a later introduction, designed to allow larger wrecks to be packed up into blocks suitable for towing and processing.nnFollowing the arrival of messenger drones from Sacred Relic, the people of Avarice sent out drones of their own to other disconnected systems. These drones contained blueprints for their recycling technology, in the hopes that it would be of help to others who were unfortunate enough to be stranded with no natural resources to hand. In the process, they created a local branch of the Alliance of the Word, operating out of Tidebreak. With the first Jump Gate reconnection in 825 (NT), the Alliance of the Word moved to its own station in Windfall.", + "type": "processingmodule", + "explosionDamage": 1000, + "hull": 150000, + "price": { + "min": 992413, + "max": 1342677, + "avg": 1167545 + }, + "owners": [ + "alliance", + "scaleplate", + "teladi", + "pioneers", + "scavenger" + ], + "shields": [ + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 566, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 178 + }, + { + "ware": "energycells", + "amount": 162 + }, + { + "ware": "hullparts", + "amount": 733 + } + ] + }, + { + "time": 565, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 49 + }, + { + "ware": "energycells", + "amount": 181 + }, + { + "ware": "siliconcarbide", + "amount": 78 + } + ] + } + ] + }, + { + "id": "module_gen_prod_advancedcomposites_01", + "version": 0, + "name": "Advanced Composite Production", + "macro": "prod_gen_advancedcomposites_macro", + "description": "No information available", + "type": "production", + "product": [ + "advancedcomposites" + ], + "explosionDamage": 1000, + "hull": 197000, + "workForce": { + "max": 315 + }, + "price": { + "min": 3524906, + "max": 4768990, + "avg": 4146948 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split", + "boron" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 869, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 648 + }, + { + "ware": "energycells", + "amount": 1296 + }, + { + "ware": "hullparts", + "amount": 2373 + } + ] + } + ] + }, + { + "id": "module_gen_prod_advancedelectronics_01", + "version": 0, + "name": "Advanced Electronics Production", + "macro": "prod_gen_advancedelectronics_macro", + "description": "No information available", + "type": "production", + "product": [ + "advancedelectronics" + ], + "explosionDamage": 1000, + "hull": 160000, + "workForce": { + "max": 540 + }, + "price": { + "min": 2622767, + "max": 3548449, + "avg": 3085608 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split", + "boron" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_02", + "size": "medium", + "hittable": true + }, + { + "group": "left_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 832, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 482 + }, + { + "ware": "energycells", + "amount": 965 + }, + { + "ware": "hullparts", + "amount": 1767 + } + ] + } + ] + }, + { + "id": "module_gen_prod_antimattercells_01", + "version": 0, + "name": "Antimatter Cell Production", + "macro": "prod_gen_antimattercells_macro", + "description": "No information available", + "type": "production", + "product": [ + "antimattercells" + ], + "explosionDamage": 1000, + "hull": 251000, + "workForce": { + "max": 180 + }, + "price": { + "min": 375477, + "max": 507999, + "avg": 441738 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split", + "boron" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 593, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 69 + }, + { + "ware": "energycells", + "amount": 138 + }, + { + "ware": "hullparts", + "amount": 253 + } + ] + } + ] + }, + { + "id": "module_gen_prod_antimatterconverters_01", + "version": 0, + "name": "Antimatter Converter Production", + "macro": "prod_gen_antimatterconverters_macro", + "description": "No information available", + "type": "production", + "product": [ + "antimatterconverters" + ], + "explosionDamage": 1000, + "hull": 216000, + "workForce": { + "max": 1080 + }, + "price": { + "min": 9681548, + "max": 13098564, + "avg": 11390056 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split", + "boron" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 993, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 1780 + }, + { + "ware": "energycells", + "amount": 3560 + }, + { + "ware": "hullparts", + "amount": 6516 + } + ] + } + ] + }, + { + "id": "module_gen_prod_claytronics_01", + "version": 0, + "name": "Claytronics Production", + "macro": "prod_gen_claytronics_macro", + "description": "No information available", + "type": "production", + "product": [ + "claytronics" + ], + "explosionDamage": 1000, + "hull": 195000, + "workForce": { + "max": 1215 + }, + "price": { + "min": 15347532, + "max": 20764308, + "avg": 18055920 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "teladi", + "trinity", + "freesplit", + "split", + "boron" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 1049, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 2822 + }, + { + "ware": "energycells", + "amount": 5642 + }, + { + "ware": "hullparts", + "amount": 10327 + } + ] + } + ] + }, + { + "id": "module_gen_prod_dronecomponents_01", + "version": 0, + "name": "Drone Component Production", + "macro": "prod_gen_dronecomponents_macro", + "description": "No information available", + "type": "production", + "product": [ + "dronecomponents" + ], + "explosionDamage": 1000, + "hull": 174000, + "workForce": { + "max": 675 + }, + "price": { + "min": 6662268, + "max": 9013656, + "avg": 7837962 + }, + "owners": [ + "argon", + "holyorder", + "ministry", + "trinity", + "freesplit", + "split", + "boron" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 947, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 1225 + }, + { + "ware": "energycells", + "amount": 2449 + }, + { + "ware": "hullparts", + "amount": 4483 + } + ] + } + ] + }, + { + "id": "module_gen_prod_energycells_01", + "version": 0, + "name": "Energy Cell Production", + "macro": "prod_gen_energycells_macro", + "description": "No information available", + "type": "production", + "product": [ + "energycells" + ], + "explosionDamage": 1000, + "hull": 217000, + "workForce": { + "max": 90 + }, + "price": { + "min": 1413819, + "max": 1912813, + "avg": 1663316 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split", + "boron" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 756, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 260 + }, + { + "ware": "energycells", + "amount": 520 + }, + { + "ware": "hullparts", + "amount": 951 + } + ] + } + ] + }, + { + "id": "module_gen_prod_engineparts_01", + "version": 0, + "name": "Engine Part Production", + "macro": "prod_gen_engineparts_macro", + "description": "No information available", + "type": "production", + "product": [ + "engineparts" + ], + "explosionDamage": 1000, + "hull": 120000, + "workForce": { + "max": 225 + }, + "price": { + "min": 2116689, + "max": 2863755, + "avg": 2490222 + }, + "owners": [ + "antigone", + "argon", + "paranid", + "teladi", + "trinity", + "freesplit", + "split", + "boron" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 806, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 389 + }, + { + "ware": "energycells", + "amount": 779 + }, + { + "ware": "hullparts", + "amount": 1426 + } + ] + } + ] + }, + { + "id": "module_gen_prod_fieldcoils_01", + "version": 0, + "name": "Field Coil Production", + "macro": "prod_gen_fieldcoils_macro", + "description": "No information available", + "type": "production", + "product": [ + "fieldcoils" + ], + "explosionDamage": 1000, + "hull": 149000, + "workForce": { + "max": 810 + }, + "price": { + "min": 9436671, + "max": 12767261, + "avg": 11101966 + }, + "owners": [ + "antigone", + "paranid", + "teladi", + "trinity", + "freesplit", + "split", + "boron" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 989, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 1735 + }, + { + "ware": "energycells", + "amount": 3470 + }, + { + "ware": "hullparts", + "amount": 6351 + } + ] + } + ] + }, + { + "id": "module_gen_prod_graphene_01", + "version": 0, + "name": "Graphene Production", + "macro": "prod_gen_graphene_macro", + "description": "No information available", + "type": "production", + "product": [ + "graphene" + ], + "explosionDamage": 1000, + "hull": 190000, + "workForce": { + "max": 180 + }, + "price": { + "min": 152966, + "max": 206954, + "avg": 179960 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split", + "boron" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 482, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 28 + }, + { + "ware": "energycells", + "amount": 57 + }, + { + "ware": "hullparts", + "amount": 104 + } + ] + } + ] + }, + { + "id": "module_gen_prod_hullparts_01", + "version": 0, + "name": "Hull Part Production", + "macro": "prod_gen_hullparts_macro", + "description": "No information available", + "type": "production", + "product": [ + "hullparts" + ], + "explosionDamage": 1000, + "hull": 146000, + "workForce": { + "max": 270 + }, + "price": { + "min": 3340194, + "max": 4519086, + "avg": 3929640 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split", + "boron" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 862, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 614 + }, + { + "ware": "energycells", + "amount": 1229 + }, + { + "ware": "hullparts", + "amount": 2249 + } + ] + } + ] + }, + { + "id": "module_gen_prod_microchips_01", + "version": 0, + "name": "Microchip Production", + "macro": "prod_gen_microchips_macro", + "description": "No information available", + "type": "production", + "product": [ + "microchips" + ], + "explosionDamage": 1000, + "hull": 199000, + "workForce": { + "max": 450 + }, + "price": { + "min": 4122469, + "max": 5577459, + "avg": 4849964 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split", + "boron" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 888, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 758 + }, + { + "ware": "energycells", + "amount": 1516 + }, + { + "ware": "hullparts", + "amount": 2774 + } + ] + } + ] + }, + { + "id": "module_gen_prod_missilecomponents_01", + "version": 0, + "name": "Missile Component Production", + "macro": "prod_gen_missilecomponents_macro", + "description": "No information available", + "type": "production", + "product": [ + "missilecomponents" + ], + "explosionDamage": 1000, + "hull": 159000, + "workForce": { + "max": 22 + }, + "price": { + "min": 191643, + "max": 259281, + "avg": 225462 + }, + "owners": [ + "argon", + "holyorder", + "ministry", + "paranid", + "trinity", + "freesplit", + "split", + "boron" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 510, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 35 + }, + { + "ware": "energycells", + "amount": 71 + }, + { + "ware": "hullparts", + "amount": 131 + } + ] + } + ] + }, + { + "id": "module_gen_prod_plasmaconductors_01", + "version": 0, + "name": "Plasma Conductor Production", + "macro": "prod_gen_plasmaconductors_macro", + "description": "No information available", + "type": "production", + "product": [ + "plasmaconductors" + ], + "explosionDamage": 1000, + "hull": 181000, + "workForce": { + "max": 225 + }, + "price": { + "min": 2572901, + "max": 3480983, + "avg": 3026942 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split", + "boron" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 830, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 473 + }, + { + "ware": "energycells", + "amount": 946 + }, + { + "ware": "hullparts", + "amount": 1732 + } + ] + } + ] + }, + { + "id": "module_gen_prod_quantumtubes_01", + "version": 0, + "name": "Quantum Tube Production", + "macro": "prod_gen_quantumtubes_macro", + "description": "No information available", + "type": "production", + "product": [ + "quantumtubes" + ], + "explosionDamage": 1000, + "hull": 148000, + "workForce": { + "max": 225 + }, + "price": { + "min": 2068152, + "max": 2798088, + "avg": 2433120 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split", + "boron" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 803, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 380 + }, + { + "ware": "energycells", + "amount": 761 + }, + { + "ware": "hullparts", + "amount": 1394 + } + ] + } + ] + }, + { + "id": "module_gen_prod_refinedmetals_01", + "version": 0, + "name": "Refined Metal Production", + "macro": "prod_gen_refinedmetals_macro", + "description": "No information available", + "type": "production", + "product": [ + "refinedmetals" + ], + "explosionDamage": 1000, + "hull": 210000, + "workForce": { + "max": 225 + }, + "price": { + "min": 197231, + "max": 266841, + "avg": 232036 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split", + "boron" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 514, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 36 + }, + { + "ware": "energycells", + "amount": 73 + }, + { + "ware": "hullparts", + "amount": 135 + } + ] + } + ] + }, + { + "id": "module_gen_prod_scanningarrays_01", + "version": 0, + "name": "Scanning Array Production", + "macro": "prod_gen_scanningarrays_macro", + "description": "No information available", + "type": "production", + "product": [ + "scanningarrays" + ], + "explosionDamage": 1000, + "hull": 169000, + "workForce": { + "max": 315 + }, + "price": { + "min": 3422258, + "max": 4630114, + "avg": 4026186 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split", + "boron" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 865, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 629 + }, + { + "ware": "energycells", + "amount": 1259 + }, + { + "ware": "hullparts", + "amount": 2305 + } + ] + } + ] + }, + { + "id": "module_gen_prod_scrap_recycler", + "version": 0, + "name": "Scrap Recycler", + "macro": "prod_gen_scrap_recycler_macro", + "description": "The Jump Gate shutdown left Avarice with very limited access to resources, so stranded Argon engineers started development of various recycling facilities. The Scrap Recycler was designed to process Scrap Metal into usable resources, converting it into Hull Parts and Claytronics in alternating production cycles.nnFollowing the arrival of messenger drones from Sacred Relic, the people of Avarice sent out drones of their own to other disconnected systems. These drones contained blueprints for their recycling technology, in the hopes that it would be of help to others who were unfortunate enough to be stranded with no natural resources to hand. In the process, they created a local branch of the Alliance of the Word, operating out of Tidebreak. With the first Jump Gate reconnection in 825 (NT), the Alliance of the Word moved to its own station in Windfall.", + "type": "production", + "product": [ + "claytronics", + "hullparts" + ], + "explosionDamage": 2000, + "hull": 200000, + "workForce": { + "max": 1250 + }, + "price": { + "min": 1628494, + "max": 2203256, + "avg": 1915875 + }, + "owners": [ + "alliance", + "scaleplate", + "teladi", + "scavenger" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 777, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 300 + }, + { + "ware": "energycells", + "amount": 600 + }, + { + "ware": "hullparts", + "amount": 1100 + } + ] + } + ] + }, + { + "id": "module_gen_prod_shieldcomponents_01", + "version": 0, + "name": "Shield Component Production", + "macro": "prod_gen_shieldcomponents_macro", + "description": "No information available", + "type": "production", + "product": [ + "shieldcomponents" + ], + "explosionDamage": 1000, + "hull": 191000, + "workForce": { + "max": 225 + }, + "price": { + "min": 2350389, + "max": 3179939, + "avg": 2765164 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split", + "boron" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 819, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 432 + }, + { + "ware": "energycells", + "amount": 865 + }, + { + "ware": "hullparts", + "amount": 1583 + } + ] + } + ] + }, + { + "id": "module_gen_prod_siliconwafers_01", + "version": 0, + "name": "Silicon Wafer Production", + "macro": "prod_gen_siliconwafers_macro", + "description": "No information available", + "type": "production", + "product": [ + "siliconwafers" + ], + "explosionDamage": 1000, + "hull": 186000, + "workForce": { + "max": 225 + }, + "price": { + "min": 403430, + "max": 545818, + "avg": 474624 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split", + "boron" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_02", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 602, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 74 + }, + { + "ware": "energycells", + "amount": 149 + }, + { + "ware": "hullparts", + "amount": 273 + } + ] + } + ] + }, + { + "id": "module_gen_prod_smartchips_01", + "version": 0, + "name": "Smart Chip Production", + "macro": "prod_gen_smartchips_macro", + "description": "No information available", + "type": "production", + "product": [ + "smartchips" + ], + "explosionDamage": 1000, + "hull": 104000, + "workForce": { + "max": 60 + }, + "price": { + "min": 686545, + "max": 928855, + "avg": 807700 + }, + "owners": [ + "antigone", + "paranid", + "teladi", + "trinity", + "freesplit", + "split", + "boron" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 667, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 126 + }, + { + "ware": "energycells", + "amount": 253 + }, + { + "ware": "hullparts", + "amount": 464 + } + ] + } + ] + }, + { + "id": "module_gen_prod_spices_01", + "version": 0, + "name": "Spice Production", + "macro": "prod_gen_spices_macro", + "description": "No information available", + "type": "production", + "product": [ + "spices" + ], + "explosionDamage": 1000, + "hull": 151000, + "workForce": { + "max": 60 + }, + "price": { + "min": 756543, + "max": 1023558, + "avg": 890050 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 679, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 139 + }, + { + "ware": "energycells", + "amount": 278 + }, + { + "ware": "hullparts", + "amount": 510 + } + ] + } + ] + }, + { + "id": "module_gen_prod_superfluidcoolant_01", + "version": 0, + "name": "Superfluid Coolant Production", + "macro": "prod_gen_superfluidcoolant_macro", + "description": "No information available", + "type": "production", + "product": [ + "superfluidcoolant" + ], + "explosionDamage": 1000, + "hull": 177000, + "workForce": { + "max": 180 + }, + "price": { + "min": 137080, + "max": 185461, + "avg": 161270 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split", + "boron" + ], + "shields": [ + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 469, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 25 + }, + { + "ware": "energycells", + "amount": 51 + }, + { + "ware": "hullparts", + "amount": 94 + } + ] + } + ] + }, + { + "id": "module_gen_prod_turretcomponents_01", + "version": 0, + "name": "Turret Component Production", + "macro": "prod_gen_turretcomponents_macro", + "description": "No information available", + "type": "production", + "product": [ + "turretcomponents" + ], + "explosionDamage": 1000, + "hull": 155000, + "workForce": { + "max": 225 + }, + "price": { + "min": 2584529, + "max": 3496715, + "avg": 3040622 + }, + "owners": [ + "argon", + "ministry", + "paranid", + "trinity", + "freesplit", + "split", + "boron" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 830, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 475 + }, + { + "ware": "energycells", + "amount": 951 + }, + { + "ware": "hullparts", + "amount": 1741 + } + ] + } + ] + }, + { + "id": "module_gen_prod_water_01", + "version": 0, + "name": "Water Production", + "macro": "prod_gen_water_macro", + "description": "No information available", + "type": "production", + "product": [ + "water" + ], + "explosionDamage": 1000, + "hull": 203000, + "workForce": { + "max": 180 + }, + "price": { + "min": 195901, + "max": 265043, + "avg": 230472 + }, + "owners": [ + "antigone", + "argon", + "holyorder", + "paranid", + "teladi", + "trinity", + "freesplit", + "split", + "boron" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 513, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 36 + }, + { + "ware": "energycells", + "amount": 72 + }, + { + "ware": "hullparts", + "amount": 132 + } + ] + } + ] + }, + { + "id": "module_gen_prod_weaponcomponents_01", + "version": 0, + "name": "Weapon Component Production", + "macro": "prod_gen_weaponcomponents_macro", + "description": "No information available", + "type": "production", + "product": [ + "weaponcomponents" + ], + "explosionDamage": 1000, + "hull": 208000, + "workForce": { + "max": 225 + }, + "price": { + "min": 2154927, + "max": 2915489, + "avg": 2535208 + }, + "owners": [ + "argon", + "holyorder", + "ministry", + "trinity", + "freesplit", + "split", + "boron" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 808, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 396 + }, + { + "ware": "energycells", + "amount": 793 + }, + { + "ware": "hullparts", + "amount": 1452 + } + ] + } + ] + }, + { + "id": "module_par_conn_base_01", + "version": 0, + "name": "Paranid Base Connection Structure 01", + "macro": "struct_par_base_01_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 110000, + "makerRace": "paranid", + "price": { + "min": 64410, + "max": 87142, + "avg": 75776 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 45, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 12 + }, + { + "ware": "energycells", + "amount": 23 + }, + { + "ware": "hullparts", + "amount": 42 + } + ] + } + ] + }, + { + "id": "module_par_conn_base_02", + "version": 0, + "name": "Paranid Base Connection Structure 02", + "macro": "struct_par_base_02_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 230000, + "makerRace": "paranid", + "price": { + "min": 91924, + "max": 124368, + "avg": 108146 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 59, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 17 + }, + { + "ware": "energycells", + "amount": 34 + }, + { + "ware": "hullparts", + "amount": 61 + } + ] + } + ] + }, + { + "id": "module_par_conn_base_03", + "version": 0, + "name": "Paranid Base Connection Structure 03", + "macro": "struct_par_base_03_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 370000, + "makerRace": "paranid", + "price": { + "min": 114728, + "max": 155220, + "avg": 134974 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 83, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 21 + }, + { + "ware": "energycells", + "amount": 43 + }, + { + "ware": "hullparts", + "amount": 78 + } + ] + } + ] + }, + { + "id": "module_par_conn_cross_01", + "version": 0, + "name": "Paranid Cross Connection Structure 01", + "macro": "struct_par_cross_01_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 90000, + "makerRace": "paranid", + "price": { + "min": 55015, + "max": 74433, + "avg": 64724 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 40, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 10 + }, + { + "ware": "energycells", + "amount": 21 + }, + { + "ware": "hullparts", + "amount": 38 + } + ] + } + ] + }, + { + "id": "module_par_conn_cross_02", + "version": 0, + "name": "Paranid Cross Connection Structure 02", + "macro": "struct_par_cross_02_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 370000, + "makerRace": "paranid", + "price": { + "min": 114728, + "max": 155220, + "avg": 134974 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 83, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 21 + }, + { + "ware": "energycells", + "amount": 43 + }, + { + "ware": "hullparts", + "amount": 78 + } + ] + } + ] + }, + { + "id": "module_par_conn_cross_03", + "version": 0, + "name": "Paranid Cross Connection Structure 03", + "macro": "struct_par_cross_03_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 230000, + "makerRace": "paranid", + "price": { + "min": 91924, + "max": 124368, + "avg": 108146 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 59, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 17 + }, + { + "ware": "energycells", + "amount": 34 + }, + { + "ware": "hullparts", + "amount": 61 + } + ] + } + ] + }, + { + "id": "module_par_conn_vertical_01", + "version": 0, + "name": "Paranid Vertical Connection Structure 01", + "macro": "struct_par_vertical_01_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 79000, + "makerRace": "paranid", + "price": { + "min": 54125, + "max": 73227, + "avg": 63676 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 38, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 10 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "hullparts", + "amount": 36 + } + ] + } + ] + }, + { + "id": "module_par_conn_vertical_02", + "version": 0, + "name": "Paranid Vertical Connection Structure 02", + "macro": "struct_par_vertical_02_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 143000, + "makerRace": "paranid", + "price": { + "min": 70888, + "max": 95908, + "avg": 83398 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 52, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 13 + }, + { + "ware": "energycells", + "amount": 26 + }, + { + "ware": "hullparts", + "amount": 48 + } + ] + } + ] + }, + { + "id": "module_par_def_claim_01", + "version": 0, + "name": "Paranid Administrative Centre", + "macro": "defence_par_claim_01_macro", + "description": "No information available", + "type": "defencemodule", + "explosionDamage": 2000, + "hull": 532000, + "makerRace": "paranid", + "price": { + "min": 760801, + "max": 1029319, + "avg": 895060 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 547, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 140 + }, + { + "ware": "energycells", + "amount": 279 + }, + { + "ware": "hullparts", + "amount": 511 + } + ] + } + ] + }, + { + "id": "module_par_def_disc_01", + "version": 0, + "name": "Paranid Disc Defence Platform", + "macro": "defence_par_disc_01_macro", + "description": "No information available", + "type": "defencemodule", + "explosionDamage": 1200, + "hull": 197400, + "makerRace": "paranid", + "price": { + "min": 533140, + "max": 721308, + "avg": 627224 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "shields": [ + { + "group": "group05", + "size": "medium", + "hittable": true + }, + { + "group": "group06", + "size": "medium", + "hittable": true + }, + { + "group": "group02", + "size": "large", + "hittable": false + }, + { + "group": "group02", + "size": "large", + "hittable": false + }, + { + "group": "group01", + "size": "large", + "hittable": false + }, + { + "group": "group01", + "size": "large", + "hittable": false + }, + { + "group": "group08", + "size": "medium", + "hittable": true + }, + { + "group": "group07", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group02", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group07", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group08", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group07", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group08", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 384, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 98 + }, + { + "ware": "energycells", + "amount": 196 + }, + { + "ware": "hullparts", + "amount": 359 + } + ] + } + ] + }, + { + "id": "module_par_def_tube_01", + "version": 0, + "name": "Paranid Bridge Defence Platform", + "macro": "defence_par_tube_01_macro", + "description": "No information available", + "type": "defencemodule", + "explosionDamage": 1200, + "hull": 148800, + "makerRace": "paranid", + "price": { + "min": 462691, + "max": 625993, + "avg": 544342 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "shields": [ + { + "group": "group01", + "size": "medium", + "hittable": true + }, + { + "group": "group02", + "size": "medium", + "hittable": true + }, + { + "group": "group04", + "size": "medium", + "hittable": true + }, + { + "group": "group03", + "size": "medium", + "hittable": true + }, + { + "group": "group05", + "size": "large", + "hittable": false + }, + { + "group": "group06", + "size": "large", + "hittable": false + } + ], + "turrets": [ + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 334, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 85 + }, + { + "ware": "energycells", + "amount": 170 + }, + { + "ware": "hullparts", + "amount": 312 + } + ] + } + ] + }, + { + "id": "module_par_hab_l_01", + "version": 0, + "name": "Paranid L Dome", + "macro": "hab_par_l_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 600000, + "makerRace": "paranid", + "workForce": { + "capacity": 999, + "race": "paranid" + }, + "price": { + "min": 18262842, + "max": 24708550, + "avg": 21485696 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 822, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 210 + }, + { + "ware": "energycells", + "amount": 419 + }, + { + "ware": "hullparts", + "amount": 767 + } + ] + } + ] + }, + { + "id": "module_par_hab_m_01", + "version": 0, + "name": "Paranid M Dome", + "macro": "hab_par_m_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 250000, + "makerRace": "paranid", + "workForce": { + "capacity": 666, + "race": "paranid" + }, + "price": { + "min": 11754290, + "max": 15902862, + "avg": 13828576 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 530, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 135 + }, + { + "ware": "energycells", + "amount": 271 + }, + { + "ware": "hullparts", + "amount": 495 + } + ] + } + ] + }, + { + "id": "module_par_hab_s_01", + "version": 0, + "name": "Paranid S Dome", + "macro": "hab_par_s_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 120000, + "makerRace": "paranid", + "workForce": { + "capacity": 333, + "race": "paranid" + }, + "price": { + "min": 8172621, + "max": 11057075, + "avg": 9614848 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 367, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 94 + }, + { + "ware": "energycells", + "amount": 188 + }, + { + "ware": "hullparts", + "amount": 343 + } + ] + } + ] + }, + { + "id": "module_par_pier_l_01", + "version": 0, + "name": "Paranid 3-Dock T Pier", + "macro": "pier_par_harbor_01_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 810000, + "makerRace": "paranid", + "price": { + "min": 3060886, + "max": 4141198, + "avg": 3601042 + }, + "owners": [ + "paranid", + "trinity" + ], + "production": [ + { + "time": 780, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 563 + }, + { + "ware": "energycells", + "amount": 1125 + }, + { + "ware": "hullparts", + "amount": 2058 + } + ] + } + ] + }, + { + "id": "module_par_pier_l_02", + "version": 0, + "name": "Paranid 1-Dock Pier", + "macro": "pier_par_harbor_02_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 270000, + "makerRace": "paranid", + "price": { + "min": 1766944, + "max": 2390572, + "avg": 2078758 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "production": [ + { + "time": 450, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 325 + }, + { + "ware": "energycells", + "amount": 650 + }, + { + "ware": "hullparts", + "amount": 1188 + } + ] + } + ] + }, + { + "id": "module_par_pier_l_03", + "version": 0, + "name": "Paranid 3-Dock E Pier", + "macro": "pier_par_harbor_03_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 1080000, + "makerRace": "paranid", + "price": { + "min": 3534314, + "max": 4781718, + "avg": 4158016 + }, + "owners": [ + "holyorder", + "trinity" + ], + "production": [ + { + "time": 900, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 650 + }, + { + "ware": "energycells", + "amount": 1299 + }, + { + "ware": "hullparts", + "amount": 2377 + } + ] + } + ] + }, + { + "id": "module_par_prod_majadust_01", + "version": 0, + "name": "Maja Dust Production", + "macro": "prod_par_majadust_macro", + "description": "No information available", + "type": "production", + "product": [ + "majadust" + ], + "explosionDamage": 1000, + "hull": 245000, + "makerRace": "paranid", + "workForce": { + "max": 123 + }, + "price": { + "min": 2029023, + "max": 2745149, + "avg": 2387086 + }, + "owners": [ + "hatikvah", + "scaleplate" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 800, + "amount": 1, + "method": "default", + "name": "Paranid", + "wares": [ + { + "ware": "claytronics", + "amount": 373 + }, + { + "ware": "energycells", + "amount": 746 + }, + { + "ware": "hullparts", + "amount": 1366 + } + ] + } + ] + }, + { + "id": "module_par_prod_majasnails_01", + "version": 0, + "name": "Maja Snail Production", + "macro": "prod_par_majasnails_macro", + "description": "No information available", + "type": "production", + "product": [ + "majasnails" + ], + "explosionDamage": 1000, + "hull": 236000, + "makerRace": "paranid", + "workForce": { + "max": 175 + }, + "price": { + "min": 1349848, + "max": 1826264, + "avg": 1588056 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 750, + "amount": 1, + "method": "default", + "name": "Paranid", + "wares": [ + { + "ware": "claytronics", + "amount": 248 + }, + { + "ware": "energycells", + "amount": 497 + }, + { + "ware": "hullparts", + "amount": 910 + } + ] + } + ] + }, + { + "id": "module_par_prod_medicalsupplies_01", + "version": 0, + "name": "Paranid Medical Supply Production", + "macro": "prod_par_medicalsupplies_macro", + "description": "No information available", + "type": "production", + "product": [ + "medicalsupplies" + ], + "explosionDamage": 1000, + "hull": 197000, + "makerRace": "paranid", + "workForce": { + "max": 90 + }, + "price": { + "min": 1229080, + "max": 1662872, + "avg": 1445976 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 739, + "amount": 1, + "method": "default", + "name": "Paranid", + "wares": [ + { + "ware": "claytronics", + "amount": 226 + }, + { + "ware": "energycells", + "amount": 451 + }, + { + "ware": "hullparts", + "amount": 827 + } + ] + } + ] + }, + { + "id": "module_par_prod_sojabeans_01", + "version": 0, + "name": "Soja Bean Production", + "macro": "prod_par_sojabeans_macro", + "description": "No information available", + "type": "production", + "product": [ + "sojabeans" + ], + "explosionDamage": 1000, + "hull": 259000, + "makerRace": "paranid", + "workForce": { + "max": 175 + }, + "price": { + "min": 1610158, + "max": 2178450, + "avg": 1894304 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 772, + "amount": 1, + "method": "default", + "name": "Paranid", + "wares": [ + { + "ware": "claytronics", + "amount": 296 + }, + { + "ware": "energycells", + "amount": 592 + }, + { + "ware": "hullparts", + "amount": 1084 + } + ] + } + ] + }, + { + "id": "module_par_prod_sojahusk_01", + "version": 0, + "name": "Soja Husk Production", + "macro": "prod_par_sojahusk_macro", + "description": "No information available", + "type": "production", + "product": [ + "sojahusk" + ], + "explosionDamage": 1000, + "hull": 218000, + "makerRace": "paranid", + "workForce": { + "max": 99 + }, + "price": { + "min": 1719737, + "max": 2326703, + "avg": 2023220 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 780, + "amount": 1, + "method": "default", + "name": "Paranid", + "wares": [ + { + "ware": "claytronics", + "amount": 316 + }, + { + "ware": "energycells", + "amount": 633 + }, + { + "ware": "hullparts", + "amount": 1159 + } + ] + } + ] + }, + { + "id": "module_par_stor_container_l_01", + "version": 0, + "name": "Paranid L Container Storage", + "macro": "storage_par_l_container_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 653000, + "makerRace": "paranid", + "cargo": { + "max": 1000000, + "type": "container" + }, + "price": { + "min": 674026, + "max": 911918, + "avg": 792972 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 626, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 124 + }, + { + "ware": "energycells", + "amount": 247 + }, + { + "ware": "hullparts", + "amount": 453 + } + ] + } + ] + }, + { + "id": "module_par_stor_container_m_01", + "version": 0, + "name": "Paranid M Container Storage", + "macro": "storage_par_m_container_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 800, + "hull": 304000, + "makerRace": "paranid", + "cargo": { + "max": 100000, + "type": "container" + }, + "price": { + "min": 457555, + "max": 619045, + "avg": 538300 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 427, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 84 + }, + { + "ware": "energycells", + "amount": 169 + }, + { + "ware": "hullparts", + "amount": 309 + } + ] + } + ] + }, + { + "id": "module_par_stor_container_s_01", + "version": 0, + "name": "Paranid S Container Storage", + "macro": "storage_par_s_container_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 500, + "hull": 133000, + "makerRace": "paranid", + "cargo": { + "max": 25000, + "type": "container" + }, + "price": { + "min": 304150, + "max": 411498, + "avg": 357824 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 282, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 56 + }, + { + "ware": "energycells", + "amount": 112 + }, + { + "ware": "hullparts", + "amount": 204 + } + ] + } + ] + }, + { + "id": "module_par_stor_liquid_l_01", + "version": 0, + "name": "Paranid L Liquid Storage", + "macro": "storage_par_l_liquid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 653000, + "makerRace": "paranid", + "cargo": { + "max": 1000000, + "type": "liquid" + }, + "price": { + "min": 674026, + "max": 911918, + "avg": 792972 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 626, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 124 + }, + { + "ware": "energycells", + "amount": 247 + }, + { + "ware": "hullparts", + "amount": 453 + } + ] + } + ] + }, + { + "id": "module_par_stor_liquid_m_01", + "version": 0, + "name": "Paranid M Liquid Storage", + "macro": "storage_par_m_liquid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 800, + "hull": 304000, + "makerRace": "paranid", + "cargo": { + "max": 500000, + "type": "liquid" + }, + "price": { + "min": 457555, + "max": 619045, + "avg": 538300 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 427, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 84 + }, + { + "ware": "energycells", + "amount": 169 + }, + { + "ware": "hullparts", + "amount": 309 + } + ] + } + ] + }, + { + "id": "module_par_stor_liquid_s_01", + "version": 0, + "name": "Paranid S Liquid Storage", + "macro": "storage_par_s_liquid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 500, + "hull": 133000, + "makerRace": "paranid", + "cargo": { + "max": 100000, + "type": "liquid" + }, + "price": { + "min": 304150, + "max": 411498, + "avg": 357824 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 282, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 56 + }, + { + "ware": "energycells", + "amount": 112 + }, + { + "ware": "hullparts", + "amount": 204 + } + ] + } + ] + }, + { + "id": "module_par_stor_solid_l_01", + "version": 0, + "name": "Paranid L Solid Storage", + "macro": "storage_par_l_solid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 653000, + "makerRace": "paranid", + "cargo": { + "max": 1000000, + "type": "solid" + }, + "price": { + "min": 674026, + "max": 911918, + "avg": 792972 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 683, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 124 + }, + { + "ware": "energycells", + "amount": 247 + }, + { + "ware": "hullparts", + "amount": 453 + } + ] + } + ] + }, + { + "id": "module_par_stor_solid_m_01", + "version": 0, + "name": "Paranid M Solid Storage", + "macro": "storage_par_m_solid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 800, + "hull": 304000, + "makerRace": "paranid", + "cargo": { + "max": 500000, + "type": "solid" + }, + "price": { + "min": 457555, + "max": 619045, + "avg": 538300 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 427, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 84 + }, + { + "ware": "energycells", + "amount": 169 + }, + { + "ware": "hullparts", + "amount": 309 + } + ] + } + ] + }, + { + "id": "module_par_stor_solid_s_01", + "version": 0, + "name": "Paranid S Solid Storage", + "macro": "storage_par_s_solid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 500, + "hull": 133000, + "makerRace": "paranid", + "cargo": { + "max": 100000, + "type": "solid" + }, + "price": { + "min": 304150, + "max": 411498, + "avg": 357824 + }, + "owners": [ + "holyorder", + "paranid", + "trinity" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 282, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 56 + }, + { + "ware": "energycells", + "amount": 112 + }, + { + "ware": "hullparts", + "amount": 204 + } + ] + } + ] + }, + { + "id": "module_tel_conn_base_01", + "version": 0, + "name": "Teladi Base Connection Structure 01", + "macro": "struct_tel_base_01_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 150000, + "makerRace": "teladi", + "price": { + "min": 92363, + "max": 124961, + "avg": 108662 + }, + "owners": [ + "teladi" + ], + "production": [ + { + "time": 59, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 14 + }, + { + "ware": "energycells", + "amount": 27 + }, + { + "ware": "hullparts", + "amount": 50 + } + ] + } + ] + }, + { + "id": "module_tel_conn_base_02", + "version": 0, + "name": "Teladi Base Connection Structure 02", + "macro": "struct_tel_base_02_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 238000, + "makerRace": "teladi", + "price": { + "min": 75585, + "max": 102263, + "avg": 88924 + }, + "owners": [ + "teladi" + ], + "production": [ + { + "time": 53, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 17 + }, + { + "ware": "energycells", + "amount": 34 + }, + { + "ware": "hullparts", + "amount": 62 + } + ] + } + ] + }, + { + "id": "module_tel_conn_base_03", + "version": 0, + "name": "Teladi Base Connection Structure 03", + "macro": "struct_tel_base_03_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 280000, + "makerRace": "teladi", + "price": { + "min": 98841, + "max": 133727, + "avg": 116284 + }, + "owners": [ + "teladi" + ], + "production": [ + { + "time": 72, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 18 + }, + { + "ware": "energycells", + "amount": 37 + }, + { + "ware": "hullparts", + "amount": 68 + } + ] + } + ] + }, + { + "id": "module_tel_conn_cross_01", + "version": 0, + "name": "Teladi Cross Connection Structure 01", + "macro": "struct_tel_cross_01_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 120000, + "makerRace": "teladi", + "price": { + "min": 65300, + "max": 88348, + "avg": 76824 + }, + "owners": [ + "teladi" + ], + "production": [ + { + "time": 47, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 12 + }, + { + "ware": "energycells", + "amount": 24 + }, + { + "ware": "hullparts", + "amount": 44 + } + ] + } + ] + }, + { + "id": "module_tel_conn_vertical_01", + "version": 0, + "name": "Teladi Vertical Connection Structure 01", + "macro": "struct_tel_vertical_01_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 79000, + "makerRace": "teladi", + "price": { + "min": 54125, + "max": 73227, + "avg": 63676 + }, + "owners": [ + "teladi" + ], + "production": [ + { + "time": 38, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 10 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "hullparts", + "amount": 36 + } + ] + } + ] + }, + { + "id": "module_tel_conn_vertical_02", + "version": 0, + "name": "Teladi Vertical Connection Structure 02", + "macro": "struct_tel_vertical_02_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 143000, + "makerRace": "teladi", + "price": { + "min": 70888, + "max": 95908, + "avg": 83398 + }, + "owners": [ + "teladi" + ], + "production": [ + { + "time": 52, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 13 + }, + { + "ware": "energycells", + "amount": 26 + }, + { + "ware": "hullparts", + "amount": 48 + } + ] + } + ] + }, + { + "id": "module_tel_def_claim_01", + "version": 0, + "name": "Teladi Administrative Centre", + "macro": "defence_tel_claim_01_macro", + "description": "No information available", + "type": "defencemodule", + "explosionDamage": 2000, + "hull": 516000, + "makerRace": "teladi", + "price": { + "min": 749625, + "max": 1014199, + "avg": 881912 + }, + "owners": [ + "ministry", + "teladi" + ], + "production": [ + { + "time": 538, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 138 + }, + { + "ware": "energycells", + "amount": 275 + }, + { + "ware": "hullparts", + "amount": 503 + } + ] + } + ] + }, + { + "id": "module_tel_def_disc_01", + "version": 0, + "name": "Teladi Disc Defence Platform", + "macro": "defence_tel_disc_01_macro", + "description": "No information available", + "type": "defencemodule", + "explosionDamage": 1200, + "hull": 197400, + "makerRace": "teladi", + "price": { + "min": 533140, + "max": 721308, + "avg": 627224 + }, + "owners": [ + "ministry", + "teladi" + ], + "shields": [ + { + "group": "group01", + "size": "medium", + "hittable": true + }, + { + "group": "group03", + "size": "medium", + "hittable": true + }, + { + "group": "group05", + "size": "large", + "hittable": false + }, + { + "group": "group05", + "size": "large", + "hittable": false + }, + { + "group": "group05", + "size": "large", + "hittable": false + }, + { + "group": "group05", + "size": "large", + "hittable": false + }, + { + "group": "group04", + "size": "medium", + "hittable": true + }, + { + "group": "group02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 384, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 98 + }, + { + "ware": "energycells", + "amount": 196 + }, + { + "ware": "hullparts", + "amount": 359 + } + ] + } + ] + }, + { + "id": "module_tel_def_tube_01", + "version": 0, + "name": "Teladi Bridge Defence Platform", + "macro": "defence_tel_tube_01_macro", + "description": "No information available", + "type": "defencemodule", + "explosionDamage": 1200, + "hull": 148800, + "makerRace": "teladi", + "price": { + "min": 462691, + "max": 625993, + "avg": 544342 + }, + "owners": [ + "ministry", + "teladi" + ], + "shields": [ + { + "group": "group01", + "size": "medium", + "hittable": true + }, + { + "group": "group02", + "size": "medium", + "hittable": true + }, + { + "group": "group04", + "size": "medium", + "hittable": true + }, + { + "group": "group03", + "size": "medium", + "hittable": true + }, + { + "group": "group05", + "size": "large", + "hittable": false + }, + { + "group": "group06", + "size": "large", + "hittable": false + } + ], + "turrets": [ + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 334, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 85 + }, + { + "ware": "energycells", + "amount": 170 + }, + { + "ware": "hullparts", + "amount": 312 + } + ] + } + ] + }, + { + "id": "module_tel_hab_l_01", + "version": 0, + "name": "Teladi L Biome", + "macro": "hab_tel_l_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 450000, + "makerRace": "teladi", + "workForce": { + "capacity": 1000, + "race": "teladi" + }, + "price": { + "min": 15822621, + "max": 21407075, + "avg": 18614848 + }, + "owners": [ + "teladi" + ], + "production": [ + { + "time": 711, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 182 + }, + { + "ware": "energycells", + "amount": 363 + }, + { + "ware": "hullparts", + "amount": 664 + } + ] + } + ] + }, + { + "id": "module_tel_hab_m_01", + "version": 0, + "name": "Teladi M Biome", + "macro": "hab_tel_m_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 200000, + "makerRace": "teladi", + "workForce": { + "capacity": 500, + "race": "teladi" + }, + "price": { + "min": 10530453, + "max": 14247083, + "avg": 12388768 + }, + "owners": [ + "teladi" + ], + "production": [ + { + "time": 474, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 121 + }, + { + "ware": "energycells", + "amount": 242 + }, + { + "ware": "hullparts", + "amount": 443 + } + ] + } + ] + }, + { + "id": "module_tel_hab_s_01", + "version": 0, + "name": "Teladi S Biome", + "macro": "hab_tel_s_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 100000, + "makerRace": "teladi", + "workForce": { + "capacity": 250, + "race": "teladi" + }, + "price": { + "min": 7471187, + "max": 10108077, + "avg": 8789632 + }, + "owners": [ + "teladi" + ], + "production": [ + { + "time": 335, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 86 + }, + { + "ware": "energycells", + "amount": 171 + }, + { + "ware": "hullparts", + "amount": 313 + } + ] + } + ] + }, + { + "id": "module_tel_pier_l_01", + "version": 0, + "name": "Teladi 3-Dock T Pier", + "macro": "pier_tel_harbor_01_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 750000, + "makerRace": "teladi", + "price": { + "min": 2946171, + "max": 3985997, + "avg": 3466084 + }, + "owners": [ + "ministry", + "teladi" + ], + "production": [ + { + "time": 750, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 542 + }, + { + "ware": "energycells", + "amount": 1083 + }, + { + "ware": "hullparts", + "amount": 1980 + } + ] + } + ] + }, + { + "id": "module_tel_pier_l_02", + "version": 0, + "name": "Teladi 1-Dock Pier", + "macro": "pier_tel_harbor_02_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 250000, + "makerRace": "teladi", + "price": { + "min": 1701192, + "max": 2301612, + "avg": 2001402 + }, + "owners": [ + "ministry", + "teladi" + ], + "production": [ + { + "time": 433, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 313 + }, + { + "ware": "energycells", + "amount": 625 + }, + { + "ware": "hullparts", + "amount": 1143 + } + ] + } + ] + }, + { + "id": "module_tel_pier_l_03", + "version": 0, + "name": "Teladi 3-Dock E Pier", + "macro": "pier_tel_harbor_03_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 1000000, + "makerRace": "teladi", + "price": { + "min": 3399016, + "max": 4598668, + "avg": 3998842 + }, + "owners": [ + "ministry", + "teladi" + ], + "production": [ + { + "time": 866, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 625 + }, + { + "ware": "energycells", + "amount": 1250 + }, + { + "ware": "hullparts", + "amount": 2287 + } + ] + } + ] + }, + { + "id": "module_tel_prod_advancedcomposites_01", + "version": 0, + "name": "Teladi Advanced Composite Production", + "macro": "prod_tel_advancedcomposites_macro", + "description": "No information available", + "type": "production", + "product": [ + "advancedcomposites" + ], + "explosionDamage": 1000, + "hull": 197000, + "makerRace": "teladi", + "workForce": { + "max": 315 + }, + "price": { + "min": 3416014, + "max": 4621666, + "avg": 4018840 + }, + "owners": [ + "teladi" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 863, + "amount": 1, + "method": "default", + "name": "Teladi", + "wares": [ + { + "ware": "claytronics", + "amount": 628 + }, + { + "ware": "energycells", + "amount": 1241 + }, + { + "ware": "hullparts", + "amount": 2300 + } + ] + } + ] + }, + { + "id": "module_tel_prod_engineparts_01", + "version": 0, + "name": "Teladi Engine Part Production", + "macro": "prod_tel_engineparts_macro", + "description": "No information available", + "type": "production", + "product": [ + "engineparts" + ], + "explosionDamage": 1000, + "hull": 120000, + "makerRace": "teladi", + "workForce": { + "max": 225 + }, + "price": { + "min": 2143163, + "max": 2899573, + "avg": 2521368 + }, + "owners": [ + "teladi" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 806, + "amount": 1, + "method": "default", + "name": "Teladi", + "wares": [ + { + "ware": "claytronics", + "amount": 394 + }, + { + "ware": "energycells", + "amount": 778 + }, + { + "ware": "hullparts", + "amount": 1443 + } + ] + } + ] + }, + { + "id": "module_tel_prod_hullparts_01", + "version": 0, + "name": "Teladi Hull Part Production", + "macro": "prod_tel_hullparts_macro", + "description": "No information available", + "type": "production", + "product": [ + "hullparts" + ], + "explosionDamage": 1000, + "hull": 146000, + "makerRace": "teladi", + "workForce": { + "max": 270 + }, + "price": { + "min": 3339976, + "max": 4518792, + "avg": 3929384 + }, + "owners": [ + "teladi" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 861, + "amount": 1, + "method": "default", + "name": "Teladi", + "wares": [ + { + "ware": "claytronics", + "amount": 614 + }, + { + "ware": "energycells", + "amount": 1213 + }, + { + "ware": "hullparts", + "amount": 2249 + } + ] + } + ] + }, + { + "id": "module_tel_prod_medicalsupplies_01", + "version": 0, + "name": "Teladi Medical Supply Production", + "macro": "prod_tel_medicalsupplies_macro", + "description": "No information available", + "type": "production", + "product": [ + "medicalsupplies" + ], + "explosionDamage": 1000, + "hull": 197000, + "makerRace": "teladi", + "workForce": { + "max": 90 + }, + "price": { + "min": 1219233, + "max": 1649551, + "avg": 1434392 + }, + "owners": [ + "ministry" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 738, + "amount": 1, + "method": "default", + "name": "Teladi", + "wares": [ + { + "ware": "claytronics", + "amount": 224 + }, + { + "ware": "energycells", + "amount": 448 + }, + { + "ware": "hullparts", + "amount": 822 + } + ] + } + ] + }, + { + "id": "module_tel_prod_nostropoil_01", + "version": 0, + "name": "Nostrop Oil Production", + "macro": "prod_tel_nostropoil_macro", + "description": "No information available", + "type": "production", + "product": [ + "nostropoil" + ], + "explosionDamage": 1000, + "hull": 276000, + "makerRace": "teladi", + "workForce": { + "max": 120 + }, + "price": { + "min": 1574127, + "max": 2129701, + "avg": 1851914 + }, + "owners": [ + "teladi" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 769, + "amount": 1, + "method": "default", + "name": "Teladi", + "wares": [ + { + "ware": "claytronics", + "amount": 289 + }, + { + "ware": "energycells", + "amount": 579 + }, + { + "ware": "hullparts", + "amount": 1063 + } + ] + } + ] + }, + { + "id": "module_tel_prod_scanningarrays_01", + "version": 0, + "name": "Teladi Scanning Array Production", + "macro": "prod_tel_scanningarrays_macro", + "description": "No information available", + "type": "production", + "product": [ + "scanningarrays" + ], + "explosionDamage": 1000, + "hull": 169000, + "makerRace": "teladi", + "workForce": { + "max": 315 + }, + "price": { + "min": 3464989, + "max": 4687927, + "avg": 4076458 + }, + "owners": [ + "teladi" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 865, + "amount": 1, + "method": "default", + "name": "Teladi", + "wares": [ + { + "ware": "claytronics", + "amount": 637 + }, + { + "ware": "energycells", + "amount": 1259 + }, + { + "ware": "hullparts", + "amount": 2333 + } + ] + } + ] + }, + { + "id": "module_tel_prod_spaceweed_01", + "version": 0, + "name": "Spaceweed Production", + "macro": "prod_tel_spaceweed_macro", + "description": "No information available", + "type": "production", + "product": [ + "spaceweed" + ], + "explosionDamage": 1000, + "hull": 260000, + "makerRace": "teladi", + "workForce": { + "max": 90 + }, + "price": { + "min": 3475040, + "max": 4701524, + "avg": 4088282 + }, + "owners": [ + "hatikvah", + "scaleplate", + "teladi" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 867, + "amount": 1, + "method": "default", + "name": "Teladi", + "wares": [ + { + "ware": "claytronics", + "amount": 639 + }, + { + "ware": "energycells", + "amount": 1277 + }, + { + "ware": "hullparts", + "amount": 2338 + } + ] + } + ] + }, + { + "id": "module_tel_prod_sunriseflowers_01", + "version": 0, + "name": "Sunrise Flower Production", + "macro": "prod_tel_sunriseflowers_macro", + "description": "No information available", + "type": "production", + "product": [ + "sunriseflowers" + ], + "explosionDamage": 1000, + "hull": 235000, + "makerRace": "teladi", + "workForce": { + "max": 50 + }, + "price": { + "min": 1611474, + "max": 2180230, + "avg": 1895852 + }, + "owners": [ + "teladi" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 772, + "amount": 1, + "method": "default", + "name": "Teladi", + "wares": [ + { + "ware": "claytronics", + "amount": 296 + }, + { + "ware": "energycells", + "amount": 592 + }, + { + "ware": "hullparts", + "amount": 1087 + } + ] + } + ] + }, + { + "id": "module_tel_prod_swampplant_01", + "version": 0, + "name": "Swamp Plant Production", + "macro": "prod_tel_swampplant_macro", + "description": "No information available", + "type": "production", + "product": [ + "swampplant" + ], + "explosionDamage": 1000, + "hull": 287000, + "makerRace": "teladi", + "workForce": { + "max": 50 + }, + "price": { + "min": 3475040, + "max": 4701524, + "avg": 4088282 + }, + "owners": [ + "teladi" + ], + "shields": [ + { + "group": "front_03", + "size": "medium", + "hittable": true + }, + { + "group": "front_02", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_02", + "size": "medium", + "hittable": true + }, + { + "group": "back_03", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "front_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 867, + "amount": 1, + "method": "default", + "name": "Teladi", + "wares": [ + { + "ware": "claytronics", + "amount": 639 + }, + { + "ware": "energycells", + "amount": 1277 + }, + { + "ware": "hullparts", + "amount": 2338 + } + ] + } + ] + }, + { + "id": "module_tel_prod_teladianium_01", + "version": 0, + "name": "Teladianium Production", + "macro": "prod_tel_teladianium_macro", + "description": "No information available", + "type": "production", + "product": [ + "teladianium" + ], + "explosionDamage": 1000, + "hull": 226000, + "makerRace": "teladi", + "workForce": { + "max": 225 + }, + "price": { + "min": 272830, + "max": 369122, + "avg": 320976 + }, + "owners": [ + "teladi" + ], + "shields": [ + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 554, + "amount": 1, + "method": "default", + "name": "Teladi", + "wares": [ + { + "ware": "claytronics", + "amount": 50 + }, + { + "ware": "energycells", + "amount": 101 + }, + { + "ware": "hullparts", + "amount": 185 + } + ] + } + ] + }, + { + "id": "module_tel_stor_container_l_01", + "version": 0, + "name": "Teladi L Container Storage", + "macro": "storage_tel_l_container_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 531000, + "makerRace": "teladi", + "cargo": { + "max": 1000000, + "type": "container" + }, + "price": { + "min": 608287, + "max": 822977, + "avg": 715632 + }, + "owners": [ + "teladi" + ], + "shields": [ + { + "group": "top_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_03", + "size": "medium", + "hittable": true + }, + { + "group": "front_02", + "size": "medium", + "hittable": true + }, + { + "group": "front_04", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 564, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 112 + }, + { + "ware": "energycells", + "amount": 223 + }, + { + "ware": "hullparts", + "amount": 408 + } + ] + } + ] + }, + { + "id": "module_tel_stor_container_m_01", + "version": 0, + "name": "Teladi M Container Storage", + "macro": "storage_tel_m_container_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 800, + "hull": 259000, + "makerRace": "teladi", + "cargo": { + "max": 100000, + "type": "container" + }, + "price": { + "min": 424014, + "max": 573666, + "avg": 498840 + }, + "owners": [ + "teladi" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "leftbottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "rightbottom_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "leftbottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "rightbottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "rightbottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "leftbottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 394, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 78 + }, + { + "ware": "energycells", + "amount": 156 + }, + { + "ware": "hullparts", + "amount": 285 + } + ] + } + ] + }, + { + "id": "module_tel_stor_container_s_01", + "version": 0, + "name": "Teladi S Container Storage", + "macro": "storage_tel_s_container_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 500, + "hull": 111000, + "makerRace": "teladi", + "cargo": { + "max": 25000, + "type": "container" + }, + "price": { + "min": 277527, + "max": 375477, + "avg": 326502 + }, + "owners": [ + "teladi" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "leftbottom_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "leftbottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "leftbottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 258, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 51 + }, + { + "ware": "energycells", + "amount": 102 + }, + { + "ware": "hullparts", + "amount": 187 + } + ] + } + ] + }, + { + "id": "module_tel_stor_liquid_l_01", + "version": 0, + "name": "Teladi L Liquid Storage", + "macro": "storage_tel_l_liquid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 531000, + "makerRace": "teladi", + "cargo": { + "max": 1000000, + "type": "liquid" + }, + "price": { + "min": 608287, + "max": 822977, + "avg": 715632 + }, + "owners": [ + "teladi" + ], + "shields": [ + { + "group": "top_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_03", + "size": "medium", + "hittable": true + }, + { + "group": "front_02", + "size": "medium", + "hittable": true + }, + { + "group": "front_04", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 564, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 112 + }, + { + "ware": "energycells", + "amount": 223 + }, + { + "ware": "hullparts", + "amount": 408 + } + ] + } + ] + }, + { + "id": "module_tel_stor_liquid_m_01", + "version": 0, + "name": "Teladi M Liquid Storage", + "macro": "storage_tel_m_liquid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 800, + "hull": 259000, + "makerRace": "teladi", + "cargo": { + "max": 500000, + "type": "liquid" + }, + "price": { + "min": 424014, + "max": 573666, + "avg": 498840 + }, + "owners": [ + "teladi" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "leftbottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "rightbottom_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "leftbottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "rightbottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "rightbottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "leftbottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 394, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 78 + }, + { + "ware": "energycells", + "amount": 156 + }, + { + "ware": "hullparts", + "amount": 285 + } + ] + } + ] + }, + { + "id": "module_tel_stor_liquid_s_01", + "version": 0, + "name": "Teladi S Liquid Storage", + "macro": "storage_tel_s_liquid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 500, + "hull": 111000, + "makerRace": "teladi", + "cargo": { + "max": 100000, + "type": "liquid" + }, + "price": { + "min": 277527, + "max": 375477, + "avg": 326502 + }, + "owners": [ + "teladi" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "leftbottom_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "leftbottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "leftbottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 258, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 51 + }, + { + "ware": "energycells", + "amount": 102 + }, + { + "ware": "hullparts", + "amount": 187 + } + ] + } + ] + }, + { + "id": "module_tel_stor_solid_l_01", + "version": 0, + "name": "Teladi L Solid Storage", + "macro": "storage_tel_l_solid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 531000, + "makerRace": "teladi", + "cargo": { + "max": 1000000, + "type": "solid" + }, + "price": { + "min": 608287, + "max": 822977, + "avg": 715632 + }, + "owners": [ + "teladi" + ], + "shields": [ + { + "group": "top_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_03", + "size": "medium", + "hittable": true + }, + { + "group": "front_02", + "size": "medium", + "hittable": true + }, + { + "group": "front_04", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 564, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 112 + }, + { + "ware": "energycells", + "amount": 223 + }, + { + "ware": "hullparts", + "amount": 408 + } + ] + } + ] + }, + { + "id": "module_tel_stor_solid_m_01", + "version": 0, + "name": "Teladi M Solid Storage", + "macro": "storage_tel_m_solid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 800, + "hull": 259000, + "makerRace": "teladi", + "cargo": { + "max": 500000, + "type": "solid" + }, + "price": { + "min": 424014, + "max": 573666, + "avg": 498840 + }, + "owners": [ + "teladi" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "leftbottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "rightbottom_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "leftbottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "rightbottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "rightbottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "leftbottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 394, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 78 + }, + { + "ware": "energycells", + "amount": 156 + }, + { + "ware": "hullparts", + "amount": 285 + } + ] + } + ] + }, + { + "id": "module_tel_stor_solid_s_01", + "version": 0, + "name": "Teladi S Solid Storage", + "macro": "storage_tel_s_solid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 500, + "hull": 111000, + "makerRace": "teladi", + "cargo": { + "max": 100000, + "type": "solid" + }, + "price": { + "min": 277527, + "max": 375477, + "avg": 326502 + }, + "owners": [ + "teladi" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "leftbottom_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "leftbottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "leftbottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 258, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 51 + }, + { + "ware": "energycells", + "amount": 102 + }, + { + "ware": "hullparts", + "amount": 187 + } + ] + } + ] + }, + { + "id": "module_spl_conn_base_01", + "version": 1, + "name": "Split Base Connection Structure 01", + "macro": "struct_spl_base_01_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 150000, + "makerRace": "split", + "price": { + "min": 92363, + "max": 124961, + "avg": 108662 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 59, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 14 + }, + { + "ware": "energycells", + "amount": 27 + }, + { + "ware": "hullparts", + "amount": 50 + } + ] + } + ] + }, + { + "id": "module_spl_conn_base_02", + "version": 1, + "name": "Split Base Connection Structure 02", + "macro": "struct_spl_base_02_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 237000, + "makerRace": "split", + "price": { + "min": 75585, + "max": 102263, + "avg": 88924 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 53, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 17 + }, + { + "ware": "energycells", + "amount": 34 + }, + { + "ware": "hullparts", + "amount": 62 + } + ] + } + ] + }, + { + "id": "module_spl_conn_base_03", + "version": 1, + "name": "Split Base Connection Structure 03", + "macro": "struct_spl_base_03_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 280000, + "makerRace": "split", + "price": { + "min": 98841, + "max": 133727, + "avg": 116284 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 72, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 18 + }, + { + "ware": "energycells", + "amount": 37 + }, + { + "ware": "hullparts", + "amount": 68 + } + ] + } + ] + }, + { + "id": "module_spl_conn_cross_01", + "version": 1, + "name": "Split Cross Connection Structure 01", + "macro": "struct_spl_cross_01_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 120000, + "makerRace": "split", + "price": { + "min": 65300, + "max": 88348, + "avg": 76824 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 47, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 12 + }, + { + "ware": "energycells", + "amount": 24 + }, + { + "ware": "hullparts", + "amount": 44 + } + ] + } + ] + }, + { + "id": "module_spl_conn_vertical_01", + "version": 1, + "name": "Split Vertical Connection Structure 01", + "macro": "struct_spl_vertical_01_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 79000, + "makerRace": "split", + "price": { + "min": 54125, + "max": 73227, + "avg": 63676 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 38, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 10 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "hullparts", + "amount": 36 + } + ] + } + ] + }, + { + "id": "module_spl_conn_vertical_02", + "version": 1, + "name": "Split Vertical Connection Structure 02", + "macro": "struct_spl_vertical_02_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 143000, + "makerRace": "split", + "price": { + "min": 70888, + "max": 95908, + "avg": 83398 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 52, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 13 + }, + { + "ware": "energycells", + "amount": 26 + }, + { + "ware": "hullparts", + "amount": 48 + } + ] + } + ] + }, + { + "id": "module_spl_def_claim_01", + "version": 1, + "name": "Split Administrative Centre", + "macro": "defence_spl_claim_01_macro", + "description": "No information available", + "type": "defencemodule", + "explosionDamage": 2000, + "hull": 520000, + "makerRace": "split", + "price": { + "min": 750516, + "max": 1015404, + "avg": 882960 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 541, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 138 + }, + { + "ware": "energycells", + "amount": 276 + }, + { + "ware": "hullparts", + "amount": 505 + } + ] + } + ] + }, + { + "id": "module_spl_def_disc_01", + "version": 1, + "name": "Split Disc Defence Platform", + "macro": "defence_spl_disc_01_macro", + "description": "No information available", + "type": "defencemodule", + "explosionDamage": 1200, + "hull": 197400, + "makerRace": "split", + "price": { + "min": 570940, + "max": 772448, + "avg": 671694 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "group01", + "size": "medium", + "hittable": true + }, + { + "group": "group04", + "size": "medium", + "hittable": true + }, + { + "group": "group06", + "size": "medium", + "hittable": true + }, + { + "group": "group02", + "size": "medium", + "hittable": true + }, + { + "group": "group05", + "size": "medium", + "hittable": true + }, + { + "group": "group03", + "size": "medium", + "hittable": true + }, + { + "group": "group11", + "size": "large", + "hittable": false + }, + { + "group": "group12", + "size": "large", + "hittable": false + }, + { + "group": "group07", + "size": "large", + "hittable": false + }, + { + "group": "group08", + "size": "large", + "hittable": false + }, + { + "group": "group09", + "size": "large", + "hittable": false + }, + { + "group": "group10", + "size": "large", + "hittable": false + } + ], + "turrets": [ + { + "group": "group11", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group11", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group10", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group10", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group12", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group12", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group07", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group07", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group08", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group08", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group09", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group09", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 410, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 105 + }, + { + "ware": "energycells", + "amount": 210 + }, + { + "ware": "hullparts", + "amount": 384 + } + ] + } + ] + }, + { + "id": "module_spl_def_tube_01", + "version": 1, + "name": "Split Bridge Defence Platform", + "macro": "defence_spl_tube_01_macro", + "description": "No information available", + "type": "defencemodule", + "explosionDamage": 1200, + "hull": 148800, + "makerRace": "split", + "price": { + "min": 570940, + "max": 772448, + "avg": 671694 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "group06", + "size": "large", + "hittable": false + }, + { + "group": "group05", + "size": "large", + "hittable": false + }, + { + "group": "group08", + "size": "large", + "hittable": false + }, + { + "group": "group07", + "size": "large", + "hittable": false + }, + { + "group": "group01", + "size": "medium", + "hittable": true + }, + { + "group": "group04", + "size": "medium", + "hittable": true + }, + { + "group": "group02", + "size": "medium", + "hittable": true + }, + { + "group": "group03", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group08", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group07", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group07", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group08", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 410, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 105 + }, + { + "ware": "energycells", + "amount": 210 + }, + { + "ware": "hullparts", + "amount": 384 + } + ] + } + ] + }, + { + "id": "module_spl_hab_l_01", + "version": 1, + "name": "Split L Parlour", + "macro": "hab_spl_l_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 500000, + "makerRace": "split", + "workForce": { + "capacity": 1000, + "race": "split" + }, + "price": { + "min": 16627714, + "max": 22496318, + "avg": 19562016 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 750, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 191 + }, + { + "ware": "energycells", + "amount": 383 + }, + { + "ware": "hullparts", + "amount": 700 + } + ] + } + ] + }, + { + "id": "module_spl_hab_m_01", + "version": 1, + "name": "Split M Parlour", + "macro": "hab_spl_m_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 250000, + "makerRace": "split", + "workForce": { + "capacity": 500, + "race": "split" + }, + "price": { + "min": 11754290, + "max": 15902862, + "avg": 13828576 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 530, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 135 + }, + { + "ware": "energycells", + "amount": 271 + }, + { + "ware": "hullparts", + "amount": 495 + } + ] + } + ] + }, + { + "id": "module_spl_hab_s_01", + "version": 1, + "name": "Split S Parlour", + "macro": "hab_spl_s_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 120000, + "makerRace": "split", + "workForce": { + "capacity": 250, + "race": "split" + }, + "price": { + "min": 8172621, + "max": 11057075, + "avg": 9614848 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 367, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 94 + }, + { + "ware": "energycells", + "amount": 188 + }, + { + "ware": "hullparts", + "amount": 343 + } + ] + } + ] + }, + { + "id": "module_spl_pier_l_01", + "version": 1, + "name": "Split 4-Dock T Pier", + "macro": "pier_spl_harbor_01_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 750000, + "makerRace": "split", + "price": { + "min": 2946171, + "max": 3985997, + "avg": 3466084 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 750, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 542 + }, + { + "ware": "energycells", + "amount": 1083 + }, + { + "ware": "hullparts", + "amount": 1980 + } + ] + } + ] + }, + { + "id": "module_spl_pier_l_02", + "version": 1, + "name": "Split 1-Dock Pier", + "macro": "pier_spl_harbor_02_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 250000, + "makerRace": "split", + "price": { + "min": 1701192, + "max": 2301612, + "avg": 2001402 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 433, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 313 + }, + { + "ware": "energycells", + "amount": 625 + }, + { + "ware": "hullparts", + "amount": 1143 + } + ] + } + ] + }, + { + "id": "module_spl_pier_l_03", + "version": 1, + "name": "Split 3-Dock E Pier", + "macro": "pier_spl_harbor_03_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 1000000, + "makerRace": "split", + "price": { + "min": 3399016, + "max": 4598668, + "avg": 3998842 + }, + "owners": [ + "freesplit", + "split" + ], + "production": [ + { + "time": 866, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 625 + }, + { + "ware": "energycells", + "amount": 1250 + }, + { + "ware": "hullparts", + "amount": 2287 + } + ] + } + ] + }, + { + "id": "module_spl_prod_cheltmeat_01", + "version": 1, + "name": "Chelt Production", + "macro": "prod_spl_cheltmeat_macro", + "description": "No information available", + "type": "production", + "product": [ + "cheltmeat" + ], + "explosionDamage": 1000, + "hull": 320000, + "makerRace": "split", + "workForce": { + "max": 90 + }, + "price": { + "min": 698188, + "max": 944608, + "avg": 821398 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "top_rear_01", + "size": "medium", + "hittable": true + }, + { + "group": "mid_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "mid_left_02", + "size": "medium", + "hittable": true + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "mid_right_02", + "size": "medium", + "hittable": true + }, + { + "group": "mid_right_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_rear_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_rear_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "mid_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "mid_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "mid_left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "mid_left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "mid_right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "mid_right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "mid_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "mid_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 503, + "amount": 1, + "method": "default", + "name": "Split", + "wares": [ + { + "ware": "claytronics", + "amount": 282 + }, + { + "ware": "energycells", + "amount": 256 + }, + { + "ware": "hullparts", + "amount": 1158 + } + ] + } + ] + }, + { + "id": "module_spl_prod_medicalsupplies_01", + "version": 1, + "name": "Split Medical Supply Production", + "macro": "prod_spl_medicalsupplies_macro", + "description": "No information available", + "type": "production", + "product": [ + "medicalsupplies" + ], + "explosionDamage": 1000, + "hull": 197000, + "makerRace": "split", + "workForce": { + "max": 90 + }, + "price": { + "min": 1223505, + "max": 1655331, + "avg": 1439418 + }, + "owners": [ + "split" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 739, + "amount": 1, + "method": "default", + "name": "Split", + "wares": [ + { + "ware": "claytronics", + "amount": 248 + }, + { + "ware": "energycells", + "amount": 451 + }, + { + "ware": "hullparts", + "amount": 910 + } + ] + } + ] + }, + { + "id": "module_spl_prod_scruffinfruits_01", + "version": 1, + "name": "Scruffin Production", + "macro": "prod_spl_scruffinfruit_macro", + "description": "No information available", + "type": "production", + "product": [ + "scruffinfruits" + ], + "explosionDamage": 1000, + "hull": 280000, + "makerRace": "split", + "workForce": { + "max": 90 + }, + "price": { + "min": 829662, + "max": 1122484, + "avg": 976073 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "top_right_02", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_left_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 598, + "amount": 1, + "method": "default", + "name": "Split", + "wares": [ + { + "ware": "claytronics", + "amount": 335 + }, + { + "ware": "energycells", + "amount": 305 + }, + { + "ware": "hullparts", + "amount": 1377 + } + ] + } + ] + }, + { + "id": "module_spl_stor_container_l_01", + "version": 1, + "name": "Split L Container Storage", + "macro": "storage_spl_l_container_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 778000, + "makerRace": "split", + "cargo": { + "max": 1000000, + "type": "container" + }, + "price": { + "min": 734191, + "max": 993317, + "avg": 863754 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "top_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 683, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 135 + }, + { + "ware": "energycells", + "amount": 270 + }, + { + "ware": "hullparts", + "amount": 494 + } + ] + } + ] + }, + { + "id": "module_spl_stor_container_m_01", + "version": 1, + "name": "Split M Container Storage", + "macro": "storage_spl_m_container_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 800, + "hull": 345000, + "makerRace": "split", + "cargo": { + "max": 100000, + "type": "container" + }, + "price": { + "min": 489314, + "max": 662014, + "avg": 575664 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 455, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 90 + }, + { + "ware": "energycells", + "amount": 180 + }, + { + "ware": "hullparts", + "amount": 329 + } + ] + } + ] + }, + { + "id": "module_spl_stor_container_s_01", + "version": 1, + "name": "Split S Container Storage", + "macro": "storage_spl_s_container_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 500, + "hull": 157000, + "makerRace": "split", + "cargo": { + "max": 25000, + "type": "container" + }, + "price": { + "min": 331199, + "max": 448093, + "avg": 389646 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 307, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 61 + }, + { + "ware": "energycells", + "amount": 121 + }, + { + "ware": "hullparts", + "amount": 222 + } + ] + } + ] + }, + { + "id": "module_spl_stor_liquid_l_01", + "version": 1, + "name": "Split L Liquid Storage", + "macro": "storage_spl_l_liquid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 778000, + "makerRace": "split", + "cargo": { + "max": 1000000, + "type": "liquid" + }, + "price": { + "min": 734191, + "max": 993317, + "avg": 863754 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "top_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 683, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 135 + }, + { + "ware": "energycells", + "amount": 270 + }, + { + "ware": "hullparts", + "amount": 494 + } + ] + } + ] + }, + { + "id": "module_spl_stor_liquid_m_01", + "version": 1, + "name": "Split M Liquid Storage", + "macro": "storage_spl_m_liquid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 800, + "hull": 345000, + "makerRace": "split", + "cargo": { + "max": 500000, + "type": "liquid" + }, + "price": { + "min": 489314, + "max": 662014, + "avg": 575664 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 455, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 90 + }, + { + "ware": "energycells", + "amount": 180 + }, + { + "ware": "hullparts", + "amount": 329 + } + ] + } + ] + }, + { + "id": "module_spl_stor_liquid_s_01", + "version": 1, + "name": "Split S Liquid Storage", + "macro": "storage_spl_s_liquid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 500, + "hull": 157000, + "makerRace": "split", + "cargo": { + "max": 100000, + "type": "liquid" + }, + "price": { + "min": 331199, + "max": 448093, + "avg": 389646 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 307, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 61 + }, + { + "ware": "energycells", + "amount": 121 + }, + { + "ware": "hullparts", + "amount": 222 + } + ] + } + ] + }, + { + "id": "module_spl_stor_solid_l_01", + "version": 1, + "name": "Split L Solid Storage", + "macro": "storage_spl_l_solid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 778000, + "makerRace": "split", + "cargo": { + "max": 1000000, + "type": "solid" + }, + "price": { + "min": 734191, + "max": 993317, + "avg": 863754 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "top_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 683, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 135 + }, + { + "ware": "energycells", + "amount": 270 + }, + { + "ware": "hullparts", + "amount": 494 + } + ] + } + ] + }, + { + "id": "module_spl_stor_solid_m_01", + "version": 1, + "name": "Split M Solid Storage", + "macro": "storage_spl_m_solid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 800, + "hull": 345000, + "makerRace": "split", + "cargo": { + "max": 500000, + "type": "solid" + }, + "price": { + "min": 489314, + "max": 662014, + "avg": 575664 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 455, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 90 + }, + { + "ware": "energycells", + "amount": 180 + }, + { + "ware": "hullparts", + "amount": 329 + } + ] + } + ] + }, + { + "id": "module_spl_stor_solid_s_01", + "version": 1, + "name": "Split S Solid Storage", + "macro": "storage_spl_s_solid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 500, + "hull": 157000, + "makerRace": "split", + "cargo": { + "max": 100000, + "type": "solid" + }, + "price": { + "min": 331199, + "max": 448093, + "avg": 389646 + }, + "owners": [ + "freesplit", + "split" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 307, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "claytronics", + "amount": 61 + }, + { + "ware": "energycells", + "amount": 121 + }, + { + "ware": "hullparts", + "amount": 222 + } + ] + } + ] + }, + { + "id": "module_ter_build_dockarea_m_01", + "version": 1, + "name": "Terran S/M Ship Fabrication Bay", + "macro": "buildmodule_ter_ships_m_dockarea_01_macro", + "description": "No information available", + "type": "buildmodule", + "explosionDamage": 2500, + "hull": 1020000, + "makerRace": "terran", + "workForce": { + "max": 800 + }, + "price": { + "min": 92680858, + "max": 125391749, + "avg": 109036303 + }, + "owners": [ + "pioneers", + "terran" + ], + "docks": [ + { + "capacity": 30, + "size": "medium" + }, + { + "capacity": 100, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "production": [ + { + "time": 1298, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 895 + }, + { + "ware": "energycells", + "amount": 6620 + }, + { + "ware": "siliconcarbide", + "amount": 1843 + } + ] + } + ] + }, + { + "id": "module_ter_build_l_01", + "version": 1, + "name": "Terran L Ship Fabrication Bay", + "macro": "buildmodule_ter_ships_l_macro", + "description": "No information available", + "type": "buildmodule", + "explosionDamage": 10000, + "hull": 324000, + "makerRace": "terran", + "workForce": { + "max": 500 + }, + "price": { + "min": 223501475, + "max": 302384349, + "avg": 262942912 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 731, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 505 + }, + { + "ware": "energycells", + "amount": 3731 + }, + { + "ware": "siliconcarbide", + "amount": 1039 + } + ] + } + ] + }, + { + "id": "module_ter_build_xl_01", + "version": 1, + "name": "Terran XL Ship Fabrication Bay", + "macro": "buildmodule_ter_ships_xl_macro", + "description": "No information available", + "type": "buildmodule", + "explosionDamage": 10000, + "hull": 551000, + "makerRace": "terran", + "workForce": { + "max": 700 + }, + "price": { + "min": 227108570, + "max": 307264536, + "avg": 267186553 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 954, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 658 + }, + { + "ware": "energycells", + "amount": 4866 + }, + { + "ware": "siliconcarbide", + "amount": 1354 + } + ] + } + ] + }, + { + "id": "module_ter_conn_base_01", + "version": 1, + "name": "Terran Base Connection Structure 01", + "macro": "struct_ter_base_01_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 75000, + "makerRace": "terran", + "price": { + "min": 61609, + "max": 83354, + "avg": 72482 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 37, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 19 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + } + ] + }, + { + "id": "module_ter_conn_base_02", + "version": 1, + "name": "Terran Base Connection Structure 02", + "macro": "struct_ter_base_02_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 150000, + "makerRace": "terran", + "price": { + "min": 85802, + "max": 116086, + "avg": 100944 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 53, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 27 + }, + { + "ware": "siliconcarbide", + "amount": 8 + } + ] + } + ] + }, + { + "id": "module_ter_conn_base_03", + "version": 1, + "name": "Terran Base Connection Structure 03", + "macro": "struct_ter_base_03_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 300000, + "makerRace": "terran", + "price": { + "min": 110087, + "max": 148942, + "avg": 129515 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 74, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 38 + }, + { + "ware": "siliconcarbide", + "amount": 11 + } + ] + } + ] + }, + { + "id": "module_ter_conn_cross_01", + "version": 1, + "name": "Terran Cross Connection Structure 01", + "macro": "struct_ter_cross_01_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 300000, + "makerRace": "terran", + "price": { + "min": 110087, + "max": 148942, + "avg": 129515 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 74, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 38 + }, + { + "ware": "siliconcarbide", + "amount": 11 + } + ] + } + ] + }, + { + "id": "module_ter_conn_vertical_01", + "version": 1, + "name": "Terran Vertical Connection Structure 01", + "macro": "struct_ter_vertical_01_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 75000, + "makerRace": "terran", + "price": { + "min": 61609, + "max": 83354, + "avg": 72482 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 37, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 3 + }, + { + "ware": "energycells", + "amount": 19 + }, + { + "ware": "siliconcarbide", + "amount": 5 + } + ] + } + ] + }, + { + "id": "module_ter_conn_vertical_02", + "version": 1, + "name": "Terran Vertical Connection Structure 02", + "macro": "struct_ter_vertical_02_macro", + "description": "No information available", + "type": "connectionmodule", + "hull": 150000, + "makerRace": "terran", + "price": { + "min": 85802, + "max": 116086, + "avg": 100944 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 53, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 27 + }, + { + "ware": "siliconcarbide", + "amount": 8 + } + ] + } + ] + }, + { + "id": "module_ter_def_claim_01", + "version": 1, + "name": "Terran Administrative Centre", + "macro": "defence_ter_claim_01_macro", + "description": "No information available", + "type": "defencemodule", + "explosionDamage": 2000, + "hull": 600000, + "makerRace": "terran", + "price": { + "min": 1731191, + "max": 2342200, + "avg": 2036696 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 1162, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 80 + }, + { + "ware": "energycells", + "amount": 593 + }, + { + "ware": "siliconcarbide", + "amount": 165 + } + ] + } + ] + }, + { + "id": "module_ter_def_disc_01", + "version": 1, + "name": "Terran Disc Defence Platform", + "macro": "defence_ter_disc_01_macro", + "description": "No information available", + "type": "defencemodule", + "explosionDamage": 1200, + "hull": 300000, + "makerRace": "terran", + "price": { + "min": 1231845, + "max": 1666614, + "avg": 1449230 + }, + "owners": [ + "pioneers", + "terran" + ], + "shields": [ + { + "group": "group01", + "size": "medium", + "hittable": true + }, + { + "group": "group02", + "size": "medium", + "hittable": true + }, + { + "group": "group04", + "size": "medium", + "hittable": true + }, + { + "group": "group03", + "size": "medium", + "hittable": true + }, + { + "group": "group05", + "size": "large", + "hittable": false + }, + { + "group": "group06", + "size": "large", + "hittable": false + }, + { + "group": "group07", + "size": "large", + "hittable": false + }, + { + "group": "group08", + "size": "large", + "hittable": false + }, + { + "group": "group09", + "size": "medium", + "hittable": true + }, + { + "group": "group10", + "size": "medium", + "hittable": true + }, + { + "group": "group11", + "size": "medium", + "hittable": true + }, + { + "group": "group12", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group07", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group07", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group08", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group08", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group09", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group09", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group10", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group10", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group11", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group11", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group12", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group12", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 822, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 57 + }, + { + "ware": "energycells", + "amount": 419 + }, + { + "ware": "siliconcarbide", + "amount": 117 + } + ] + } + ] + }, + { + "id": "module_ter_def_tube_01", + "version": 1, + "name": "Terran Bridge Defence Platform", + "macro": "defence_ter_tube_01_macro", + "description": "No information available", + "type": "defencemodule", + "explosionDamage": 1200, + "hull": 150000, + "makerRace": "terran", + "price": { + "min": 866932, + "max": 1172909, + "avg": 1019921 + }, + "owners": [ + "pioneers", + "terran" + ], + "shields": [ + { + "group": "group01", + "size": "medium", + "hittable": true + }, + { + "group": "group02", + "size": "medium", + "hittable": true + }, + { + "group": "group04", + "size": "medium", + "hittable": true + }, + { + "group": "group03", + "size": "medium", + "hittable": true + }, + { + "group": "group05", + "size": "large", + "hittable": false + }, + { + "group": "group06", + "size": "large", + "hittable": false + }, + { + "group": "group07", + "size": "large", + "hittable": false + }, + { + "group": "group08", + "size": "large", + "hittable": false + }, + { + "group": "group09", + "size": "medium", + "hittable": true + }, + { + "group": "group10", + "size": "medium", + "hittable": true + }, + { + "group": "group11", + "size": "medium", + "hittable": true + }, + { + "group": "group12", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group07", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group07", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group08", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group08", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group09", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group09", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group10", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group10", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group11", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group11", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group12", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group12", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 581, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 40 + }, + { + "ware": "energycells", + "amount": 296 + }, + { + "ware": "siliconcarbide", + "amount": 83 + } + ] + } + ] + }, + { + "id": "module_ter_dock_m_01_hightech", + "version": 1, + "name": "Terran 4M10S Luxury Dock Area", + "macro": "dockarea_ter_m_station_01_hightech_macro", + "description": "No information available", + "type": "dockarea", + "explosionDamage": 2000, + "hull": 455000, + "makerRace": "terran", + "price": { + "min": 238867, + "max": 323174, + "avg": 281021 + }, + "owners": [ + "pioneers", + "terran" + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "production": [ + { + "time": 318, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 11 + }, + { + "ware": "energycells", + "amount": 81 + }, + { + "ware": "siliconcarbide", + "amount": 23 + } + ] + } + ] + }, + { + "id": "module_ter_equip_dockarea_m_01", + "version": 1, + "name": "Terran S/M Ship Maintenance Bay", + "macro": "buildmodule_ter_equip_m_dockarea_01_macro", + "description": "No information available", + "type": "buildmodule", + "explosionDamage": 2500, + "hull": 1020000, + "makerRace": "terran", + "workForce": { + "max": 400 + }, + "price": { + "min": 32174490, + "max": 43530192, + "avg": 37852341 + }, + "owners": [ + "pioneers", + "terran" + ], + "docks": [ + { + "capacity": 30, + "size": "medium" + }, + { + "capacity": 100, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "production": [ + { + "time": 650, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 447 + }, + { + "ware": "energycells", + "amount": 3312 + }, + { + "ware": "siliconcarbide", + "amount": 921 + } + ] + } + ] + }, + { + "id": "module_ter_equip_l_01", + "version": 1, + "name": "Terran L Ship Maintenance Bay", + "macro": "buildmodule_ter_equip_l_macro", + "description": "No information available", + "type": "buildmodule", + "explosionDamage": 5000, + "hull": 324000, + "makerRace": "terran", + "workForce": { + "max": 500 + }, + "price": { + "min": 57725113, + "max": 78098683, + "avg": 67911898 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 364, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 252 + }, + { + "ware": "energycells", + "amount": 1866 + }, + { + "ware": "siliconcarbide", + "amount": 519 + } + ] + } + ] + }, + { + "id": "module_ter_equip_xl_01", + "version": 1, + "name": "Terran XL Ship Maintenance Bay", + "macro": "buildmodule_ter_equip_xl_macro", + "description": "No information available", + "type": "buildmodule", + "explosionDamage": 5000, + "hull": 551000, + "makerRace": "terran", + "workForce": { + "max": 700 + }, + "price": { + "min": 59755291, + "max": 80845393, + "avg": 70300342 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 477, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 329 + }, + { + "ware": "energycells", + "amount": 2434 + }, + { + "ware": "siliconcarbide", + "amount": 677 + } + ] + } + ] + }, + { + "id": "module_ter_hab_l_01", + "version": 1, + "name": "Terran L Living Quarters", + "macro": "hab_ter_l_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 1200000, + "makerRace": "terran", + "workForce": { + "capacity": 500, + "race": "terran" + }, + "price": { + "min": 12310693, + "max": 16655643, + "avg": 14483168 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 1162, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 80 + }, + { + "ware": "energycells", + "amount": 593 + }, + { + "ware": "siliconcarbide", + "amount": 165 + } + ] + } + ] + }, + { + "id": "module_ter_hab_m_01", + "version": 1, + "name": "Terran M Living Quarters", + "macro": "hab_ter_m_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 600000, + "makerRace": "terran", + "workForce": { + "capacity": 250, + "race": "terran" + }, + "price": { + "min": 8759787, + "max": 11851477, + "avg": 10305632 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 822, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 57 + }, + { + "ware": "energycells", + "amount": 419 + }, + { + "ware": "siliconcarbide", + "amount": 117 + } + ] + } + ] + }, + { + "id": "module_ter_hab_s_01", + "version": 1, + "name": "Terran S Living Quarters", + "macro": "hab_ter_s_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 300000, + "makerRace": "terran", + "workForce": { + "capacity": 100, + "race": "terran" + }, + "price": { + "min": 6164853, + "max": 8340683, + "avg": 7252768 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 581, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 40 + }, + { + "ware": "energycells", + "amount": 296 + }, + { + "ware": "siliconcarbide", + "amount": 83 + } + ] + } + ] + }, + { + "id": "module_ter_pier_01", + "version": 1, + "name": "Terran 3-Dock T Pier", + "macro": "pier_ter_harbor_01_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 750000, + "makerRace": "terran", + "price": { + "min": 3159110, + "max": 4274089, + "avg": 3716600 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 750, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 146 + }, + { + "ware": "energycells", + "amount": 1083 + }, + { + "ware": "siliconcarbide", + "amount": 301 + } + ] + } + ] + }, + { + "id": "module_ter_pier_02", + "version": 1, + "name": "Terran 1-Dock Pier", + "macro": "pier_ter_harbor_02_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 250000, + "makerRace": "terran", + "price": { + "min": 1835686, + "max": 2483576, + "avg": 2159631 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 433, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 85 + }, + { + "ware": "energycells", + "amount": 625 + }, + { + "ware": "siliconcarbide", + "amount": 174 + } + ] + } + ] + }, + { + "id": "module_ter_pier_03", + "version": 1, + "name": "Terran 3-Dock E Pier", + "macro": "pier_ter_harbor_03_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 1000000, + "makerRace": "terran", + "price": { + "min": 3655537, + "max": 4945727, + "avg": 4300632 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 866, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 169 + }, + { + "ware": "energycells", + "amount": 1250 + }, + { + "ware": "siliconcarbide", + "amount": 348 + } + ] + } + ] + }, + { + "id": "module_ter_pier_04", + "version": 1, + "name": "Terran 4-Dock T Pier", + "macro": "pier_ter_harbor_04_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 500, + "hull": 250000, + "makerRace": "terran", + "price": { + "min": 1835686, + "max": 2483576, + "avg": 2159631 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 433, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 85 + }, + { + "ware": "energycells", + "amount": 625 + }, + { + "ware": "siliconcarbide", + "amount": 174 + } + ] + } + ] + }, + { + "id": "module_ter_pier_tradestation_01", + "version": 1, + "name": "Terran Trading Station Hexa-Dock Pier", + "macro": "pier_ter_tradestation_01_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1500, + "hull": 2000000, + "makerRace": "terran", + "price": { + "min": 2297462, + "max": 3108330, + "avg": 2702896 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 1225, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 239 + }, + { + "ware": "energycells", + "amount": 1768 + }, + { + "ware": "siliconcarbide", + "amount": 492 + } + ] + } + ] + }, + { + "id": "module_ter_prod_computronicsubstrate_01", + "version": 1, + "name": "Computronic Substrate Production", + "macro": "prod_ter_computronicsubstrate_macro", + "description": "No information available", + "type": "production", + "product": [ + "computronicsubstrate" + ], + "explosionDamage": 2000, + "hull": 400000, + "makerRace": "terran", + "workForce": { + "max": 1500 + }, + "price": { + "min": 4220074, + "max": 5709512, + "avg": 4964793 + }, + "owners": [ + "pioneers", + "terran" + ], + "shields": [ + { + "group": "down_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "down_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 800, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 238 + }, + { + "ware": "energycells", + "amount": 688 + }, + { + "ware": "siliconcarbide", + "amount": 155 + } + ] + } + ] + }, + { + "id": "module_ter_prod_energycells_01", + "version": 1, + "name": "Terran Energy Cell Production", + "macro": "prod_ter_energycells_macro", + "description": "No information available", + "type": "production", + "product": [ + "energycells" + ], + "explosionDamage": 2000, + "hull": 200000, + "makerRace": "terran", + "workForce": { + "max": 45 + }, + "price": { + "min": 409886, + "max": 542074, + "avg": 471369 + }, + "owners": [ + "pioneers", + "terran" + ], + "production": [ + { + "time": 175, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 24 + }, + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "siliconcarbide", + "amount": 20 + } + ] + } + ] + }, + { + "id": "module_ter_prod_medicalsupplies_01", + "version": 1, + "name": "Terran Medical Supply Production", + "macro": "prod_ter_medicalsupplies_macro", + "description": "No information available", + "type": "production", + "product": [ + "medicalsupplies" + ], + "explosionDamage": 2000, + "hull": 240000, + "makerRace": "terran", + "workForce": { + "max": 90 + }, + "price": { + "min": 301266, + "max": 407596, + "avg": 354431 + }, + "owners": [ + "pioneers", + "terran" + ], + "shields": [ + { + "group": "right_02", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 336, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 17 + }, + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "siliconcarbide", + "amount": 11 + } + ] + } + ] + }, + { + "id": "module_ter_prod_metallicmicrolattice_01", + "version": 1, + "name": "Metallic Microlattice Production", + "macro": "prod_ter_metallicmicrolattice_macro", + "description": "No information available", + "type": "production", + "product": [ + "metallicmicrolattice" + ], + "explosionDamage": 2000, + "hull": 280000, + "makerRace": "terran", + "workForce": { + "max": 120 + }, + "price": { + "min": 106659, + "max": 144303, + "avg": 125481 + }, + "owners": [ + "pioneers", + "terran" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_02", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 152, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 18 + }, + { + "ware": "siliconcarbide", + "amount": 4 + } + ] + } + ] + }, + { + "id": "module_ter_prod_proteinpaste_01", + "version": 1, + "name": "Protein Paste Production", + "macro": "prod_ter_proteinpaste_macro", + "description": "No information available", + "type": "production", + "product": [ + "proteinpaste" + ], + "explosionDamage": 2000, + "hull": 260000, + "makerRace": "terran", + "workForce": { + "max": 180 + }, + "price": { + "min": 1292921, + "max": 1749247, + "avg": 1521084 + }, + "owners": [ + "pioneers", + "terran" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_02", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 592, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 73 + }, + { + "ware": "energycells", + "amount": 211 + }, + { + "ware": "siliconcarbide", + "amount": 47 + } + ] + } + ] + }, + { + "id": "module_ter_prod_scrap_recycler", + "version": 1, + "name": "Terran Scrap Recycler", + "macro": "prod_ter_scrap_recycler_macro", + "description": "The Jump Gate shutdown left Avarice with very limited access to resources, so stranded Argon engineers started development of various recycling facilities. The Scrap Recycler was designed to process Scrap Metal into usable resources, converting it into Hull Parts and Claytronics in alternating production cycles.nnFollowing the arrival of messenger drones from Sacred Relic, the people of Avarice sent out drones of their own to other disconnected systems. These drones contained blueprints for their recycling technology, in the hopes that it would be of help to others who were unfortunate enough to be stranded with no natural resources to hand. In the process, they created a local branch of the Alliance of the Word, operating out of Tidebreak. With the first Jump Gate reconnection in 825 (NT), the Alliance of the Word moved to its own station in Windfall.nnUpon receiving blueprints for the Scrap Recycler, the Segaris Pioneers modified them to be compatible with their Terran economy. Instead of converting Scrap Metal to Hull Parts and Claytronics, their variant produced Silicon Carbide and Computronic Substrate in the same alternating fashion.", + "type": "production", + "product": [ + "computronicsubstrate", + "siliconcarbide" + ], + "explosionDamage": 2000, + "hull": 200000, + "makerRace": "terran", + "workForce": { + "max": 1250 + }, + "price": { + "min": 1719675, + "max": 2112168, + "avg": 1915898 + }, + "owners": [ + "pioneers" + ], + "shields": [ + { + "group": "top_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 777, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 99 + }, + { + "ware": "energycells", + "amount": 131 + }, + { + "ware": "siliconcarbide", + "amount": 21 + } + ] + } + ] + }, + { + "id": "module_ter_prod_siliconcarbide_01", + "version": 1, + "name": "Silicon Carbide Production", + "macro": "prod_ter_siliconcarbide_macro", + "description": "No information available", + "type": "production", + "product": [ + "siliconcarbide" + ], + "explosionDamage": 2000, + "hull": 350000, + "makerRace": "terran", + "workForce": { + "max": 750 + }, + "price": { + "min": 709162, + "max": 959454, + "avg": 834308 + }, + "owners": [ + "pioneers", + "terran" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_02", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 486, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 40 + }, + { + "ware": "energycells", + "amount": 117 + }, + { + "ware": "siliconcarbide", + "amount": 26 + } + ] + } + ] + }, + { + "id": "module_ter_prod_stimulants_01", + "version": 1, + "name": "Stimulant Production", + "macro": "prod_ter_stimulants_macro", + "description": "No information available", + "type": "production", + "product": [ + "stimulants" + ], + "explosionDamage": 2000, + "hull": 300000, + "makerRace": "terran", + "workForce": { + "max": 300 + }, + "price": { + "min": 2484701, + "max": 3361653, + "avg": 2923177 + }, + "owners": [ + "pioneers", + "terran" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_02", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 707, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 140 + }, + { + "ware": "energycells", + "amount": 407 + }, + { + "ware": "siliconcarbide", + "amount": 92 + } + ] + } + ] + }, + { + "id": "module_ter_prod_terranmre_01", + "version": 1, + "name": "Terran MRE Production", + "macro": "prod_ter_mre_macro", + "description": "No information available", + "type": "production", + "product": [ + "terranmre" + ], + "explosionDamage": 2000, + "hull": 270000, + "makerRace": "terran", + "workForce": { + "max": 135 + }, + "price": { + "min": 533265, + "max": 721477, + "avg": 627371 + }, + "owners": [ + "pioneers", + "terran" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_02", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 436, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 30 + }, + { + "ware": "energycells", + "amount": 89 + }, + { + "ware": "siliconcarbide", + "amount": 20 + } + ] + } + ] + }, + { + "id": "module_ter_stor_container_l_01", + "version": 1, + "name": "Terran L Container Storage", + "macro": "storage_ter_l_container_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 1000000, + "makerRace": "terran", + "cargo": { + "max": 1000000, + "type": "container" + }, + "price": { + "min": 778303, + "max": 1052999, + "avg": 915651 + }, + "owners": [ + "pioneers", + "terran" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_02", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_02", + "size": "medium", + "hittable": true + }, + { + "group": "left_02", + "size": "medium", + "hittable": true + }, + { + "group": "front_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 671, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 36 + }, + { + "ware": "energycells", + "amount": 265 + }, + { + "ware": "siliconcarbide", + "amount": 74 + } + ] + } + ] + }, + { + "id": "module_ter_stor_container_m_01", + "version": 1, + "name": "Terran M Container Storage", + "macro": "storage_ter_m_container_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 800, + "hull": 450000, + "makerRace": "terran", + "cargo": { + "max": 500000, + "type": "container" + }, + "price": { + "min": 520713, + "max": 704493, + "avg": 612603 + }, + "owners": [ + "pioneers", + "terran" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_02", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 450, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 24 + }, + { + "ware": "energycells", + "amount": 178 + }, + { + "ware": "siliconcarbide", + "amount": 50 + } + ] + } + ] + }, + { + "id": "module_ter_stor_container_s_01", + "version": 1, + "name": "Terran S Container Storage", + "macro": "storage_ter_s_container_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 500, + "hull": 150000, + "makerRace": "terran", + "cargo": { + "max": 100000, + "type": "container" + }, + "price": { + "min": 303273, + "max": 410310, + "avg": 356792 + }, + "owners": [ + "pioneers", + "terran" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_02", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 260, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 14 + }, + { + "ware": "energycells", + "amount": 103 + }, + { + "ware": "siliconcarbide", + "amount": 29 + } + ] + } + ] + }, + { + "id": "module_ter_stor_liquid_l_01", + "version": 1, + "name": "Terran L Liquid Storage", + "macro": "storage_ter_l_liquid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 1000000, + "makerRace": "terran", + "cargo": { + "max": 1000000, + "type": "liquid" + }, + "price": { + "min": 778303, + "max": 1052999, + "avg": 915651 + }, + "owners": [ + "pioneers", + "terran" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_02", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 671, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 36 + }, + { + "ware": "energycells", + "amount": 265 + }, + { + "ware": "siliconcarbide", + "amount": 74 + } + ] + } + ] + }, + { + "id": "module_ter_stor_liquid_m_01", + "version": 1, + "name": "Terran M Liquid Storage", + "macro": "storage_ter_m_liquid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 800, + "hull": 450000, + "makerRace": "terran", + "cargo": { + "max": 500000, + "type": "liquid" + }, + "price": { + "min": 520713, + "max": 704493, + "avg": 612603 + }, + "owners": [ + "pioneers", + "terran" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_02", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 450, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 24 + }, + { + "ware": "energycells", + "amount": 178 + }, + { + "ware": "siliconcarbide", + "amount": 50 + } + ] + } + ] + }, + { + "id": "module_ter_stor_liquid_s_01", + "version": 1, + "name": "Terran S Liquid Storage", + "macro": "storage_ter_s_liquid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 500, + "hull": 150000, + "makerRace": "terran", + "cargo": { + "max": 100000, + "type": "liquid" + }, + "price": { + "min": 303273, + "max": 410310, + "avg": 356792 + }, + "owners": [ + "pioneers", + "terran" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_02", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 260, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 14 + }, + { + "ware": "energycells", + "amount": 103 + }, + { + "ware": "siliconcarbide", + "amount": 29 + } + ] + } + ] + }, + { + "id": "module_ter_stor_solid_l_01", + "version": 1, + "name": "Terran L Solid Storage", + "macro": "storage_ter_l_solid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 1000000, + "makerRace": "terran", + "cargo": { + "max": 1000000, + "type": "solid" + }, + "price": { + "min": 778303, + "max": 1052999, + "avg": 915651 + }, + "owners": [ + "pioneers", + "terran" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_02", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "front_01", + "size": "medium", + "hittable": true + }, + { + "group": "back_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_02", + "size": "medium", + "hittable": true + }, + { + "group": "left_02", + "size": "medium", + "hittable": true + }, + { + "group": "front_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "back_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "front_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 671, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 36 + }, + { + "ware": "energycells", + "amount": 265 + }, + { + "ware": "siliconcarbide", + "amount": 74 + } + ] + } + ] + }, + { + "id": "module_ter_stor_solid_m_01", + "version": 1, + "name": "Terran M Solid Storage", + "macro": "storage_ter_m_solid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 800, + "hull": 450000, + "makerRace": "terran", + "cargo": { + "max": 500000, + "type": "solid" + }, + "price": { + "min": 520713, + "max": 704493, + "avg": 612603 + }, + "owners": [ + "pioneers", + "terran" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_02", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 450, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 24 + }, + { + "ware": "energycells", + "amount": 178 + }, + { + "ware": "siliconcarbide", + "amount": 50 + } + ] + } + ] + }, + { + "id": "module_ter_stor_solid_s_01", + "version": 1, + "name": "Terran S Solid Storage", + "macro": "storage_ter_s_solid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 500, + "hull": 150000, + "makerRace": "terran", + "cargo": { + "max": 100000, + "type": "solid" + }, + "price": { + "min": 303273, + "max": 410310, + "avg": 356792 + }, + "owners": [ + "pioneers", + "terran" + ], + "shields": [ + { + "group": "left_01", + "size": "medium", + "hittable": true + }, + { + "group": "left_02", + "size": "medium", + "hittable": true + }, + { + "group": "right_01", + "size": "medium", + "hittable": true + }, + { + "group": "right_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "left_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "right_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 260, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 14 + }, + { + "ware": "energycells", + "amount": 103 + }, + { + "ware": "siliconcarbide", + "amount": 29 + } + ] + } + ] + }, + { + "id": "module_pir_hab_l_01", + "version": 1, + "name": "Argon L Dormitory", + "macro": "hab_pir_l_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 500000, + "makerRace": "argon", + "workForce": { + "capacity": 1000, + "race": "argon" + }, + "price": { + "min": 17721792, + "max": 26352612, + "avg": 22037202 + }, + "owners": [ + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 1155, + "amount": 1, + "method": "default", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 420 + }, + { + "ware": "energycells", + "amount": 383 + }, + { + "ware": "hullparts", + "amount": 1729 + } + ] + } + ] + }, + { + "id": "module_pir_hab_m_01", + "version": 1, + "name": "Argon M Dormitory", + "macro": "hab_pir_m_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 250000, + "makerRace": "argon", + "workForce": { + "capacity": 500, + "race": "argon" + }, + "price": { + "min": 12530160, + "max": 18631944, + "avg": 15581052 + }, + "owners": [ + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 816, + "amount": 1, + "method": "default", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 297 + }, + { + "ware": "energycells", + "amount": 271 + }, + { + "ware": "hullparts", + "amount": 1222 + } + ] + } + ] + }, + { + "id": "module_pir_hab_s_01", + "version": 1, + "name": "Argon S Dormitory", + "macro": "hab_pir_s_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 120000, + "makerRace": "argon", + "workForce": { + "capacity": 250, + "race": "argon" + }, + "price": { + "min": 8689428, + "max": 12920328, + "avg": 10804878 + }, + "owners": [ + "loanshark", + "scavenger" + ], + "production": [ + { + "time": 566, + "amount": 1, + "method": "default", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 206 + }, + { + "ware": "energycells", + "amount": 188 + }, + { + "ware": "hullparts", + "amount": 847 + } + ] + } + ] + }, + { + "id": "module_pir_stor_condensate_l_01", + "version": 1, + "name": "Protectyon Shield Generator", + "macro": "storage_pir_l_condensate_01_macro", + "description": "The Protectyon Shield Generator was designed by the Northriver Company's Research and Development team. It is constructed in such a way that, when supplied with Protectyon condensate, it generates shielding that protects the entire station from the devastating effects of the Tide. As part of this process the Protectyon is depleted. Due to the high potency of Protectyon, and the incredible volatility inherent in such a substance, the module's design only allows for a small storage capacity.", + "type": "storage", + "explosionDamage": 1000, + "hull": 1000000, + "cargo": { + "max": 50, + "type": "condensate" + }, + "price": { + "min": 1433988, + "max": 2146384, + "avg": 1790186 + }, + "owners": [ + "scavenger" + ], + "shields": [ + { + "group": "column_02_l", + "size": "medium", + "hittable": true + }, + { + "group": "column_02_r", + "size": "medium", + "hittable": true + }, + { + "group": "column_03_r", + "size": "medium", + "hittable": true + }, + { + "group": "column_03_l", + "size": "medium", + "hittable": true + }, + { + "group": "column_01_l", + "size": "medium", + "hittable": true + }, + { + "group": "column_01_r", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "column_02_l", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "column_02_l", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "column_02_r", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "column_02_r", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "column_03_r", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "column_03_r", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "column_03_l", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "column_03_l", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "column_01_l", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "column_01_l", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "column_01_r", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "column_01_r", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "production": [ + { + "time": 1033, + "amount": 1, + "method": "default", + "name": "Closed Loop", + "wares": [ + { + "ware": "claytronics", + "amount": 291 + }, + { + "ware": "energycells", + "amount": 265 + }, + { + "ware": "hullparts", + "amount": 1198 + } + ] + } + ] + }, + { + "id": "module_bor_build_dockarea_m_01", + "version": 1, + "name": "Boron S/M Ship Fabrication Bay", + "macro": "buildmodule_bor_ships_m_dockarea_01_macro", + "description": "No information available", + "type": "buildmodule", + "explosionDamage": 2500, + "hull": 245000, + "makerRace": "boron", + "workForce": { + "max": 800 + }, + "price": { + "min": 94609703, + "max": 128001363, + "avg": 111305533 + }, + "owners": [ + "boron" + ], + "docks": [ + { + "capacity": 30, + "size": "medium" + }, + { + "capacity": 100, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "production": [ + { + "time": 688, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 818 + }, + { + "ware": "energycells", + "amount": 8696 + }, + { + "ware": "hullparts", + "amount": 2663 + }, + { + "ware": "water", + "amount": 7875 + } + ] + } + ] + }, + { + "id": "module_bor_build_l_01", + "version": 1, + "name": "Boron L Ship Fabrication Bay", + "macro": "buildmodule_bor_ships_l_macro", + "description": "No information available", + "type": "buildmodule", + "hull": 450000, + "makerRace": "boron", + "workForce": { + "max": 700 + }, + "price": { + "min": 198161899, + "max": 268101393, + "avg": 233131646 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 722, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 1714 + }, + { + "ware": "energycells", + "amount": 18213 + }, + { + "ware": "hullparts", + "amount": 5577 + }, + { + "ware": "water", + "amount": 16495 + } + ] + } + ] + }, + { + "id": "module_bor_build_xl_01", + "version": 1, + "name": "Boron XL Ship Fabrication Bay", + "macro": "buildmodule_bor_ships_xl_macro", + "description": "No information available", + "type": "buildmodule", + "explosionDamage": 0, + "hull": 780000, + "makerRace": "boron", + "workForce": { + "max": 500 + }, + "price": { + "min": 201558642, + "max": 272696986, + "avg": 237127814 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 1252, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 1744 + }, + { + "ware": "energycells", + "amount": 18526 + }, + { + "ware": "hullparts", + "amount": 5673 + }, + { + "ware": "water", + "amount": 16778 + } + ] + } + ] + }, + { + "id": "module_bor_conn_base_01", + "version": 1, + "name": "Boron Base Connection Structure 01", + "macro": "struct_bor_base_01_macro", + "description": "No information available", + "type": "connectionmodule", + "explosionDamage": 1000, + "hull": 74000, + "makerRace": "boron", + "price": { + "min": 83144, + "max": 112490, + "avg": 97817 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 38, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 9 + }, + { + "ware": "energycells", + "amount": 275 + }, + { + "ware": "hullparts", + "amount": 63 + }, + { + "ware": "water", + "amount": 166 + } + ] + } + ] + }, + { + "id": "module_bor_conn_base_02", + "version": 1, + "name": "Boron Base Connection Structure 02", + "macro": "struct_bor_base_02_macro", + "description": "No information available", + "type": "connectionmodule", + "explosionDamage": 1000, + "hull": 140000, + "makerRace": "boron", + "price": { + "min": 10600, + "max": 137458, + "avg": 119529 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 72, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 11 + }, + { + "ware": "energycells", + "amount": 336 + }, + { + "ware": "hullparts", + "amount": 77 + }, + { + "ware": "water", + "amount": 203 + } + ] + } + ] + }, + { + "id": "module_bor_conn_base_03", + "version": 1, + "name": "Boron Base Connection Structure 03", + "macro": "struct_bor_base_03_macro", + "description": "No information available", + "type": "connectionmodule", + "explosionDamage": 1000, + "hull": 213000, + "makerRace": "boron", + "price": { + "min": 108726, + "max": 147100, + "avg": 127913 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 109, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 11 + }, + { + "ware": "energycells", + "amount": 360 + }, + { + "ware": "hullparts", + "amount": 83 + }, + { + "ware": "water", + "amount": 217 + } + ] + } + ] + }, + { + "id": "module_bor_conn_base_04", + "version": 1, + "name": "Boron Base Connection Structure 04", + "macro": "struct_bor_base_04_macro", + "description": "No information available", + "type": "connectionmodule", + "explosionDamage": 1000, + "hull": 225000, + "makerRace": "boron", + "price": { + "min": 114908, + "max": 155464, + "avg": 135186 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 115, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 12 + }, + { + "ware": "energycells", + "amount": 380 + }, + { + "ware": "hullparts", + "amount": 87 + }, + { + "ware": "water", + "amount": 230 + } + ] + } + ] + }, + { + "id": "module_bor_conn_base_05", + "version": 1, + "name": "Boron Base Connection Structure 05", + "macro": "struct_bor_base_05_macro", + "description": "No information available", + "type": "connectionmodule", + "explosionDamage": 1000, + "hull": 260000, + "makerRace": "boron", + "price": { + "min": 126095, + "max": 170599, + "avg": 148347 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 133, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 13 + }, + { + "ware": "energycells", + "amount": 417 + }, + { + "ware": "hullparts", + "amount": 96 + }, + { + "ware": "water", + "amount": 252 + } + ] + } + ] + }, + { + "id": "module_bor_conn_cross_01", + "version": 1, + "name": "Boron Cross Connection Structure 01", + "macro": "struct_bor_cross_01_macro", + "description": "No information available", + "type": "connectionmodule", + "explosionDamage": 1000, + "hull": 110000, + "makerRace": "boron", + "price": { + "min": 71831, + "max": 97183, + "avg": 84507 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 56, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 7 + }, + { + "ware": "energycells", + "amount": 238 + }, + { + "ware": "hullparts", + "amount": 55 + }, + { + "ware": "water", + "amount": 144 + } + ] + } + ] + }, + { + "id": "module_bor_conn_cross_02", + "version": 1, + "name": "Boron Cross Connection Structure 02", + "macro": "struct_bor_cross_02_macro", + "description": "No information available", + "type": "connectionmodule", + "explosionDamage": 1000, + "hull": 165000, + "makerRace": "boron", + "price": { + "min": 89522, + "max": 121118, + "avg": 105320 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 85, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 9 + }, + { + "ware": "energycells", + "amount": 296 + }, + { + "ware": "hullparts", + "amount": 68 + }, + { + "ware": "water", + "amount": 179 + } + ] + } + ] + }, + { + "id": "module_bor_conn_vertical_01", + "version": 1, + "name": "Boron Vertical Connection Structure 01", + "macro": "struct_bor_vertical_01_macro", + "description": "No information available", + "type": "connectionmodule", + "explosionDamage": 1000, + "hull": 68000, + "makerRace": "boron", + "price": { + "min": 59537, + "max": 80551, + "avg": 70044 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 35, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 6 + }, + { + "ware": "energycells", + "amount": 197 + }, + { + "ware": "hullparts", + "amount": 45 + }, + { + "ware": "water", + "amount": 119 + } + ] + } + ] + }, + { + "id": "module_bor_conn_vertical_02", + "version": 1, + "name": "Boron Vertical Connection Structure 02", + "macro": "struct_bor_vertical_02_macro", + "description": "No information available", + "type": "connectionmodule", + "explosionDamage": 1000, + "hull": 132000, + "makerRace": "boron", + "price": { + "min": 77977, + "max": 105499, + "avg": 91738 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 68, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 258 + }, + { + "ware": "hullparts", + "amount": 59 + }, + { + "ware": "water", + "amount": 156 + } + ] + } + ] + }, + { + "id": "module_bor_def_claim_01", + "version": 1, + "name": "Boron Administrative Centre", + "macro": "defence_bor_claim_01_macro", + "description": "No information available", + "type": "defencemodule", + "explosionDamage": 2000, + "hull": 435000, + "makerRace": "boron", + "price": { + "min": 819421, + "max": 1108629, + "avg": 964025 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 414, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 85 + }, + { + "ware": "energycells", + "amount": 2711 + }, + { + "ware": "hullparts", + "amount": 623 + }, + { + "ware": "water", + "amount": 1637 + } + ] + } + ] + }, + { + "id": "module_bor_def_disc_01", + "version": 1, + "name": "Boron Disc Defence Platform", + "macro": "defence_bor_disc_01_macro", + "description": "No information available", + "type": "defencemodule", + "explosionDamage": 1200, + "hull": 387000, + "makerRace": "boron", + "price": { + "min": 586455, + "max": 793439, + "avg": 689947 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_large_top_01", + "size": "large", + "hittable": false + }, + { + "group": "group_large_top_03", + "size": "large", + "hittable": false + }, + { + "group": "group_large_bottom_03", + "size": "large", + "hittable": false + }, + { + "group": "group_large_bottom_02", + "size": "large", + "hittable": false + }, + { + "group": "group_large_bottom_01", + "size": "large", + "hittable": false + }, + { + "group": "group_large_top_02", + "size": "large", + "hittable": false + }, + { + "group": "group_medium_top_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_top_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_top_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_top_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_top_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_top_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_large_top_02", + "size": "large", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "group": "group_large_top_03", + "size": "large", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "group": "group_large_bottom_03", + "size": "large", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "group": "group_large_bottom_02", + "size": "large", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "group": "group_large_bottom_01", + "size": "large", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "group": "group_large_top_01", + "size": "large", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "production": [ + { + "time": 133, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 61 + }, + { + "ware": "energycells", + "amount": 1940 + }, + { + "ware": "hullparts", + "amount": 446 + }, + { + "ware": "water", + "amount": 1172 + } + ] + } + ] + }, + { + "id": "module_bor_def_tube_01", + "version": 1, + "name": "Boron Bridge Defence Platform", + "macro": "defence_bor_tube_01_macro", + "description": "No information available", + "type": "defencemodule", + "explosionDamage": 1200, + "hull": 295000, + "makerRace": "boron", + "price": { + "min": 508960, + "max": 688594, + "avg": 598777 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_large_top_03", + "size": "large", + "hittable": false + }, + { + "group": "group_large_bottom_03", + "size": "large", + "hittable": false + }, + { + "group": "group_large_bottom_02", + "size": "large", + "hittable": false + }, + { + "group": "group_large_top_02", + "size": "large", + "hittable": false + }, + { + "group": "group_medium_top_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_top_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_top_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_top_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_top_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_top_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_top_04", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_top_05", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_04", + "size": "medium", + "hittable": true + }, + { + "group": "group_medium_bottom_05", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_large_top_02", + "size": "large", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "group": "group_large_top_03", + "size": "large", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "group": "group_large_bottom_03", + "size": "large", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "group": "group_large_bottom_02", + "size": "large", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_04", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_05", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_04", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_05", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_04", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_05", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_04", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_05", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_bottom_03", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_medium_top_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "production": [ + { + "time": 118, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 53 + }, + { + "ware": "energycells", + "amount": 1684 + }, + { + "ware": "hullparts", + "amount": 387 + }, + { + "ware": "water", + "amount": 1017 + } + ] + } + ] + }, + { + "id": "module_bor_dock_m_01_standard", + "version": 1, + "name": "Boron 4M14S Luxury Dock Area", + "macro": "dockarea_bor_m_station_01_standard_macro", + "description": "No information available", + "type": "dockarea", + "explosionDamage": 1000, + "hull": 580000, + "makerRace": "boron", + "price": { + "min": 497906, + "max": 673638, + "avg": 585772 + }, + "owners": [ + "boron" + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "production": [ + { + "time": 773, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 52 + }, + { + "ware": "energycells", + "amount": 1647 + }, + { + "ware": "hullparts", + "amount": 378 + }, + { + "ware": "water", + "amount": 995 + } + ] + } + ] + }, + { + "id": "module_bor_equip_dockarea_m_01", + "version": 1, + "name": "Boron S/M Ship Maintenance Bay", + "macro": "buildmodule_bor_equip_m_dockarea_01_macro", + "description": "No information available", + "type": "buildmodule", + "explosionDamage": 2500, + "hull": 225000, + "makerRace": "boron", + "workForce": { + "max": 400 + }, + "price": { + "min": 28659268, + "max": 38774304, + "avg": 33716786 + }, + "owners": [ + "boron" + ], + "docks": [ + { + "capacity": 30, + "size": "medium" + }, + { + "capacity": 100, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "production": [ + { + "time": 596, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 595 + }, + { + "ware": "energycells", + "amount": 6322 + }, + { + "ware": "hullparts", + "amount": 1936 + }, + { + "ware": "water", + "amount": 5725 + } + ] + } + ] + }, + { + "id": "module_bor_equip_l_01", + "version": 1, + "name": "Boron L Ship Maintenance Bay", + "macro": "buildmodule_bor_equip_l_macro", + "description": "No information available", + "type": "buildmodule", + "explosionDamage": 5000, + "hull": 370000, + "makerRace": "boron", + "workForce": { + "max": 500 + }, + "price": { + "min": 52476005, + "max": 70996949, + "avg": 61736477 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 653, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 872 + }, + { + "ware": "energycells", + "amount": 9260 + }, + { + "ware": "hullparts", + "amount": 2836 + }, + { + "ware": "water", + "amount": 8387 + } + ] + } + ] + }, + { + "id": "module_bor_equip_xl_01", + "version": 1, + "name": "Boron XL Ship Maintenance Bay", + "macro": "buildmodule_bor_equip_xl_macro", + "description": "No information available", + "type": "buildmodule", + "explosionDamage": 5000, + "hull": 715000, + "makerRace": "boron", + "workForce": { + "max": 500 + }, + "price": { + "min": 54208622, + "max": 73341077, + "avg": 63774850 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 1136, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 1125 + }, + { + "ware": "energycells", + "amount": 11958 + }, + { + "ware": "hullparts", + "amount": 3662 + }, + { + "ware": "water", + "amount": 10830 + } + ] + } + ] + }, + { + "id": "module_bor_hab_l_01", + "version": 1, + "name": "Boron L Oasis", + "macro": "hab_bor_l_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 480000, + "makerRace": "boron", + "workForce": { + "capacity": 1000, + "race": "boron" + }, + "price": { + "min": 18290485, + "max": 24745951, + "avg": 21518218 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 640, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 114 + }, + { + "ware": "energycells", + "amount": 3631 + }, + { + "ware": "hullparts", + "amount": 834 + }, + { + "ware": "water", + "amount": 2192 + } + ] + } + ] + }, + { + "id": "module_bor_hab_m_01", + "version": 1, + "name": "Boron M Oasis", + "macro": "hab_bor_m_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 260000, + "makerRace": "boron", + "workForce": { + "capacity": 500, + "race": "boron" + }, + "price": { + "min": 12929719, + "max": 17493149, + "avg": 15211434 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 347, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 81 + }, + { + "ware": "energycells", + "amount": 2567 + }, + { + "ware": "hullparts", + "amount": 590 + }, + { + "ware": "water", + "amount": 1550 + } + ] + } + ] + }, + { + "id": "module_bor_hab_s_01", + "version": 1, + "name": "Boron S Oasis", + "macro": "hab_bor_s_01_macro", + "description": "No information available", + "type": "habitation", + "explosionDamage": 1000, + "hull": 140000, + "makerRace": "boron", + "workForce": { + "capacity": 250, + "race": "boron" + }, + "price": { + "min": 8989883, + "max": 12162783, + "avg": 10576333 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 187, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 56 + }, + { + "ware": "energycells", + "amount": 1785 + }, + { + "ware": "hullparts", + "amount": 410 + }, + { + "ware": "water", + "amount": 1078 + } + ] + } + ] + }, + { + "id": "module_bor_pier_l_01", + "version": 1, + "name": "Boron 4-Dock T Pier", + "macro": "pier_bor_harbor_01_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 850000, + "makerRace": "boron", + "price": { + "min": 3240789, + "max": 4384597, + "avg": 3812693 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 739, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 336 + }, + { + "ware": "energycells", + "amount": 10723 + }, + { + "ware": "hullparts", + "amount": 2463 + }, + { + "ware": "water", + "amount": 6474 + } + ] + } + ] + }, + { + "id": "module_bor_pier_l_02", + "version": 1, + "name": "Boron 1-Dock Pier", + "macro": "pier_bor_harbor_02_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 325000, + "makerRace": "boron", + "price": { + "min": 1871312, + "max": 2531774, + "avg": 2201543 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 283, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 194 + }, + { + "ware": "energycells", + "amount": 6192 + }, + { + "ware": "hullparts", + "amount": 1422 + }, + { + "ware": "water", + "amount": 3738 + } + ] + } + ] + }, + { + "id": "module_bor_pier_l_03", + "version": 1, + "name": "Boron 3-Dock E Pier", + "macro": "pier_bor_harbor_03_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 1250000, + "makerRace": "boron", + "price": { + "min": 3738918, + "max": 5058536, + "avg": 4398727 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 1087, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 388 + }, + { + "ware": "energycells", + "amount": 12371 + }, + { + "ware": "hullparts", + "amount": 2841 + }, + { + "ware": "water", + "amount": 7470 + } + ] + } + ] + }, + { + "id": "module_bor_pier_l_04", + "version": 1, + "name": "Boron Trading Station 4-Dock Pier", + "macro": "pier_bor_harbor_04_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1000, + "hull": 575000, + "makerRace": "boron", + "price": { + "min": 2633918, + "max": 3563536, + "avg": 3098727 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 517, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 273 + }, + { + "ware": "energycells", + "amount": 8715 + }, + { + "ware": "hullparts", + "amount": 2002 + }, + { + "ware": "water", + "amount": 5262 + } + ] + } + ] + }, + { + "id": "module_bor_pier_tradestation_01", + "version": 1, + "name": "Boron Trading Station Hexa-Dock Pier", + "macro": "pier_bor_tradestation_01_macro", + "description": "No information available", + "type": "pier", + "explosionDamage": 1500, + "hull": 2000000, + "makerRace": "boron", + "price": { + "min": 4225512, + "max": 5210498, + "avg": 4730030 + }, + "owners": [ + "boron" + ], + "production": [ + { + "time": 1087, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 417 + }, + { + "ware": "energycells", + "amount": 13303 + }, + { + "ware": "hullparts", + "amount": 3055 + }, + { + "ware": "water", + "amount": 8032 + } + ] + } + ] + }, + { + "id": "module_bor_prod_bofu_01", + "version": 1, + "name": "BoFu Production", + "macro": "prod_bor_bofu_macro", + "description": "No information available", + "type": "production", + "product": [ + "bofu" + ], + "explosionDamage": 1000, + "hull": 165000, + "makerRace": "boron", + "workForce": { + "max": 125 + }, + "price": { + "min": 1568474, + "max": 2122053, + "avg": 1845263 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_top_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_bottom_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_top_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_bottom_left_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "production": [ + { + "time": 367, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 163 + }, + { + "ware": "energycells", + "amount": 5190 + }, + { + "ware": "hullparts", + "amount": 1192 + }, + { + "ware": "water", + "amount": 3133 + } + ] + } + ] + }, + { + "id": "module_bor_prod_bogas_01", + "version": 1, + "name": "BoGas Production", + "macro": "prod_bor_bogas_macro", + "description": "No information available", + "type": "production", + "product": [ + "bogas" + ], + "explosionDamage": 1000, + "hull": 185000, + "makerRace": "boron", + "workForce": { + "max": 100 + }, + "price": { + "min": 1484832, + "max": 2008891, + "avg": 1746862 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_top_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_top_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_bottom_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_bottom_left_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "production": [ + { + "time": 411, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 154 + }, + { + "ware": "energycells", + "amount": 4913 + }, + { + "ware": "hullparts", + "amount": 1128 + }, + { + "ware": "water", + "amount": 2966 + } + ] + } + ] + }, + { + "id": "module_bor_prod_medicalsupplies_01", + "version": 1, + "name": "Boron Medical Supply Production", + "macro": "prod_bor_medicalsupplies_macro", + "description": "No information available", + "type": "production", + "product": [ + "medicalsupplies" + ], + "explosionDamage": 1000, + "hull": 204000, + "makerRace": "boron", + "workForce": { + "max": 90 + }, + "price": { + "min": 1345856, + "max": 1820864, + "avg": 1583360 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_top_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_bottom_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_top_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_bottom_left_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_bottom_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_bottom_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "production": [ + { + "time": 453, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 140 + }, + { + "ware": "energycells", + "amount": 4453 + }, + { + "ware": "hullparts", + "amount": 1023 + }, + { + "ware": "water", + "amount": 2689 + } + ] + } + ] + }, + { + "id": "module_bor_prod_plankton_01", + "version": 1, + "name": "Plankton Production", + "macro": "prod_bor_plankton_macro", + "description": "No information available", + "type": "production", + "product": [ + "plankton" + ], + "explosionDamage": 1000, + "hull": 135000, + "makerRace": "boron", + "workForce": { + "max": 40 + }, + "price": { + "min": 921174, + "max": 1246295, + "avg": 1083734 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_top_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_down_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_top_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_down_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_down_left_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_down_right_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_top_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_down_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_down_right_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_top_left_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_down_left_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_down_right_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "production": [ + { + "time": 278, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 96 + }, + { + "ware": "energycells", + "amount": 3048 + }, + { + "ware": "hullparts", + "amount": 700 + }, + { + "ware": "water", + "amount": 1840 + } + ] + } + ] + }, + { + "id": "module_bor_stor_container_l_01", + "version": 1, + "name": "Boron L Container Storage", + "macro": "storage_bor_l_container_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 775000, + "makerRace": "boron", + "cargo": { + "max": 1000000, + "type": "container" + }, + "price": { + "min": 688054, + "max": 930896, + "avg": 809475 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true, + "types": [] + } + ], + "production": [ + { + "time": 783, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 71 + }, + { + "ware": "energycells", + "amount": 2277 + }, + { + "ware": "hullparts", + "amount": 523 + }, + { + "ware": "water", + "amount": 1375 + } + ] + } + ] + }, + { + "id": "module_bor_stor_container_m_01", + "version": 1, + "name": "Boron M Container Storage", + "macro": "storage_bor_m_container_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 800, + "hull": 315000, + "makerRace": "boron", + "cargo": { + "max": 100000, + "type": "container" + }, + "price": { + "min": 490022, + "max": 662972, + "avg": 576497 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true, + "types": [] + } + ], + "production": [ + { + "time": 423, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 51 + }, + { + "ware": "energycells", + "amount": 1621 + }, + { + "ware": "hullparts", + "amount": 372 + }, + { + "ware": "water", + "amount": 979 + } + ] + } + ] + }, + { + "id": "module_bor_stor_container_s_01", + "version": 1, + "name": "Boron S Container Storage", + "macro": "storage_bor_s_container_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 500, + "hull": 135000, + "makerRace": "boron", + "cargo": { + "max": 25000, + "type": "container" + }, + "price": { + "min": 310446, + "max": 420016, + "avg": 365231 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + } + ], + "production": [ + { + "time": 268, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 32 + }, + { + "ware": "energycells", + "amount": 1027 + }, + { + "ware": "hullparts", + "amount": 236 + }, + { + "ware": "water", + "amount": 620 + } + ] + } + ] + }, + { + "id": "module_bor_stor_liquid_l_01", + "version": 1, + "name": "Boron L Liquid Storage", + "macro": "storage_bor_l_liquid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 765000, + "makerRace": "boron", + "cargo": { + "max": 1000000, + "type": "liquid" + }, + "price": { + "min": 688054, + "max": 930896, + "avg": 809475 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true, + "types": [] + } + ], + "production": [ + { + "time": 783, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 71 + }, + { + "ware": "energycells", + "amount": 2277 + }, + { + "ware": "hullparts", + "amount": 523 + }, + { + "ware": "water", + "amount": 1375 + } + ] + } + ] + }, + { + "id": "module_bor_stor_liquid_m_01", + "version": 1, + "name": "Boron M Liquid Storage", + "macro": "storage_bor_m_liquid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 307000, + "makerRace": "boron", + "cargo": { + "max": 500000, + "type": "liquid" + }, + "price": { + "min": 490022, + "max": 662972, + "avg": 576497 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true, + "types": [] + } + ], + "production": [ + { + "time": 423, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 51 + }, + { + "ware": "energycells", + "amount": 1621 + }, + { + "ware": "hullparts", + "amount": 372 + }, + { + "ware": "water", + "amount": 979 + } + ] + } + ] + }, + { + "id": "module_bor_stor_liquid_s_01", + "version": 1, + "name": "Boron S Liquid Storage", + "macro": "storage_bor_s_liquid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 500, + "hull": 126000, + "makerRace": "boron", + "cargo": { + "max": 100000, + "type": "liquid" + }, + "price": { + "min": 310446, + "max": 420016, + "avg": 365231 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + } + ], + "production": [ + { + "time": 268, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 32 + }, + { + "ware": "energycells", + "amount": 1027 + }, + { + "ware": "hullparts", + "amount": 236 + }, + { + "ware": "water", + "amount": 620 + } + ] + } + ] + }, + { + "id": "module_bor_stor_solid_l_01", + "version": 1, + "name": "Boron L Solid Storage", + "macro": "storage_bor_l_solid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 769000, + "makerRace": "boron", + "cargo": { + "max": 1000000, + "type": "solid" + }, + "price": { + "min": 688054, + "max": 930896, + "avg": 809475 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true, + "types": [] + } + ], + "production": [ + { + "time": 783, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 71 + }, + { + "ware": "energycells", + "amount": 2277 + }, + { + "ware": "hullparts", + "amount": 523 + }, + { + "ware": "water", + "amount": 1375 + } + ] + } + ] + }, + { + "id": "module_bor_stor_solid_m_01", + "version": 1, + "name": "Boron M Solid Storage", + "macro": "storage_bor_m_solid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 1000, + "hull": 311000, + "makerRace": "boron", + "cargo": { + "max": 500000, + "type": "solid" + }, + "price": { + "min": 490022, + "max": 662972, + "avg": 576497 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_left_02", + "size": "medium", + "hittable": true, + "types": [] + } + ], + "production": [ + { + "time": 423, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 51 + }, + { + "ware": "energycells", + "amount": 1621 + }, + { + "ware": "hullparts", + "amount": 372 + }, + { + "ware": "water", + "amount": 979 + } + ] + } + ] + }, + { + "id": "module_bor_stor_solid_s_01", + "version": 1, + "name": "Boron S Solid Storage", + "macro": "storage_bor_s_solid_01_macro", + "description": "No information available", + "type": "storage", + "explosionDamage": 500, + "hull": 132000, + "makerRace": "boron", + "cargo": { + "max": 100000, + "type": "solid" + }, + "price": { + "min": 310446, + "max": 420016, + "avg": 365231 + }, + "owners": [ + "boron" + ], + "shields": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_01", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_mid_right_02", + "size": "medium", + "hittable": true, + "types": [] + } + ], + "production": [ + { + "time": 268, + "amount": 1, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "claytronics", + "amount": 32 + }, + { + "ware": "energycells", + "amount": 1027 + }, + { + "ware": "hullparts", + "amount": 236 + }, + { + "ware": "water", + "amount": 620 + } + ] + } + ] + } +] \ No newline at end of file diff --git a/shared/export/production-method-data.json b/shared/export/production-method-data.json new file mode 100644 index 0000000..10e8eb4 --- /dev/null +++ b/shared/export/production-method-data.json @@ -0,0 +1,7 @@ +[ + "default", + "argon", + "teladi", + "paranid", + "recycling" +] \ No newline at end of file diff --git a/shared/export/race-data.json b/shared/export/race-data.json new file mode 100644 index 0000000..2f9eece --- /dev/null +++ b/shared/export/race-data.json @@ -0,0 +1,55 @@ +[ + { + "id": "argon", + "name": "Argon", + "description": "The descendents of Terran colonists stranded from Earth centuries ago, the Argon became their own thriving civilisation covering a great many systems and forging relations with several alien races. Throughout their short history the Argon Federation has been plagued by war, notably with the Xenon. Their greatest challenge however came from the unlikely source of the reconnected Terrans of Earth where they were plunged into the costly Terran Conflict.", + "icon": "race_argon" + }, + { + "id": "boron", + "name": "Boron", + "description": "The predominantly peaceful Boron are aquatic life-forms from the planet Nishala. While initially pacifist, the discovery of their world by the Split forced them to invent defences and adapt to war. Enjoying a close relationship with the Argon, the Boron remain a wise and measured people.", + "icon": "race_boron" + }, + { + "id": "drone", + "name": "Drone", + "description": "Drones are designed to specialise in a narrow field of tasks. With AI research outlawed to avoid a similar situation to the Terraformer-Xenon evolution, drones are limited in scope and capability. However, results from Xenon research have led to advancements in drone technology, something which troubled many experts." + }, + { + "id": "khaak", + "name": "Kha'ak", + "description": "Thought to have been wiped out during Operation Final Fury, very little is known about the Kha'ak other than they seem to be an insectile hive race hell-bent on the destruction of all those that share the Jump Gate network. As a hive race, it is suspected that individual intelligence gives way to a communal or caste mentality, but very little research into the species was completed before Operation Final Fury took place.", + "icon": "race_khaak" + }, + { + "id": "paranid", + "name": "Paranid", + "description": "The physically imposing Paranid are often regarded as arrogant by several races which usually stems from their exceptional mathematic skills and religious fervour. Allied with the Split and distrusting of the Argon, the Paranid have been in several conflicts where they use their technological prowess and multilevel thinking to gain tactical advantages.", + "icon": "race_paranid" + }, + { + "id": "split", + "name": "Split", + "description": "The aggressive Split live in a society constantly changing leadership where challenging factions rise up to impose a new Patriarch. Their short temper and fiery disposition puts them at odds with other races which has sometimes lead to war, notably with the Boron and Argon.", + "icon": "race_split" + }, + { + "id": "teladi", + "name": "Teladi", + "description": "The lizard-like Teladi are one of the founding members of the Community of Planets and have a natural affinity towards business and the accumulation of profit. They enjoy favourable relations with other races although some find their drive for profit disconcerting. Their long lifespan gives them a unique view of the Jump Gate shutdown, as does their previous experience being cut off from their home system of Ianamus Zura.", + "icon": "race_teladi" + }, + { + "id": "terran", + "name": "Terran", + "description": "The Terrans of the Solar System have a long history of spaceflight and exploring the Jump Gate network. After the events of the Terraformers over Earth, the Terrans severed their contact with the rest of the galaxy and had several centuries of rebuilding and advancement in isolation. Their brief return led to the Terran Conflict which preceded the mass disconnection of Jump Gates. It is unknown if the war precipitated this event.", + "icon": "race_terran" + }, + { + "id": "xenon", + "name": "Xenon", + "description": "The Xenon are a mechanical race resulting from past Terran terraformer ships which eventually evolved intelligence. A constant threat in many areas of the galaxy, it is thought that the Jump Gate shutdown may stem their movements but given their disregard of time it is possible they may simply travel between stars. The Xenon have no known allies and communication with them is often relegated to folklore.", + "icon": "race_xenon" + } +] \ No newline at end of file diff --git a/shared/export/ship-purpose-data.json b/shared/export/ship-purpose-data.json new file mode 100644 index 0000000..b621b5f --- /dev/null +++ b/shared/export/ship-purpose-data.json @@ -0,0 +1,9 @@ +[ + "auxiliary", + "mine", + "build", + "fight", + "trade", + "salvage", + "dismantling" +] \ No newline at end of file diff --git a/shared/export/ship-type-data.json b/shared/export/ship-type-data.json new file mode 100644 index 0000000..9c3dab3 --- /dev/null +++ b/shared/export/ship-type-data.json @@ -0,0 +1,24 @@ +[ + "resupplier", + "miner", + "carrier", + "fighter", + "heavyfighter", + "destroyer", + "largeminer", + "freighter", + "bomber", + "scavenger", + "frigate", + "transporter", + "interceptor", + "scout", + "courier", + "builder", + "corvette", + "police", + "battleship", + "gunboat", + "tug", + "compactor" +] \ No newline at end of file diff --git a/shared/export/ships-data.json b/shared/export/ships-data.json new file mode 100644 index 0000000..3b56f97 --- /dev/null +++ b/shared/export/ships-data.json @@ -0,0 +1,39382 @@ +[ + { + "id": "ship_arg_l_destroyer_01_a", + "version": 0, + "name": "Behemoth Vanguard", + "description": "The original design of the Behemoth-class destroyer was put into development mid-way through the Kha'ak conflict, during which the Titan-class was beginning to show its age and inefficiencies. At first too expensive for a crippled Argon economy, then too complex to produce quickly during the Terran Conflict, the first Behemoth did not ship out until long after that war had ended, and the Jump Gates had begun to catastrophically fail. It was only when Argon Prime and Black Hole Sun came back into contact that the Behemoth could be rolled out more frequently.", + "size": "large", + "explosionDamage": 1000, + "hull": 93000, + "storage": { + "missile": 160, + "unit": 10 + }, + "people": 44, + "purpose": "fight", + "thruster": "large", + "type": "destroyer", + "mass": 196.016, + "inertia": { + "pitch": 96.271, + "yaw": 96.271, + "roll": 77.016 + }, + "drag": { + "forward": 99.004, + "reverse": 396.016, + "horizontal": 73.005, + "vertical": 73.005, + "pitch": 106.203, + "yaw": 106.203, + "roll": 106.203 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_mid_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_up_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_up_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_up_mid_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 2300, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers", + "hatikvah", + "scaleplate" + ], + "price": { + "min": 4006156, + "max": 5420094, + "avg": 4713125 + }, + "production": [ + { + "time": 182, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1008 + }, + { + "ware": "hullparts", + "amount": 4433 + } + ] + } + ] + }, + { + "id": "ship_arg_l_destroyer_01_b", + "version": 0, + "name": "Behemoth Sentinel", + "description": "The original design of the Behemoth-class destroyer was put into development mid-way through the Kha'ak conflict, during which the Titan-class was beginning to show its age and inefficiencies. At first too expensive for a crippled Argon economy, then too complex to produce quickly during the Terran Conflict, the first Behemoth did not ship out until long after that war had ended, and the Jump Gates had begun to catastrophically fail. It was only when Argon Prime and Black Hole Sun came back into contact that the Behemoth could be rolled out more frequently.", + "size": "large", + "explosionDamage": 1000, + "hull": 111000, + "storage": { + "missile": 160, + "unit": 10 + }, + "people": 36, + "purpose": "fight", + "thruster": "large", + "type": "destroyer", + "mass": 235.22, + "inertia": { + "pitch": 103.378, + "yaw": 103.378, + "roll": 82.702 + }, + "drag": { + "forward": 108.805, + "reverse": 435.22, + "horizontal": 87.605, + "vertical": 87.605, + "pitch": 114.044, + "yaw": 114.044, + "roll": 114.044 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_mid_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_up_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_up_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_up_mid_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 2760, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 4795063, + "max": 6487438, + "avg": 5641250 + }, + "production": [ + { + "time": 218, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1206 + }, + { + "ware": "hullparts", + "amount": 5306 + } + ] + } + ] + }, + { + "id": "ship_arg_l_miner_liquid_01_a", + "version": 0, + "name": "Magnetar (Gas) Vanguard", + "description": "As the trend towards collecting natural resources with ships continued, the inefficiencies of the solution started to become clear. While a medium-sized ship had the advantage of moving quickly through mineral and gas regions, their cargo bays were simply not big enough for industrial-scale mining to be lucrative.nnNaturally, the Teladi stepped in to design L-sized resource collectors that could solve that problem, and the Magnetar is the Argon response to these ships; a standardised model that can be built in two variants, allowing it to support both asteroid mining and natural gas collection.", + "size": "large", + "explosionDamage": 800, + "hull": 26000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 46, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 205.27, + "inertia": { + "pitch": 133.749, + "yaw": 133.749, + "roll": 106.999 + }, + "drag": { + "forward": 56.738, + "reverse": 324.216, + "horizontal": 126.666, + "vertical": 126.666, + "pitch": 140.897, + "yaw": 140.897, + "roll": 140.897 + }, + "engines": [ + { + "group": "group_front_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 42000, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers", + "hatikvah" + ], + "price": { + "min": 1111460, + "max": 1503740, + "avg": 1307600 + }, + "production": [ + { + "time": 83, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 461 + }, + { + "ware": "hullparts", + "amount": 1216 + } + ] + } + ] + }, + { + "id": "ship_arg_l_miner_liquid_01_b", + "version": 0, + "name": "Magnetar (Gas) Sentinel", + "description": "As the trend towards collecting natural resources with ships continued, the inefficiencies of the solution started to become clear. While a medium-sized ship had the advantage of moving quickly through mineral and gas regions, their cargo bays were simply not big enough for industrial-scale mining to be lucrative.nnNaturally, the Teladi stepped in to design L-sized resource collectors that could solve that problem, and the Magnetar is the Argon response to these ships; a standardised model that can be built in two variants, allowing it to support both asteroid mining and natural gas collection.", + "size": "large", + "explosionDamage": 800, + "hull": 32000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 38, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 246.324, + "inertia": { + "pitch": 147.778, + "yaw": 147.778, + "roll": 118.223 + }, + "drag": { + "forward": 62.485, + "reverse": 357.059, + "horizontal": 151.999, + "vertical": 151.999, + "pitch": 155.677, + "yaw": 155.677, + "roll": 155.677 + }, + "engines": [ + { + "group": "group_front_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 50400, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers", + "hatikvah" + ], + "price": { + "min": 1350914, + "max": 1827707, + "avg": 1589310 + }, + "production": [ + { + "time": 101, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 560 + }, + { + "ware": "hullparts", + "amount": 1478 + } + ] + } + ] + }, + { + "id": "ship_arg_l_miner_solid_01_a", + "version": 0, + "name": "Magnetar (Mineral) Vanguard", + "description": "As the trend towards collecting natural resources with ships continued, the inefficiencies of the solution started to become clear. While a medium-sized ship had the advantage of moving quickly through mineral and gas regions, their cargo bays were simply not big enough for industrial-scale mining to be lucrative.nnNaturally, the Teladi stepped in to design L-sized resource collectors that could solve that problem, and the Magnetar is the Argon response to these ships; a standardised model that can be built in two variants, allowing it to support both asteroid mining and natural gas collection.", + "size": "large", + "explosionDamage": 800, + "hull": 26000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 46, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 204.245, + "inertia": { + "pitch": 132.733, + "yaw": 132.733, + "roll": 106.186 + }, + "drag": { + "forward": 56.594, + "reverse": 323.396, + "horizontal": 127.239, + "vertical": 127.239, + "pitch": 140.528, + "yaw": 140.528, + "roll": 140.528 + }, + "engines": [ + { + "group": "group_front_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_down_mid", + "size": "large", + "hittable": false, + "types": [ + "mining", + "standard" + ] + }, + { + "group": "group_back_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 40000, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers", + "hatikvah" + ], + "price": { + "min": 1108727, + "max": 1500043, + "avg": 1304385 + }, + "production": [ + { + "time": 83, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 460 + }, + { + "ware": "hullparts", + "amount": 1213 + } + ] + } + ] + }, + { + "id": "ship_arg_l_miner_solid_01_b", + "version": 0, + "name": "Magnetar (Mineral) Sentinel", + "description": "As the trend towards collecting natural resources with ships continued, the inefficiencies of the solution started to become clear. While a medium-sized ship had the advantage of moving quickly through mineral and gas regions, their cargo bays were simply not big enough for industrial-scale mining to be lucrative.nnNaturally, the Teladi stepped in to design L-sized resource collectors that could solve that problem, and the Magnetar is the Argon response to these ships; a standardised model that can be built in two variants, allowing it to support both asteroid mining and natural gas collection.", + "size": "large", + "explosionDamage": 800, + "hull": 32000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 38, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 245.094, + "inertia": { + "pitch": 146.623, + "yaw": 146.623, + "roll": 117.298 + }, + "drag": { + "forward": 62.313, + "reverse": 356.076, + "horizontal": 152.687, + "vertical": 152.687, + "pitch": 155.234, + "yaw": 155.234, + "roll": 155.234 + }, + "engines": [ + { + "group": "group_front_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_down_mid", + "size": "large", + "hittable": false, + "types": [ + "mining", + "standard" + ] + }, + { + "group": "group_back_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 50400, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers", + "hatikvah" + ], + "price": { + "min": 1348181, + "max": 1824009, + "avg": 1586095 + }, + "production": [ + { + "time": 101, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 559 + }, + { + "ware": "hullparts", + "amount": 1475 + } + ] + } + ] + }, + { + "id": "ship_arg_l_trans_container_01_a", + "version": 0, + "name": "Veles Vanguard", + "description": "Designed and produced by the Antigone Republic after the Jump Gates began to realign, the Veles-class freighter is more compact and self-sufficient than any freighter-class ship before it; the reason why it became part of the on-going technology exchange between the Republic and their Argon Federation allies.nnBuilt using a highly modular design, many ship designers have taken the base Veles model and reorganised it, as well as making their own changes to the internal systems, to sell an ever-growing number of variations on the ship. However, the Veles remains a popular choice among traders and station builders.", + "size": "large", + "explosionDamage": 800, + "hull": 57000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 110, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 440.933, + "inertia": { + "pitch": 175.799, + "yaw": 175.799, + "roll": 140.64 + }, + "drag": { + "forward": 128.187, + "reverse": 512.747, + "horizontal": 95.125, + "vertical": 95.125, + "pitch": 155.187, + "yaw": 155.187, + "roll": 155.187 + }, + "engines": [ + { + "group": "group_back_mid_up", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_up", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_up", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 36000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 2605841, + "max": 3525549, + "avg": 3065695 + }, + "production": [ + { + "time": 195, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1080 + }, + { + "ware": "hullparts", + "amount": 2851 + } + ] + } + ] + }, + { + "id": "ship_arg_l_trans_container_01_b", + "version": 0, + "name": "Veles Sentinel", + "description": "Designed and produced by the Antigone Republic after the Jump Gates began to realign, the Veles-class freighter is more compact and self-sufficient than any freighter-class ship before it; the reason why it became part of the on-going technology exchange between the Republic and their Argon Federation allies.nnBuilt using a highly modular design, many ship designers have taken the base Veles model and reorganised it, as well as making their own changes to the internal systems, to sell an ever-growing number of variations on the ship. However, the Veles remains a popular choice among traders and station builders.", + "size": "large", + "explosionDamage": 800, + "hull": 69000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 91, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 529.12, + "inertia": { + "pitch": 195.78, + "yaw": 195.78, + "roll": 156.624 + }, + "drag": { + "forward": 145.824, + "reverse": 583.296, + "horizontal": 114.15, + "vertical": 114.15, + "pitch": 172.824, + "yaw": 172.824, + "roll": 172.824 + }, + "engines": [ + { + "group": "group_back_mid_up", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_up", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_up", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 43200, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 3140563, + "max": 4248997, + "avg": 3694780 + }, + "production": [ + { + "time": 235, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1302 + }, + { + "ware": "hullparts", + "amount": 3436 + } + ] + } + ] + }, + { + "id": "ship_arg_l_trans_container_02_a", + "version": 0, + "name": "Mokosi Vanguard", + "description": "When Argon Federation ship designers received the blue-prints for the Veles, it was immediately recognisable as a highly modular ship, and so they began work straight away on different variations that could provide more variety and competition in a ship class that was both needed and popular throughout Argon space.nnOne of the first ships to come from this process was the Mokosi, designed in Black Hole Sun. Though it uses the same base chassis as the Veles, a different container configuration and tweaks to several internal systems to adapt have created a fine addition to the Argon merchant fleet.", + "size": "large", + "explosionDamage": 800, + "hull": 53000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 113, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 413.15, + "inertia": { + "pitch": 176.471, + "yaw": 176.471, + "roll": 141.177 + }, + "drag": { + "forward": 122.63, + "reverse": 490.52, + "horizontal": 75.814, + "vertical": 75.814, + "pitch": 149.63, + "yaw": 149.63, + "roll": 149.63 + }, + "engines": [ + { + "group": "group_back_mid_up", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_up", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_up", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 33000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 2705448, + "max": 3660312, + "avg": 3182880 + }, + "production": [ + { + "time": 203, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1121 + }, + { + "ware": "hullparts", + "amount": 2960 + } + ] + } + ] + }, + { + "id": "ship_arg_l_trans_container_02_b", + "version": 0, + "name": "Mokosi Sentinel", + "description": "When Argon Federation ship designers received the blue-prints for the Veles, it was immediately recognisable as a highly modular ship, and so they began work straight away on different variations that could provide more variety and competition in a ship class that was both needed and popular throughout Argon space.nnOne of the first ships to come from this process was the Mokosi, designed in Black Hole Sun. Though it uses the same base chassis as the Veles, a different container configuration and tweaks to several internal systems to adapt have created a fine addition to the Argon merchant fleet.", + "size": "large", + "explosionDamage": 800, + "hull": 64000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 94, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 495.78, + "inertia": { + "pitch": 195.962, + "yaw": 195.962, + "roll": 156.769 + }, + "drag": { + "forward": 139.156, + "reverse": 556.624, + "horizontal": 90.977, + "vertical": 90.977, + "pitch": 166.156, + "yaw": 166.156, + "roll": 166.156 + }, + "engines": [ + { + "group": "group_back_mid_up", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_up", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_up", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 39600, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 3251101, + "max": 4398549, + "avg": 3824825 + }, + "production": [ + { + "time": 244, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1347 + }, + { + "ware": "hullparts", + "amount": 3557 + } + ] + } + ] + }, + { + "id": "ship_arg_l_trans_container_03_a", + "version": 0, + "name": "Incarcatura Vanguard", + "description": "Designed and produced as part of the push to revitalise the Argon economy after the Jump Gate realignment, the relatively new Incarcatura has become a popular alternative to the Veles and Mokosi design. Though there have been some concerns as to its length, that it might caught flight problems, most experts are willing to overlook these problems due to its cargo efficiency.", + "size": "large", + "explosionDamage": 800, + "hull": 78000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 207, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 598.799, + "inertia": { + "pitch": 287.313, + "yaw": 287.313, + "roll": 229.85 + }, + "drag": { + "forward": 159.76, + "reverse": 639.04, + "horizontal": 140.687, + "vertical": 140.687, + "pitch": 186.76, + "yaw": 186.76, + "roll": 186.76 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 45000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 2632348, + "max": 3561412, + "avg": 3096880 + }, + "production": [ + { + "time": 197, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1091 + }, + { + "ware": "hullparts", + "amount": 2880 + } + ] + } + ] + }, + { + "id": "ship_arg_l_trans_container_03_b", + "version": 0, + "name": "Incarcatura Sentinel", + "description": "Designed and produced as part of the push to revitalise the Argon economy after the Jump Gate realignment, the relatively new Incarcatura has become a popular alternative to the Veles and Mokosi design. Though there have been some concerns as to its length, that it might caught flight problems, most experts are willing to overlook these problems due to its cargo efficiency.", + "size": "large", + "explosionDamage": 800, + "hull": 93000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 172, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 718.559, + "inertia": { + "pitch": 324.161, + "yaw": 324.161, + "roll": 259.329 + }, + "drag": { + "forward": 183.712, + "reverse": 734.847, + "horizontal": 168.824, + "vertical": 168.824, + "pitch": 210.712, + "yaw": 210.712, + "roll": 210.712 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 54000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 4249222, + "max": 5748948, + "avg": 4999085 + }, + "production": [ + { + "time": 319, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1761 + }, + { + "ware": "hullparts", + "amount": 4649 + } + ] + } + ] + }, + { + "id": "ship_arg_l_trans_container_04_a", + "version": 0, + "name": "Shuyaku Vanguard", + "description": "Designed in parallel to the Incarcatura, as part of the push to rejuvenate the Argon economy, the Shuyaku-class freighter is a Sonra variant, extending the Terracorp-designed freighter's cargo bay at the cost of some manoeuvrability. The Shuyaku also marks the Hatikvah Free League's first contribution to the Argon merchant fleet, meant as an offering of good will to both the Federation and the Republic, to show that the Free League was also taking the rebuilding effort seriously.", + "size": "large", + "explosionDamage": 800, + "hull": 84000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 225, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 650.415, + "inertia": { + "pitch": 329.329, + "yaw": 329.329, + "roll": 263.463 + }, + "drag": { + "forward": 170.083, + "reverse": 680.332, + "horizontal": 93.101, + "vertical": 93.101, + "pitch": 197.083, + "yaw": 197.083, + "roll": 197.083 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_back_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_mid_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_back_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 37000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 3842459, + "max": 5198621, + "avg": 4520540 + }, + "production": [ + { + "time": 288, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1592 + }, + { + "ware": "hullparts", + "amount": 4204 + } + ] + } + ] + }, + { + "id": "ship_arg_l_trans_container_04_b", + "version": 0, + "name": "Shuyaku Sentinel", + "description": "Designed in parallel to the Incarcatura, as part of the push to rejuvenate the Argon economy, the Shuyaku-class freighter is a Sonra variant, extending the Terracorp-designed freighter's cargo bay at the cost of some manoeuvrability. The Shuyaku also marks the Hatikvah Free League's first contribution to the Argon merchant fleet, meant as an offering of good will to both the Federation and the Republic, to show that the Free League was also taking the rebuilding effort seriously.", + "size": "large", + "explosionDamage": 800, + "hull": 101000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 187, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 780.498, + "inertia": { + "pitch": 372.804, + "yaw": 372.804, + "roll": 298.243 + }, + "drag": { + "forward": 196.1, + "reverse": 784.399, + "horizontal": 111.722, + "vertical": 111.722, + "pitch": 223.1, + "yaw": 223.1, + "roll": 223.1 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_back_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_mid_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_back_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 44400, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 4614858, + "max": 6243632, + "avg": 5429245 + }, + "production": [ + { + "time": 346, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1913 + }, + { + "ware": "hullparts", + "amount": 5049 + } + ] + } + ] + }, + { + "id": "ship_arg_l_trans_container_05_a", + "version": 0, + "name": "Sonra Vanguard", + "description": "Though the Sonra-class freighter was initially designed by Terracorp after the Terran Conflict, the status of development was lost with contact to Home of Light. Quite by chance, project designers were trapped in Black Hole Sun during the Jump Gate shutdown, and were able to get the blueprints of the finished ship to the Argon Federation and Antigone Republic when contact with Argon Prime and Antigone Memorial was re-established.", + "size": "large", + "explosionDamage": 800, + "hull": 67000, + "storage": { + "missile": 20, + "unit": 6 + }, + "people": 178, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 513.678, + "inertia": { + "pitch": 224.003, + "yaw": 224.003, + "roll": 179.203 + }, + "drag": { + "forward": 142.736, + "reverse": 570.943, + "horizontal": 198.459, + "vertical": 198.459, + "pitch": 169.736, + "yaw": 169.736, + "roll": 169.736 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_back_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_mid_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_back_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 29000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 3049154, + "max": 4125326, + "avg": 3587240 + }, + "production": [ + { + "time": 229, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1264 + }, + { + "ware": "hullparts", + "amount": 3336 + } + ] + } + ] + }, + { + "id": "ship_arg_l_trans_container_05_b", + "version": 0, + "name": "Sonra Sentinel", + "description": "Though the Sonra-class freighter was initially designed by Terracorp after the Terran Conflict, the status of development was lost with contact to Home of Light. Quite by chance, project designers were trapped in Black Hole Sun during the Jump Gate shutdown, and were able to get the blueprints of the finished ship to the Argon Federation and Antigone Republic when contact with Argon Prime and Antigone Memorial was re-established.", + "size": "large", + "explosionDamage": 800, + "hull": 80000, + "storage": { + "missile": 20, + "unit": 6 + }, + "people": 148, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 616.414, + "inertia": { + "pitch": 251.12, + "yaw": 251.12, + "roll": 200.896 + }, + "drag": { + "forward": 163.283, + "reverse": 653.131, + "horizontal": 238.151, + "vertical": 238.151, + "pitch": 190.283, + "yaw": 190.283, + "roll": 190.283 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_back_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_mid_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_back_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 34800, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 3650555, + "max": 4938986, + "avg": 4294770 + }, + "production": [ + { + "time": 274, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1513 + }, + { + "ware": "hullparts", + "amount": 3994 + } + ] + } + ] + }, + { + "id": "ship_arg_m_bomber_01_a", + "version": 0, + "name": "Minotaur Vanguard", + "description": "A ship that saw much upheaval behind the scenes during the Terran Conflict, when it became painfully clear to the Argon that their ships were far inferior to the Terran equivalents, the Minotaur was over the course of the conflict completely redesigned as a mobile weapons-platform, sporting heavy weapons that deal incredible amounts of damage to similarly-sized and larger, slower targets. Unfortunately, the ship was unable to be put into mass-production before crisis crippled the Argon Federation, and as a result the new Minotaur has only recently entered service.", + "size": "medium", + "explosionDamage": 500, + "hull": 12000, + "storage": { + "missile": 40, + "unit": 0 + }, + "people": 9, + "purpose": "fight", + "thruster": "medium", + "type": "gunboat", + "mass": 29.587, + "inertia": { + "pitch": 5.723, + "yaw": 5.723, + "roll": 4.578 + }, + "drag": { + "forward": 5.443, + "reverse": 21.773, + "horizontal": 13.85, + "vertical": 13.85, + "pitch": 9.897, + "yaw": 9.897, + "roll": 9.897 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 880, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 637993, + "max": 863167, + "avg": 750580 + }, + "production": [ + { + "time": 24, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 134 + }, + { + "ware": "hullparts", + "amount": 708 + } + ] + } + ] + }, + { + "id": "ship_arg_m_bomber_01_b", + "version": 0, + "name": "Minotaur Sentinel", + "description": "A ship that saw much upheaval behind the scenes during the Terran Conflict, when it became painfully clear to the Argon that their ships were far inferior to the Terran equivalents, the Minotaur was over the course of the conflict completely redesigned as a mobile weapons-platform, sporting heavy weapons that deal incredible amounts of damage to similarly-sized and larger, slower targets. Unfortunately, the ship was unable to be put into mass-production before crisis crippled the Argon Federation, and as a result the new Minotaur has only recently entered service.", + "size": "medium", + "explosionDamage": 500, + "hull": 14000, + "storage": { + "missile": 40, + "unit": 0 + }, + "people": 7, + "purpose": "fight", + "thruster": "medium", + "type": "gunboat", + "mass": 35.505, + "inertia": { + "pitch": 6.578, + "yaw": 6.578, + "roll": 5.263 + }, + "drag": { + "forward": 6.257, + "reverse": 25.028, + "horizontal": 16.62, + "vertical": 16.62, + "pitch": 11.376, + "yaw": 11.376, + "roll": 11.376 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 1056, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 755166, + "max": 1021695, + "avg": 888430 + }, + "production": [ + { + "time": 29, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 159 + }, + { + "ware": "hullparts", + "amount": 838 + } + ] + } + ] + }, + { + "id": "ship_arg_m_bomber_02_a", + "version": 0, + "name": "Minotaur Raider", + "description": "A ship that saw much upheaval behind the scenes during the Terran Conflict, when it became painfully clear to the Argon that their ships were far inferior to the Terran equivalents, the Minotaur was over the course of the conflict completely redesigned as a mobile weapons-platform, sporting heavy weapons that deal incredible amounts of damage to similarly-sized and larger, slower targets. Unfortunately, the ship was unable to be put into mass-production before crisis crippled the Argon Federation, and as a result the new Minotaur has only recently entered service.", + "size": "medium", + "explosionDamage": 500, + "hull": 13000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 15, + "purpose": "fight", + "thruster": "medium", + "type": "scavenger", + "mass": 26.629, + "inertia": { + "pitch": 4.289, + "yaw": 4.289, + "roll": 3.431 + }, + "drag": { + "forward": 5.036, + "reverse": 20.146, + "horizontal": 12.465, + "vertical": 12.465, + "pitch": 8.241, + "yaw": 8.241, + "roll": 8.241 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 2370, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "hatikvah", + "scaleplate" + ], + "price": { + "min": 629863, + "max": 852167, + "avg": 741015 + }, + "production": [ + { + "time": 24, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 132 + }, + { + "ware": "hullparts", + "amount": 699 + } + ] + } + ] + }, + { + "id": "ship_arg_m_frigate_01_a", + "version": 0, + "name": "Cerberus Vanguard", + "description": "The first of the newly-designed M-sized support ships to reach the Federal and Republic navies, the Cerberus-class frigate is primarily designed to target and support smaller and similarly-sized vessels in a defensive capacity. Notably, the Cerberus was also the first ship of its size to support a fully-functional dock for smaller ships; a massive technical challenge for its designers. This has only made it a more popular choice of ship, and saw a new design race explode throughout the Jump Gate network as other ship designers scrambled to copy the Argons' innovative design.", + "size": "medium", + "explosionDamage": 200, + "hull": 17000, + "storage": { + "missile": 100, + "unit": 12 + }, + "people": 14, + "purpose": "fight", + "thruster": "medium", + "type": "frigate", + "mass": 34.432, + "inertia": { + "pitch": 3.663, + "yaw": 3.663, + "roll": 2.93 + }, + "drag": { + "forward": 9.164, + "reverse": 25.659, + "horizontal": 11.71, + "vertical": 11.71, + "pitch": 7.776, + "yaw": 7.776, + "roll": 7.776 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 1760, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 1, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 819115, + "max": 1108215, + "avg": 963665 + }, + "production": [ + { + "time": 31, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 172 + }, + { + "ware": "hullparts", + "amount": 909 + } + ] + } + ] + }, + { + "id": "ship_arg_m_frigate_01_b", + "version": 0, + "name": "Cerberus Sentinel", + "description": "The first of the newly-designed M-sized support ships to reach the Federal and Republic navies, the Cerberus-class frigate is primarily designed to target and support smaller and similarly-sized vessels in a defensive capacity. Notably, the Cerberus was also the first ship of its size to support a fully-functional dock for smaller ships; a massive technical challenge for its designers. This has only made it a more popular choice of ship, and saw a new design race explode throughout the Jump Gate network as other ship designers scrambled to copy the Argons' innovative design.", + "size": "medium", + "explosionDamage": 200, + "hull": 20000, + "storage": { + "missile": 100, + "unit": 12 + }, + "people": 11, + "purpose": "fight", + "thruster": "medium", + "type": "frigate", + "mass": 41.318, + "inertia": { + "pitch": 4.23, + "yaw": 4.23, + "roll": 3.384 + }, + "drag": { + "forward": 10.584, + "reverse": 29.636, + "horizontal": 14.052, + "vertical": 14.052, + "pitch": 8.981, + "yaw": 8.981, + "roll": 8.981 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 2112, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 1, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 973250, + "max": 1316750, + "avg": 1145000 + }, + "production": [ + { + "time": 37, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 205 + }, + { + "ware": "hullparts", + "amount": 1080 + } + ] + } + ] + }, + { + "id": "ship_arg_m_miner_liquid_01_a", + "version": 0, + "name": "Sunder (Gas) Vanguard", + "description": "Jonferco's response to the PMC's Drill design, the Sunder fulfils a similar role to its sister ship but handles gas collection instead of asteroid mining. It is fitted with a non-modular scoop that allows natural gases to be safely placed inside the ship's cargo hold. For all the gratitude received by PMC for their work in advancing asteroid mining, Jonferco's reply sent the mining community into a complete frenzy, with the possibilities for collecting, refining and utilising natural gases spurring the economy, not just in Argon space but across the entire Jump Gate network, to a brand new high.", + "size": "medium", + "explosionDamage": 100, + "hull": 4000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 9, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 30.292, + "inertia": { + "pitch": 9.55, + "yaw": 9.55, + "roll": 7.64 + }, + "drag": { + "forward": 3.878, + "reverse": 22.161, + "horizontal": 24.508, + "vertical": 24.508, + "pitch": 16.132, + "yaw": 16.132, + "roll": 16.132 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 10400, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers", + "hatikvah" + ], + "price": { + "min": 108413, + "max": 146677, + "avg": 127545 + }, + "production": [ + { + "time": 12, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 66 + }, + { + "ware": "hullparts", + "amount": 117 + } + ] + } + ] + }, + { + "id": "ship_arg_m_miner_liquid_01_b", + "version": 0, + "name": "Sunder (Gas) Sentinel", + "description": "Jonferco's response to the PMC's Drill design, the Sunder fulfils a similar role to its sister ship but handles gas collection instead of asteroid mining. It is fitted with a non-modular scoop that allows natural gases to be safely placed inside the ship's cargo hold. For all the gratitude received by PMC for their work in advancing asteroid mining, Jonferco's reply sent the mining community into a complete frenzy, with the possibilities for collecting, refining and utilising natural gases spurring the economy, not just in Argon space but across the entire Jump Gate network, to a brand new high.", + "size": "medium", + "explosionDamage": 100, + "hull": 5000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 7, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 38.926, + "inertia": { + "pitch": 11.164, + "yaw": 11.164, + "roll": 8.932 + }, + "drag": { + "forward": 4.709, + "reverse": 26.909, + "horizontal": 29.41, + "vertical": 29.41, + "pitch": 18.858, + "yaw": 18.858, + "roll": 18.858 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 12480, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers", + "hatikvah" + ], + "price": { + "min": 137173, + "max": 185587, + "avg": 161380 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 84 + }, + { + "ware": "hullparts", + "amount": 148 + } + ] + } + ] + }, + { + "id": "ship_arg_m_miner_solid_01_a", + "version": 0, + "name": "Drill (Mineral) Vanguard", + "description": "Towards the end of the last era, the Plutarch Mining Corporation called for a shift away from static station-based asteroid mining towards the far more efficient method of using ships to identify and break down asteroids and bring them to refineries in far less time than it took for a refinery to be attached to a much bigger asteroid. Though it is now different from the PMC's original design, the Drill has been in service ever since, inspiring a train of different mining ships to be released all across the old and new Jump Gate network.", + "size": "medium", + "explosionDamage": 100, + "hull": 4000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 9, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 32.438, + "inertia": { + "pitch": 10.839, + "yaw": 10.839, + "roll": 8.671 + }, + "drag": { + "forward": 4.085, + "reverse": 23.341, + "horizontal": 22.934, + "vertical": 22.934, + "pitch": 17.097, + "yaw": 17.097, + "roll": 17.097 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + } + ], + "cargo": [ + { + "max": 9800, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers", + "hatikvah" + ], + "price": { + "min": 112170, + "max": 151760, + "avg": 131965 + }, + "production": [ + { + "time": 12, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 69 + }, + { + "ware": "hullparts", + "amount": 121 + } + ] + } + ] + }, + { + "id": "ship_arg_m_miner_solid_01_b", + "version": 0, + "name": "Drill (Mineral) Sentinel", + "description": "Towards the end of the last era, the Plutarch Mining Corporation called for a shift away from static station-based asteroid mining towards the far more efficient method of using ships to identify and break down asteroids and bring them to refineries in far less time than it took for a refinery to be attached to a much bigger asteroid. Though it is now different from the PMC's original design, the Drill has been in service ever since, inspiring a train of different mining ships to be released all across the old and new Jump Gate network.", + "size": "medium", + "explosionDamage": 100, + "hull": 5000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 7, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 36.351, + "inertia": { + "pitch": 12.69, + "yaw": 12.69, + "roll": 10.152 + }, + "drag": { + "forward": 4.461, + "reverse": 25.493, + "horizontal": 27.52, + "vertical": 27.52, + "pitch": 20.017, + "yaw": 20.017, + "roll": 20.017 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + } + ], + "cargo": [ + { + "max": 11760, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers", + "hatikvah" + ], + "price": { + "min": 132528, + "max": 179302, + "avg": 155915 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 81 + }, + { + "ware": "hullparts", + "amount": 143 + } + ] + } + ] + }, + { + "id": "ship_arg_m_trans_container_01_a", + "version": 0, + "name": "Mercury Vanguard", + "description": "The latest redesign of the Mercury-class transporter was almost purely aesthetic, with only small changes made to allow the user more modularity and modification options. Other than the aesthetic changes made to keep the model in line with latest style trends, the Mercury remains the same reliable M-sized transporter that has seen popular use across Argon space for so many years.", + "size": "medium", + "explosionDamage": 100, + "hull": 5000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 17, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 42.966, + "inertia": { + "pitch": 6.177, + "yaw": 6.177, + "roll": 4.942 + }, + "drag": { + "forward": 7.283, + "reverse": 29.131, + "horizontal": 26.605, + "vertical": 26.605, + "pitch": 13.242, + "yaw": 13.242, + "roll": 13.242 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 8200, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "argon", + "buccaneers" + ], + "price": { + "min": 147352, + "max": 199358, + "avg": 173355 + }, + "production": [ + { + "time": 16, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 90 + }, + { + "ware": "hullparts", + "amount": 159 + } + ] + } + ] + }, + { + "id": "ship_arg_m_trans_container_01_b", + "version": 0, + "name": "Mercury Sentinel", + "description": "The latest redesign of the Mercury-class transporter was almost purely aesthetic, with only small changes made to allow the user more modularity and modification options. Other than the aesthetic changes made to keep the model in line with latest style trends, the Mercury remains the same reliable M-sized transporter that has seen popular use across Argon space for so many years.", + "size": "medium", + "explosionDamage": 100, + "hull": 6000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 14, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 51.559, + "inertia": { + "pitch": 7.18, + "yaw": 7.18, + "roll": 5.744 + }, + "drag": { + "forward": 8.464, + "reverse": 33.858, + "horizontal": 31.926, + "vertical": 31.926, + "pitch": 15.39, + "yaw": 15.39, + "roll": 15.39 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 9840, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 177000, + "max": 239470, + "avg": 208235 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 108 + }, + { + "ware": "hullparts", + "amount": 191 + } + ] + } + ] + }, + { + "id": "ship_arg_m_trans_container_02_a", + "version": 0, + "name": "Ides Vanguard", + "description": "With the Argon Federation desperate to rebuild its economy after the Jump Gates realigned, the sheer number of Mercury-class transporters across Argon space became so high that the value of the popular transporter began to sink rapidly. In an attempt to correct course, the Federation released the Ides. Though they are only slightly aesthetically and technically different, and in fact the Ides is based on the Mercury model, the ship has been pushed as competition to the popular transporter; a marketing strategy that has been well met by the public, and recently allowed for the ship market to find stability.", + "size": "medium", + "explosionDamage": 100, + "hull": 5000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 19, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 38.67, + "inertia": { + "pitch": 5.676, + "yaw": 5.676, + "roll": 4.541 + }, + "drag": { + "forward": 6.692, + "reverse": 26.768, + "horizontal": 23.944, + "vertical": 23.944, + "pitch": 12.167, + "yaw": 12.167, + "roll": 12.167 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 7400, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "argon", + "buccaneers" + ], + "price": { + "min": 147352, + "max": 199358, + "avg": 173355 + }, + "production": [ + { + "time": 16, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 90 + }, + { + "ware": "hullparts", + "amount": 159 + } + ] + } + ] + }, + { + "id": "ship_arg_m_trans_container_02_b", + "version": 0, + "name": "Ides Sentinel", + "description": "With the Argon Federation desperate to rebuild its economy after the Jump Gates realigned, the sheer number of Mercury-class transporters across Argon space became so high that the value of the popular transporter began to sink rapidly. In an attempt to correct course, the Federation released the Ides. Though they are only slightly aesthetically and technically different, and in fact the Ides is based on the Mercury model, the ship has been pushed as competition to the popular transporter; a marketing strategy that has been well met by the public, and recently allowed for the ship market to find stability.", + "size": "medium", + "explosionDamage": 100, + "hull": 6000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 15, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 46.403, + "inertia": { + "pitch": 6.578, + "yaw": 6.578, + "roll": 5.263 + }, + "drag": { + "forward": 7.755, + "reverse": 31.022, + "horizontal": 28.733, + "vertical": 28.733, + "pitch": 14.101, + "yaw": 14.101, + "roll": 14.101 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 8880, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 177000, + "max": 239470, + "avg": 208235 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 108 + }, + { + "ware": "hullparts", + "amount": 191 + } + ] + } + ] + }, + { + "id": "ship_arg_s_fighter_01_a", + "version": 0, + "name": "Nova Vanguard", + "description": "Though the prototype for the new-model Nova-class fighter was in development as far back as the Terran Conflict, it failed to reach production before the Jump Gate shutdown. Its first major role was escorting Argon Federation exploratory groups sent into newly discovered or rediscovered areas of space as the Jump Gates began to realign.nnThe new-look Nova is a major step up in ship design, with rotatable engines that make it formidable in strafing targets of a similar size. The Nova's redesign caused considerable controversy in the piloting community, when the rear turret was abandoned in favour of increased laser energy and strafing performance.nnDespite being a sound dogfighter, the Nova lacks the firepower required by full-time combatants. The Vanguard model improves the speed of the Nova. However, some pilots have suggested a portion of the upgrade budget might have been better spent on an aesthetic redesign.", + "size": "small", + "hull": 3100, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 3, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 6.579, + "inertia": { + "pitch": 1.229, + "yaw": 1.229, + "roll": 1.352 + }, + "drag": { + "forward": 3.831, + "reverse": 11.829, + "horizontal": 3.715, + "vertical": 3.715, + "pitch": 2.694, + "yaw": 2.694, + "roll": 2.694 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 240, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 112175, + "max": 151766, + "avg": 131970 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 56 + }, + { + "ware": "hullparts", + "amount": 122 + } + ] + } + ] + }, + { + "id": "ship_arg_s_fighter_01_b", + "version": 0, + "name": "Nova Sentinel", + "description": "Though the prototype for the new-model Nova-class fighter was in development as far back as the Terran Conflict, it failed to reach production before the Jump Gate shutdown. Its first major role was escorting Argon Federation exploratory groups sent into newly discovered or rediscovered areas of space as the Jump Gates began to realign.nnThe new-look Nova is a major step up in ship design, with rotatable engines that make it formidable in strafing targets of a similar size. The Nova's redesign caused considerable controversy in the piloting community, when the rear turret was abandoned in favour of increased laser energy and strafing performance.nnDespite being a sound dogfighter, the Nova lacks the firepower required by full-time combatants. The Nova's Sentinel variant has a hardened hull, adding resilience, though this comes at a marginal cost to speed.", + "size": "small", + "hull": 3800, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 7.894, + "inertia": { + "pitch": 1.398, + "yaw": 1.398, + "roll": 1.537 + }, + "drag": { + "forward": 4.012, + "reverse": 13.144, + "horizontal": 4.458, + "vertical": 4.458, + "pitch": 3.064, + "yaw": 3.064, + "roll": 3.064 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 288, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 136085, + "max": 184115, + "avg": 160100 + }, + "production": [ + { + "time": 12, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 68 + }, + { + "ware": "hullparts", + "amount": 148 + } + ] + } + ] + }, + { + "id": "ship_arg_s_fighter_02_a", + "version": 0, + "name": "Elite Vanguard", + "description": "Though retired from service for a long time before the Jump Gate shutdown, the push to give any advantage to the Federal and Republic fleets in their fights against the Xenon and the Holy Order of the Pontifex has seen the long-serving Elite redesigned as an interceptor.nnQuick in a straight line and able to fire off short bursts of fire-power before disengaging, the Elite often targets small ships and slower missiles, as well as using its speed and size, in support of the dog-fighters that are able to hold out longer under fire.", + "size": "small", + "hull": 1800, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 3.772, + "inertia": { + "pitch": 0.451, + "yaw": 0.451, + "roll": 0.361 + }, + "drag": { + "forward": 2.193, + "reverse": 8.772, + "horizontal": 3.381, + "vertical": 3.381, + "pitch": 2.585, + "yaw": 2.585, + "roll": 2.585 + }, + "engines": [ + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 150, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "argon", + "buccaneers" + ], + "price": { + "min": 65242, + "max": 88268, + "avg": 76755 + }, + "production": [ + { + "time": 6, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 32 + }, + { + "ware": "hullparts", + "amount": 71 + } + ] + } + ] + }, + { + "id": "ship_arg_s_fighter_02_b", + "version": 0, + "name": "Elite Sentinel", + "description": "Though retired from service for a long time before the Jump Gate shutdown, the push to give any advantage to the Federal and Republic fleets in their fights against the Xenon and the Holy Order of the Pontifex has seen the long-serving Elite redesigned as an interceptor.nnQuick in a straight line and able to fire off short bursts of fire-power before disengaging, the Elite often targets small ships and slower missiles, as well as using its speed and size, in support of the dog-fighters that are able to hold out longer under fire.", + "size": "small", + "hull": 2200, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 1, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 4.526, + "inertia": { + "pitch": 0.492, + "yaw": 0.492, + "roll": 0.393 + }, + "drag": { + "forward": 2.382, + "reverse": 9.526, + "horizontal": 4.057, + "vertical": 4.057, + "pitch": 2.821, + "yaw": 2.821, + "roll": 2.821 + }, + "engines": [ + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 180, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 79042, + "max": 106939, + "avg": 92990 + }, + "production": [ + { + "time": 7, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 39 + }, + { + "ware": "hullparts", + "amount": 86 + } + ] + } + ] + }, + { + "id": "ship_arg_s_fighter_03_a", + "version": 0, + "name": "Pulsar Vanguard", + "description": "When the Xenon destroyed a food production facility in Antigone Memorial, the sole survivor was protein engineer Tracie Harben. Having lost her entire family, and fuelled by vengeance, she dedicated herself to the creation of tools of destruction.nnHarben's most popular design is the Pulsar fighter, also known as the \"Glass Cannon\". A highly aggressive vessel, it prioritises armaments and speed above all else.nnNo-one knew the Pulsar could be even more aggressively optimised until Harben surprised observers by releasing the Vanguard model.", + "size": "small", + "race": "argon", + "hull": 1900, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 3, + "purpose": "fight", + "thruster": "small", + "type": "heavyfighter", + "mass": 7.94, + "inertia": { + "pitch": 1.882, + "yaw": 1.882, + "roll": 2.07 + }, + "drag": { + "forward": 5.763, + "reverse": 25.881, + "horizontal": 4.015, + "vertical": 4.015, + "pitch": 3.419, + "yaw": 3.419, + "roll": 3.419 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 150, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 96530, + "max": 130600, + "avg": 113565 + }, + "production": [ + { + "time": 9, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 48 + }, + { + "ware": "hullparts", + "amount": 105 + } + ] + } + ] + }, + { + "id": "ship_arg_s_fighter_04_a", + "version": 0, + "name": "Quasar Vanguard", + "description": "In the midst of the Terran War, the Argon Federation floundered somewhat in their ship design output. Perhaps their worst effort was the Quasar fighter, which, named after a powerful cosmic force, failed to fully live up to expectations.nnThe Quasar Vanguard was commissioned to breathe some useful function into the model. However, the variant has failed to achieve popularity.", + "size": "small", + "race": "argon", + "hull": 1700, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 3, + "purpose": "fight", + "thruster": "small", + "type": "heavyfighter", + "mass": 6.976, + "inertia": { + "pitch": 1.156, + "yaw": 1.156, + "roll": 1.272 + }, + "drag": { + "forward": 4.675, + "reverse": 17.964, + "horizontal": 4.158, + "vertical": 4.158, + "pitch": 3.586, + "yaw": 3.586, + "roll": 3.586 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 190, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 85463, + "max": 115627, + "avg": 100545 + }, + "production": [ + { + "time": 8, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 42 + }, + { + "ware": "hullparts", + "amount": 93 + } + ] + } + ] + }, + { + "id": "ship_arg_s_heavyfighter_02_a", + "version": 0, + "name": "Eclipse Vanguard", + "description": "Redesigned using the same combat-ready cockpit used by the new-look Nova, the Eclipse replaces the rotatable engines with a support structure that allows it to carry more weapons - effectively sacrificing the manoeuvrability of the dog-fighter for enough fire-power to be devastating against both small- and medium-sized ships.nnThis sacrifice does make the ship vulnerable to more specialised dog-fighters and interceptors, but nonetheless both the Federal and Republic navy has found the new Eclipse to be a worthy addition to their fleets, with Argon ship designers once again leading the race to design ships effective for both personal and military use.", + "size": "small", + "hull": 4000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 3, + "purpose": "fight", + "thruster": "small", + "type": "heavyfighter", + "mass": 8.406, + "inertia": { + "pitch": 2.077, + "yaw": 2.077, + "roll": 1.662 + }, + "drag": { + "forward": 4.97, + "reverse": 20.108, + "horizontal": 3.883, + "vertical": 3.883, + "pitch": 3.564, + "yaw": 3.564, + "roll": 3.564 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 320, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 144283, + "max": 195207, + "avg": 169745 + }, + "production": [ + { + "time": 13, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 71 + }, + { + "ware": "hullparts", + "amount": 157 + } + ] + } + ] + }, + { + "id": "ship_arg_s_miner_solid_01_a", + "version": 0, + "name": "Courier (Mineral)", + "description": "After years of outcry from many a trader about the lack of a small and speedy transporter, the up and coming ship manufacturer Jinko-Tekina have supplied both the Argon Federation and Antigone Memorial with the Courier-class s-ship, designed for transporting small numbers of valuable wares across a short distance in order to limit the risk of hijacking as well as to share the load of M- and L-sized transporters that make up the rest of the Argon merchant fleet.", + "size": "small", + "hull": 1200, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 3, + "purpose": "mine", + "thruster": "small", + "type": "miner", + "mass": 9.532, + "inertia": { + "pitch": 4.871, + "yaw": 4.871, + "roll": 3.897 + }, + "drag": { + "forward": 4.478, + "reverse": 23.617, + "horizontal": 7.338, + "vertical": 7.338, + "pitch": 7.371, + "yaw": 7.371, + "roll": 7.371 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "cargo": [ + { + "max": 2600, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "argon", + "buccaneers", + "hatikvah" + ], + "price": { + "min": 70775, + "max": 95755, + "avg": 83265 + }, + "production": [ + { + "time": 6, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 35 + }, + { + "ware": "hullparts", + "amount": 77 + } + ] + } + ] + }, + { + "id": "ship_arg_s_scout_01_a", + "version": 0, + "name": "Discoverer Vanguard", + "description": "Long serving as the scout and exploration ship for the Argon fleet, the Discoverer saw little re-design or overhaul until the Jump Gate shutdown. The current model, an overall improvement on the model used before the shutdown, was designed in the Antigone Republic and made available to the Argon Federation as part of an ongoing technology exchange between the two allied factions.", + "size": "small", + "hull": 1400, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 6.343, + "inertia": { + "pitch": 0.993, + "yaw": 0.993, + "roll": 0.795 + }, + "drag": { + "forward": 3.335, + "reverse": 8.218, + "horizontal": 4.157, + "vertical": 4.157, + "pitch": 3.388, + "yaw": 3.388, + "roll": 3.388 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 540, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "argon", + "buccaneers", + "hatikvah", + "scaleplate" + ], + "price": { + "min": 74464, + "max": 100746, + "avg": 87605 + }, + "production": [ + { + "time": 7, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 37 + }, + { + "ware": "hullparts", + "amount": 81 + } + ] + } + ] + }, + { + "id": "ship_arg_s_scout_01_b", + "version": 0, + "name": "Discoverer Sentinel", + "description": "Long serving as the scout and exploration ship for the Argon fleet, the Discoverer saw little re-design or overhaul until the Jump Gate shutdown. The current model, an overall improvement on the model used before the shutdown, was designed in the Antigone Republic and made available to the Argon Federation as part of an ongoing technology exchange between the two allied factions.", + "size": "small", + "hull": 1700, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 1, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 7.611, + "inertia": { + "pitch": 1.11, + "yaw": 1.11, + "roll": 0.888 + }, + "drag": { + "forward": 3.509, + "reverse": 9.486, + "horizontal": 4.988, + "vertical": 4.988, + "pitch": 3.785, + "yaw": 3.785, + "roll": 3.785 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 648, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers", + "hatikvah", + "scaleplate" + ], + "price": { + "min": 90041, + "max": 121820, + "avg": 105930 + }, + "production": [ + { + "time": 8, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 44 + }, + { + "ware": "hullparts", + "amount": 98 + } + ] + } + ] + }, + { + "id": "ship_arg_s_trans_container_01_a", + "version": 0, + "name": "Courier Vanguard", + "description": "After years of outcry from many a trader about the lack of a small and speedy transporter, the up and coming ship manufacturer Jinko-Tekina have supplied both the Argon Federation and Antigone Memorial with the Courier-class s-ship, designed for transporting small numbers of valuable wares across a short distance in order to limit the risk of hijacking as well as to share the load of M- and L-sized transporters that make up the rest of the Argon merchant fleet.", + "size": "small", + "hull": 2200, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 5, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 17.157, + "inertia": { + "pitch": 4.163, + "yaw": 4.163, + "roll": 3.33 + }, + "drag": { + "forward": 5.526, + "reverse": 24.157, + "horizontal": 6.115, + "vertical": 6.115, + "pitch": 6.299, + "yaw": 6.299, + "roll": 6.299 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 1960, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "argon", + "buccaneers", + "scaleplate" + ], + "price": { + "min": 132396, + "max": 179124, + "avg": 155760 + }, + "production": [ + { + "time": 12, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 66 + }, + { + "ware": "hullparts", + "amount": 144 + } + ] + } + ] + }, + { + "id": "ship_arg_s_trans_container_01_b", + "version": 0, + "name": "Courier Sentinel", + "description": "After years of outcry from many a trader about the lack of a small and speedy transporter, the up and coming ship manufacturer Jinko-Tekina have supplied both the Argon Federation and Antigone Memorial with the Courier-class s-ship, designed for transporting small numbers of valuable wares across a short distance in order to limit the risk of hijacking as well as to share the load of M- and L-sized transporters that make up the rest of the Argon merchant fleet.", + "size": "small", + "hull": 2600, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 4, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 20.588, + "inertia": { + "pitch": 4.871, + "yaw": 4.871, + "roll": 3.897 + }, + "drag": { + "forward": 5.998, + "reverse": 27.588, + "horizontal": 7.338, + "vertical": 7.338, + "pitch": 7.371, + "yaw": 7.371, + "roll": 7.371 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 2352, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers", + "scaleplate" + ], + "price": { + "min": 158083, + "max": 213877, + "avg": 185980 + }, + "production": [ + { + "time": 14, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 78 + }, + { + "ware": "hullparts", + "amount": 172 + } + ] + } + ] + }, + { + "id": "ship_arg_s_trans_container_02_a", + "version": 0, + "name": "Callisto Vanguard", + "description": "While largely superseded by more modern courier designs, the Argon Callisto has a strange, cult attraction. In no area does this ship excel, and yet thousands of owners gather periodically at Hatikvah's Choice to show off their various paint jobs and module modifications.nnThe release of a Vanguard model did not make the ship materially more useful, however, Callisto aficionados do seem to appreciate it.", + "size": "small", + "hull": 2100, + "storage": { + "missile": 4, + "unit": 0 + }, + "people": 3, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 16.227, + "inertia": { + "pitch": 4.173, + "yaw": 4.173, + "roll": 3.338 + }, + "drag": { + "forward": 5.158, + "reverse": 21.477, + "horizontal": 12.665, + "vertical": 12.665, + "pitch": 6.008, + "yaw": 6.008, + "roll": 6.008 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 1030, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "argon", + "buccaneers", + "scaleplate" + ], + "price": { + "min": 68043, + "max": 92058, + "avg": 80050 + }, + "production": [ + { + "time": 6, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 34 + }, + { + "ware": "hullparts", + "amount": 74 + } + ] + } + ] + }, + { + "id": "ship_arg_s_trans_container_02_b", + "version": 0, + "name": "Callisto Sentinel", + "description": "While largely superseded by more modern courier designs, the Argon Callisto has a strange, cult attraction. In no area does this ship excel, and yet thousands of owners gather periodically at Hatikvah's Choice to show off their various paint jobs and module modifications.nnThe release of a Sentinel variant is seen by some as evidence that the manufacturer has found a means of monetising the Callisto's enthusiastic fan base, rather than an attempt to build a performance spacecraft.", + "size": "small", + "hull": 2500, + "storage": { + "missile": 4, + "unit": 0 + }, + "people": 2, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 19.472, + "inertia": { + "pitch": 4.877, + "yaw": 4.877, + "roll": 3.902 + }, + "drag": { + "forward": 5.604, + "reverse": 24.722, + "horizontal": 15.198, + "vertical": 15.198, + "pitch": 7.023, + "yaw": 7.023, + "roll": 7.023 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 1236, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers", + "scaleplate" + ], + "price": { + "min": 83687, + "max": 113223, + "avg": 98455 + }, + "production": [ + { + "time": 8, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 42 + }, + { + "ware": "hullparts", + "amount": 91 + } + ] + } + ] + }, + { + "id": "ship_arg_xl_builder_01_a", + "version": 0, + "name": "Mammoth Vanguard", + "description": "With the method of building stations having changed numerous times since the beginning of the Jump Gate shutdown, many have questioned the necessity for a dedicated building vessel, but the Mammoth has continued to find purpose.nnUndergoing changes with every iteration of the station building method, the last iteration of the Mammoth saw it transformed into more of a mobile platform than a ship; becoming immobile when deployed to a station construction site so that construction drones can easily be ferried from the ship to the site and back again.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 115000, + "storage": { + "missile": 40, + "unit": 100 + }, + "people": 219, + "purpose": "build", + "thruster": "extralarge", + "type": "builder", + "mass": 885.723, + "inertia": { + "pitch": 598.799, + "yaw": 598.799, + "roll": 479.039 + }, + "drag": { + "forward": 257.145, + "reverse": 1028.579, + "horizontal": 467.116, + "vertical": 467.116, + "pitch": 877.145, + "yaw": 877.145, + "roll": 877.145 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 50, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 7755200, + "max": 10492330, + "avg": 9123765 + }, + "production": [ + { + "time": 439, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2428 + }, + { + "ware": "hullparts", + "amount": 8545 + } + ] + } + ] + }, + { + "id": "ship_arg_xl_builder_01_b", + "version": 0, + "name": "Mammoth Sentinel", + "description": "With the method of building stations having changed numerous times since the beginning of the Jump Gate shutdown, many have questioned the necessity for a dedicated building vessel, but the Mammoth has continued to find purpose.nnUndergoing changes with every iteration of the station building method, the last iteration of the Mammoth saw it transformed into more of a mobile platform than a ship; becoming immobile when deployed to a station construction site so that construction drones can easily be ferried from the ship to the site and back again.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 138000, + "storage": { + "missile": 40, + "unit": 100 + }, + "people": 182, + "purpose": "build", + "thruster": "extralarge", + "type": "builder", + "mass": 1062.868, + "inertia": { + "pitch": 622.985, + "yaw": 622.985, + "roll": 498.388 + }, + "drag": { + "forward": 292.574, + "reverse": 1170.294, + "horizontal": 560.539, + "vertical": 560.539, + "pitch": 912.574, + "yaw": 912.574, + "roll": 912.574 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 50, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 9306200, + "max": 12590741, + "avg": 10948470 + }, + "production": [ + { + "time": 527, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2913 + }, + { + "ware": "hullparts", + "amount": 10254 + } + ] + } + ] + }, + { + "id": "ship_arg_xl_carrier_01_a", + "version": 0, + "name": "Colossus Vanguard", + "description": "The final ship shared with the Argon Federation by the Antigone Republic as part of their ongoing technology exchange, the new-look Colossus-class carrier was initially designed as such so that it didn't use much-needed resources that were sorely lacking in Antigone Memorial during the Jump Gate shutdown.nnWith an array of medium and small docks and launch tubes, the Antigone Colossus is a significant improvement on other Colossus models, able to deploy ships to the battlefield at a much higher rate and collect and store them far more efficiently, at the cost of some of its previous firepower.", + "size": "extralarge", + "explosionDamage": 1500, + "hull": 216000, + "storage": { + "missile": 320, + "unit": 20 + }, + "people": 123, + "purpose": "fight", + "thruster": "extralarge", + "type": "carrier", + "mass": 549.202, + "inertia": { + "pitch": 617.044, + "yaw": 617.044, + "roll": 493.635 + }, + "drag": { + "forward": 189.84, + "reverse": 759.362, + "horizontal": 259.503, + "vertical": 259.503, + "pitch": 809.84, + "yaw": 809.84, + "roll": 809.84 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_up_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_up_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_up_mid_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 19000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 8576543, + "max": 11603558, + "avg": 10090050 + }, + "production": [ + { + "time": 486, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2685 + }, + { + "ware": "hullparts", + "amount": 9450 + } + ] + } + ] + }, + { + "id": "ship_arg_xl_carrier_01_b", + "version": 0, + "name": "Colossus Sentinel", + "description": "The final ship shared with the Argon Federation by the Antigone Republic as part of their ongoing technology exchange, the new-look Colossus-class carrier was initially designed as such so that it didn't use much-needed resources that were sorely lacking in Antigone Memorial during the Jump Gate shutdown.nnWith an array of medium and small docks and launch tubes, the Antigone Colossus is a significant improvement on other Colossus models, able to deploy ships to the battlefield at a much higher rate and collect and store them far more efficiently, at the cost of some of its previous firepower.", + "size": "extralarge", + "explosionDamage": 1500, + "hull": 259000, + "storage": { + "missile": 320, + "unit": 20 + }, + "people": 102, + "purpose": "fight", + "thruster": "extralarge", + "type": "carrier", + "mass": 659.043, + "inertia": { + "pitch": 633.782, + "yaw": 633.782, + "roll": 507.026 + }, + "drag": { + "forward": 211.809, + "reverse": 847.234, + "horizontal": 311.403, + "vertical": 311.403, + "pitch": 831.809, + "yaw": 831.809, + "roll": 831.809 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_up_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_up_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_up_mid_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 22800, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 10287274, + "max": 13918076, + "avg": 12102675 + }, + "production": [ + { + "time": 583, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 3220 + }, + { + "ware": "hullparts", + "amount": 11335 + } + ] + } + ] + }, + { + "id": "ship_arg_xl_resupplier_01_a", + "version": 0, + "name": "Nomad Vanguard", + "description": "Very quickly developed during the course of the latest defence against the Xenon, the Nomad is effectively a mobile equipment dock, allowing combat ships to repair and restock and get back to the fight more quickly. This has greatly helped the efficiency of both the Argon Federation and Antigone Republic fleets, and has already begun to see clones created across both Teladi and Paranid space.nnThe ship is not self-sufficient, requiring a defensive escort not to be torn apart in combat. If it can be defended though, the Nomad can prove a devastating support ship.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 116000, + "storage": { + "missile": 40, + "unit": 100 + }, + "people": 220, + "purpose": "auxiliary", + "thruster": "extralarge", + "type": "resupplier", + "mass": 891.63, + "inertia": { + "pitch": 603.604, + "yaw": 603.604, + "roll": 482.883 + }, + "drag": { + "forward": 258.326, + "reverse": 1033.304, + "horizontal": 467.421, + "vertical": 467.421, + "pitch": 878.326, + "yaw": 878.326, + "roll": 878.326 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_right", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 29000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "argon", + "buccaneers" + ], + "price": { + "min": 7310438, + "max": 9890592, + "avg": 8600515 + }, + "production": [ + { + "time": 414, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2288 + }, + { + "ware": "hullparts", + "amount": 8055 + } + ] + } + ] + }, + { + "id": "ship_arg_xl_resupplier_01_b", + "version": 0, + "name": "Nomad Sentinel", + "description": "Very quickly developed during the course of the latest defence against the Xenon, the Nomad is effectively a mobile equipment dock, allowing combat ships to repair and restock and get back to the fight more quickly. This has greatly helped the efficiency of both the Argon Federation and Antigone Republic fleets, and has already begun to see clones created across both Teladi and Paranid space.nnThe ship is not self-sufficient, requiring a defensive escort not to be torn apart in combat. If it can be defended though, the Nomad can prove a devastating support ship.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 139000, + "storage": { + "missile": 40, + "unit": 100 + }, + "people": 183, + "purpose": "auxiliary", + "thruster": "extralarge", + "type": "resupplier", + "mass": 1069.956, + "inertia": { + "pitch": 628.114, + "yaw": 628.114, + "roll": 502.491 + }, + "drag": { + "forward": 293.991, + "reverse": 1175.965, + "horizontal": 560.905, + "vertical": 560.905, + "pitch": 913.991, + "yaw": 913.991, + "roll": 913.991 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_right", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 34800, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "antigone", + "buccaneers" + ], + "price": { + "min": 8766199, + "max": 11860151, + "avg": 10313175 + }, + "production": [ + { + "time": 496, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2744 + }, + { + "ware": "hullparts", + "amount": 9659 + } + ] + } + ] + }, + { + "id": "ship_gen_m_transdrone_container_01_a", + "version": 0, + "name": "Medium Drop Drone", + "description": "The Drop Drone is an essential system in terraforming operations, transporting the required surface-bound wares.nnThe Medium-sized model is an upgraded drone with additional capacity.", + "size": "medium", + "explosionDamage": 500, + "hull": 10000, + "storage": { + "missile": 0, + "unit": 0 + }, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 42, + "inertia": { + "pitch": 6, + "yaw": 6, + "roll": 4 + }, + "drag": { + "forward": 7, + "reverse": 29, + "horizontal": 26, + "vertical": 26, + "pitch": 13, + "yaw": 13, + "roll": 13 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "owners": [ + "player" + ], + "price": { + "min": 39610, + "max": 53590, + "avg": 46600 + }, + "production": [] + }, + { + "id": "ship_gen_m_tugboat_01_a", + "version": 0, + "name": "Manticore", + "description": "With the advent of the Dark, Avarice was forced to rely on a fleet of stranded ships that had been taken by surprise by the Jump Gate shutdown. Despite the almost immediate collapse of the Avarice company, capable scientists and engineers soon took it upon themselves to stabilise the system and work towards sustainability. They first established a functioning wharf for repairs and replacement, and conducted early experiments into developing a recycling economy in anticipation of dwindling resources within the system. The regeneration of this post-shutdown economy was quickly curtailed by the first Tides, which destroyed most stations and ships in the system in 800 (NT). However, a side-effect of the destructive solar event was the greatly increased energy output from solar panels, which allowed for a paradigm shift. The new Rakers economy emerging from Tidebreak, at the time the only station in Avarice, took advantage of this new abundance of energy. This, along with the use of local wrecks, enabled the rebuilding of a new, sustainable, closed-loop economy based on recycling, allowing them to further improve on previous ship and station module designs. Resettlement of Avarice began in 818 (NT), when the Northriver Company introduced Protectyon and the associated Protectyon Shield Generators to safeguard stations from the Tide. A few years later, in 825 (NT), the reconnection of Windfall gave the long-isolated Rakers the opportunity to trade with various Syndicate factions, but also exposed them to their piracy.nnWith the Jump Gate shutdown disconnecting Avarice the first Tug ship, a predecessor of the Manticore, was quickly developed by stranded Argon engineers to tug small ship wrecks to stations for further processing and make best use of the now very limited access to resources. With just one of those ships and their first version of the Scrap Processor and Scrap Recycler modules they ran a small enterprise with a high demand for energy and a slow output of Hull Parts and Claytronics. It was only after the first Tide destroyed most stations and ships in the system in 800 (NT) that their blueprints became the main pillar of Rakers economy and were further developed into the now widely used Manticore, utilising more powerful engines, and station modules. After messenger drones from Sacred Relic arrived, the people of Avarice themselves sent out messenger drones containing the blueprints to other disconnected systems, hoping to help those unfortunate enough to be stranded with no natural resources in reach. In doing this they created a local branch of the Alliance of the Word operating from Tidebreak. With the first Jump gate reconnection in 825 (NT) the Alliance of the Word would move to an own station in Windfall.", + "size": "medium", + "race": "argon", + "explosionDamage": 100, + "hull": 8000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 7, + "purpose": "salvage", + "thruster": "medium", + "type": "tug", + "mass": 63.562, + "inertia": { + "pitch": 10.577, + "yaw": 10.577, + "roll": 8.461 + }, + "drag": { + "forward": 30.344, + "reverse": 121.377, + "horizontal": 30.024, + "vertical": 30.024, + "pitch": 18.39, + "yaw": 18.39, + "roll": 18.39 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + } + ], + "cargo": [ + { + "max": 1360, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "scaleplate", + "teladi", + "pioneers", + "scavenger" + ], + "price": { + "min": 342342, + "max": 463168, + "avg": 402755 + }, + "production": [ + { + "time": 25, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 136 + }, + { + "ware": "hullparts", + "amount": 375 + } + ] + }, + { + "time": 25, + "amount": 1, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 47 + }, + { + "ware": "energycells", + "amount": 54 + }, + { + "ware": "siliconcarbide", + "amount": 9 + } + ] + } + ] + }, + { + "id": "ship_gen_s_fighter_01_a", + "version": 0, + "name": "Nodan Vanguard", + "description": "Perhaps the most interesting thing about the Nodan fighter is the lack of information available regarding its existence. It is only known to be available from the Alliance of the Word, and the organisation has remained tight-lipped as to the vessel's inception and design.nnThe design is somewhat quirky, with no clear antecedence related to other faction architecture. However, the Nodan has earned itself plaudits from committed dogfighters, based on its impressive speed, agility and deceleration.nnFor those seeking additional speed, the Nodan Vanguard model is available.", + "size": "small", + "hull": 3900, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 3, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 8.113, + "inertia": { + "pitch": 1.758, + "yaw": 1.758, + "roll": 1.407 + }, + "drag": { + "forward": 4.283, + "reverse": 15.113, + "horizontal": 3.285, + "vertical": 3.285, + "pitch": 3.126, + "yaw": 3.126, + "roll": 3.126 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 700, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance" + ], + "price": { + "min": 65986, + "max": 89275, + "avg": 77630 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 56 + }, + { + "ware": "hullparts", + "amount": 70 + } + ] + } + ] + }, + { + "id": "ship_gen_s_fighter_01_b", + "version": 0, + "name": "Nodan Sentinel", + "description": "Perhaps the most interesting thing about the Nodan fighter is the lack of information available regarding its existence. It is only known to be available from the Alliance of the Word, and the organisation has remained tight-lipped as to the vessel's inception and design.nnThe design is somewhat quirky, with no clear antecedence related to other faction architecture. However, the Nodan has earned itself plaudits from committed dogfighters, based on its impressive speed, agility and deceleration.nnThe Sentinel model provides the ship with a hardened superstructure.", + "size": "small", + "hull": 4600, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 9.736, + "inertia": { + "pitch": 2.015, + "yaw": 2.015, + "roll": 1.612 + }, + "drag": { + "forward": 4.506, + "reverse": 16.736, + "horizontal": 3.942, + "vertical": 3.942, + "pitch": 3.582, + "yaw": 3.582, + "roll": 3.582 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 840, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance" + ], + "price": { + "min": 81082, + "max": 109699, + "avg": 95390 + }, + "production": [ + { + "time": 13, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 69 + }, + { + "ware": "hullparts", + "amount": 86 + } + ] + } + ] + }, + { + "id": "ship_gen_s_transdrone_container_01_a", + "version": 0, + "name": "Small Drop Drone", + "description": "The Drop Drone is an essential system in terraforming operations, transporting the required surface-bound wares.", + "size": "small", + "explosionDamage": 100, + "hull": 2200, + "storage": { + "missile": 0, + "unit": 0 + }, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 1, + "inertia": { + "pitch": 3, + "yaw": 17, + "roll": 4 + }, + "drag": { + "forward": 5.5, + "reverse": 24, + "horizontal": 6, + "vertical": 6, + "pitch": 6, + "yaw": 4, + "roll": 6 + }, + "engines": [ + { + "size": "small", + "hittable": false + } + ], + "owners": [ + "player" + ], + "price": { + "min": 19805, + "max": 26795, + "avg": 23300 + }, + "production": [] + }, + { + "id": "ship_kha_m_fighter_01_a", + "version": 0, + "name": "Queen's Guard", + "description": "Armed with the frighteningly accurate Kyon Emitter, the Kha'ak Queen's Guard most commonly attacks in swarm formation to devastating effect.nnThe pseudo-insectile nature of the Kha'ak gave rise to the theory that they are directly or indirectly controlled by a Queen. This, in turn, inspired the name given to this vessel. However, the theory is as yet unverified.", + "size": "medium", + "race": "khaak", + "explosionDamage": 200, + "hull": 4000, + "storage": { + "missile": 0, + "unit": 0 + }, + "people": 0, + "purpose": "fight", + "thruster": "medium", + "type": "heavyfighter", + "mass": 16, + "inertia": { + "pitch": 2, + "yaw": 2, + "roll": 2 + }, + "drag": { + "forward": 3.25, + "reverse": 35, + "horizontal": 3, + "vertical": 3, + "pitch": 7, + "yaw": 6, + "roll": 6 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "owners": [ + "khaak" + ], + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "production": [] + }, + { + "id": "ship_kha_m_fighter_02_a", + "version": 0, + "name": "Hive Guard", + "description": "The diabolical pyramids of the Kha'ak are a perpetual threat. The Hive Guard is a heavy fighter and one of the more disturbing Kha'ak ships that may appear on a pilot's scanner.", + "size": "medium", + "race": "khaak", + "explosionDamage": 200, + "hull": 3000, + "storage": { + "missile": 0, + "unit": 0 + }, + "people": 0, + "purpose": "fight", + "thruster": "medium", + "type": "heavyfighter", + "mass": 12, + "inertia": { + "pitch": 2, + "yaw": 2, + "roll": 2 + }, + "drag": { + "forward": 2.5, + "reverse": 30, + "horizontal": 3, + "vertical": 3, + "pitch": 7, + "yaw": 6, + "roll": 6 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "owners": [ + "khaak" + ], + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "production": [] + }, + { + "id": "ship_kha_s_fighter_01_a", + "version": 0, + "name": "Protector", + "description": "The appearance of the Kha'ak can trigger a sinking feeling in the stomach or stomachs of any pilot, however accomplished. These \"space bugs\", as they are often described, attack in mystifyingly geometric vessels, and have, thus far, rebuffed all attempts at communication.nnThis fighter has been dubbed the Protector and, like all Kha'ak ships, it is well-armed and trigger-happy.", + "size": "small", + "race": "khaak", + "hull": 800, + "storage": { + "missile": 0, + "unit": 0 + }, + "people": 0, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 3, + "inertia": { + "pitch": 1, + "yaw": 1, + "roll": 1 + }, + "drag": { + "forward": 1, + "reverse": 17, + "horizontal": 1, + "vertical": 3, + "pitch": 1, + "yaw": 2, + "roll": 2 + }, + "engines": [ + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "owners": [ + "khaak" + ], + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "production": [] + }, + { + "id": "ship_kha_s_fighter_02_a", + "version": 0, + "name": "Forager", + "description": "The Kha'ak Forager is a lightning fast and highly manoeuvrable scout ship, with little accompanying weaponry. While notionally fragile, Commonwealth pilots report that the Forager is notoriously hard to catch and target.", + "size": "small", + "race": "khaak", + "hull": 600, + "storage": { + "missile": 0, + "unit": 0 + }, + "people": 0, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 2.5, + "inertia": { + "pitch": 1, + "yaw": 1, + "roll": 1 + }, + "drag": { + "forward": 1, + "reverse": 17, + "horizontal": 1, + "vertical": 3, + "pitch": 1, + "yaw": 2, + "roll": 2 + }, + "engines": [ + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "owners": [ + "khaak" + ], + "price": { + "min": 0, + "max": 0, + "avg": 0 + }, + "production": [] + }, + { + "id": "ship_par_l_destroyer_01_a", + "version": 0, + "name": "Odysseus Vanguard", + "description": "The Paranid Odysseus is a highly regarded destroyer with an often consequential presence in large scale engagements.nnThe latest version's architect is the notoriously sensitive Olmanckabssit, who is reputed to fly into a rage at the slightest mention of the vessel's resemblance to a hair dryer.nnThe Odysseus Vanguard has enhanced speed.", + "size": "large", + "explosionDamage": 1000, + "hull": 99000, + "storage": { + "missile": 160, + "unit": 10 + }, + "people": 47, + "purpose": "fight", + "thruster": "large", + "type": "destroyer", + "mass": 209.751, + "inertia": { + "pitch": 105.68, + "yaw": 105.68, + "roll": 84.544 + }, + "drag": { + "forward": 76.828, + "reverse": 307.313, + "horizontal": 68.897, + "vertical": 68.897, + "pitch": 108.95, + "yaw": 108.95, + "roll": 108.95 + }, + "engines": [ + { + "group": "group_rear_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_rear_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_rear_up_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_rear_up_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_rear_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_front_down_down", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid2", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_down", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 1700, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 4276299, + "max": 5785581, + "avg": 5030940 + }, + "production": [ + { + "time": 195, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1075 + }, + { + "ware": "hullparts", + "amount": 4732 + } + ] + } + ] + }, + { + "id": "ship_par_l_destroyer_01_b", + "version": 0, + "name": "Odysseus Sentinel", + "description": "The Paranid Odysseus is a highly regarded destroyer with an often consequential presence in large scale engagements.nnThe latest version's architect is the notoriously sensitive Olmanckabssit, who is reputed to fly into a rage at the slightest mention of the vessel's resemblance to a hair dryer.nnThe Sentinel model boasts greater resilience.", + "size": "large", + "explosionDamage": 1000, + "hull": 119000, + "storage": { + "missile": 160, + "unit": 10 + }, + "people": 39, + "purpose": "fight", + "thruster": "large", + "type": "destroyer", + "mass": 251.701, + "inertia": { + "pitch": 113.818, + "yaw": 113.818, + "roll": 91.055 + }, + "drag": { + "forward": 84.694, + "reverse": 338.776, + "horizontal": 82.676, + "vertical": 82.676, + "pitch": 117.34, + "yaw": 117.34, + "roll": 117.34 + }, + "engines": [ + { + "group": "group_rear_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_rear_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_rear_up_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_rear_up_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_rear_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_front_down_down", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid2", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_down", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 2040, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 5135781, + "max": 6948409, + "avg": 6042095 + }, + "production": [ + { + "time": 234, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1292 + }, + { + "ware": "hullparts", + "amount": 5683 + } + ] + } + ] + }, + { + "id": "ship_par_l_destroyer_02_a", + "version": 0, + "name": "Odysseus E", + "description": "The Paranid Odysseus is a highly regarded destroyer with an often consequential presence in large scale engagements.nnThe E-model variation was introduced at a later date, and updated the superficial design to bring it up to par with Commonwealth standards that were established during the period of disconnection. The precursor version is slowly being phased out, but will remain available for interested third parties.nnThe Odysseus E-model prioritises hardpoints, however, it suffers from reduced storage capacity as a consequence.", + "size": "large", + "race": "paranid", + "explosionDamage": 1000, + "hull": 128000, + "storage": { + "missile": 160, + "unit": 10 + }, + "people": 60, + "purpose": "fight", + "thruster": "large", + "type": "destroyer", + "mass": 326.351, + "inertia": { + "pitch": 199.622, + "yaw": 199.622, + "roll": 159.698 + }, + "drag": { + "forward": 69.084, + "reverse": 394.763, + "horizontal": 83.274, + "vertical": 83.274, + "pitch": 132.27, + "yaw": 132.27, + "roll": 132.27 + }, + "engines": [ + { + "group": "group_rear_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_rear_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_rear_up_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_rear_up_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_rear_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_up_mid", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_front_down_down", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid2", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_down", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 2600, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 2, + "size": "medium" + }, + { + "capacity": 4, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "price": { + "min": 4412478, + "max": 5969823, + "avg": 5191150 + }, + "production": [ + { + "time": 276, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1066 + }, + { + "ware": "hullparts", + "amount": 4886 + } + ] + } + ] + }, + { + "id": "ship_par_l_miner_liquid_01_a", + "version": 0, + "name": "Chthonios (Gas) Vanguard", + "description": "The Chthonios miner boasts impressive speed. The economics of running a large production empire require the optimisation of miners' speed versus cargo space. With sufficient speed, a constant stream of smaller deliveries of resources can keep mega-factories running more efficiently than if they are left waiting for larger shipments.nnThe Chthonios is tailored for just this style of \"just-in-time\" logistics management, and is available in models able to collect gases or minerals. The Vanguard variant adds even more speed.", + "size": "large", + "explosionDamage": 800, + "hull": 23000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 40, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 180.944, + "inertia": { + "pitch": 110.571, + "yaw": 110.571, + "roll": 88.456 + }, + "drag": { + "forward": 49.999, + "reverse": 285.708, + "horizontal": 137.021, + "vertical": 137.021, + "pitch": 132.14, + "yaw": 132.14, + "roll": 132.14 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 32000, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "hatikvah", + "paranid", + "trinity" + ], + "price": { + "min": 981657, + "max": 1328124, + "avg": 1154890 + }, + "production": [ + { + "time": 74, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 407 + }, + { + "ware": "hullparts", + "amount": 1074 + } + ] + } + ] + }, + { + "id": "ship_par_l_miner_liquid_01_b", + "version": 0, + "name": "Chthonios (Gas) Sentinel", + "description": "The Chthonios miner boasts impressive speed. The economics of running a large production empire require the optimisation of miners' speed versus cargo space. With sufficient speed, a constant stream of smaller deliveries of resources can keep mega-factories running more efficiently than if they are left waiting for larger shipments.nnThe Chthonios is tailored for just this style of \"just-in-time\" logistics management, and is available in models able to collect gases or minerals. The Sentinel variant enhances structural robustness in case miners encounter hostiles.", + "size": "large", + "explosionDamage": 800, + "hull": 28000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 33, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 217.132, + "inertia": { + "pitch": 121.472, + "yaw": 121.472, + "roll": 97.178 + }, + "drag": { + "forward": 54.749, + "reverse": 312.849, + "horizontal": 164.425, + "vertical": 164.425, + "pitch": 145.168, + "yaw": 145.168, + "roll": 145.168 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 38400, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "hatikvah", + "holyorder", + "trinity" + ], + "price": { + "min": 1186405, + "max": 1605136, + "avg": 1395770 + }, + "production": [ + { + "time": 89, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 492 + }, + { + "ware": "hullparts", + "amount": 1298 + } + ] + } + ] + }, + { + "id": "ship_par_l_miner_liquid_02_a", + "version": 0, + "name": "Chthonios E (Gas)", + "description": "The Chthonios miner boasts impressive speed. The economics of running a large production empire require the optimisation of miners' speed versus cargo space. With sufficient speed, a constant stream of smaller deliveries of resources can keep mega-factories running more efficiently than if they are left waiting for larger shipments.nnThe Chthonios is tailored for just this style of \"just-in-time\" logistics management, and is available in models able to collect gases or minerals.nnThe E-model variation was introduced at a later date, and updated the superficial design to bring it up to par with Commonwealth standards that were established during the period of disconnection. The precursor version is slowly being phased out, but will remain available for interested third parties.", + "size": "large", + "explosionDamage": 800, + "hull": 29000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 41, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 219.541, + "inertia": { + "pitch": 112.601, + "yaw": 112.601, + "roll": 90.081 + }, + "drag": { + "forward": 55.065, + "reverse": 314.656, + "horizontal": 65.231, + "vertical": 65.231, + "pitch": 110.908, + "yaw": 110.908, + "roll": 110.908 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 35200, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 4, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "price": { + "min": 1352877, + "max": 1830363, + "avg": 1591620 + }, + "production": [ + { + "time": 91, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 406 + }, + { + "ware": "hullparts", + "amount": 1492 + } + ] + } + ] + }, + { + "id": "ship_par_l_miner_solid_01_a", + "version": 0, + "name": "Chthonios (Mineral) Vanguard", + "description": "The Chthonios miner boasts impressive speed. The economics of running a large production empire require the optimisation of miners' speed versus cargo space. With sufficient speed, a constant stream of smaller deliveries of resources can keep mega-factories running more efficiently than if they are left waiting for larger shipments.nnThe Chthonios is tailored for just this style of \"just-in-time\" logistics management, and is available in models able to collect gases or minerals. The Vanguard variant adds even more speed.", + "size": "large", + "explosionDamage": 800, + "hull": 23000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 40, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 180.944, + "inertia": { + "pitch": 110.571, + "yaw": 110.571, + "roll": 88.456 + }, + "drag": { + "forward": 49.999, + "reverse": 285.708, + "horizontal": 137.021, + "vertical": 137.021, + "pitch": 132.14, + "yaw": 132.14, + "roll": 132.14 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid2", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_up_mid2", + "size": "large", + "hittable": true, + "types": [ + "mining", + "standard" + ] + } + ], + "cargo": [ + { + "max": 32000, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "hatikvah", + "paranid", + "trinity" + ], + "price": { + "min": 981657, + "max": 1328124, + "avg": 1154890 + }, + "production": [ + { + "time": 74, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 407 + }, + { + "ware": "hullparts", + "amount": 1074 + } + ] + } + ] + }, + { + "id": "ship_par_l_miner_solid_01_b", + "version": 0, + "name": "Chthonios (Mineral) Sentinel", + "description": "The Chthonios miner boasts impressive speed. The economics of running a large production empire require the optimisation of miners' speed versus cargo space. With sufficient speed, a constant stream of smaller deliveries of resources can keep mega-factories running more efficiently than if they are left waiting for larger shipments.nnThe Chthonios is tailored for just this style of \"just-in-time\" logistics management, and is available in models able to collect gases or minerals. The Sentinel variant enhances structural robustness in case miners encounter hostiles.", + "size": "large", + "explosionDamage": 800, + "hull": 28000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 33, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 217.132, + "inertia": { + "pitch": 121.472, + "yaw": 121.472, + "roll": 97.178 + }, + "drag": { + "forward": 54.749, + "reverse": 312.849, + "horizontal": 164.425, + "vertical": 164.425, + "pitch": 145.168, + "yaw": 145.168, + "roll": 145.168 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid2", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_up_mid2", + "size": "large", + "hittable": true, + "types": [ + "mining", + "standard" + ] + } + ], + "cargo": [ + { + "max": 38400, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "hatikvah", + "holyorder", + "trinity" + ], + "price": { + "min": 1186405, + "max": 1605136, + "avg": 1395770 + }, + "production": [ + { + "time": 89, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 492 + }, + { + "ware": "hullparts", + "amount": 1298 + } + ] + } + ] + }, + { + "id": "ship_par_l_miner_solid_02_a", + "version": 0, + "name": "Chthonios E (Mineral)", + "description": "The Chthonios miner boasts impressive speed. The economics of running a large production empire require the optimisation of miners' speed versus cargo space. With sufficient speed, a constant stream of smaller deliveries of resources can keep mega-factories running more efficiently than if they are left waiting for larger shipments.nnThe Chthonios is tailored for just this style of \"just-in-time\" logistics management, and is available in models able to collect gases or minerals.nnThe E-model variation was introduced at a later date, and updated the superficial design to bring it up to par with Commonwealth standards that were established during the period of disconnection. The precursor version is slowly being phased out, but will remain available for interested third parties.", + "size": "large", + "explosionDamage": 800, + "hull": 29000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 41, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 219.541, + "inertia": { + "pitch": 112.601, + "yaw": 112.601, + "roll": 90.08 + }, + "drag": { + "forward": 55.065, + "reverse": 314.655, + "horizontal": 65.232, + "vertical": 65.232, + "pitch": 110.908, + "yaw": 110.908, + "roll": 110.908 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_up_mid", + "size": "large", + "hittable": true, + "types": [ + "mining", + "standard" + ] + } + ], + "cargo": [ + { + "max": 34960, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 4, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "price": { + "min": 1352881, + "max": 1830369, + "avg": 1591625 + }, + "production": [ + { + "time": 91, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 393 + }, + { + "ware": "hullparts", + "amount": 1493 + } + ] + } + ] + }, + { + "id": "ship_par_l_trans_container_01_a", + "version": 0, + "name": "Helios Vanguard", + "description": "The reasonably fast Helios freighter is a staple of Paranid logistics operations. While it cannot be said to be best-in-class on any single performance metric, it remains a sound choice overall.nnThe enduring popularity of this heavy freighter is believed to be founded on its sleek lines and attractive profile. Freighter captains are no rock stars, but the Helios does turn heads. It is not uncommon for youngsters to seek out berthing Helios vessels, begging for a ship tour.nnThe Vanguard model is the fastest ship in the Helios line.", + "size": "large", + "explosionDamage": 800, + "hull": 37000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 71, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 287.875, + "inertia": { + "pitch": 92.135, + "yaw": 92.135, + "roll": 73.708 + }, + "drag": { + "forward": 91.477, + "reverse": 365.906, + "horizontal": 140.475, + "vertical": 140.475, + "pitch": 124.575, + "yaw": 124.575, + "roll": 124.575 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 21000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 1696396, + "max": 2295124, + "avg": 1995760 + }, + "production": [ + { + "time": 127, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 703 + }, + { + "ware": "hullparts", + "amount": 1856 + } + ] + } + ] + }, + { + "id": "ship_par_l_trans_container_01_b", + "version": 0, + "name": "Helios Sentinel", + "description": "The reasonably fast Helios freighter is a staple of Paranid logistics operations. While it cannot be said to be best-in-class on any single performance metric, it remains a sound choice overall.nnThe enduring popularity of this heavy freighter is believed to be founded on its sleek lines and attractive profile. Freighter captains are no rock stars, but the Helios does turn heads. It is not uncommon for youngsters to seek out berthing Helios vessels, begging for a ship tour.nnThe additional cargo space offered by the Helios Sentinel improves long term trading efficiency.", + "size": "large", + "explosionDamage": 800, + "hull": 45000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 59, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 345.45, + "inertia": { + "pitch": 100.651, + "yaw": 100.651, + "roll": 80.521 + }, + "drag": { + "forward": 102.272, + "reverse": 409.087, + "horizontal": 168.57, + "vertical": 168.57, + "pitch": 136.09, + "yaw": 136.09, + "roll": 136.09 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 25200, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 2049189, + "max": 2772432, + "avg": 2410810 + }, + "production": [ + { + "time": 154, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 849 + }, + { + "ware": "hullparts", + "amount": 2242 + } + ] + } + ] + }, + { + "id": "ship_par_l_trans_container_02_a", + "version": 0, + "name": "Selene Vanguard", + "description": "The Paranid Selene is a modest heavy freighter lacking notable characteristics. If traders wish to move things, it does so without fanfare.nnThe Vanguard model was developed in an attempt to inspire some excitement around the Selene. Most commentators agree that this failed.", + "size": "large", + "explosionDamage": 800, + "hull": 33000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 71, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 259.087, + "inertia": { + "pitch": 87.877, + "yaw": 87.877, + "roll": 70.301 + }, + "drag": { + "forward": 86.079, + "reverse": 344.316, + "horizontal": 126.428, + "vertical": 126.428, + "pitch": 118.817, + "yaw": 118.817, + "roll": 118.817 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 19000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 1696396, + "max": 2295124, + "avg": 1995760 + }, + "production": [ + { + "time": 108, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 703 + }, + { + "ware": "hullparts", + "amount": 1856 + } + ] + } + ] + }, + { + "id": "ship_par_l_trans_container_02_b", + "version": 0, + "name": "Selene Sentinel", + "description": "The Paranid Selene is a modest heavy freighter lacking notable characteristics. If traders wish to move things, it does so without fanfare.nnThe Sentinel model raises the logistical performance of the Selene to levels that are generally considered to be adequate.", + "size": "large", + "explosionDamage": 800, + "hull": 40000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 59, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 310.905, + "inertia": { + "pitch": 95.542, + "yaw": 95.542, + "roll": 76.433 + }, + "drag": { + "forward": 95.795, + "reverse": 383.179, + "horizontal": 151.713, + "vertical": 151.713, + "pitch": 129.181, + "yaw": 129.181, + "roll": 129.181 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 22800, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 2049189, + "max": 2772432, + "avg": 2410810 + }, + "production": [ + { + "time": 130, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 849 + }, + { + "ware": "hullparts", + "amount": 2242 + } + ] + } + ] + }, + { + "id": "ship_par_l_trans_container_03_a", + "version": 0, + "name": "Helios E", + "description": "The reasonably fast Helios freighter is a staple of Paranid logistics operations. While it cannot be said to be best-in-class on any single performance metric, it remains a sound choice overall.nnThe enduring popularity of this heavy freighter is believed to be founded on its sleek lines and attractive profile. Freighter captains are no rock stars, but the Helios does turn heads. It is not uncommon for youngsters to seek out berthing Helios vessels, begging for a ship tour.nnThe E-model variation was introduced at a later date, and updated the superficial design to bring it up to par with Commonwealth standards that were established during the period of disconnection. The precursor version is slowly being phased out, but will remain available for interested third parties.", + "size": "large", + "explosionDamage": 800, + "hull": 55000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 96, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 420.618, + "inertia": { + "pitch": 181.455, + "yaw": 181.455, + "roll": 145.164 + }, + "drag": { + "forward": 116.366, + "reverse": 465.464, + "horizontal": 70.977, + "vertical": 70.977, + "pitch": 151.124, + "yaw": 151.124, + "roll": 151.124 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 25500, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 2, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "price": { + "min": 2949500, + "max": 3990500, + "avg": 3470000 + }, + "production": [ + { + "time": 178, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 739 + }, + { + "ware": "hullparts", + "amount": 3264 + } + ] + } + ] + }, + { + "id": "ship_par_m_corvette_01_a", + "version": 0, + "name": "Nemesis Vanguard", + "description": "The Paranid Nemesis is a highly sought-after corvette, boasting an attractive balance of speed, firepower and general versatility. The overall adaptability and build quality of the production line vessel ensure that the loadout options selected by owners can have a tangible impact on the tactical use-cases available.nnThe surprisingly fleet-footed base vessel can itself be optimised for speed by securing the Vanguard model.", + "size": "medium", + "explosionDamage": 500, + "hull": 10000, + "storage": { + "missile": 40, + "unit": 0 + }, + "people": 8, + "purpose": "fight", + "thruster": "medium", + "type": "corvette", + "mass": 24.394, + "inertia": { + "pitch": 3.214, + "yaw": 3.214, + "roll": 2.572 + }, + "drag": { + "forward": 3.547, + "reverse": 14.188, + "horizontal": 13.02, + "vertical": 13.02, + "pitch": 7.739, + "yaw": 7.739, + "roll": 7.739 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 560, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 528951, + "max": 715639, + "avg": 622295 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 111 + }, + { + "ware": "hullparts", + "amount": 587 + } + ] + } + ] + }, + { + "id": "ship_par_m_corvette_01_b", + "version": 0, + "name": "Nemesis Sentinel", + "description": "The Paranid Nemesis is a highly sought-after corvette, boasting an attractive balance of speed, firepower and general versatility. The overall adaptability and build quality of the production line vessel ensure that the loadout options selected by owners can have a tangible impact on the tactical use-cases available.nnThe Sentinel edition of the Nemesis offers additional resilience, which may be preferred by those operating in live fire environments.", + "size": "medium", + "explosionDamage": 500, + "hull": 12000, + "storage": { + "missile": 40, + "unit": 0 + }, + "people": 6, + "purpose": "fight", + "thruster": "medium", + "type": "corvette", + "mass": 29.273, + "inertia": { + "pitch": 3.67, + "yaw": 3.67, + "roll": 2.936 + }, + "drag": { + "forward": 4.05, + "reverse": 16.2, + "horizontal": 15.624, + "vertical": 15.624, + "pitch": 8.836, + "yaw": 8.836, + "roll": 8.836 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 672, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 634372, + "max": 858268, + "avg": 746320 + }, + "production": [ + { + "time": 24, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 133 + }, + { + "ware": "hullparts", + "amount": 704 + } + ] + } + ] + }, + { + "id": "ship_par_m_frigate_01_a", + "version": 0, + "name": "Gorgon Vanguard", + "description": "The Gorgon is a high performance Paranid frigate, developed in response to the threat posed by the Split Dragon.nnA popular escort vessel for capital ships, it can also provide the backbone for offensive fleets.nnThe Vanguard model is generally preferred for tactical offence.", + "size": "medium", + "explosionDamage": 200, + "hull": 19000, + "storage": { + "missile": 100, + "unit": 8 + }, + "people": 16, + "purpose": "fight", + "thruster": "medium", + "type": "frigate", + "mass": 40.012, + "inertia": { + "pitch": 4.791, + "yaw": 4.791, + "roll": 3.833 + }, + "drag": { + "forward": 10.315, + "reverse": 28.882, + "horizontal": 7.708, + "vertical": 7.708, + "pitch": 8.752, + "yaw": 8.752, + "roll": 8.752 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 1630, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 1, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 933555, + "max": 1263045, + "avg": 1098300 + }, + "production": [ + { + "time": 35, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 196 + }, + { + "ware": "hullparts", + "amount": 1036 + } + ] + } + ] + }, + { + "id": "ship_par_m_frigate_01_b", + "version": 0, + "name": "Gorgon Sentinel", + "description": "The Gorgon is a high performance Paranid frigate, developed in response to the threat posed by the Split Dragon.nnA popular escort vessel for capital ships, it can also provide the backbone for offensive fleets.nnThe Gorgon Sentinel is tailored for defensive operations, such as escort missions or station patrol.", + "size": "medium", + "explosionDamage": 200, + "hull": 23000, + "storage": { + "missile": 100, + "unit": 8 + }, + "people": 13, + "purpose": "fight", + "thruster": "medium", + "type": "frigate", + "mass": 48.014, + "inertia": { + "pitch": 5.557, + "yaw": 5.557, + "roll": 4.446 + }, + "drag": { + "forward": 11.965, + "reverse": 33.503, + "horizontal": 9.249, + "vertical": 9.249, + "pitch": 10.152, + "yaw": 10.152, + "roll": 10.152 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 1956, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 1, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 1124584, + "max": 1521496, + "avg": 1323040 + }, + "production": [ + { + "time": 43, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 236 + }, + { + "ware": "hullparts", + "amount": 1248 + } + ] + } + ] + }, + { + "id": "ship_par_m_miner_liquid_01_a", + "version": 0, + "name": "Plutus (Gas) Vanguard", + "description": "The Paranid Plutus is a decidedly humble, medium-sized resource extractor, available in both mineral and gas extraction formats.nnThe Plutus is available in the Vanguard variation. This gas extractor is therefore marginally faster than its sister vessels.", + "size": "medium", + "explosionDamage": 100, + "hull": 4000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 10, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 32.96, + "inertia": { + "pitch": 11.165, + "yaw": 11.165, + "roll": 8.932 + }, + "drag": { + "forward": 3.101, + "reverse": 17.721, + "horizontal": 22.484, + "vertical": 22.484, + "pitch": 17.332, + "yaw": 17.332, + "roll": 17.332 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 9600, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "hatikvah", + "paranid", + "trinity" + ], + "price": { + "min": 113059, + "max": 152962, + "avg": 133010 + }, + "production": [ + { + "time": 12, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 69 + }, + { + "ware": "hullparts", + "amount": 122 + } + ] + } + ] + }, + { + "id": "ship_par_m_miner_liquid_01_b", + "version": 0, + "name": "Plutus (Gas) Sentinel", + "description": "The Paranid Plutus is a decidedly humble, medium-sized resource extractor, available in both mineral and gas extraction formats.nnThis gas collector boasts increased resource storage capacity in the Sentinel model.", + "size": "medium", + "explosionDamage": 100, + "hull": 5000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 8, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 39.553, + "inertia": { + "pitch": 13.076, + "yaw": 13.076, + "roll": 10.461 + }, + "drag": { + "forward": 3.577, + "reverse": 20.441, + "horizontal": 26.981, + "vertical": 26.981, + "pitch": 20.299, + "yaw": 20.299, + "roll": 20.299 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 11520, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "hatikvah", + "holyorder", + "trinity" + ], + "price": { + "min": 138129, + "max": 186881, + "avg": 162505 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 85 + }, + { + "ware": "hullparts", + "amount": 149 + } + ] + } + ] + }, + { + "id": "ship_par_m_miner_solid_01_a", + "version": 0, + "name": "Plutus (Mineral) Vanguard", + "description": "The Paranid Plutus is a decidedly humble, medium-sized resource extractor, available in both mineral and gas extraction formats.nnThe asteroid mining Vanguard model's enhancements do little to negate the vessel's understated presence. The ship remains eminently forgettable.", + "size": "medium", + "explosionDamage": 100, + "hull": 4000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 10, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 32.961, + "inertia": { + "pitch": 11.165, + "yaw": 11.165, + "roll": 8.932 + }, + "drag": { + "forward": 3.101, + "reverse": 17.721, + "horizontal": 22.484, + "vertical": 22.484, + "pitch": 17.332, + "yaw": 17.332, + "roll": 17.332 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + } + ], + "cargo": [ + { + "max": 9000, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "hatikvah", + "paranid", + "trinity" + ], + "price": { + "min": 113059, + "max": 152962, + "avg": 133010 + }, + "production": [ + { + "time": 12, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 69 + }, + { + "ware": "hullparts", + "amount": 122 + } + ] + } + ] + }, + { + "id": "ship_par_m_miner_solid_01_b", + "version": 0, + "name": "Plutus (Mineral) Sentinel", + "description": "The Paranid Plutus is a decidedly humble, medium-sized resource extractor, available in both mineral and gas extraction formats.nnThe mining variant is available in a Sentinel model, which provides a helpful increase in solid storage capacity.", + "size": "medium", + "explosionDamage": 100, + "hull": 5000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 8, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 39.553, + "inertia": { + "pitch": 11.165, + "yaw": 13.076, + "roll": 10.461 + }, + "drag": { + "forward": 3.577, + "reverse": 20.441, + "horizontal": 26.981, + "vertical": 26.981, + "pitch": 20.299, + "yaw": 20.299, + "roll": 20.299 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + } + ], + "cargo": [ + { + "max": 11520, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "hatikvah", + "holyorder", + "trinity" + ], + "price": { + "min": 138129, + "max": 186881, + "avg": 162505 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 85 + }, + { + "ware": "hullparts", + "amount": 149 + } + ] + } + ] + }, + { + "id": "ship_par_m_trans_container_01_a", + "version": 0, + "name": "Demeter Vanguard", + "description": "This light freighter has a dark reputation. While verifiable facts are absent, pilots talk in hushed voices of an early Demeter outing. An apparently wealthy, yet eccentric and reclusive, Teladi mogul commissioned a freelance Demeter Captain to transport him and his cargo from Ianamus Zura to Argon Prime.nnRumour has it that the ship was subsequently found floating in space in the Silent Witness system. The Demeter was found with no Captain, crew, customer or cargo; no sign of attack or damage, and with completely cleared ship logs. No-one has heard from any of them since.nnThe Demeter remains popular with freighter captains untroubled by superstition. The Vanguard offers enhanced offensive capability for operations in more challenging sectors.", + "size": "medium", + "explosionDamage": 100, + "hull": 5000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 19, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 44.808, + "inertia": { + "pitch": 6.666, + "yaw": 6.666, + "roll": 5.333 + }, + "drag": { + "forward": 5.652, + "reverse": 22.608, + "horizontal": 26.533, + "vertical": 26.533, + "pitch": 13.702, + "yaw": 13.702, + "roll": 13.702 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 7900, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 150153, + "max": 203148, + "avg": 176650 + }, + "production": [ + { + "time": 17, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 92 + }, + { + "ware": "hullparts", + "amount": 162 + } + ] + } + ] + }, + { + "id": "ship_par_m_trans_container_01_b", + "version": 0, + "name": "Demeter Sentinel", + "description": "This light freighter has a dark reputation. While verifiable facts are absent, pilots talk in hushed voices of an early Demeter outing. An apparently wealthy, yet eccentric and reclusive, Teladi mogul commissioned a freelance Demeter Captain to transport him and his cargo from Ianamus Zura to Argon Prime.nnRumour has it that the ship was subsequently found floating in space in the Silent Witness system. The Demeter was found with no Captain, crew, customer or cargo; no sign of attack or damage, and with completely cleared ship logs. No-one has heard from any of them since.nnThe Demeter remains popular with freighter captains untroubled by superstition. The Sentinel model boasts additional resilience, tailored for commanders operating trade runs under fire.", + "size": "medium", + "explosionDamage": 100, + "hull": 7000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 15, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 53.77, + "inertia": { + "pitch": 7.756, + "yaw": 7.756, + "roll": 6.205 + }, + "drag": { + "forward": 6.576, + "reverse": 26.305, + "horizontal": 31.84, + "vertical": 31.84, + "pitch": 15.942, + "yaw": 15.942, + "roll": 15.942 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 9480, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 194693, + "max": 263408, + "avg": 229050 + }, + "production": [ + { + "time": 22, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 120 + }, + { + "ware": "hullparts", + "amount": 210 + } + ] + } + ] + }, + { + "id": "ship_par_m_trans_container_02_a", + "version": 0, + "name": "Hermes Vanguard", + "description": "The Hermes is a medium-sized Paranid-designed journeyman freighter with reasonable performance.nnWhile the Vanguard offers additional speed, even this model is widely considered to be unsuited to blockade running.", + "size": "medium", + "explosionDamage": 100, + "hull": 5000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 20, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 40.327, + "inertia": { + "pitch": 6.121, + "yaw": 6.121, + "roll": 4.897 + }, + "drag": { + "forward": 5.19, + "reverse": 20.76, + "horizontal": 23.88, + "vertical": 23.88, + "pitch": 12.582, + "yaw": 12.582, + "roll": 12.582 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 7100, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 150153, + "max": 203148, + "avg": 176650 + }, + "production": [ + { + "time": 17, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 92 + }, + { + "ware": "hullparts", + "amount": 162 + } + ] + } + ] + }, + { + "id": "ship_par_m_trans_container_02_b", + "version": 0, + "name": "Hermes Sentinel", + "description": "The Hermes is a medium-sized Paranid-designed journeyman freighter with reasonable performance.nnThe Sentinel model has improved cargo capacity and a somewhat hardened chassis.", + "size": "medium", + "explosionDamage": 100, + "hull": 6000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 16, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 48.393, + "inertia": { + "pitch": 7.102, + "yaw": 7.102, + "roll": 5.682 + }, + "drag": { + "forward": 6.022, + "reverse": 24.087, + "horizontal": 28.656, + "vertical": 28.656, + "pitch": 14.598, + "yaw": 14.598, + "roll": 14.598 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 8520, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 194693, + "max": 263408, + "avg": 229050 + }, + "production": [ + { + "time": 22, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 120 + }, + { + "ware": "hullparts", + "amount": 210 + } + ] + } + ] + }, + { + "id": "ship_par_m_trans_container_03_a", + "version": 0, + "name": "Prometheus", + "description": "The gradual Shutdown of the Jump Gates and the subsequent onset of the Dark shattered the shadowy organisation once known as the Duke's Buccaneers. Those that remained stalwart in their loyalty to the Pirate Duke had to rapidly adapt their operations to not be squashed under the heel of the newly emerging local authorities, or worse, fade into obscurity. Faced with the challenge to justify their further existence as an organisation, the majority of Buccaneer cells defaulted to the front they had already used for decades: the brutal, but dependable security outfit. Under this old and new guise, they acquired some renown transporting crucial personnel and wares for reconstruction and redevelopment. They also dealt in protection, corporate consulting, and other stunningly legal services. The support of well-equipped muscle proved useful for the leadership of the many societies that now struggled in isolation, and over the decades, the Buccaneers managed to refine their technology to suit the requirements of their new area of employment.nnThe Prometheus heavy transport is a relatively new addition to the arsenal of the Duke's Buccaneers, developed specifically to carry the lessons learned during the Dark into the era after the Realignment of the Jump Gates. Its hull is based on the Plutus, a well-known Paranid mining vessel. While earlier iterations of Buccaneer transport ships were often in fact civilian assets retrofitted for convenience, the design of the Prometheus is deliberate and insidious. Unless they were paying specific attention, any onlooker would simply see a mining ship, well-prepared for the dangers lurking at the edges of civilised space. On approach, such a hapless passerby or opportunistic brigand would soon realise that the inconspicuous hauler was in fact a well-armed pirate ship, perfectly equipped for a quick plunder. In one regard, the otherwise feigned identity as a deep space mining ship carries a sliver of truth, however: after a successful station raid, these ships tend to disappear towards the outskirts of a nearby sector, destination unknown.", + "size": "medium", + "race": "paranid", + "explosionDamage": 500, + "hull": 11000, + "storage": { + "missile": 40, + "unit": 0 + }, + "people": 12, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 23.192, + "inertia": { + "pitch": 3.385, + "yaw": 3.385, + "roll": 2.708 + }, + "drag": { + "forward": 3.423, + "reverse": 13.692, + "horizontal": 13.197, + "vertical": 13.197, + "pitch": 7.468, + "yaw": 7.468, + "roll": 7.468 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 4000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers" + ], + "price": { + "min": 203460, + "max": 380700, + "avg": 292080 + }, + "production": [ + { + "time": 18, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 98 + }, + { + "ware": "hullparts", + "amount": 272 + } + ] + } + ] + }, + { + "id": "ship_par_s_fighter_01_a", + "version": 0, + "name": "Perseus Vanguard", + "description": "A fast, small fighter, with respectable hardpoints, the Paranid Perseus has a reasonable following among fighter pilots and explorers alike. Recommended to young captains in search of their second ship.nnThe Perseus Vanguard opts for a focus on speed.", + "size": "small", + "hull": 3700, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 3, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 7.756, + "inertia": { + "pitch": 1.627, + "yaw": 1.627, + "roll": 1.301 + }, + "drag": { + "forward": 3.993, + "reverse": 13.006, + "horizontal": 3.429, + "vertical": 3.429, + "pitch": 3.025, + "yaw": 3.025, + "roll": 3.025 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 240, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 133284, + "max": 180326, + "avg": 156805 + }, + "production": [ + { + "time": 12, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 66 + }, + { + "ware": "hullparts", + "amount": 145 + } + ] + } + ] + }, + { + "id": "ship_par_s_fighter_01_b", + "version": 0, + "name": "Perseus Sentinel", + "description": "A fast, small fighter, with respectable hardpoints, the Paranid Perseus has a reasonable following among fighter pilots and explorers alike. Recommended to young captains in search of their second ship.nnThe Perseus Sentinel has additional superstructure reinforcement at the cost of speed.", + "size": "small", + "hull": 4400, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 9.307, + "inertia": { + "pitch": 1.861, + "yaw": 1.861, + "roll": 1.489 + }, + "drag": { + "forward": 4.206, + "reverse": 14.557, + "horizontal": 4.115, + "vertical": 4.115, + "pitch": 3.461, + "yaw": 3.461, + "roll": 3.461 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 288, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 159928, + "max": 216373, + "avg": 188150 + }, + "production": [ + { + "time": 14, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 79 + }, + { + "ware": "hullparts", + "amount": 174 + } + ] + } + ] + }, + { + "id": "ship_par_s_fighter_02_a", + "version": 0, + "name": "Theseus Vanguard", + "description": "The Paranid Theseus is a solid, all-round performer with deadly firepower, built upon a solid chassis. If it is lacking anywhere it is in speed, though there are many tactical deployments where this is not a major issue.nnThe Vanguard model aims to rectify the speed issue, though it is debateable whether this is achieved, or even necessary.", + "size": "small", + "hull": 4200, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 3, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 8.723, + "inertia": { + "pitch": 1.994, + "yaw": 1.994, + "roll": 1.595 + }, + "drag": { + "forward": 4.328, + "reverse": 15.439, + "horizontal": 2.977, + "vertical": 2.977, + "pitch": 3.297, + "yaw": 3.297, + "roll": 3.297 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 270, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 150773, + "max": 203987, + "avg": 177380 + }, + "production": [ + { + "time": 13, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 75 + }, + { + "ware": "hullparts", + "amount": 164 + } + ] + } + ] + }, + { + "id": "ship_par_s_fighter_02_b", + "version": 0, + "name": "Theseus Sentinel", + "description": "The Paranid Theseus is a solid, all-round performer with deadly firepower, built upon a solid chassis. If it is lacking anywhere it is in speed, though there are many tactical deployments where this is not a major issue.nnGiven the Theseus' relaxed pace, many captains opt for the Sentinel model, which improves the vessel's ability to withstand attack.", + "size": "small", + "hull": 5000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 10.468, + "inertia": { + "pitch": 2.291, + "yaw": 2.291, + "roll": 1.833 + }, + "drag": { + "forward": 4.597, + "reverse": 17.402, + "horizontal": 3.573, + "vertical": 3.573, + "pitch": 3.788, + "yaw": 3.788, + "roll": 3.788 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 324, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 180149, + "max": 243731, + "avg": 211940 + }, + "production": [ + { + "time": 16, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 89 + }, + { + "ware": "hullparts", + "amount": 196 + } + ] + } + ] + }, + { + "id": "ship_par_s_heavyfighter_01_a", + "version": 0, + "name": "Ares", + "description": "The Ares meets the much demanded need for a Paranid Heavy Fighter. Loaded with weapon hard points and shield generators, the Ares can both take and deliver a beating.", + "size": "small", + "race": "paranid", + "hull": 4700, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "heavyfighter", + "mass": 12.038, + "inertia": { + "pitch": 3.269, + "yaw": 3.269, + "roll": 2.615 + }, + "drag": { + "forward": 8.258, + "reverse": 40.892, + "horizontal": 3.726, + "vertical": 3.726, + "pitch": 4.699, + "yaw": 4.699, + "roll": 4.699 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 270, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 207009, + "max": 280071, + "avg": 243540 + }, + "production": [ + { + "time": 12, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 66 + }, + { + "ware": "hullparts", + "amount": 228 + } + ] + } + ] + }, + { + "id": "ship_par_s_miner_solid_01_a", + "version": 0, + "name": "Tethys (Mineral)", + "description": "With the design of the Tethys, the Paranid proved that mining ships don't have to be ugly. It is also available in light freighter format.nnThe Tethys Miner may have a humble function, but the Paranid have added joy to the hours spent chipping away at asteroids.", + "size": "small", + "hull": 1200, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 3, + "purpose": "mine", + "thruster": "small", + "type": "miner", + "mass": 9.331, + "inertia": { + "pitch": 4.002, + "yaw": 4.002, + "roll": 3.202 + }, + "drag": { + "forward": 4.21, + "reverse": 20.83, + "horizontal": 6.302, + "vertical": 6.302, + "pitch": 6.186, + "yaw": 6.186, + "roll": 6.186 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "mining", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "mining", + "missile" + ] + } + ], + "cargo": [ + { + "max": 2100, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "hatikvah", + "holyorder", + "paranid", + "trinity" + ], + "price": { + "min": 70775, + "max": 95755, + "avg": 83265 + }, + "production": [ + { + "time": 6, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 35 + }, + { + "ware": "hullparts", + "amount": 77 + } + ] + } + ] + }, + { + "id": "ship_par_s_scout_01_a", + "version": 0, + "name": "Pegasus Vanguard", + "description": "The Paranid Pegasus scout is extraordinarily fast, ensuring the \"Peggy's\" enduring popularity with explorers in particular. Unfortunately, being followed by such a speedy vessel risks inviting a rear end collision, an eventuality known by pilots as being \"peggied\".nnIn response to demand from the most speed-addicted customers, the Pegasus was eventually released in a Vanguard model.", + "size": "small", + "hull": 1300, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 5.765, + "inertia": { + "pitch": 0.855, + "yaw": 0.855, + "roll": 0.684 + }, + "drag": { + "forward": 3.255, + "reverse": 7.64, + "horizontal": 4.09, + "vertical": 4.09, + "pitch": 3.208, + "yaw": 3.208, + "roll": 3.208 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 440, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 68043, + "max": 92058, + "avg": 80050 + }, + "production": [ + { + "time": 6, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 34 + }, + { + "ware": "hullparts", + "amount": 74 + } + ] + } + ] + }, + { + "id": "ship_par_s_scout_01_b", + "version": 0, + "name": "Pegasus Sentinel", + "description": "The Paranid Pegasus scout is extraordinarily fast, ensuring the \"Peggy's\" enduring popularity with explorers in particular. Unfortunately, being followed by such a speedy vessel risks inviting a rear end collision, an eventuality known by pilots as being \"peggied\".nnThe Sentinel model marginally increases the scout's cargo space and resilience. However, these enhancements seem to be cursory rather than conferring any practical value.", + "size": "small", + "hull": 1600, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 1, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 6.918, + "inertia": { + "pitch": 0.951, + "yaw": 0.951, + "roll": 0.761 + }, + "drag": { + "forward": 3.446, + "reverse": 8.793, + "horizontal": 4.908, + "vertical": 4.908, + "pitch": 3.568, + "yaw": 3.568, + "roll": 3.568 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 528, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 82731, + "max": 111930, + "avg": 97330 + }, + "production": [ + { + "time": 7, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 41 + }, + { + "ware": "hullparts", + "amount": 90 + } + ] + } + ] + }, + { + "id": "ship_par_s_trans_container_01_a", + "version": 0, + "name": "Tethys Vanguard", + "description": "The Paranid Tethys is considered to be one of the most enjoyable light freighters available to fly. It adopts the graceful lines common among Paranid ships, while performing admirably well for a small vessel.nnThe Tethys Vanguard boasts an impressive turn of speed.", + "size": "small", + "hull": 2100, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 5, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 16.795, + "inertia": { + "pitch": 4.002, + "yaw": 4.002, + "roll": 3.202 + }, + "drag": { + "forward": 5.236, + "reverse": 22.045, + "horizontal": 6.302, + "vertical": 6.302, + "pitch": 6.186, + "yaw": 6.186, + "roll": 6.186 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 1580, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "buccaneers", + "paranid", + "scaleplate", + "trinity" + ], + "price": { + "min": 127751, + "max": 172839, + "avg": 150295 + }, + "production": [ + { + "time": 11, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 63 + }, + { + "ware": "hullparts", + "amount": 139 + } + ] + } + ] + }, + { + "id": "ship_par_s_trans_container_01_b", + "version": 0, + "name": "Tethys Sentinel", + "description": "The Paranid Tethys is considered to be one of the most enjoyable light freighters available to fly. It adopts the graceful lines common among Paranid ships, while performing admirably well for a small vessel.nnThe Sentinel model has increased cargo space.", + "size": "small", + "hull": 2600, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 4, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 20.155, + "inertia": { + "pitch": 4.681, + "yaw": 4.681, + "roll": 3.745 + }, + "drag": { + "forward": 5.698, + "reverse": 25.405, + "horizontal": 7.563, + "vertical": 7.563, + "pitch": 7.236, + "yaw": 7.236, + "roll": 7.236 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 1896, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "scaleplate", + "trinity" + ], + "price": { + "min": 156239, + "max": 211382, + "avg": 183810 + }, + "production": [ + { + "time": 14, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 77 + }, + { + "ware": "hullparts", + "amount": 170 + } + ] + } + ] + }, + { + "id": "ship_par_xl_builder_01_a", + "version": 0, + "name": "Heracles Vanguard", + "description": "The Paranid Heracles is an enormous station-building ship, and as such, is the foundation of an economic empire.nnThe Heracles Vanguard offers additional speed, though it remains somewhat pedestrian.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 149000, + "storage": { + "missile": 40, + "unit": 128 + }, + "people": 219, + "purpose": "build", + "thruster": "extralarge", + "type": "builder", + "mass": 1137.601, + "inertia": { + "pitch": 813.251, + "yaw": 813.251, + "roll": 650.601 + }, + "drag": { + "forward": 230.64, + "reverse": 922.561, + "horizontal": 447.058, + "vertical": 447.058, + "pitch": 927.52, + "yaw": 927.52, + "roll": 927.52 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 50, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 7755200, + "max": 10492330, + "avg": 9123765 + }, + "production": [ + { + "time": 439, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2428 + }, + { + "ware": "hullparts", + "amount": 8545 + } + ] + } + ] + }, + { + "id": "ship_par_xl_builder_01_b", + "version": 0, + "name": "Heracles Sentinel", + "description": "The Paranid Heracles is an enormous station-building ship, and as such, is the foundation of an economic empire.nnThe Sentinel model is a hardened version of the Heracles.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 178000, + "storage": { + "missile": 40, + "unit": 154 + }, + "people": 182, + "purpose": "build", + "thruster": "extralarge", + "type": "builder", + "mass": 1365.121, + "inertia": { + "pitch": 853.149, + "yaw": 853.149, + "roll": 682.52 + }, + "drag": { + "forward": 264.768, + "reverse": 1059.073, + "horizontal": 536.47, + "vertical": 536.47, + "pitch": 973.024, + "yaw": 973.024, + "roll": 973.024 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 50, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 9306200, + "max": 12590741, + "avg": 10948470 + }, + "production": [ + { + "time": 527, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2913 + }, + { + "ware": "hullparts", + "amount": 10254 + } + ] + } + ] + }, + { + "id": "ship_par_xl_carrier_01_a", + "version": 0, + "name": "Zeus Vanguard", + "description": "The Paranid Zeus is perhaps one of the fastest carriers available, making it an excellent choice as the keystone of any defensive or offensive fleet. The Zeus was designed specifically with this in mind, to allay growing Paranid concerns over the military growth of their many rivals.nnThe Zeus Vanguard is even faster, and is often the strategic choice in offensive operations.", + "size": "extralarge", + "explosionDamage": 1500, + "hull": 281000, + "storage": { + "missile": 300, + "unit": 20 + }, + "people": 159, + "purpose": "fight", + "thruster": "extralarge", + "type": "carrier", + "mass": 714.616, + "inertia": { + "pitch": 835.69, + "yaw": 835.69, + "roll": 668.552 + }, + "drag": { + "forward": 208.991, + "reverse": 835.962, + "horizontal": 224.128, + "vertical": 224.128, + "pitch": 842.923, + "yaw": 842.923, + "roll": 842.923 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_middle_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_middle_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_middle_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 20000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 11158558, + "max": 15096872, + "avg": 13127715 + }, + "production": [ + { + "time": 632, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 3493 + }, + { + "ware": "hullparts", + "amount": 12295 + } + ] + } + ] + }, + { + "id": "ship_par_xl_carrier_01_b", + "version": 0, + "name": "Zeus Sentinel", + "description": "The Paranid Zeus is perhaps one of the fastest carriers available, making it an excellent choice as the keystone of any defensive or offensive fleet. The Zeus was designed specifically with this in mind, to allay growing Paranid concerns over the military growth of their many rivals.nnThe Zeus is available in a Sentinel model, with a hardened superstructure for increased battle resilience.", + "size": "extralarge", + "explosionDamage": 1500, + "hull": 337000, + "storage": { + "missile": 300, + "unit": 20 + }, + "people": 132, + "purpose": "fight", + "thruster": "extralarge", + "type": "carrier", + "mass": 857.54, + "inertia": { + "pitch": 864.029, + "yaw": 864.029, + "roll": 691.223 + }, + "drag": { + "forward": 235.789, + "reverse": 943.155, + "horizontal": 268.953, + "vertical": 268.953, + "pitch": 871.508, + "yaw": 871.508, + "roll": 871.508 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_middle_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_middle_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_middle_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 24000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 13385719, + "max": 18110091, + "avg": 15747905 + }, + "production": [ + { + "time": 758, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 4190 + }, + { + "ware": "hullparts", + "amount": 14749 + } + ] + } + ] + }, + { + "id": "ship_par_xl_carrier_02_a", + "version": 0, + "name": "Zeus E", + "description": "The Paranid Zeus is perhaps one of the fastest carriers available, making it an excellent choice as the keystone of any defensive or offensive fleet. The Zeus was designed specifically with this in mind, to allay growing Paranid concerns over the military growth of their many rivals.nnThe E-model variation was introduced at a later date, and updated the superficial design to bring it up to par with Commonwealth standards that were established during the period of disconnection. The precursor version is slowly being phased out, but will remain available for interested third parties.", + "size": "extralarge", + "race": "paranid", + "explosionDamage": 1500, + "hull": 303000, + "storage": { + "missile": 300, + "unit": 20 + }, + "people": 143, + "purpose": "fight", + "thruster": "extralarge", + "type": "carrier", + "mass": 771.902, + "inertia": { + "pitch": 914.95, + "yaw": 914.95, + "roll": 731.96 + }, + "drag": { + "forward": 153.812, + "reverse": 878.927, + "horizontal": 199.623, + "vertical": 199.623, + "pitch": 854.38, + "yaw": 854.38, + "roll": 854.38 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_middle_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_middle_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_middle_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 22000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 8, + "size": "medium" + }, + { + "capacity": 16, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "price": { + "min": 14909536, + "max": 20171725, + "avg": 17540630 + }, + "production": [ + { + "time": 682, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1506 + }, + { + "ware": "hullparts", + "amount": 16670 + } + ] + } + ] + }, + { + "id": "ship_par_xl_resupplier_01_a", + "version": 0, + "name": "Atlas Vanguard", + "description": "The Paranid Atlas is a large spaceship, specifically designed to repair and resupply fleets. This advanced vessel is equipped with cutting-edge robotics technology, and capacity for an ample supply of materials and resources. It can travel throughout space, effectively operating as a limited, but mobile, Equipment Dock.nnThe upgraded Atlas Vanguard is faster and more agile than its predecessor, supporting quicker and more efficient martial campaigns.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 130000, + "storage": { + "missile": 40, + "unit": 100 + }, + "people": 247, + "purpose": "auxiliary", + "thruster": "extralarge", + "type": "resupplier", + "mass": 999.739, + "inertia": { + "pitch": 693.45, + "yaw": 693.45, + "roll": 554.76 + }, + "drag": { + "forward": 262.451, + "reverse": 1049.804, + "horizontal": 466.424, + "vertical": 466.424, + "pitch": 899.948, + "yaw": 899.948, + "roll": 899.948 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_middle", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 29000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "paranid", + "trinity" + ], + "price": { + "min": 8194429, + "max": 11086581, + "avg": 9640505 + }, + "production": [ + { + "time": 464, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2565 + }, + { + "ware": "hullparts", + "amount": 9029 + } + ] + } + ] + }, + { + "id": "ship_par_xl_resupplier_01_b", + "version": 0, + "name": "Atlas Sentinel", + "description": "The Paranid Atlas is a large spaceship, specifically designed to repair and resupply fleets. This advanced vessel is equipped with cutting-edge robotics technology, and capacity for an ample supply of materials and resources. It can travel throughout space, effectively operating as a limited, but mobile, Equipment Dock.nnThe Atlas Sentinel is a variant with a reinforced hull for increased durability and protection. The hardened structure allows the Atlas Sentinel to operate in more hazardous environments, and increase its longevity.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 156000, + "storage": { + "missile": 40, + "unit": 100 + }, + "people": 205, + "purpose": "auxiliary", + "thruster": "extralarge", + "type": "resupplier", + "mass": 1199.686, + "inertia": { + "pitch": 724.264, + "yaw": 724.264, + "roll": 579.411 + }, + "drag": { + "forward": 299.941, + "reverse": 1199.765, + "horizontal": 559.709, + "vertical": 559.709, + "pitch": 939.937, + "yaw": 939.937, + "roll": 939.937 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_middle", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 34800, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "trinity" + ], + "price": { + "min": 9833493, + "max": 13304137, + "avg": 11568815 + }, + "production": [ + { + "time": 557, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 3078 + }, + { + "ware": "hullparts", + "amount": 10835 + } + ] + } + ] + }, + { + "id": "ship_par_xl_resupplier_02_a", + "version": 0, + "name": "Atlas E", + "description": "The Paranid Atlas is a large spaceship, specifically designed to repair and resupply fleets. This advanced vessel is equipped with cutting-edge robotics technology, and capacity for an ample supply of materials and resources. It can travel throughout space, effectively operating as a limited, but mobile, Equipment Dock.nnThe E-model variation was introduced at a later date, and updated the superficial design to bring it up to par with Commonwealth standards that were established during the period of disconnection. The precursor version is slowly being phased out, but will remain available for interested third parties.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 164000, + "storage": { + "missile": 40, + "unit": 100 + }, + "people": 258, + "purpose": "auxiliary", + "thruster": "extralarge", + "type": "resupplier", + "mass": 1256.778, + "inertia": { + "pitch": 921.538, + "yaw": 921.538, + "roll": 737.23 + }, + "drag": { + "forward": 310.646, + "reverse": 1242.584, + "horizontal": 413.971, + "vertical": 413.971, + "pitch": 931.356, + "yaw": 931.356, + "roll": 931.356 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_mid_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_middle", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_middle", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_middle", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 34040, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 8, + "size": "medium" + }, + { + "capacity": 16, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "buccaneers", + "holyorder", + "paranid", + "trinity" + ], + "price": { + "min": 13138973, + "max": 17776257, + "avg": 15457615 + }, + "production": [ + { + "time": 541, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1319 + }, + { + "ware": "hullparts", + "amount": 14691 + } + ] + } + ] + }, + { + "id": "ship_tel_l_destroyer_01_a", + "version": 0, + "name": "Phoenix Vanguard", + "description": "When the Teladi Company commissioned a redesign of the Phoenix destroyer, their goal wasn't to create an all-conquering super weapon. Instead, their focus was to build a robust capital ship able to withstand the rigours of battle long enough for reinforcements to arrive.nnIn this regard, commanders concede that, as a defensive platform, the designers succeeded. The Phoenix is built on a steadfast chassis. The designers are said to be particularly proud of an intelligently dispersed engine placement, where the previous model's cluster resembled an enticing invitation for torpedo targeting.nnThe Vanguard model marginally negates the Phoenix's lack of speed and agility.", + "size": "large", + "explosionDamage": 1000, + "hull": 104000, + "storage": { + "missile": 160, + "unit": 10 + }, + "people": 50, + "purpose": "fight", + "thruster": "large", + "type": "destroyer", + "mass": 219.416, + "inertia": { + "pitch": 112.511, + "yaw": 112.511, + "roll": 90.009 + }, + "drag": { + "forward": 92.271, + "reverse": 369.086, + "horizontal": 65.282, + "vertical": 65.282, + "pitch": 110.883, + "yaw": 110.883, + "roll": 110.883 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_front_top_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "group": "group_center_bottom_left2", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_right2", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_center_bottom_right2", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_left2", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 3700, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "teladi" + ], + "price": { + "min": 4482356, + "max": 6064364, + "avg": 5273360 + }, + "production": [ + { + "time": 204, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1127 + }, + { + "ware": "hullparts", + "amount": 4960 + } + ] + } + ] + }, + { + "id": "ship_tel_l_destroyer_01_b", + "version": 0, + "name": "Phoenix Sentinel", + "description": "When the Teladi Company commissioned a redesign of the Phoenix destroyer, their goal wasn't to create an all-conquering super weapon. Instead, their focus was to build a robust capital ship able to withstand the rigours of battle long enough for reinforcements to arrive.nnIn this regard, commanders concede that, as a defensive platform, the designers succeeded. The Phoenix is built on a steadfast chassis. The designers are said to be particularly proud of an intelligently dispersed engine placement, where the previous model's cluster resembled an enticing invitation for torpedo targeting.nnThe increased resilience afforded by the Sentinel model comes with a reduction in speed and agility that has caused some pilots to refer to the vessel as an asteroid with guns.", + "size": "large", + "explosionDamage": 1000, + "hull": 124000, + "storage": { + "missile": 160, + "unit": 10 + }, + "people": 41, + "purpose": "fight", + "thruster": "large", + "type": "destroyer", + "mass": 263.299, + "inertia": { + "pitch": 121.417, + "yaw": 121.417, + "roll": 97.133 + }, + "drag": { + "forward": 101.926, + "reverse": 407.703, + "horizontal": 78.338, + "vertical": 78.338, + "pitch": 119.66, + "yaw": 119.66, + "roll": 119.66 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_front_top_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "group": "group_center_bottom_left2", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_right2", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_center_bottom_right2", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_left2", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 4440, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 5361719, + "max": 7254091, + "avg": 6307905 + }, + "production": [ + { + "time": 244, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1349 + }, + { + "ware": "hullparts", + "amount": 5933 + } + ] + } + ] + }, + { + "id": "ship_tel_l_miner_liquid_01_a", + "version": 0, + "name": "Crane (Gas) Vanguard", + "description": "The Teladi Crane is a large miner with truly impressive load carrying capacity. Fulfilling a major part of Teladi primary resource acquisition, the Crane is available in models optimised for either mineral or gas collection.nnThe Vanguard variant enhances the Crane's speed, which may benefit entrepreneurs who are mining resources far from where they are required.", + "size": "large", + "explosionDamage": 800, + "hull": 30000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 52, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 235.019, + "inertia": { + "pitch": 164.773, + "yaw": 164.773, + "roll": 131.818 + }, + "drag": { + "forward": 83.741, + "reverse": 478.521, + "horizontal": 104.731, + "vertical": 104.731, + "pitch": 151.607, + "yaw": 151.607, + "roll": 151.607 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": true + }, + { + "group": "group_back_top_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_top_right", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_top_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_top_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 44000, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "hatikvah", + "teladi" + ], + "price": { + "min": 1277814, + "max": 1728807, + "avg": 1503310 + }, + "production": [ + { + "time": 96, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 530 + }, + { + "ware": "hullparts", + "amount": 1398 + } + ] + } + ] + }, + { + "id": "ship_tel_l_miner_liquid_01_b", + "version": 0, + "name": "Crane (Gas) Sentinel", + "description": "The Teladi Crane is a large miner with truly impressive load carrying capacity. Fulfilling a major part of Teladi primary resource acquisition, the Crane is available in models optimised for either mineral or gas collection.nnThe Sentinel variant enhances the Crane's cargo hold even further, though pilots should be aware that this may make them an attractive proposition for pirates.", + "size": "large", + "explosionDamage": 800, + "hull": 36000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 43, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 282.023, + "inertia": { + "pitch": 183.164, + "yaw": 183.164, + "roll": 146.531 + }, + "drag": { + "forward": 92.789, + "reverse": 530.225, + "horizontal": 125.677, + "vertical": 125.677, + "pitch": 168.528, + "yaw": 168.528, + "roll": 168.528 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": true + }, + { + "group": "group_back_top_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_top_right", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_top_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_top_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 52800, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "hatikvah", + "ministry" + ], + "price": { + "min": 1533732, + "max": 2075049, + "avg": 1804390 + }, + "production": [ + { + "time": 115, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 636 + }, + { + "ware": "hullparts", + "amount": 1678 + } + ] + } + ] + }, + { + "id": "ship_tel_l_miner_solid_01_a", + "version": 0, + "name": "Crane (Mineral) Vanguard", + "description": "The Teladi Crane is a large miner with truly impressive load carrying capacity. Fulfilling a major part of Teladi primary resource acquisition, the Crane is available in models optimised for either mineral or gas collection.nnThe Vanguard variant enhances the Crane's speed, which may benefit entrepreneurs who are mining resources far from where they are required.", + "size": "large", + "explosionDamage": 800, + "hull": 30000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 52, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 235.019, + "inertia": { + "pitch": 164.773, + "yaw": 164.773, + "roll": 131.818 + }, + "drag": { + "forward": 83.741, + "reverse": 478.521, + "horizontal": 104.731, + "vertical": 104.731, + "pitch": 151.607, + "yaw": 151.607, + "roll": 151.607 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": true + }, + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "mining", + "standard" + ] + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "mining", + "standard" + ] + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true, + "types": [ + "mining", + "standard" + ] + }, + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "cargo": [ + { + "max": 48000, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "hatikvah", + "teladi" + ], + "price": { + "min": 1277814, + "max": 1728807, + "avg": 1503310 + }, + "production": [ + { + "time": 96, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 530 + }, + { + "ware": "hullparts", + "amount": 1398 + } + ] + } + ] + }, + { + "id": "ship_tel_l_miner_solid_01_b", + "version": 0, + "name": "Crane (Mineral) Sentinel", + "description": "The Teladi Crane is a large miner with truly impressive load carrying capacity. Fulfilling a major part of Teladi primary resource acquisition, the Crane is available in models optimised for either mineral or gas collection.nnThe Sentinel variant enhances the Crane's cargo hold even further, though pilots should be aware that this may make them an attractive proposition for pirates.", + "size": "large", + "explosionDamage": 800, + "hull": 36000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 43, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 282.023, + "inertia": { + "pitch": 183.164, + "yaw": 183.164, + "roll": 146.531 + }, + "drag": { + "forward": 92.789, + "reverse": 530.225, + "horizontal": 125.677, + "vertical": 125.677, + "pitch": 168.528, + "yaw": 168.528, + "roll": 168.528 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": true + }, + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "mining", + "standard" + ] + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "mining", + "standard" + ] + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true, + "types": [ + "mining", + "standard" + ] + }, + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "cargo": [ + { + "max": 57600, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "hatikvah", + "ministry" + ], + "price": { + "min": 1533732, + "max": 2075049, + "avg": 1804390 + }, + "production": [ + { + "time": 115, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 636 + }, + { + "ware": "hullparts", + "amount": 1678 + } + ] + } + ] + }, + { + "id": "ship_tel_l_trans_container_01_a", + "version": 0, + "name": "Pelican Vanguard", + "description": "The Teladi Pelican is notable for its mediocrity as a freighter. It has taken to the level of an art form the capacity to be neither outstandingly good nor bad on any single metric. The single greatest mystery is why Teladi traders themselves use this ship, when there are many other more profitable options available.nnThe Vanguard model's increased speed manages to make the vessel even less profitable due to a reduction in cargo space.", + "size": "large", + "explosionDamage": 800, + "hull": 52000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 100, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 402.059, + "inertia": { + "pitch": 152.269, + "yaw": 152.269, + "roll": 121.816 + }, + "drag": { + "forward": 165.566, + "reverse": 662.265, + "horizontal": 114.538, + "vertical": 114.538, + "pitch": 147.412, + "yaw": 147.412, + "roll": 147.412 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": true + }, + { + "group": "group_back_top_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_top_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom_center", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_top_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_top_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 40800, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "teladi" + ], + "price": { + "min": 2254893, + "max": 3050737, + "avg": 2652815 + }, + "production": [ + { + "time": 169, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 935 + }, + { + "ware": "hullparts", + "amount": 2467 + } + ] + } + ] + }, + { + "id": "ship_tel_l_trans_container_01_b", + "version": 0, + "name": "Pelican Sentinel", + "description": "The Teladi Pelican is notable for its mediocrity as a freighter. It has taken to the level of an art form the capacity to be neither outstandingly good nor bad on any single metric. The single greatest mystery is why Teladi traders themselves use this ship, when there are many other more profitable options available.nnRecognising the commercial weakness of the Pelican, the Sentinel model boasts increased cargo space, improving the ship's overall trade run profitability.", + "size": "large", + "explosionDamage": 800, + "hull": 63000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 83, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 482.471, + "inertia": { + "pitch": 168.882, + "yaw": 168.882, + "roll": 135.105 + }, + "drag": { + "forward": 187.68, + "reverse": 750.718, + "horizontal": 137.446, + "vertical": 137.446, + "pitch": 163.494, + "yaw": 163.494, + "roll": 163.494 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": true + }, + { + "group": "group_back_top_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_top_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom_center", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_top_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_top_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 51000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 2719180, + "max": 3678890, + "avg": 3199035 + }, + "production": [ + { + "time": 204, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1127 + }, + { + "ware": "hullparts", + "amount": 2975 + } + ] + } + ] + }, + { + "id": "ship_tel_l_trans_container_02_a", + "version": 0, + "name": "Heron Vanguard", + "description": "The Teladi Company's Heron is a large freighter. It is noted for its somewhat relaxed pace, which is in keeping with mainstream Teladi design values.nnThe Vanguard model marginally improves the Heron's speed, but the vessel remains unsuited to express delivery.", + "size": "large", + "explosionDamage": 800, + "hull": 48000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 101, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 367.5, + "inertia": { + "pitch": 147.394, + "yaw": 147.394, + "roll": 117.916 + }, + "drag": { + "forward": 156.062, + "reverse": 624.25, + "horizontal": 100.592, + "vertical": 100.592, + "pitch": 140.5, + "yaw": 140.5, + "roll": 140.5 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": true + }, + { + "group": "group_back_top_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_top_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom_center", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_top_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_top_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 36800, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "teladi" + ], + "price": { + "min": 2071119, + "max": 2802102, + "avg": 2436610 + }, + "production": [ + { + "time": 155, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 858 + }, + { + "ware": "hullparts", + "amount": 2266 + } + ] + } + ] + }, + { + "id": "ship_tel_l_trans_container_02_b", + "version": 0, + "name": "Heron Sentinel", + "description": "The Teladi Company's Heron is a large freighter. It is noted for its somewhat relaxed pace, which is in keeping with mainstream Teladi design values.nnThe Sentinel model is popular in military academies for use in remedial target practice.", + "size": "large", + "explosionDamage": 800, + "hull": 57000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 84, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 441, + "inertia": { + "pitch": 162.816, + "yaw": 162.816, + "roll": 130.253 + }, + "drag": { + "forward": 176.275, + "reverse": 705.1, + "horizontal": 120.71, + "vertical": 120.71, + "pitch": 155.2, + "yaw": 155.2, + "roll": 155.2 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": true + }, + { + "group": "group_back_top_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_top_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom_center", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "size": "large", + "hittable": true + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_top_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_top_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 46000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 2472416, + "max": 3345034, + "avg": 2908725 + }, + "production": [ + { + "time": 185, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1025 + }, + { + "ware": "hullparts", + "amount": 2705 + } + ] + } + ] + }, + { + "id": "ship_tel_m_bomber_01_a", + "version": 0, + "name": "Peregrine Vanguard", + "description": "While originally designed as a bomber, the Teladi Peregrine has recently found popularity in the role of an escort ship. Its primary tactical advantage in this regard is its excellent turret coverage, which can be highly effective when appropriately armed.nnThe Vanguard model, with additional speed, was an attempt to retrofit the Peregrine to make it more suitable for its original intended role. Debate continues as to whether this was a success.", + "size": "medium", + "explosionDamage": 500, + "hull": 12000, + "storage": { + "missile": 40, + "unit": 0 + }, + "people": 9, + "purpose": "fight", + "thruster": "medium", + "type": "gunboat", + "mass": 28.434, + "inertia": { + "pitch": 5.34, + "yaw": 5.34, + "roll": 4.272 + }, + "drag": { + "forward": 8.72, + "reverse": 34.879, + "horizontal": 14.177, + "vertical": 14.177, + "pitch": 9.609, + "yaw": 9.609, + "roll": 9.609 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 850, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "teladi" + ], + "price": { + "min": 625354, + "max": 846067, + "avg": 735710 + }, + "production": [ + { + "time": 24, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 131 + }, + { + "ware": "hullparts", + "amount": 694 + } + ] + } + ] + }, + { + "id": "ship_tel_m_bomber_01_b", + "version": 0, + "name": "Peregrine Sentinel", + "description": "While originally designed as a bomber, the Teladi Peregrine has recently found popularity in the role of an escort ship. Its primary tactical advantage in this regard is its excellent turret coverage, which can be highly effective when appropriately armed.nnThe Peregrine Sentinel leans into this novel escort role, offering increased superstructure resilience.", + "size": "medium", + "explosionDamage": 500, + "hull": 14000, + "storage": { + "missile": 40, + "unit": 0 + }, + "people": 7, + "purpose": "fight", + "thruster": "medium", + "type": "gunboat", + "mass": 34.121, + "inertia": { + "pitch": 6.13, + "yaw": 6.13, + "roll": 4.904 + }, + "drag": { + "forward": 10.01, + "reverse": 40.04, + "horizontal": 17.012, + "vertical": 17.012, + "pitch": 11.03, + "yaw": 11.03, + "roll": 11.03 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 1020, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 739861, + "max": 1000989, + "avg": 870425 + }, + "production": [ + { + "time": 28, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 156 + }, + { + "ware": "hullparts", + "amount": 821 + } + ] + } + ] + }, + { + "id": "ship_tel_m_frigate_01_a", + "version": 0, + "name": "Osprey Vanguard", + "description": "The Teladi Osprey is a surprisingly effective frigate with significant cargo capacity. On this basis, it can be used as a well-armed and speedy alternative to a standard freighter for trade runs where prejudice is anticipated.nnThe Vanguard model enhances speed, and as a consequence, the potential profitability of trading routes.", + "size": "medium", + "explosionDamage": 200, + "hull": 33000, + "storage": { + "missile": 100, + "unit": 17 + }, + "people": 15, + "purpose": "fight", + "thruster": "medium", + "type": "frigate", + "mass": 68.683, + "inertia": { + "pitch": 7.188, + "yaw": 7.188, + "roll": 5.75 + }, + "drag": { + "forward": 17.851, + "reverse": 49.983, + "horizontal": 16.597, + "vertical": 16.597, + "pitch": 13.77, + "yaw": 13.77, + "roll": 13.77 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 2430, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 1, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "teladi" + ], + "price": { + "min": 887574, + "max": 1200836, + "avg": 1044205 + }, + "production": [ + { + "time": 34, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 186 + }, + { + "ware": "hullparts", + "amount": 985 + } + ] + } + ] + }, + { + "id": "ship_tel_m_frigate_01_b", + "version": 0, + "name": "Osprey Sentinel", + "description": "The Teladi Osprey is a surprisingly effective frigate with significant cargo capacity. On this basis, it can be used as a well-armed and speedy alternative to a standard freighter for trade runs where prejudice is anticipated.nnThe Sentinel variation compromises speed in favour of additional cargo space.", + "size": "medium", + "explosionDamage": 200, + "hull": 39000, + "storage": { + "missile": 100, + "unit": 17 + }, + "people": 12, + "purpose": "fight", + "thruster": "medium", + "type": "frigate", + "mass": 82.42, + "inertia": { + "pitch": 8.443, + "yaw": 8.443, + "roll": 6.754 + }, + "drag": { + "forward": 20.968, + "reverse": 58.71, + "horizontal": 19.916, + "vertical": 19.916, + "pitch": 16.173, + "yaw": 16.173, + "roll": 16.173 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 2916, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 1, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 1074162, + "max": 1453278, + "avg": 1263720 + }, + "production": [ + { + "time": 41, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 226 + }, + { + "ware": "hullparts", + "amount": 1192 + } + ] + } + ] + }, + { + "id": "ship_tel_m_miner_liquid_01_a", + "version": 0, + "name": "Manorina (Gas) Vanguard", + "description": "While ostensibly a resource harvester, some enterprising captains have repurposed the Teladi Manorina as a low-cost gunship, taking full advantage of its outstanding shielding capacity. Some even go as far as retaining the mining drill as a weapon, due to its extended range. Suspicions are occasionally expressed that this is a Teladi artifice for trading a weapon of war under civilian guise, avoiding the requirement for a military licence.nnThe Manorina can also be used to collect gas, and the Vanguard model adds a useful degree of speed.", + "size": "medium", + "explosionDamage": 100, + "hull": 3700, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 9, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 28.725, + "inertia": { + "pitch": 8.66, + "yaw": 8.66, + "roll": 6.928 + }, + "drag": { + "forward": 4.1, + "reverse": 23.429, + "horizontal": 25.382, + "vertical": 25.382, + "pitch": 15.426, + "yaw": 15.426, + "roll": 15.426 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 10800, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "hatikvah", + "teladi" + ], + "price": { + "min": 101035, + "max": 136695, + "avg": 118865 + }, + "production": [ + { + "time": 11, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 62 + }, + { + "ware": "hullparts", + "amount": 109 + } + ] + } + ] + }, + { + "id": "ship_tel_m_miner_liquid_01_b", + "version": 0, + "name": "Manorina (Gas) Sentinel", + "description": "While ostensibly a resource harvester, some enterprising captains have repurposed the Teladi Manorina as a low-cost gunship, taking full advantage of its outstanding shielding capacity. Some even go as far as retaining the mining drill as a weapon, due to its extended range. Suspicions are occasionally expressed that this is a Teladi artifice for trading a weapon of war under civilian guise, avoiding the requirement for a military licence.nnThe Manorina can also be used for harmless gas collection. The Sentinel model boasts increased storage capacity.", + "size": "medium", + "explosionDamage": 100, + "hull": 4500, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 7, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 34.47, + "inertia": { + "pitch": 10.111, + "yaw": 10.111, + "roll": 8.089 + }, + "drag": { + "forward": 4.708, + "reverse": 26.904, + "horizontal": 30.459, + "vertical": 30.459, + "pitch": 18.011, + "yaw": 18.011, + "roll": 18.011 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 12960, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "hatikvah", + "ministry" + ], + "price": { + "min": 122349, + "max": 165531, + "avg": 143940 + }, + "production": [ + { + "time": 14, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 75 + }, + { + "ware": "hullparts", + "amount": 132 + } + ] + } + ] + }, + { + "id": "ship_tel_m_miner_solid_01_a", + "version": 0, + "name": "Manorina (Mineral) Vanguard", + "description": "While ostensibly a resource harvester, some enterprising captains have repurposed the Teladi Manorina as a low-cost gunship, taking full advantage of its outstanding shielding capacity. Some even go as far as retaining the mining drill as a weapon, due to its extended range. Suspicions are occasionally expressed that this is a Teladi artifice for trading a weapon of war under civilian guise, avoiding the requirement for a military licence.nnThe Manorina can also be used to mine asteroids, and the Vanguard model adds a degree of speed in either use case.", + "size": "medium", + "explosionDamage": 100, + "hull": 3700, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 10, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 28.725, + "inertia": { + "pitch": 8.66, + "yaw": 8.66, + "roll": 6.928 + }, + "drag": { + "forward": 4.1, + "reverse": 23.429, + "horizontal": 25.382, + "vertical": 25.382, + "pitch": 15.426, + "yaw": 15.426, + "roll": 15.426 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + } + ], + "cargo": [ + { + "max": 10000, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "hatikvah", + "teladi" + ], + "price": { + "min": 101035, + "max": 136695, + "avg": 118865 + }, + "production": [ + { + "time": 11, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 62 + }, + { + "ware": "hullparts", + "amount": 109 + } + ] + } + ] + }, + { + "id": "ship_tel_m_miner_solid_01_b", + "version": 0, + "name": "Manorina (Mineral) Sentinel", + "description": "While ostensibly a resource harvester, some enterprising captains have repurposed the Teladi Manorina as a low-cost gunship, taking full advantage of its outstanding shielding capacity. Some even go as far as retaining the mining drill as a weapon, due to its extended range. Suspicions are occasionally expressed that this is a Teladi artifice for trading a weapon of war under civilian guise, avoiding the requirement for a military licence.nnThe Manorina can also be used to mine asteroids, and the Sentinel variation adds some resilience to stray rocks or foes alike.", + "size": "medium", + "explosionDamage": 100, + "hull": 4500, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 8, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 34.47, + "inertia": { + "pitch": 10.111, + "yaw": 10.111, + "roll": 8.089 + }, + "drag": { + "forward": 4.708, + "reverse": 26.904, + "horizontal": 30.459, + "vertical": 30.459, + "pitch": 18.011, + "yaw": 18.011, + "roll": 18.011 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + } + ], + "cargo": [ + { + "max": 12000, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "hatikvah", + "ministry" + ], + "price": { + "min": 122349, + "max": 165531, + "avg": 143940 + }, + "production": [ + { + "time": 14, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 75 + }, + { + "ware": "hullparts", + "amount": 132 + } + ] + } + ] + }, + { + "id": "ship_tel_m_trans_container_01_a", + "version": 0, + "name": "Vulture Vanguard", + "description": "The Teladi Vulture medium freighter, while generally unassuming, remains a popular choice for independent traders in particular. It has excellent cargo capacity, more than making up for its lack of speed, on an analysis of trade route profitability.nnThe Vanguard model increases speed marginally, however, this comes with a reduction in cargo space.", + "size": "medium", + "explosionDamage": 100, + "hull": 8000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 16, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 63.13, + "inertia": { + "pitch": 12.532, + "yaw": 12.532, + "roll": 10.025 + }, + "drag": { + "forward": 11.061, + "reverse": 44.244, + "horizontal": 20.402, + "vertical": 20.402, + "pitch": 18.283, + "yaw": 18.283, + "roll": 18.283 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 12080, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "teladi" + ], + "price": { + "min": 226117, + "max": 305923, + "avg": 266020 + }, + "production": [ + { + "time": 25, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 138 + }, + { + "ware": "hullparts", + "amount": 244 + } + ] + } + ] + }, + { + "id": "ship_tel_m_trans_container_01_b", + "version": 0, + "name": "Vulture Sentinel", + "description": "The Teladi Vulture medium freighter, while generally unassuming, remains a popular choice for independent traders in particular. It has excellent cargo capacity, more than making up for its lack of speed, on an analysis of trade route profitability.nnThe Sentinel variant has perhaps the largest cargo space of any medium freighter, meriting consideration from any mogul seeking to optimise profits.", + "size": "medium", + "explosionDamage": 100, + "hull": 9000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 13, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 75.756, + "inertia": { + "pitch": 14.695, + "yaw": 14.695, + "roll": 11.756 + }, + "drag": { + "forward": 12.971, + "reverse": 51.882, + "horizontal": 24.482, + "vertical": 24.482, + "pitch": 21.439, + "yaw": 21.439, + "roll": 21.439 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 15100, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 262323, + "max": 354907, + "avg": 308615 + }, + "production": [ + { + "time": 29, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 161 + }, + { + "ware": "hullparts", + "amount": 283 + } + ] + } + ] + }, + { + "id": "ship_tel_m_trans_container_02_a", + "version": 0, + "name": "Tern Vanguard", + "description": "The Teladi Tern is a surprisingly cost effective and efficient freighter, a staple of many trading corporations. Its affordability and solid performance make it one of the more popular Teladi vessel designs.nnThe Vanguard model is optimised for speed, however, the reduction in cargo capacity reduces the Tern's overall trading performance.", + "size": "medium", + "explosionDamage": 100, + "hull": 7000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 20, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 56.817, + "inertia": { + "pitch": 11.45, + "yaw": 11.45, + "roll": 9.16 + }, + "drag": { + "forward": 10.106, + "reverse": 40.424, + "horizontal": 18.361, + "vertical": 18.361, + "pitch": 16.704, + "yaw": 16.704, + "roll": 16.704 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 10880, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "teladi" + ], + "price": { + "min": 226117, + "max": 305923, + "avg": 266020 + }, + "production": [ + { + "time": 25, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 138 + }, + { + "ware": "hullparts", + "amount": 244 + } + ] + } + ] + }, + { + "id": "ship_tel_m_trans_container_02_b", + "version": 0, + "name": "Tern Sentinel", + "description": "The Teladi Tern is a surprisingly cost effective and efficient freighter, a staple of many trading corporations. Its affordability and solid performance make it one of the more popular Teladi vessel designs.nnThe Tern Sentinel variant has a hardened hull composite, and is favoured by many traders.", + "size": "medium", + "explosionDamage": 100, + "hull": 8000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 16, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 68.18, + "inertia": { + "pitch": 13.397, + "yaw": 13.397, + "roll": 10.718 + }, + "drag": { + "forward": 11.825, + "reverse": 47.299, + "horizontal": 22.034, + "vertical": 22.034, + "pitch": 19.545, + "yaw": 19.545, + "roll": 19.545 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 13600, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 262323, + "max": 354907, + "avg": 308615 + }, + "production": [ + { + "time": 29, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 161 + }, + { + "ware": "hullparts", + "amount": 283 + } + ] + } + ] + }, + { + "id": "ship_tel_m_trans_container_03_a", + "version": 0, + "name": "Cormorant Vanguard", + "description": "The Cormorant is unusual for a Teladi ship as it is tailored for freelancers. A light freighter with very basic construction specifications, it is inexpensive and accessible for most entrepreneurs starting out in business.nnThe Cormorant Vanguard is not well armed, however, it is resilient. Many of the fittings successfully remain attached during spaceflight.", + "size": "medium", + "explosionDamage": 100, + "hull": 10000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 17, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 65.536, + "inertia": { + "pitch": 13.437, + "yaw": 13.437, + "roll": 10.75 + }, + "drag": { + "forward": 17.137, + "reverse": 68.549, + "horizontal": 18.864, + "vertical": 18.864, + "pitch": 25.493, + "yaw": 25.493, + "roll": 25.493 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 7900, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 356006, + "max": 481655, + "avg": 418830 + }, + "production": [ + { + "time": 26, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 141 + }, + { + "ware": "hullparts", + "amount": 390 + } + ] + } + ] + }, + { + "id": "ship_tel_s_fighter_01_a", + "version": 0, + "name": "Falcon Vanguard", + "description": "The Teladi Falcon is a well regarded fighter. Its excellent speed, paired with reasonable strength and weaponry, make it a popular choice for fighter pilots on a budget.nnThe additional speed conferred by the Vanguard model opens up the possibility of the Falcon being used as a tactical interceptor.", + "size": "small", + "hull": 3900, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 3, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 8.091, + "inertia": { + "pitch": 1.75, + "yaw": 1.75, + "roll": 1.925 + }, + "drag": { + "forward": 4.111, + "reverse": 13.866, + "horizontal": 3.295, + "vertical": 3.295, + "pitch": 3.119, + "yaw": 3.119, + "roll": 3.119 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 340, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "hatikvah", + "scaleplate", + "teladi" + ], + "price": { + "min": 139706, + "max": 189014, + "avg": 164360 + }, + "production": [ + { + "time": 13, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 69 + }, + { + "ware": "hullparts", + "amount": 152 + } + ] + } + ] + }, + { + "id": "ship_tel_s_fighter_01_b", + "version": 0, + "name": "Falcon Sentinel", + "description": "The Teladi Falcon is a well regarded fighter. Its excellent speed, paired with reasonable strength and weaponry, make it a popular choice for fighter pilots on a budget.nnThe Falcon Sentinel is thought by many to be a compromise too far, with reduced speed and increased resilience rendering the overall performance somewhat mediocre.", + "size": "small", + "hull": 4600, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 9.709, + "inertia": { + "pitch": 2.005, + "yaw": 2.005, + "roll": 2.206 + }, + "drag": { + "forward": 4.334, + "reverse": 15.484, + "horizontal": 3.954, + "vertical": 3.954, + "pitch": 3.574, + "yaw": 3.574, + "roll": 3.574 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 408, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "hatikvah", + "ministry", + "scaleplate" + ], + "price": { + "min": 166349, + "max": 225061, + "avg": 195705 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 82 + }, + { + "ware": "hullparts", + "amount": 181 + } + ] + } + ] + }, + { + "id": "ship_tel_s_fighter_02_a", + "version": 0, + "name": "Buzzard Vanguard", + "description": "While the Teladi seem to have great affection for their Buzzard fighter, this is not without an awareness of its limitations.nn\"Tough as brick, fast as brick\" is the unofficial strapline adopted by Buzzard pilots, and it is often seen painted on hulls.nnThe Buzzard seems to be designed to survive long enough for help to come rather than tackling assailants head-on. The modest additional speed provided by the Vanguard model is unlikely to make a difference to pilots' tactical options.", + "size": "small", + "hull": 4100, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 3, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 8.698, + "inertia": { + "pitch": 2.204, + "yaw": 2.204, + "roll": 2.425 + }, + "drag": { + "forward": 5.312, + "reverse": 22.601, + "horizontal": 3.78, + "vertical": 3.78, + "pitch": 3.656, + "yaw": 3.656, + "roll": 3.656 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 300, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "teladi" + ], + "price": { + "min": 134173, + "max": 181528, + "avg": 157850 + }, + "production": [ + { + "time": 12, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 66 + }, + { + "ware": "hullparts", + "amount": 146 + } + ] + } + ] + }, + { + "id": "ship_tel_s_fighter_02_b", + "version": 0, + "name": "Buzzard Sentinel", + "description": "While the Teladi seem to have great affection for their Buzzard fighter, this is not without an awareness of its limitations.nn\"Tough as brick, fast as brick\" is the unofficial strapline adopted by Buzzard pilots, and it is often seen painted on hulls.nnThe Buzzard seems to be designed to survive long enough for help to come rather than tackling assailants head-on. The Sentinel variant leans into this design strategy.", + "size": "small", + "hull": 5000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 10.437, + "inertia": { + "pitch": 2.532, + "yaw": 2.532, + "roll": 2.786 + }, + "drag": { + "forward": 5.707, + "reverse": 25.472, + "horizontal": 4.536, + "vertical": 4.536, + "pitch": 4.199, + "yaw": 4.199, + "roll": 4.199 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 360, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 161772, + "max": 218868, + "avg": 190320 + }, + "production": [ + { + "time": 14, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 80 + }, + { + "ware": "hullparts", + "amount": 176 + } + ] + } + ] + }, + { + "id": "ship_tel_s_miner_solid_01_a", + "version": 0, + "name": "Magpie (Mineral)", + "description": "The Teladi Company designed the Magpie as an entry-level commerce vessel, often gifted to younglings as a rite of passage on their entrepreneurship debut. Incapable of large scale trade, veterans often boast of their achievements with the limitations afforded by their first, sole Magpie.nnThe mining variant represents a strategic choice for more serious younglings seeking to make a name for themselves. Not as flashy as the Vanguard, nor as solid as the Sentinel, it is often those who choose the mining workhorse as their first ship who go on to become renowned tycoons.", + "size": "small", + "hull": 1300, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 3, + "purpose": "mine", + "thruster": "small", + "type": "miner", + "mass": 10.259, + "inertia": { + "pitch": 4.771, + "yaw": 4.771, + "roll": 3.817 + }, + "drag": { + "forward": 4.409, + "reverse": 22.905, + "horizontal": 5.323, + "vertical": 5.323, + "pitch": 6.708, + "yaw": 6.708, + "roll": 6.708 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "cargo": [ + { + "max": 3500, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "hatikvah", + "ministry", + "teladi" + ], + "price": { + "min": 77197, + "max": 104443, + "avg": 90820 + }, + "production": [ + { + "time": 7, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 38 + }, + { + "ware": "hullparts", + "amount": 84 + } + ] + } + ] + }, + { + "id": "ship_tel_s_scout_01_a", + "version": 0, + "name": "Kestrel Vanguard", + "description": "There are faster scouts than the Teladi Kestrel, yet it still manages to function respectably. It is more solid that most of its competitors, and has respectable shield energy.nnPilots commonly opt for the somewhat faster Vanguard model.", + "size": "small", + "hull": 2500, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 3, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 6.609, + "inertia": { + "pitch": 1.061, + "yaw": 1.061, + "roll": 0.848 + }, + "drag": { + "forward": 3.397, + "reverse": 8.672, + "horizontal": 4.166, + "vertical": 4.166, + "pitch": 3.472, + "yaw": 3.472, + "roll": 3.472 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 760, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "hatikvah", + "scaleplate", + "teladi" + ], + "price": { + "min": 78153, + "max": 105737, + "avg": 91945 + }, + "production": [ + { + "time": 7, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 39 + }, + { + "ware": "hullparts", + "amount": 85 + } + ] + } + ] + }, + { + "id": "ship_tel_s_scout_01_b", + "version": 0, + "name": "Kestrel Sentinel", + "description": "There are faster scouts than the Teladi Kestrel, yet it still manages to function respectably. It is more solid that most of its competitors, and has respectable shield energy.nnThe Kestrel Sentinel is thought by some to be a compromise too far, in terms of speed. However, there are those who prefer the toughened hull that it offers.", + "size": "small", + "hull": 3100, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 7.931, + "inertia": { + "pitch": 1.187, + "yaw": 1.187, + "roll": 0.949 + }, + "drag": { + "forward": 3.579, + "reverse": 9.993, + "horizontal": 5, + "vertical": 5, + "pitch": 3.885, + "yaw": 3.885, + "roll": 3.885 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 912, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "hatikvah", + "ministry", + "scaleplate" + ], + "price": { + "min": 93798, + "max": 126903, + "avg": 110350 + }, + "production": [ + { + "time": 8, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 47 + }, + { + "ware": "hullparts", + "amount": 102 + } + ] + } + ] + }, + { + "id": "ship_tel_s_scout_02_a", + "version": 0, + "name": "Guillemot Vanguard", + "description": "Teladi playboy adventurer Yayasisos Tumulis Wegoras V popularised the Guillemot through his atypical antics. Unlike his entrepreneurial peers, \"Yaya\" built his wealth through a series of daring scout and courier missions, investing his rewards in other businesses.nnWhile Teladi youth venerate Yaya for his adventures, few diverge from the traditional mining, manufacturing and trading expectations of their parents.nnYaya himself is a somewhat shadowy figure, whose purported wealth is obfuscated by an unknown number of shell companies. It is believed that many of his exploits are entirely fictional and, though there are no arrest warrants in his name, it is believed that several police forces would like to have a word with him.nnThe Guillemot Vanguard is somewhat faster than the basic model and, as such, is thought to be Yaya's preference.", + "size": "small", + "hull": 2300, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 3, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 9.899, + "inertia": { + "pitch": 2.059, + "yaw": 2.059, + "roll": 1.647 + }, + "drag": { + "forward": 6.543, + "reverse": 31.548, + "horizontal": 3.187, + "vertical": 3.187, + "pitch": 4.5, + "yaw": 4.5, + "roll": 4.5 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 960, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "teladi" + ], + "price": { + "min": 118596, + "max": 160454, + "avg": 139525 + }, + "production": [ + { + "time": 11, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 59 + }, + { + "ware": "hullparts", + "amount": 129 + } + ] + } + ] + }, + { + "id": "ship_tel_s_scout_02_b", + "version": 0, + "name": "Guillemot Sentinel", + "description": "Teladi playboy adventurer Yayasisos Tumulis Wegoras V popularised the Guillemot through his atypical antics. Unlike his entrepreneurial peers, \"Yaya\" built his wealth through a series of daring scout and courier missions, investing his rewards in other businesses.nnWhile Teladi youth venerate Yaya for his adventures, few diverge from the traditional mining, manufacturing and trading expectations of their parents.nnYaya himself is a somewhat shadowy figure, whose purported wealth is obfuscated by an unknown number of shell companies. It is believed that many of his exploits are entirely fictional and, though there are no arrest warrants in his name, it is believed that several police forces would like to have a word with him.nnThe Guillemot Sentinel is a less romanticised model, though more practical for everyday use.", + "size": "small", + "hull": 2700, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 11.879, + "inertia": { + "pitch": 2.342, + "yaw": 2.342, + "roll": 1.874 + }, + "drag": { + "forward": 7.354, + "reverse": 35.741, + "horizontal": 3.825, + "vertical": 3.825, + "pitch": 5.118, + "yaw": 5.118, + "roll": 5.118 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 1152, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 141551, + "max": 191510, + "avg": 166530 + }, + "production": [ + { + "time": 13, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 70 + }, + { + "ware": "hullparts", + "amount": 154 + } + ] + } + ] + }, + { + "id": "ship_tel_s_trans_container_01_a", + "version": 0, + "name": "Magpie Vanguard", + "description": "The Teladi Company designed the Magpie as an entry-level commerce vessel, often gifted to younglings as a rite of passage on their entrepreneurship debut. Incapable of large scale trade, veterans often boast of their achievements with the limitations afforded by their first, sole Magpie.nnThe Vanguard variant of this light courier provides an enhancement to speed and is a popular choice for novice younglings.", + "size": "small", + "hull": 2400, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 7, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 18.466, + "inertia": { + "pitch": 4.771, + "yaw": 4.771, + "roll": 3.817 + }, + "drag": { + "forward": 5.538, + "reverse": 24.241, + "horizontal": 5.323, + "vertical": 5.323, + "pitch": 6.708, + "yaw": 6.708, + "roll": 6.708 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 3096, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "alliance", + "scaleplate", + "teladi" + ], + "price": { + "min": 143395, + "max": 194005, + "avg": 168700 + }, + "production": [ + { + "time": 13, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 71 + }, + { + "ware": "hullparts", + "amount": 156 + } + ] + } + ] + }, + { + "id": "ship_tel_s_trans_container_01_b", + "version": 0, + "name": "Magpie Sentinel", + "description": "The Teladi Company designed the Magpie as an entry-level commerce vessel, often gifted to younglings as a rite of passage on their entrepreneurship debut. Incapable of large scale trade, veterans often boast of their achievements with the limitations afforded by their first, sole Magpie.nnThe Magpie's Sentinel model is more resilient than others in its class.", + "size": "small", + "hull": 2800, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 5, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 22.159, + "inertia": { + "pitch": 5.592, + "yaw": 5.592, + "roll": 4.474 + }, + "drag": { + "forward": 6.046, + "reverse": 27.934, + "horizontal": 6.387, + "vertical": 6.387, + "pitch": 7.862, + "yaw": 7.862, + "roll": 7.862 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 3870, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry", + "scaleplate" + ], + "price": { + "min": 170038, + "max": 230052, + "avg": 200045 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 84 + }, + { + "ware": "hullparts", + "amount": 185 + } + ] + } + ] + }, + { + "id": "ship_tel_s_trans_container_02_a", + "version": 0, + "name": "Raven", + "description": "The Raven is a recent, classified Ministry of Finance Science Division prototype for a new high security Courier. Its development was the Ministry's attempt at a cheap and technological solution to the Syndicate piracy problem introduced by the reconnection of Windfall to the Gate network. Developed in a department on Woodworm Scrubs, the Raven was the first ship to be suited for experimental cargo spoofing technology. Attempted scan readings present the cargo hold as filled with worthless wares, which should deter piracy attempts or make them less likely. While originally the Raven was required to develop this technology, it can now be applied more universally, and might protect ships not only from pirates, but also from police looking for illicit goods.", + "size": "small", + "hull": 6700, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 5, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 30.818, + "inertia": { + "pitch": 6.097, + "yaw": 6.097, + "roll": 4.877 + }, + "drag": { + "forward": 8.102, + "reverse": 40.443, + "horizontal": 8.843, + "vertical": 8.843, + "pitch": 9.511, + "yaw": 9.511, + "roll": 9.511 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 2580, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 481177, + "max": 651004, + "avg": 566090 + }, + "production": [ + { + "time": 28, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 153 + }, + { + "ware": "hullparts", + "amount": 530 + } + ] + } + ] + }, + { + "id": "ship_tel_xl_builder_01_a", + "version": 0, + "name": "Albatross Vanguard", + "description": "The Teladi Albatross is a giant, station-building ship. It is not a work of art, however, it functions well and provides the infrastructure for much of the Teladi growth economy.nnThe Vanguard variant provides a little extra speed, for when a station needs to be placed in a hurry.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 128000, + "storage": { + "missile": 40, + "unit": 202 + }, + "people": 219, + "purpose": "build", + "thruster": "extralarge", + "type": "builder", + "mass": 982.947, + "inertia": { + "pitch": 679.259, + "yaw": 679.259, + "roll": 543.407 + }, + "drag": { + "forward": 228.186, + "reverse": 912.745, + "horizontal": 467.397, + "vertical": 467.397, + "pitch": 896.589, + "yaw": 896.589, + "roll": 896.589 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 50, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "teladi" + ], + "price": { + "min": 7755200, + "max": 10492330, + "avg": 9123765 + }, + "production": [ + { + "time": 439, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2428 + }, + { + "ware": "hullparts", + "amount": 8545 + } + ] + } + ] + }, + { + "id": "ship_tel_xl_builder_01_b", + "version": 0, + "name": "Albatross Sentinel", + "description": "The Teladi Albatross is a giant, station-building ship. It is not a work of art, however, it functions well and provides the infrastructure for much of the Teladi growth economy.nnThe Sentinel model has improved defensive capabilities, and may be a more suitable option when developing frontier regions.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 154000, + "storage": { + "missile": 40, + "unit": 243 + }, + "people": 182, + "purpose": "build", + "thruster": "extralarge", + "type": "builder", + "mass": 1179.536, + "inertia": { + "pitch": 709.046, + "yaw": 709.046, + "roll": 567.237 + }, + "drag": { + "forward": 260.624, + "reverse": 1042.494, + "horizontal": 560.876, + "vertical": 560.876, + "pitch": 935.907, + "yaw": 935.907, + "roll": 935.907 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 50, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 9306200, + "max": 12590741, + "avg": 10948470 + }, + "production": [ + { + "time": 527, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2913 + }, + { + "ware": "hullparts", + "amount": 10254 + } + ] + } + ] + }, + { + "id": "ship_tel_xl_carrier_01_a", + "version": 0, + "name": "Condor Vanguard", + "description": "The Ministry of Finance commissioned the Condor to be the mainstay of a carrier fleet. While the ship borrows heavily from Split technology, its implementation could not result in a less \"Split\" vessel.nnHeavily reinforced, the Condor is capable of launching a battle fleet under heavy fire. The Vanguard variant provides additional speed, allowing the Condor to get into, and out of, difficult situations with a little more ease.", + "size": "extralarge", + "explosionDamage": 1500, + "hull": 239000, + "storage": { + "missile": 400, + "unit": 20 + }, + "people": 135, + "purpose": "fight", + "thruster": "extralarge", + "type": "carrier", + "mass": 608.398, + "inertia": { + "pitch": 693.545, + "yaw": 693.545, + "roll": 554.836 + }, + "drag": { + "forward": 277.309, + "reverse": 1109.238, + "horizontal": 252.882, + "vertical": 252.882, + "pitch": 821.68, + "yaw": 821.68, + "roll": 821.68 + }, + "engines": [ + { + "group": "group_back_bottom", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_bottom", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_bottom", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_top_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 28000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "teladi" + ], + "price": { + "min": 9494968, + "max": 12846133, + "avg": 11170550 + }, + "production": [ + { + "time": 538, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2972 + }, + { + "ware": "hullparts", + "amount": 10462 + } + ] + } + ] + }, + { + "id": "ship_tel_xl_carrier_01_b", + "version": 0, + "name": "Condor Sentinel", + "description": "The Ministry of Finance commissioned the Condor to be the mainstay of a carrier fleet. While the ship borrows heavily from Split technology, its implementation could not result in a less \"Split\" vessel.nnHeavily reinforced, the Condor is capable of launching a battle fleet under heavy fire. The Sentinel variant braces the ship further, providing a daunting resilience to attack.", + "size": "extralarge", + "explosionDamage": 1500, + "hull": 287000, + "storage": { + "missile": 400, + "unit": 20 + }, + "people": 112, + "purpose": "fight", + "thruster": "extralarge", + "type": "carrier", + "mass": 730.078, + "inertia": { + "pitch": 714.086, + "yaw": 714.086, + "roll": 571.268 + }, + "drag": { + "forward": 310.771, + "reverse": 1243.086, + "horizontal": 303.459, + "vertical": 303.459, + "pitch": 846.016, + "yaw": 846.016, + "roll": 846.016 + }, + "engines": [ + { + "group": "group_back_bottom", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_bottom", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_bottom", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_top_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 33600, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 11398156, + "max": 15421034, + "avg": 13409595 + }, + "production": [ + { + "time": 645, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 3568 + }, + { + "ware": "hullparts", + "amount": 12559 + } + ] + } + ] + }, + { + "id": "ship_tel_xl_resupplier_01_a", + "version": 0, + "name": "Stork Vanguard", + "description": "Auxiliary vessels are essential for fleet management and are able to repair and resupply fleets of all sizes, including carriers. The Teladi Stork fulfils this function passably well. Its lack of general popularity within its class often means it is available at a reasonable price. Fleet managers are advised to keep the Stork well escorted as it is vulnerable to attack.nnThe Vanguard model enhances the Stork's speed, which enables it to remain in fleet formation more easily.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 105000, + "storage": { + "missile": 40, + "unit": 100 + }, + "people": 200, + "purpose": "auxiliary", + "thruster": "extralarge", + "type": "resupplier", + "mass": 896.85, + "inertia": { + "pitch": 547.074, + "yaw": 547.074, + "roll": 437.659 + }, + "drag": { + "forward": 324.213, + "reverse": 1296.85, + "horizontal": 510.578, + "vertical": 510.578, + "pitch": 879.37, + "yaw": 879.37, + "roll": 879.37 + }, + "engines": [ + { + "group": "group_back_bottom", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_bottom", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_bottom", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_top_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 25000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "teladi" + ], + "price": { + "min": 6617127, + "max": 8952583, + "avg": 7784855 + }, + "production": [ + { + "time": 375, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2072 + }, + { + "ware": "hullparts", + "amount": 7291 + } + ] + } + ] + }, + { + "id": "ship_tel_xl_resupplier_01_b", + "version": 0, + "name": "Stork Sentinel", + "description": "Auxiliary vessels are essential for fleet management and are able to repair and resupply fleets of all sizes, including carriers. The Teladi Stork fulfils this function passably well. Its lack of general popularity within its class often means it is available at a reasonable price. Fleet managers are advised to keep the Stork well escorted as it is vulnerable to attack.nnThe Stork Sentinel has increased resilience, though not to the degree that it should be left unattended in hostile space.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 126000, + "storage": { + "missile": 40, + "unit": 100 + }, + "people": 166, + "purpose": "auxiliary", + "thruster": "extralarge", + "type": "resupplier", + "mass": 1076.221, + "inertia": { + "pitch": 569.392, + "yaw": 569.392, + "roll": 455.513 + }, + "drag": { + "forward": 369.055, + "reverse": 1476.221, + "horizontal": 612.694, + "vertical": 612.694, + "pitch": 915.244, + "yaw": 915.244, + "roll": 915.244 + }, + "engines": [ + { + "group": "group_back_bottom", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_bottom", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_bottom", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_top_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_center", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_bottom", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_top_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_center_bottom_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_center", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 30000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "ministry" + ], + "price": { + "min": 7941236, + "max": 10744025, + "avg": 9342630 + }, + "production": [ + { + "time": 450, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2486 + }, + { + "ware": "hullparts", + "amount": 8750 + } + ] + } + ] + }, + { + "id": "ship_xen_m_fighter_01_a", + "version": 0, + "name": "P", + "description": "The lack of intel or communication about the Xenon renders even the most basic questions unanswerable. For example, why does the Xenon P corvette resemble an Earth trilobite?nnRegardless of the inscrutability of Xenon design philosophy, the P remains a fearsome adversary in battle.", + "size": "medium", + "explosionDamage": 500, + "hull": 10000, + "people": 0, + "purpose": "fight", + "thruster": "medium", + "type": "corvette", + "mass": 25.959, + "inertia": { + "pitch": 4.561, + "yaw": 4.561, + "roll": 3.649 + }, + "drag": { + "forward": 4.944, + "reverse": 19.777, + "horizontal": 14.641, + "vertical": 14.641, + "pitch": 8.99, + "yaw": 8.99, + "roll": 8.99 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "owners": [ + "xenon" + ], + "price": { + "min": 66827, + "max": 90413, + "avg": 78620 + }, + "production": [ + { + "time": 17, + "amount": 1, + "method": "default", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 94 + }, + { + "ware": "ore", + "amount": 79 + }, + { + "ware": "silicon", + "amount": 79 + } + ] + } + ] + }, + { + "id": "ship_xen_m_miner_01_a", + "version": 0, + "name": "S", + "description": "The Xenon S is a light miner/freighter supporting the AI collective's primary resource logistics.", + "size": "medium", + "explosionDamage": 500, + "hull": 6000, + "people": 0, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 49.951, + "inertia": { + "pitch": 8.129, + "yaw": 8.129, + "roll": 6.503 + }, + "drag": { + "forward": 8.243, + "reverse": 32.973, + "horizontal": 25.807, + "vertical": 25.807, + "pitch": 14.988, + "yaw": 14.988, + "roll": 14.988 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "mining", + "standard" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 9500, + "types": [ + "container", + "liquid", + "solid" + ] + } + ], + "owners": [ + "xenon" + ], + "price": { + "min": 60648, + "max": 82053, + "avg": 71350 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 85 + }, + { + "ware": "ore", + "amount": 71 + }, + { + "ware": "silicon", + "amount": 72 + } + ] + } + ] + }, + { + "id": "ship_xen_s_fighter_01_a", + "version": 0, + "name": "N", + "description": "While the N is one of the more palatable Xenon adversaries a captain may face, this fighter is disappointingly rarely found alone. It is common to encounter the Xenon N in a fleet or \"swarm\", which may also include the heavier, M class fighter.", + "size": "small", + "hull": 2500, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 0, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 6.508, + "inertia": { + "pitch": 1.49, + "yaw": 1.49, + "roll": 1.192 + }, + "drag": { + "forward": 4.578, + "reverse": 17.262, + "horizontal": 3.723, + "vertical": 3.723, + "pitch": 2.971, + "yaw": 2.971, + "roll": 2.971 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "owners": [ + "xenon" + ], + "price": { + "min": 29351, + "max": 39710, + "avg": 34530 + }, + "production": [ + { + "time": 7, + "amount": 1, + "method": "default", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 41 + }, + { + "ware": "ore", + "amount": 34 + }, + { + "ware": "silicon", + "amount": 35 + } + ] + } + ] + }, + { + "id": "ship_xen_s_fighter_02_a", + "version": 0, + "name": "M", + "description": "The Xenon M is, alone, a robust heavy fighter. Unfortunately, it rarely is alone, commonly engaging as part of a fleet or \"swarm\" of M and N vessels.", + "size": "small", + "hull": 2900, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 0, + "purpose": "fight", + "thruster": "small", + "type": "heavyfighter", + "mass": 7.622, + "inertia": { + "pitch": 1.949, + "yaw": 1.949, + "roll": 1.559 + }, + "drag": { + "forward": 6.544, + "reverse": 31.556, + "horizontal": 3.476, + "vertical": 3.476, + "pitch": 3.32, + "yaw": 3.32, + "roll": 3.32 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "owners": [ + "xenon" + ], + "price": { + "min": 33864, + "max": 45816, + "avg": 39840 + }, + "production": [ + { + "time": 9, + "amount": 1, + "method": "default", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 48 + }, + { + "ware": "ore", + "amount": 40 + }, + { + "ware": "silicon", + "amount": 40 + } + ] + } + ] + }, + { + "id": "ship_xen_s_scout_01_a", + "version": 0, + "name": "T", + "description": "Unlike most Xenon ships, the T scout can be destroyed quite easily, if it can be caught. The T is extraordinarily fast, with an extreme optimisation for speed over all other criteria.", + "size": "small", + "hull": 1200, + "storage": { + "missile": 0, + "unit": 0 + }, + "people": 0, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 5.363, + "inertia": { + "pitch": 0.849, + "yaw": 0.849, + "roll": 0.679 + }, + "drag": { + "forward": 1.645, + "reverse": 6.582, + "horizontal": 3.708, + "vertical": 3.708, + "pitch": 3.082, + "yaw": 3.082, + "roll": 3.082 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "owners": [ + "xenon" + ], + "price": { + "min": 21998, + "max": 29762, + "avg": 25880 + }, + "production": [ + { + "time": 6, + "amount": 1, + "method": "default", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 31 + }, + { + "ware": "ore", + "amount": 26 + }, + { + "ware": "silicon", + "amount": 26 + } + ] + } + ] + }, + { + "id": "ship_xen_xl_carrier_01_a", + "version": 0, + "name": "I", + "description": "The Xenon I is a station commander's worst nightmare. Armed with graviton turrets, which are among the most powerful weapons known in their class, the appearance of this battleship inevitably heralds an imminent and catastrophic hull depletion event.nnThose who are operating facilities under attack by the Xenon I rarely have reactive tactical options beyond a speedy evacuation. Station commanders are advised to prepare defences well in advance, rather than waiting for intelligence indicating increased Xenon activity.nnSaving credits on defensive preparations will, without doubt, prove costly in the event of a Xenon I assault.", + "size": "extralarge", + "explosionDamage": 1500, + "hull": 340000, + "people": 0, + "purpose": "fight", + "thruster": "extralarge", + "type": "battleship", + "mass": 876.951, + "inertia": { + "pitch": 958.525, + "yaw": 958.525, + "roll": 766.82 + }, + "drag": { + "forward": 255.39, + "reverse": 1021.561, + "horizontal": 138.309, + "vertical": 138.309, + "pitch": 787.851, + "yaw": 787.851, + "roll": 787.851 + }, + "engines": [ + { + "group": "group10", + "size": "extralarge", + "hittable": false + }, + { + "group": "group11", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group01", + "size": "medium", + "hittable": true + }, + { + "group": "group03", + "size": "medium", + "hittable": true + }, + { + "group": "group04", + "size": "medium", + "hittable": true + }, + { + "group": "group02", + "size": "medium", + "hittable": true + }, + { + "group": "group05", + "size": "medium", + "hittable": true + }, + { + "group": "group06", + "size": "medium", + "hittable": true + }, + { + "group": "group07", + "size": "medium", + "hittable": true + }, + { + "group": "group07", + "size": "medium", + "hittable": true + }, + { + "group": "group08", + "size": "medium", + "hittable": true + }, + { + "group": "group10", + "size": "medium", + "hittable": true + }, + { + "group": "group11", + "size": "medium", + "hittable": true + }, + { + "group": "group09", + "size": "medium", + "hittable": true + }, + { + "group": "group12", + "size": "medium", + "hittable": true + }, + { + "group": "group12", + "size": "medium", + "hittable": true + }, + { + "group": "group13", + "size": "medium", + "hittable": true + }, + { + "group": "group13", + "size": "medium", + "hittable": true + }, + { + "group": "group14", + "size": "medium", + "hittable": true + }, + { + "group": "group15", + "size": "medium", + "hittable": true + }, + { + "group": "group16", + "size": "medium", + "hittable": true + }, + { + "group": "group14", + "size": "medium", + "hittable": true + }, + { + "group": "group17", + "size": "medium", + "hittable": true + }, + { + "group": "group17", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group18", + "size": "medium", + "hittable": true + }, + { + "group": "group19", + "size": "medium", + "hittable": true + }, + { + "group": "group14", + "size": "medium", + "hittable": true + }, + { + "group": "group14", + "size": "medium", + "hittable": true + }, + { + "group": "group14", + "size": "medium", + "hittable": true + }, + { + "group": "group14", + "size": "medium", + "hittable": true + }, + { + "group": "group14", + "size": "medium", + "hittable": true + }, + { + "group": "group14", + "size": "medium", + "hittable": true + }, + { + "group": "group17", + "size": "medium", + "hittable": true + }, + { + "group": "group17", + "size": "medium", + "hittable": true + }, + { + "group": "group17", + "size": "medium", + "hittable": true + }, + { + "group": "group17", + "size": "medium", + "hittable": true + }, + { + "group": "group17", + "size": "medium", + "hittable": true + }, + { + "group": "group17", + "size": "medium", + "hittable": true + }, + { + "group": "group13", + "size": "medium", + "hittable": true + }, + { + "group": "group13", + "size": "medium", + "hittable": true + }, + { + "group": "group12", + "size": "medium", + "hittable": true + }, + { + "group": "group12", + "size": "medium", + "hittable": true + }, + { + "group": "group08", + "size": "medium", + "hittable": true + }, + { + "group": "group08", + "size": "medium", + "hittable": true + }, + { + "group": "group08", + "size": "medium", + "hittable": true + }, + { + "group": "group09", + "size": "medium", + "hittable": true + }, + { + "group": "group09", + "size": "medium", + "hittable": true + }, + { + "group": "group09", + "size": "medium", + "hittable": true + }, + { + "group": "group02", + "size": "medium", + "hittable": true + }, + { + "group": "group01", + "size": "medium", + "hittable": true + }, + { + "group": "group04", + "size": "medium", + "hittable": true + }, + { + "group": "group03", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group01", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group02", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group03", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group04", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group05", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group06", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group07", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group07", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group07", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group07", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group08", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group08", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group18", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group18", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group18", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group19", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group19", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group19", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group09", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group09", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group12", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group12", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group13", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group13", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group14", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group14", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group15", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group15", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group15", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group15", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group16", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group16", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group16", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group16", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group14", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group14", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group17", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group17", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group17", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group17", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "owners": [ + "xenon" + ], + "price": { + "min": 4300932, + "max": 5818908, + "avg": 5059920 + }, + "production": [ + { + "time": 1094, + "amount": 1, + "method": "default", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 6049 + }, + { + "ware": "ore", + "amount": 5070 + }, + { + "ware": "silicon", + "amount": 5090 + } + ] + } + ] + }, + { + "id": "ship_xen_xl_destroyer_01_a", + "version": 0, + "name": "K", + "description": "The Xenon K is an unfortunately impressive destroyer with armaments sufficient to wipe out capital ships and stations alike. Its formidable shielding should be accounted for when devising counter-tactics.nnNotable Split warrior Ya t'Plp has earned the soubriquet \"K-Dog\" for her proficiency in engaging the Xenon K. Her widely published engagement records are required reading in military academies across the known galaxy.nnt'Plp's guidance on the K is \"Destroy escorts first, then neutralise engines. Then attack, attack, attack. Must waste shields and hull before engines regenerate. Many guns will be needed.\"", + "size": "large", + "explosionDamage": 1500, + "hull": 165000, + "people": 0, + "purpose": "fight", + "thruster": "extralarge", + "type": "destroyer", + "mass": 421.625, + "inertia": { + "pitch": 412.904, + "yaw": 412.904, + "roll": 330.323 + }, + "drag": { + "forward": 164.325, + "reverse": 657.3, + "horizontal": 250.885, + "vertical": 250.885, + "pitch": 705.892, + "yaw": 705.892, + "roll": 705.892 + }, + "engines": [ + { + "group": "group03", + "size": "extralarge", + "hittable": false + }, + { + "group": "group03", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group01", + "size": "medium", + "hittable": true + }, + { + "group": "group02", + "size": "medium", + "hittable": true + }, + { + "group": "group03", + "size": "medium", + "hittable": true + }, + { + "group": "group03", + "size": "medium", + "hittable": true + }, + { + "group": "group04", + "size": "medium", + "hittable": true + }, + { + "group": "group05", + "size": "medium", + "hittable": true + }, + { + "group": "group06", + "size": "medium", + "hittable": true + }, + { + "group": "group07", + "size": "medium", + "hittable": true + }, + { + "group": "group08", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group09", + "size": "medium", + "hittable": true + }, + { + "group": "group02", + "size": "medium", + "hittable": true + }, + { + "group": "group02", + "size": "medium", + "hittable": true + }, + { + "group": "group02", + "size": "medium", + "hittable": true + }, + { + "group": "group09", + "size": "medium", + "hittable": true + }, + { + "group": "group09", + "size": "medium", + "hittable": true + }, + { + "group": "group09", + "size": "medium", + "hittable": true + }, + { + "group": "group06", + "size": "medium", + "hittable": true + }, + { + "group": "group05", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group02", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group01", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group02", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group09", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group09", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group04", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group05", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group06", + "size": "large", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "group": "group07", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + }, + { + "group": "group08", + "size": "medium", + "hittable": true, + "types": [ + "standard" + ] + } + ], + "owners": [ + "xenon" + ], + "price": { + "min": 2067574, + "max": 2797306, + "avg": 2432440 + }, + "production": [ + { + "time": 526, + "amount": 1, + "method": "default", + "name": "Xenon", + "wares": [ + { + "ware": "energycells", + "amount": 2908 + }, + { + "ware": "ore", + "amount": 2437 + }, + { + "ware": "silicon", + "amount": 2447 + } + ] + } + ] + }, + { + "id": "ship_spl_l_destroyer_01_a", + "version": 1, + "name": "Rattlesnake", + "description": "For sheer firepower, the Split Rattlesnake is eye-watering. This is the ideal ship choice for pilots whose preferred battle technique is shock-and-awe.", + "size": "large", + "race": "split", + "explosionDamage": 1000, + "hull": 211000, + "storage": { + "missile": 160, + "unit": 10 + }, + "people": 92, + "purpose": "fight", + "thruster": "large", + "type": "destroyer", + "mass": 248.855, + "inertia": { + "pitch": 206.743, + "yaw": 206.743, + "roll": 165.394 + }, + "drag": { + "forward": 72.939, + "reverse": 291.756, + "horizontal": 50.586, + "vertical": 50.586, + "pitch": 116.771, + "yaw": 116.771, + "roll": 116.771 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_up_back_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_up_back_mid_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_down_back_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_down_back_mid_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_mid_up_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_up_back_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_up_back_mid_2", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_down_back_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_up_back_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_down_back_mid_2", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_down_back_mid_2", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 800, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 10617172, + "max": 14364409, + "avg": 12490790 + }, + "production": [ + { + "time": 309, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1710 + }, + { + "ware": "hullparts", + "amount": 11822 + } + ] + } + ] + }, + { + "id": "ship_spl_l_miner_liquid_01_a", + "version": 1, + "name": "Wyvern (Gas)", + "description": "The Split Wyvern is a large resource-harvesting vessel, with the firepower necessary for more challenging environments. This model is fitted for gas mining.", + "size": "large", + "race": "split", + "explosionDamage": 800, + "hull": 21000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 29, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 159.275, + "inertia": { + "pitch": 112.02, + "yaw": 112.02, + "roll": 89.616 + }, + "drag": { + "forward": 40.867, + "reverse": 233.528, + "horizontal": 78.056, + "vertical": 78.056, + "pitch": 98.855, + "yaw": 98.855, + "roll": 98.855 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 22000, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 1368742, + "max": 1851828, + "avg": 1610285 + }, + "production": [ + { + "time": 66, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 365 + }, + { + "ware": "hullparts", + "amount": 1513 + } + ] + } + ] + }, + { + "id": "ship_spl_l_miner_solid_01_a", + "version": 1, + "name": "Wyvern (Mineral)", + "description": "The Split Wyvern is a large resource-harvesting vessel, with the firepower necessary for more challenging environments. This model is fitted for asteroid mining.", + "size": "large", + "race": "split", + "explosionDamage": 800, + "hull": 21000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 29, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 159.275, + "inertia": { + "pitch": 112.02, + "yaw": 112.02, + "roll": 89.616 + }, + "drag": { + "forward": 40.867, + "reverse": 233.528, + "horizontal": 78.056, + "vertical": 78.056, + "pitch": 98.855, + "yaw": 98.855, + "roll": 98.855 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left_2", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right_2", + "size": "large", + "hittable": false, + "types": [ + "mining", + "standard" + ] + }, + { + "group": "group_front_mid_left_2", + "size": "large", + "hittable": false, + "types": [ + "mining", + "standard" + ] + } + ], + "cargo": [ + { + "max": 20000, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 1368742, + "max": 1851828, + "avg": 1610285 + }, + "production": [ + { + "time": 66, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 365 + }, + { + "ware": "hullparts", + "amount": 1513 + } + ] + } + ] + }, + { + "id": "ship_spl_l_trans_container_01_a", + "version": 1, + "name": "Buffalo", + "description": "The Split Buffalo is admittedly unattractive. But with a useful turn of speed, and a large turret emplacement, this ugly freighter can survive more hazards than most.", + "size": "large", + "race": "split", + "explosionDamage": 800, + "hull": 37000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 59, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 286.597, + "inertia": { + "pitch": 140.827, + "yaw": 140.827, + "roll": 112.662 + }, + "drag": { + "forward": 79.072, + "reverse": 316.288, + "horizontal": 140.503, + "vertical": 140.503, + "pitch": 124.319, + "yaw": 124.319, + "roll": 124.319 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_down_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_down_back_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_up_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_down_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_down_back_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 16000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 2497746, + "max": 3379304, + "avg": 2938525 + }, + "production": [ + { + "time": 120, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 666 + }, + { + "ware": "hullparts", + "amount": 2761 + } + ] + } + ] + }, + { + "id": "ship_spl_m_corvette_01_a", + "version": 1, + "name": "Dragon", + "description": "Early tragedies stoked a general sentiment among Split pilots that the Dragon is a cursed vessel. However, it has, over the decades, become recognised as a formidable warship. The Dragon cannot be discounted in a one-on-one battle with any ship in the known universe.", + "size": "medium", + "race": "split", + "explosionDamage": 500, + "hull": 17000, + "storage": { + "missile": 40, + "unit": 0 + }, + "people": 6, + "purpose": "fight", + "thruster": "medium", + "type": "corvette", + "mass": 23.476, + "inertia": { + "pitch": 7.018, + "yaw": 7.018, + "roll": 5.614 + }, + "drag": { + "forward": 2.992, + "reverse": 11.968, + "horizontal": 13.162, + "vertical": 13.162, + "pitch": 11.298, + "yaw": 11.298, + "roll": 11.298 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 450, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "split" + ], + "price": { + "min": 1056903, + "max": 1429927, + "avg": 1243415 + }, + "production": [ + { + "time": 26, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 142 + }, + { + "ware": "hullparts", + "amount": 1179 + } + ] + } + ] + }, + { + "id": "ship_spl_m_corvette_01_b", + "version": 1, + "name": "Dragon Raider", + "description": "Early tragedies stoked a general sentiment among Split pilots that the Dragon is a cursed vessel. However, it has, over the decades, become recognised as a formidable warship. The Dragon cannot be discounted in a one-on-one battle with any ship in the known universe.nnSomething that started out as nothing more than a Split Free Families Dragon modifying competition, eventually resulted in the specification of the Dragon Raider. A fleet of these particular beasts is sufficient to terrorise the most well-defended systems.", + "size": "medium", + "race": "split", + "explosionDamage": 5000, + "hull": 8000, + "storage": { + "missile": 8, + "unit": 0 + }, + "people": 5, + "purpose": "fight", + "thruster": "medium", + "type": "corvette", + "mass": 17.607, + "inertia": { + "pitch": 2.961, + "yaw": 2.961, + "roll": 2.369 + }, + "drag": { + "forward": 2.467, + "reverse": 9.87, + "horizontal": 12.906, + "vertical": 12.906, + "pitch": 9.317, + "yaw": 9.317, + "roll": 9.317 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 340, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit" + ], + "price": { + "min": 628375, + "max": 850155, + "avg": 739265 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 84 + }, + { + "ware": "hullparts", + "amount": 701 + } + ] + } + ] + }, + { + "id": "ship_spl_m_frigate_01_a", + "version": 1, + "name": "Cobra", + "description": "Famed privateer Ra t'Knt built her infamous career on the decks of the Cobra. Starting out as a debt collector, she would swoop in and snipe turrets from her clients' debtors. This typically left them no choice but to repay, with interest and fees, or they would lose their ship as collateral.nnAfter some time, Ra t'Knt's known whereabouts became more sporadic, until they ended altogether. Split speculation is that, under an assumed identity, she now runs a fleet of Cobras and no longer requires a tiresome, legal basis when separating pilots from their vehicles.", + "size": "medium", + "race": "split", + "explosionDamage": 800, + "hull": 32000, + "storage": { + "missile": 100, + "unit": 5 + }, + "people": 25, + "purpose": "fight", + "thruster": "medium", + "type": "frigate", + "mass": 38.045, + "inertia": { + "pitch": 6.732, + "yaw": 6.732, + "roll": 5.386 + }, + "drag": { + "forward": 8.588, + "reverse": 24.046, + "horizontal": 9.306, + "vertical": 9.306, + "pitch": 11.351, + "yaw": 11.351, + "roll": 11.351 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 1290, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 1, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "split" + ], + "price": { + "min": 1846659, + "max": 2498421, + "avg": 2172540 + }, + "production": [ + { + "time": 45, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 248 + }, + { + "ware": "hullparts", + "amount": 2060 + } + ] + } + ] + }, + { + "id": "ship_spl_m_miner_liquid_01_a", + "version": 1, + "name": "Alligator (Gas)", + "description": "The Split Alligator is a light miner, suitable for a range of resource harvesting needs. Function is prioritised over comfort, so pilots may wish to bring a cushion.nnThis version of the Alligator is optimised for gas collection.", + "size": "medium", + "race": "split", + "explosionDamage": 100, + "hull": 4300, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 8, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 33.07, + "inertia": { + "pitch": 10.706, + "yaw": 10.706, + "roll": 8.565 + }, + "drag": { + "forward": 4.042, + "reverse": 23.096, + "horizontal": 12.437, + "vertical": 12.437, + "pitch": 10.767, + "yaw": 10.767, + "roll": 10.767 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 7600, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 180770, + "max": 244571, + "avg": 212670 + }, + "production": [ + { + "time": 13, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 72 + }, + { + "ware": "hullparts", + "amount": 198 + } + ] + } + ] + }, + { + "id": "ship_spl_m_miner_solid_01_a", + "version": 1, + "name": "Alligator (Mineral)", + "description": "The Split Alligator is a light miner, suitable for a range of resource harvesting needs. Function is prioritised over comfort, so pilots may wish to bring a cushion.nnThis version of the Alligator is optimised for asteroid mining.", + "size": "medium", + "race": "split", + "explosionDamage": 100, + "hull": 4800, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 8, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 36.617, + "inertia": { + "pitch": 12.831, + "yaw": 12.831, + "roll": 10.265 + }, + "drag": { + "forward": 4.375, + "reverse": 24.998, + "horizontal": 10.339, + "vertical": 10.339, + "pitch": 11.654, + "yaw": 11.654, + "roll": 11.654 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + } + ], + "cargo": [ + { + "max": 7000, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 200855, + "max": 271745, + "avg": 236300 + }, + "production": [ + { + "time": 14, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 80 + }, + { + "ware": "hullparts", + "amount": 220 + } + ] + } + ] + }, + { + "id": "ship_spl_m_trans_container_01_a", + "version": 1, + "name": "Boa", + "description": "Nowhere in the owner's manual is the Boa explicitly described as a smuggling vessel. Law-abiding pilots insist that the ship's surprising speed is used to outrun pirates.", + "size": "medium", + "race": "split", + "explosionDamage": 100, + "hull": 7400, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 20, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 56.286, + "inertia": { + "pitch": 15.581, + "yaw": 15.581, + "roll": 12.465 + }, + "drag": { + "forward": 8.887, + "reverse": 35.546, + "horizontal": 23.845, + "vertical": 23.845, + "pitch": 16.572, + "yaw": 16.572, + "roll": 16.572 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 7500, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 317679, + "max": 429801, + "avg": 373740 + }, + "production": [ + { + "time": 23, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 126 + }, + { + "ware": "hullparts", + "amount": 348 + } + ] + } + ] + }, + { + "id": "ship_spl_s_fighter_01_a", + "version": 1, + "name": "Mamba", + "description": "The Split Mamba is a versatile, all-round workhorse with reasonable speed and weaponry. While suitable for those with diverse interests, in time, many pilots opt for something more specialised.", + "size": "small", + "race": "split", + "hull": 3500, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 1, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 5.206, + "inertia": { + "pitch": 1.071, + "yaw": 1.071, + "roll": 0.857 + }, + "drag": { + "forward": 3.295, + "reverse": 8.619, + "horizontal": 3.684, + "vertical": 3.684, + "pitch": 2.893, + "yaw": 2.893, + "roll": 2.893 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 130, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "split" + ], + "price": { + "min": 165266, + "max": 223595, + "avg": 194430 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 53 + }, + { + "ware": "hullparts", + "amount": 182 + } + ] + } + ] + }, + { + "id": "ship_spl_s_fighter_02_a", + "version": 1, + "name": "Asp", + "description": "The Asp is a highly manoeuvrable medium-sized fighter, and a commonly preferred ship for Split mercenaries.", + "size": "small", + "race": "split", + "hull": 4600, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 6.843, + "inertia": { + "pitch": 1.657, + "yaw": 1.657, + "roll": 1.325 + }, + "drag": { + "forward": 3.52, + "reverse": 10.256, + "horizontal": 3.676, + "vertical": 3.676, + "pitch": 3.404, + "yaw": 3.404, + "roll": 3.404 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 170, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "split" + ], + "price": { + "min": 216984, + "max": 293566, + "avg": 255275 + }, + "production": [ + { + "time": 13, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 69 + }, + { + "ware": "hullparts", + "amount": 239 + } + ] + } + ] + }, + { + "id": "ship_spl_s_fighter_02_b", + "version": 1, + "name": "Asp Raider", + "description": "The Asp is a highly manoeuvrable medium-sized fighter, and a commonly preferred ship for Split mercenaries.nnShipwright Qal t'Kzt of the Split Free Families designed the Raider variant of the Asp. It is thought to be the answer to t'Kzt's burning question, \"How much hull does Asp really need?\".", + "size": "small", + "race": "split", + "hull": 1800, + "storage": { + "missile": 4, + "unit": 0 + }, + "people": 1, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 4.106, + "inertia": { + "pitch": 0.484, + "yaw": 0.484, + "roll": 0.387 + }, + "drag": { + "forward": 3.346, + "reverse": 7.518, + "horizontal": 3.376, + "vertical": 3.376, + "pitch": 2.549, + "yaw": 2.549, + "roll": 2.549 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 100, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit" + ], + "price": { + "min": 105349, + "max": 142531, + "avg": 123940 + }, + "production": [ + { + "time": 6, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 34 + }, + { + "ware": "hullparts", + "amount": 116 + } + ] + } + ] + }, + { + "id": "ship_spl_s_heavyfighter_01_a", + "version": 1, + "name": "Chimera", + "description": "The Split Chimera was developed by Bala Gi Research Inc., with the aim of improving long-range performance over the Mamba. However, the large ship profile makes it an easy target, even for less competent gunnery personnel.", + "size": "small", + "race": "split", + "hull": 6100, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "heavyfighter", + "mass": 9.056, + "inertia": { + "pitch": 2.931, + "yaw": 2.931, + "roll": 2.344 + }, + "drag": { + "forward": 6.34, + "reverse": 35.14, + "horizontal": 3.632, + "vertical": 3.632, + "pitch": 4.096, + "yaw": 4.096, + "roll": 4.096 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 200, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "split" + ], + "price": { + "min": 287831, + "max": 389419, + "avg": 338625 + }, + "production": [ + { + "time": 17, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 92 + }, + { + "ware": "hullparts", + "amount": 317 + } + ] + } + ] + }, + { + "id": "ship_spl_s_heavyfighter_02_a", + "version": 1, + "name": "Balaur", + "description": "Acclaimed Free Families shipwright Qal t'Kzt considers the Balaur her finest achievement. Her guidance to its pilots is to \"hit hard, hit fast, then run\".", + "size": "small", + "race": "split", + "hull": 5500, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 1, + "purpose": "fight", + "thruster": "small", + "type": "heavyfighter", + "mass": 6.473, + "inertia": { + "pitch": 1.682, + "yaw": 1.682, + "roll": 1.345 + }, + "drag": { + "forward": 4.784, + "reverse": 22.946, + "horizontal": 4.163, + "vertical": 4.163, + "pitch": 3.288, + "yaw": 3.288, + "roll": 3.288 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 180, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit" + ], + "price": { + "min": 230648, + "max": 312053, + "avg": 271350 + }, + "production": [ + { + "time": 13, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 74 + }, + { + "ware": "hullparts", + "amount": 254 + } + ] + } + ] + }, + { + "id": "ship_spl_s_miner_solid_01_a", + "version": 1, + "name": "Tuatara (Mineral)", + "description": "When billionaire heir Soa t'Snt announced his venture into ship design, no-one believed he could fail.nnHow wrong they were.nnDespite many attempts, the only vessel to make it off dry dock to date is the Tuatara. For its class, it is indeed fast, but not notably so. The Tuatara also lacks a generous hold and is, frankly, somewhat on the expensive side.nnThe enduring surprise is that anyone at all purchases this vessel. And yet, it does look attractive and there are always some fundamentalists who will only buy Split technology.nnThe mining variant fails to deliver sufficient speed to make up for the Tuatara's pitiful hold capacity.", + "size": "small", + "race": "split", + "hull": 1200, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 2, + "purpose": "mine", + "thruster": "small", + "type": "miner", + "mass": 9.209, + "inertia": { + "pitch": 3.748, + "yaw": 3.748, + "roll": 2.998 + }, + "drag": { + "forward": 4.002, + "reverse": 19.656, + "horizontal": 3.561, + "vertical": 3.561, + "pitch": 3.815, + "yaw": 3.815, + "roll": 3.815 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "mining", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "cargo": [ + { + "max": 1720, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 108970, + "max": 147430, + "avg": 128200 + }, + "production": [ + { + "time": 6, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 35 + }, + { + "ware": "hullparts", + "amount": 120 + } + ] + } + ] + }, + { + "id": "ship_spl_s_scout_01_a", + "version": 1, + "name": "Jaguar", + "description": "The Split Jaguar is a scout ship with truly phenomenal speed. As such, it is popular with racers, couriers and getaway drivers.", + "size": "small", + "race": "split", + "hull": 2000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 1, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 5.147, + "inertia": { + "pitch": 1.103, + "yaw": 1.103, + "roll": 0.883 + }, + "drag": { + "forward": 1.49, + "reverse": 5.959, + "horizontal": 3.95, + "vertical": 3.95, + "pitch": 3.015, + "yaw": 3.015, + "roll": 3.015 + }, + "engines": [ + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 380, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 124410, + "max": 168320, + "avg": 146365 + }, + "production": [ + { + "time": 7, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "hullparts", + "amount": 137 + } + ] + } + ] + }, + { + "id": "ship_spl_s_trans_container_01_a", + "version": 1, + "name": "Tuatara", + "description": "When billionaire heir Soa t'Snt announced his venture into ship design, no-one believed he could fail.nnHow wrong they were.nnDespite many attempts, the only vessel to make it off dry dock to date is the Tuatara. For its class, it is indeed fast, but not notably so. The Tuatara also lacks a generous hold and is, frankly, somewhat on the expensive side.nnThe enduring surprise is that anyone at all purchases this vessel. And yet, it does look attractive and there are always some fundamentalists who will only buy Split technology.", + "size": "small", + "race": "split", + "hull": 2300, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 4, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 17.257, + "inertia": { + "pitch": 6.473, + "yaw": 6.473, + "roll": 5.179 + }, + "drag": { + "forward": 5.109, + "reverse": 21.807, + "horizontal": 6.061, + "vertical": 6.061, + "pitch": 6.33, + "yaw": 6.33, + "roll": 6.33 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 1350, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 210630, + "max": 284970, + "avg": 247800 + }, + "production": [ + { + "time": 12, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 67 + }, + { + "ware": "hullparts", + "amount": 232 + } + ] + } + ] + }, + { + "id": "ship_spl_xl_builder_01_a", + "version": 1, + "name": "Elephant", + "description": "The Split Elephant is a well-armoured station construction vessel, suited to developing sites in hazardous conditions. While undertaking building works, the Elephant can house a small fleet of building drones to facilitate its endeavours.", + "size": "extralarge", + "race": "split", + "explosionDamage": 1200, + "hull": 181000, + "storage": { + "missile": 40, + "unit": 130 + }, + "people": 182, + "purpose": "build", + "thruster": "extralarge", + "type": "builder", + "mass": 1151.849, + "inertia": { + "pitch": 825.967, + "yaw": 825.967, + "roll": 660.774 + }, + "drag": { + "forward": 151.305, + "reverse": 605.221, + "horizontal": 443.9, + "vertical": 443.9, + "pitch": 930.37, + "yaw": 930.37, + "roll": 930.37 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 50, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 10219542, + "max": 13826439, + "avg": 12022990 + }, + "production": [ + { + "time": 500, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2864 + }, + { + "ware": "hullparts", + "amount": 11286 + } + ] + } + ] + }, + { + "id": "ship_spl_xl_carrier_01_a", + "version": 1, + "name": "Raptor", + "description": "Empire builders report fondness for the Split Raptor carrier. Hideously well armed, the Raptor eschews prosaic trivialities such as shielding and reinforced hulls in favour of violently dismantling anything that enters its vicinity.nnHowever, any antagonist that can remain functional for more than twenty seconds in the Raptor's presence does have the possibility of taking advantage of the vessels cursory defences.", + "size": "extralarge", + "race": "split", + "explosionDamage": 1500, + "hull": 590000, + "storage": { + "missile": 320, + "unit": 20 + }, + "people": 309, + "purpose": "fight", + "thruster": "extralarge", + "type": "carrier", + "mass": 863.742, + "inertia": { + "pitch": 1549.016, + "yaw": 1549.016, + "roll": 1239.213 + }, + "drag": { + "forward": 120.582, + "reverse": 482.329, + "horizontal": 164.282, + "vertical": 164.282, + "pitch": 867.348, + "yaw": 867.348, + "roll": 867.348 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_bottom_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_bottom_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_bottom", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_top_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_top_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_top_l", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_top_l", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_top_l", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_top_l", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid_3", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid_3", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_bottom_l", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_bottom_l", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_bottom_l", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_bottom_l", + "size": "medium", + "hittable": true + }, + { + "group": "group_interior_hangar_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_interior_hangar_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_front", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_bottom_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_bottom_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_bottom", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_bottom", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_bottom", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_bottom", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_bottom", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid_2", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_top_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_top_l", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_top_l", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_bottom_l", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_bottom_l", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_bottom_l", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_bottom_l", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_top_l", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_top_l", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid_3", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid_3", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_interior_hangar_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_interior_hangar_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_interior_hangar_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_interior_hangar_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 19000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + }, + { + "capacity": 100, + "size": "small" + }, + { + "capacity": 30, + "size": "medium" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 27714314, + "max": 37495836, + "avg": 32605075 + }, + "production": [ + { + "time": 1007, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 5565 + }, + { + "ware": "hullparts", + "amount": 30775 + } + ] + } + ] + }, + { + "id": "ship_spl_xl_resupplier_01_a", + "version": 1, + "name": "Monitor", + "description": "The Split Monitor is a well-armed and well-armoured auxiliary vessel. This class of ship, if properly crewed and maintained, allows for the continuous rearming, resupply and repair that is necessary for an active war fleet.", + "size": "extralarge", + "race": "split", + "explosionDamage": 1200, + "hull": 160000, + "storage": { + "missile": 40, + "unit": 100 + }, + "people": 128, + "purpose": "auxiliary", + "thruster": "extralarge", + "type": "resupplier", + "mass": 1245.388, + "inertia": { + "pitch": 1401.536, + "yaw": 1401.536, + "roll": 1121.229 + }, + "drag": { + "forward": 213.9, + "reverse": 855.602, + "horizontal": 417.789, + "vertical": 417.789, + "pitch": 949.078, + "yaw": 949.078, + "roll": 949.078 + }, + "engines": [ + { + "group": "group_back_mid_down", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_down", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_mid_left_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_left_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_right_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_left_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_left_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_left_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_right_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_right_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 29000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "court", + "freesplit", + "split" + ], + "price": { + "min": 14646486, + "max": 19815834, + "avg": 17231160 + }, + "production": [ + { + "time": 532, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2941 + }, + { + "ware": "hullparts", + "amount": 16264 + } + ] + } + ] + }, + { + "id": "ship_atf_l_destroyer_01_a", + "version": 1, + "name": "Syn", + "description": "The Syn-class destroyer is a remnant of the AGI Task Force fleet. With its three front-facing weapons, it was designed to take on large, slow targets. While most other ATF ships were systematically decommissioned and replaced by the Terran Protectorate, the Syn, due to its specialised nature, was absorbed into the Protectorate's military. While the Terran Protectorate developed their own destroyer-class ship, the Osaka, they saw sufficient military value in operating two distinct lines of destroyers side by side.", + "size": "large", + "race": "terran", + "explosionDamage": 1000, + "hull": 119000, + "storage": { + "missile": 160, + "unit": 10 + }, + "people": 187, + "purpose": "fight", + "thruster": "large", + "type": "destroyer", + "mass": 124.088, + "inertia": { + "pitch": 107.528, + "yaw": 107.528, + "roll": 86.022 + }, + "drag": { + "forward": 48.613, + "reverse": 194.453, + "horizontal": 23.482, + "vertical": 23.482, + "pitch": 91.818, + "yaw": 91.818, + "roll": 91.818 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_up_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_up_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_left_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_left_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_up_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_up_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_down_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_down_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_down_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_down_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_left_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_left_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_left_2", + "size": "large", + "hittable": false, + "types": [ + "missile", + "standard" + ] + }, + { + "group": "group_mid_right_up_2", + "size": "large", + "hittable": false, + "types": [ + "missile", + "standard" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_left_1", + "size": "large", + "hittable": false, + "types": [ + "missile", + "standard" + ] + }, + { + "group": "group_mid_right_up_1", + "size": "large", + "hittable": false, + "types": [ + "missile", + "standard" + ] + }, + { + "group": "group_mid_right_down_2", + "size": "large", + "hittable": false, + "types": [ + "missile", + "standard" + ] + }, + { + "group": "group_mid_right_down_1", + "size": "large", + "hittable": false, + "types": [ + "missile", + "standard" + ] + }, + { + "group": "group_mid_down_left_2", + "size": "large", + "hittable": false, + "types": [ + "missile", + "standard" + ] + }, + { + "group": "group_mid_down_left_1", + "size": "large", + "hittable": false, + "types": [ + "missile", + "standard" + ] + } + ], + "cargo": [ + { + "max": 2600, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + }, + { + "capacity": 40, + "size": "small" + } + ], + "owners": [ + "terran" + ], + "price": { + "min": 12600383, + "max": 17047577, + "avg": 14823980 + }, + "production": [ + { + "time": 234, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 352 + }, + { + "ware": "energycells", + "amount": 1296 + }, + { + "ware": "metallicmicrolattice", + "amount": 590 + } + ] + } + ] + }, + { + "id": "ship_atf_xl_battleship_01_a", + "version": 1, + "name": "Asgard", + "description": "The Asgard-class battleship was designed by the ATF to be a moving fortress, capable of taking on even the most monumental Xenon strongholds and capital ships. It is very slow, but also very powerful, and is especially noteworthy because of its unique forward-facing XL Main Battery. This weapon makes use of some unique technology that was specifically designed for the ATF, and is no longer available elsewhere. In terms of raw single-shot damage, it is currently the most powerful gun in the known universe.nnThis was the last ship class designed and produced by the ATF before the organisation was dissolved and its resources absorbed by the Terran Protectorate. Despite the change in administration, the Asgard is still frequently used by the Terran Protectorate because its sheer firepower has yet to be surpassed.", + "size": "extralarge", + "race": "terran", + "explosionDamage": 1500, + "hull": 275000, + "storage": { + "missile": 1160, + "unit": 10 + }, + "people": 360, + "purpose": "fight", + "thruster": "extralarge", + "type": "battleship", + "mass": 487.388, + "inertia": { + "pitch": 485.311, + "yaw": 485.311, + "roll": 388.249 + }, + "drag": { + "forward": 133.108, + "reverse": 532.433, + "horizontal": 259.232, + "vertical": 259.232, + "pitch": 717.73, + "yaw": 717.73, + "roll": 717.73 + }, + "engines": [ + { + "group": "group_back_mid_down", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_mid_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_mid_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right_1", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "extralarge", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left_1", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left_1", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left_2", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_left_2", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right_2", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right_2", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right_1", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_up_right_1", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left_2", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left_2", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left_1", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_left_1", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right_2", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right_2", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right_1", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_down_right_1", + "size": "large", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 9000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + }, + { + "capacity": 40, + "size": "small" + } + ], + "owners": [ + "terran" + ], + "price": { + "min": 22252932, + "max": 30106908, + "avg": 26179920 + }, + "production": [ + { + "time": 516, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 619 + }, + { + "ware": "energycells", + "amount": 2854 + }, + { + "ware": "metallicmicrolattice", + "amount": 1300 + } + ] + } + ] + }, + { + "id": "ship_gen_m_transdrone_container_02_a", + "version": 1, + "name": "Medium Terraforming Drone", + "description": "The economic benefits of a successful planetary reformat can be immense.nnThe Small Terraforming Drone is a highly complex, state-of-the-art innovation, essential for enabling this work. The Medium Terraforming Drone is an enhanced model, offering a greater operational efficiency.", + "size": "medium", + "explosionDamage": 500, + "hull": 10000, + "storage": { + "missile": 0, + "unit": 0 + }, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 42, + "inertia": { + "pitch": 6, + "yaw": 6, + "roll": 4 + }, + "drag": { + "forward": 7, + "reverse": 29, + "horizontal": 26, + "vertical": 26, + "pitch": 13, + "yaw": 13, + "roll": 13 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "owners": [ + "player" + ], + "price": { + "min": 39610, + "max": 53590, + "avg": 46600 + }, + "production": [] + }, + { + "id": "ship_gen_s_transdrone_container_02_a", + "version": 1, + "name": "Small Terraforming Drone", + "description": "The economic benefits of a successful planetary reformat can be immense.nnThe Small Terraforming Drone is a highly complex, state-of-the-art innovation, essential for enabling this work.", + "size": "small", + "explosionDamage": 100, + "hull": 2200, + "storage": { + "missile": 0, + "unit": 0 + }, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 1, + "inertia": { + "pitch": 3, + "yaw": 17, + "roll": 4 + }, + "drag": { + "forward": 5.5, + "reverse": 24, + "horizontal": 6, + "vertical": 6, + "pitch": 6, + "yaw": 4, + "roll": 6 + }, + "engines": [ + { + "size": "small", + "hittable": false + } + ], + "owners": [ + "player" + ], + "price": { + "min": 19805, + "max": 26795, + "avg": 23300 + }, + "production": [] + }, + { + "id": "ship_ter_l_destroyer_01_a", + "version": 1, + "name": "Osaka", + "description": "This state of the art version of the Osaka-class destroyer is the result of meticulously redesigning and overhauling its predecessor model. The design retained the two-pronged front bow of the older ship, while adopting an elongated rear section more typical of contemporary Terran designs.nnDestroyer-class ships usually play an important role in engaging large enemy targets, while also serving as an anchor point for larger fleet movement. The Terran Protectorate's Osaka, however, specialises only in the first of these two roles, leaving coordination duties to the fleet's carriers and battleships.", + "size": "large", + "race": "terran", + "explosionDamage": 1000, + "hull": 95000, + "storage": { + "missile": 160, + "unit": 10 + }, + "people": 75, + "purpose": "fight", + "thruster": "large", + "type": "destroyer", + "mass": 202.028, + "inertia": { + "pitch": 100.346, + "yaw": 100.346, + "roll": 80.277 + }, + "drag": { + "forward": 80.406, + "reverse": 321.623, + "horizontal": 71.355, + "vertical": 71.355, + "pitch": 107.406, + "yaw": 107.406, + "roll": 107.406 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_mid_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_down_mid_left", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_down_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_left_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_up_2", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_right_up_2", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "large", + "hittable": false, + "types": [] + }, + { + "size": "large", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_back_mid_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_down_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_left_2", + "size": "large", + "hittable": false, + "types": [ + "missile", + "standard" + ] + }, + { + "group": "group_mid_right_up_2", + "size": "large", + "hittable": false, + "types": [ + "missile", + "standard" + ] + }, + { + "group": "group_front_down_mid", + "size": "large", + "hittable": false, + "types": [ + "missile", + "standard" + ] + }, + { + "group": "group_down_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_down_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_down_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_right_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 2800, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + }, + { + "capacity": 40, + "size": "small" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 10058790, + "max": 13608951, + "avg": 11833870 + }, + "production": [ + { + "time": 187, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 281 + }, + { + "ware": "energycells", + "amount": 1034 + }, + { + "ware": "metallicmicrolattice", + "amount": 471 + } + ] + } + ] + }, + { + "id": "ship_ter_l_miner_liquid_01_a", + "version": 1, + "name": "Hokkaido (Gas)", + "description": "The L-sized Hokkaido mining ship comes in two variants, providing support for both natural gas collection and asteroid mineral mining. With the founding of the Pioneer Initiative, this design really came into its own, and has since been widely adopted by the Segaris Pioneers. On the back of the Pioneers' expansion, this ship model has made its way deeper into the Jump Gate network, and has become a common sight in a variety of areas.", + "size": "extralarge", + "race": "terran", + "explosionDamage": 800, + "hull": 24000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 33, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 105.855, + "inertia": { + "pitch": 85.708, + "yaw": 85.708, + "roll": 68.567 + }, + "drag": { + "forward": 32.115, + "reverse": 183.513, + "horizontal": 76.276, + "vertical": 76.276, + "pitch": 102.991, + "yaw": 102.991, + "roll": 102.991 + }, + "engines": [ + { + "group": "group_back_down_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 38000, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 2426113, + "max": 3282388, + "avg": 2854250 + }, + "production": [ + { + "time": 75, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 67 + }, + { + "ware": "energycells", + "amount": 415 + }, + { + "ware": "metallicmicrolattice", + "amount": 189 + } + ] + } + ] + }, + { + "id": "ship_ter_l_miner_solid_01_a", + "version": 1, + "name": "Hokkaido (Mineral)", + "description": "The L-sized Hokkaido mining ship comes in two variants, providing support for both natural gas collection and asteroid mineral mining. With the founding of the Pioneer Initiative, this design really came into its own, and has since been widely adopted by the Segaris Pioneers. On the back of the Pioneers' expansion, this ship model has made its way deeper into the Jump Gate network, and has become a common sight in a variety of areas.", + "size": "large", + "race": "terran", + "explosionDamage": 800, + "hull": 24000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 33, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 105.855, + "inertia": { + "pitch": 85.708, + "yaw": 85.708, + "roll": 68.567 + }, + "drag": { + "forward": 32.115, + "reverse": 183.513, + "horizontal": 76.276, + "vertical": 76.276, + "pitch": 102.991, + "yaw": 102.991, + "roll": 102.991 + }, + "engines": [ + { + "group": "group_back_down_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_down_mid", + "size": "large", + "hittable": false, + "types": [ + "mining", + "standard" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 38000, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 2426113, + "max": 3282388, + "avg": 2854250 + }, + "production": [ + { + "time": 75, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 67 + }, + { + "ware": "energycells", + "amount": 415 + }, + { + "ware": "metallicmicrolattice", + "amount": 189 + } + ] + } + ] + }, + { + "id": "ship_ter_l_trans_container_01_a", + "version": 1, + "name": "Okinawa", + "description": "This comparatively lightweight freighter became the de-facto standard option for trading among Sol's citizens during the Jump Gate shutdown. The time during which the model was initially developed was an unusually peaceful period in Terran history, so the first models did not include significant defensive capabilities or particularly impressive hull reinforcement. Newer iterations, however, have since added an array of turrets along its flanks to discourage the more belligerent inhabitants of the Gate network.", + "size": "large", + "race": "terran", + "explosionDamage": 800, + "hull": 36000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 57, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 277.66, + "inertia": { + "pitch": 87.408, + "yaw": 87.408, + "roll": 69.927 + }, + "drag": { + "forward": 71.649, + "reverse": 286.596, + "horizontal": 140.535, + "vertical": 140.535, + "pitch": 122.532, + "yaw": 122.532, + "roll": 122.532 + }, + "engines": [ + { + "group": "group_07", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_07", + "size": "medium", + "hittable": true + }, + { + "group": "group_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_01", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_05", + "size": "medium", + "hittable": true + }, + { + "group": "group_03", + "size": "medium", + "hittable": true + }, + { + "group": "group_06", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + } + ], + "turrets": [ + { + "group": "group_05", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_01", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_05", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_02", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_03", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_06", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_06", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 42000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 3801353, + "max": 5143007, + "avg": 4472180 + }, + "production": [ + { + "time": 117, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 105 + }, + { + "ware": "energycells", + "amount": 646 + }, + { + "ware": "metallicmicrolattice", + "amount": 294 + } + ] + } + ] + }, + { + "id": "ship_ter_m_corvette_01_a", + "version": 1, + "name": "Katana", + "description": "A sleek Corvette-class ship, the Katana was engineered to be as compact as possible and minimise its surface area as a potential target. The front-facing weapons make it the Terran Protectorate's first choice for engaging individual targets, as they concentrate all of its available fire-power in one place.", + "size": "medium", + "race": "terran", + "explosionDamage": 500, + "hull": 11000, + "storage": { + "missile": 40, + "unit": 0 + }, + "people": 6, + "purpose": "fight", + "thruster": "medium", + "type": "corvette", + "mass": 29.28, + "inertia": { + "pitch": 3.763, + "yaw": 3.763, + "roll": 3.01 + }, + "drag": { + "forward": 4.051, + "reverse": 16.203, + "horizontal": 15.622, + "vertical": 15.622, + "pitch": 10.311, + "yaw": 10.311, + "roll": 10.311 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 560, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 1499009, + "max": 2028071, + "avg": 1763540 + }, + "production": [ + { + "time": 23, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 42 + }, + { + "ware": "energycells", + "amount": 128 + }, + { + "ware": "metallicmicrolattice", + "amount": 58 + } + ] + } + ] + }, + { + "id": "ship_ter_m_frigate_01_a", + "version": 1, + "name": "Falx", + "description": "In the years since the Jump Gates realigned, this Protectorate-made support ship has become a cornerstone of the Terran fleets. The Falx is heavily inspired by the Argon Cerberus frigate, although the Terran engineers would never admit to that. Because it can carry a small-sized ship on board, it is often used for patrols. Should it encounter hostile forces, it can hold its own in combat until Terran reinforcements arrive, and on the distant fronts of the war against the Xenon it often acts as a reliable support ship.", + "size": "medium", + "race": "terran", + "explosionDamage": 500, + "hull": 20000, + "storage": { + "missile": 100, + "unit": 12 + }, + "people": 23, + "purpose": "fight", + "thruster": "medium", + "type": "frigate", + "mass": 42.29, + "inertia": { + "pitch": 4.412, + "yaw": 4.412, + "roll": 3.529 + }, + "drag": { + "forward": 25.165, + "reverse": 70.461, + "horizontal": 13.477, + "vertical": 13.477, + "pitch": 9.151, + "yaw": 9.151, + "roll": 9.151 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 1500, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 1, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "terran" + ], + "price": { + "min": 2391781, + "max": 3235939, + "avg": 2813860 + }, + "production": [ + { + "time": 37, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 67 + }, + { + "ware": "energycells", + "amount": 207 + }, + { + "ware": "metallicmicrolattice", + "amount": 94 + } + ] + } + ] + }, + { + "id": "ship_ter_m_gunboat_01_a", + "version": 1, + "name": "Jian", + "description": "A successor to the Claymore, the Jian is immediately distinguishable from its predecessor by its numerous turrets. Designed during the Jump Gate shutdown, the Terran Protectorate sought to create a more heavily armed, yet still nimble, gunboat. With its turrets capable of applying pressure in several directions simultaneously, it is easy for the Jian to switch rapidly between targets, allowing it to keep enemy fighter groups at bay.", + "size": "medium", + "race": "terran", + "explosionDamage": 500, + "hull": 13000, + "storage": { + "missile": 40, + "unit": 0 + }, + "people": 8, + "purpose": "fight", + "thruster": "medium", + "type": "gunboat", + "mass": 34.134, + "inertia": { + "pitch": 7.361, + "yaw": 7.361, + "roll": 5.889 + }, + "drag": { + "forward": 9.103, + "reverse": 36.411, + "horizontal": 11.877, + "vertical": 11.877, + "pitch": 11.034, + "yaw": 11.034, + "roll": 11.034 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 950, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "terran" + ], + "price": { + "min": 1789217, + "max": 2366240, + "avg": 2057600 + }, + "production": [ + { + "time": 27, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 49 + }, + { + "ware": "energycells", + "amount": 150 + }, + { + "ware": "metallicmicrolattice", + "amount": 68 + } + ] + } + ] + }, + { + "id": "ship_ter_m_miner_liquid_01_a", + "version": 1, + "name": "Bolo (Gas)", + "description": "As is occasionally the case with emerging technology, the shift from station-based mining technology to the more efficient and adaptable approach of ship-based mining, came about in several disconnected regions of the Jump Gate network almost simultaneously. While the Argon-based Plutarch Mining Corporation developed their initial prototypes, several Sol-based corporations reached the same conclusion independently. When the Jump Gates realigned, both sides tried to sell their technological innovations to the other, only to realise that the market was already saturated.", + "size": "medium", + "race": "terran", + "explosionDamage": 100, + "hull": 5000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 7, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 37.781, + "inertia": { + "pitch": 7.35, + "yaw": 7.35, + "roll": 5.88 + }, + "drag": { + "forward": 6.898, + "reverse": 39.419, + "horizontal": 15.792, + "vertical": 15.792, + "pitch": 11.945, + "yaw": 11.945, + "roll": 11.945 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 10000, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 330429, + "max": 447051, + "avg": 388740 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 9 + }, + { + "ware": "energycells", + "amount": 83 + }, + { + "ware": "metallicmicrolattice", + "amount": 38 + } + ] + } + ] + }, + { + "id": "ship_ter_m_miner_solid_01_a", + "version": 1, + "name": "Bolo (Mineral)", + "description": "As is occasionally the case with emerging technology, the shift from station-based mining technology to the more efficient and adaptable approach of ship-based mining, came about in several disconnected regions of the Jump Gate network almost simultaneously. While the Argon-based Plutarch Mining Corporation developed their initial prototypes, several Sol-based corporations reached the same conclusion independently. When the Jump Gates realigned, both sides tried to sell their technological innovations to the other, only to realise that the market was already saturated.", + "size": "medium", + "race": "terran", + "explosionDamage": 100, + "hull": 5000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 7, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 37.781, + "inertia": { + "pitch": 7.35, + "yaw": 7.35, + "roll": 5.88 + }, + "drag": { + "forward": 6.898, + "reverse": 39.419, + "horizontal": 15.792, + "vertical": 15.792, + "pitch": 11.945, + "yaw": 11.945, + "roll": 11.945 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "mining" + ] + } + ], + "cargo": [ + { + "max": 8800, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 330429, + "max": 447051, + "avg": 388740 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 9 + }, + { + "ware": "energycells", + "amount": 83 + }, + { + "ware": "metallicmicrolattice", + "amount": 38 + } + ] + } + ] + }, + { + "id": "ship_ter_m_trans_container_01_a", + "version": 1, + "name": "Baldric", + "description": "The Baldric transporter has long been a staple of the Terran economy. The newest iteration allows for greater modularity and more extensive modification options, and adjusts the design to be more in-line with the Terran Protectorate's modern aesthetic. It also adds an extra turret to make it a less attractive target for pirate raids, and to ensure that no wares critical to the Terran war effort are lost in transit.", + "size": "medium", + "race": "terran", + "explosionDamage": 400, + "hull": 9000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 22, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 72.561, + "inertia": { + "pitch": 13.551, + "yaw": 13.551, + "roll": 10.841 + }, + "drag": { + "forward": 17.028, + "reverse": 68.112, + "horizontal": 26.286, + "vertical": 26.286, + "pitch": 20.64, + "yaw": 20.64, + "roll": 20.64 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 10700, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 624206, + "max": 844514, + "avg": 734360 + }, + "production": [ + { + "time": 28, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 17 + }, + { + "ware": "energycells", + "amount": 157 + }, + { + "ware": "metallicmicrolattice", + "amount": 72 + } + ] + } + ] + }, + { + "id": "ship_ter_s_fighter_01_a", + "version": 1, + "name": "Kukri", + "description": "Initially used by the Terran Protectorate to hunt down the remnants of pirate organisations inside the Sol system, this Fighter-class model soon established itself as the small, nimble ship of choice for Terran military operations, both inside and outside their home system.nnThe asymmetric design neatly brings together firepower and manoeuvrability, and ensures that this ship excels in being adaptable to whatever opposition the pilot faces. The design also factored-in specialised weapon slots, which allow the ship to make use of powerful weapons, unique to the Terran arsenal.", + "size": "small", + "race": "terran", + "hull": 3700, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 7.843, + "inertia": { + "pitch": 1.658, + "yaw": 1.658, + "roll": 1.824 + }, + "drag": { + "forward": 2.273, + "reverse": 9.093, + "horizontal": 3.396, + "vertical": 3.396, + "pitch": 3.05, + "yaw": 3.05, + "roll": 3.05 + }, + "engines": [ + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 140, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 327573, + "max": 443187, + "avg": 385380 + }, + "production": [ + { + "time": 12, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 9 + }, + { + "ware": "energycells", + "amount": 66 + }, + { + "ware": "metallicmicrolattice", + "amount": 30 + } + ] + } + ] + }, + { + "id": "ship_ter_s_fighter_02_a", + "version": 1, + "name": "Kalis", + "description": "When the Pioneer Initiative set out to claim systems beyond the confines of Sol, they were supplied with Kukri-class fighters by the Terran military. Many of these ships, however, came with faulty components, as they were production units that had failed rigorous Terran acceptance testing. The brilliant minds among the Pioneer Initiative worked hard to address these flaws with the limited means available to them and, over time, modified the ships so much that they became almost unrecognisable.nnNow much more standardised, the Kalis-class fighter serves as a sturdier and more reliable Pioneer alternative to its Terran forerunner. The hostile environments in which the Segaris Pioneers operate require a heavily protected ship, so this unconventional design bridges the gap between standard and heavy fighters. It provides handling similar to the latter, due to its heavy shielding, while still being cheaper to produce for the struggling fledgling faction.", + "size": "small", + "race": "terran", + "hull": 3300, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "heavyfighter", + "mass": 7.118, + "inertia": { + "pitch": 1.561, + "yaw": 1.561, + "roll": 1.248 + }, + "drag": { + "forward": 4.811, + "reverse": 18.178, + "horizontal": 4.148, + "vertical": 4.148, + "pitch": 3.162, + "yaw": 3.162, + "roll": 3.162 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 180, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers" + ], + "price": { + "min": 291338, + "max": 394163, + "avg": 342750 + }, + "production": [ + { + "time": 11, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "metallicmicrolattice", + "amount": 27 + } + ] + } + ] + }, + { + "id": "ship_ter_s_fighter_03_a", + "version": 1, + "name": "Takoba", + "description": "Much like the Kalis, the Takoba came about as the result of Segaris Pioneers engineers' modifications to military ships provided to them by the Terran Protectorate, though in this case the ships were mostly decommissioned examples, sold to the Pioneers at a reduced price. Sleek in design, and distinguished from other fighters primarily by its speed, ships of this class are often dispatched to explore unfamiliar territory in which some enemy presence is expected. While useful for small-scale military action, the Takoba is not as adept at engaging the enemy head-on, as its shielding is somewhat weaker than the Terran fighters on which it was based.", + "size": "small", + "race": "terran", + "hull": 3400, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 7.335, + "inertia": { + "pitch": 1.478, + "yaw": 1.478, + "roll": 1.626 + }, + "drag": { + "forward": 3.664, + "reverse": 9.835, + "horizontal": 3.564, + "vertical": 3.564, + "pitch": 2.907, + "yaw": 2.907, + "roll": 2.907 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 110, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers" + ], + "price": { + "min": 291686, + "max": 394634, + "avg": 343160 + }, + "production": [ + { + "time": 11, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 62 + }, + { + "ware": "metallicmicrolattice", + "amount": 28 + } + ] + } + ] + }, + { + "id": "ship_ter_s_heavyfighter_01_a", + "version": 1, + "name": "Gladius", + "description": "With its distinctive sweeping wings, the Gladius was designed for medium to long distance travel, as well as engaging both small- and medium-sized ships in combat. These design criteria were carefully chosen, and the ship trades manoeuvrability for the ability to absorb more damage. The design focuses on allowing the ship to reach far-away pockets of the Jump Gate network, as part of the Terran Protectorate's new, more interventionist, policy in combating the Xenon.", + "size": "small", + "race": "terran", + "hull": 4400, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "heavyfighter", + "mass": 9.477, + "inertia": { + "pitch": 2.562, + "yaw": 2.562, + "roll": 2.05 + }, + "drag": { + "forward": 5.298, + "reverse": 21.715, + "horizontal": 3.426, + "vertical": 3.426, + "pitch": 3.899, + "yaw": 3.899, + "roll": 3.899 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 360, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "terran" + ], + "price": { + "min": 400180, + "max": 541420, + "avg": 470800 + }, + "production": [ + { + "time": 14, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 11 + }, + { + "ware": "energycells", + "amount": 80 + }, + { + "ware": "metallicmicrolattice", + "amount": 36 + } + ] + } + ] + }, + { + "id": "ship_ter_s_miner_solid_01_a", + "version": 1, + "name": "Kopis (Mineral)", + "description": "The Kopis can feel quite claustrophobic when compared to mining ships from other manufacturers. Putting function over comfort, however, was a conscious design decision, since it allowed the engineers to maximise cargo space and thereby increase the profitability of each trip.", + "size": "small", + "race": "terran", + "hull": 1000, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 2, + "purpose": "mine", + "thruster": "small", + "type": "miner", + "mass": 7.475, + "inertia": { + "pitch": 1.696, + "yaw": 1.696, + "roll": 1.357 + }, + "drag": { + "forward": 3.821, + "reverse": 15.678, + "horizontal": 4.105, + "vertical": 4.105, + "pitch": 3.273, + "yaw": 3.273, + "roll": 3.273 + }, + "engines": [ + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile", + "mining" + ] + } + ], + "cargo": [ + { + "max": 5480, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 145427, + "max": 196754, + "avg": 171090 + }, + "production": [ + { + "time": 5, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 4 + }, + { + "ware": "energycells", + "amount": 28 + }, + { + "ware": "metallicmicrolattice", + "amount": 13 + } + ] + } + ] + }, + { + "id": "ship_ter_s_scout_01_a", + "version": 1, + "name": "Rapier", + "description": "After the restructuring that saw the end of the USC, several changes were implemented by the Terran Protectorate to reform the way that the Sol system was policed. Along with these structural changes, several ship designs were drastically overhauled. The Rapier was redesigned to be lighter and faster, in order to cover more ground and improve the military's response time. These changes also resulted in the ship's somewhat unconventional, but still recognisable, new form.", + "size": "small", + "race": "terran", + "hull": 1400, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 5.844, + "inertia": { + "pitch": 1.213, + "yaw": 1.213, + "roll": 0.97 + }, + "drag": { + "forward": 1.182, + "reverse": 4.729, + "horizontal": 2.858, + "vertical": 2.858, + "pitch": 3.232, + "yaw": 3.232, + "roll": 3.232 + }, + "engines": [ + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 440, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 181730, + "max": 245870, + "avg": 213800 + }, + "production": [ + { + "time": 6, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 5 + }, + { + "ware": "energycells", + "amount": 35 + }, + { + "ware": "metallicmicrolattice", + "amount": 16 + } + ] + } + ] + }, + { + "id": "ship_ter_s_scout_02_a", + "version": 1, + "name": "Nimcha", + "description": "The Nimcha was developed as a light and fast scout, capable of holding its own even outside heavily patrolled Terran Protectorate territory. It differs from other scout ships of similar size by having a noticeably larger cargo capacity. This means that, in the rare instances when the Protectorate requires a limited load to be delivered to a distant front quickly, the Nimcha can conveniently double as a courier, able to operate even when the destination is behind enemy lines.", + "size": "small", + "race": "terran", + "hull": 3000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 7.872, + "inertia": { + "pitch": 1.407, + "yaw": 1.407, + "roll": 1.125 + }, + "drag": { + "forward": 3.136, + "reverse": 6.498, + "horizontal": 4.031, + "vertical": 4.031, + "pitch": 3.866, + "yaw": 3.866, + "roll": 3.866 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 670, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "terran" + ], + "price": { + "min": 298043, + "max": 394163, + "avg": 342750 + }, + "production": [ + { + "time": 11, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 8 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "metallicmicrolattice", + "amount": 27 + } + ] + } + ] + }, + { + "id": "ship_ter_s_trans_container_01_a", + "version": 1, + "name": "Frog", + "description": "The Frog has established itself as the Courier-class ship of choice for anyone who is looking to quickly traverse the Sol system, transporting a limited amount of cargo. The design does not include a defensive arsenal, but since pilots of this ship are not generally expected to leave the Terran Protectorate's sphere of security, it should not really be needed.", + "size": "small", + "race": "terran", + "hull": 1700, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 3, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 13.454, + "inertia": { + "pitch": 2.665, + "yaw": 2.665, + "roll": 2.132 + }, + "drag": { + "forward": 4.643, + "reverse": 16.954, + "horizontal": 7.39, + "vertical": 7.39, + "pitch": 5.142, + "yaw": 5.142, + "roll": 5.142 + }, + "engines": [ + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "cargo": [ + { + "max": 4120, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 254686, + "max": 344575, + "avg": 299630 + }, + "production": [ + { + "time": 9, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 7 + }, + { + "ware": "energycells", + "amount": 51 + }, + { + "ware": "metallicmicrolattice", + "amount": 23 + } + ] + } + ] + }, + { + "id": "ship_ter_xl_builder_01_a", + "version": 1, + "name": "Kyushu", + "description": "Earlier versions of these Terran construction ships were outfitted with specialist disassembly systems that would allow them to dismantle and transport station debris in a highly efficient manner. This focus on tearing down existing structures came about as the result of the arduous task of clearing the space around Earth from the debris of those parts of the Torus Aeternal that did not drift far enough out of their original orbit. Since that clean-up work is now winding down, more recent examples of this ship model have been built without such capabilities, to save on production costs.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 153000, + "storage": { + "missile": 40, + "unit": 132 + }, + "people": 219, + "purpose": "build", + "thruster": "extralarge", + "type": "builder", + "mass": 1170.425, + "inertia": { + "pitch": 842.639, + "yaw": 842.639, + "roll": 674.111 + }, + "drag": { + "forward": 235.564, + "reverse": 942.255, + "horizontal": 439.458, + "vertical": 439.458, + "pitch": 934.085, + "yaw": 934.085, + "roll": 934.085 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 50, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 17974517, + "max": 24318464, + "avg": 21146490 + }, + "production": [ + { + "time": 417, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 500 + }, + { + "ware": "energycells", + "amount": 2303 + }, + { + "ware": "metallicmicrolattice", + "amount": 1049 + } + ] + } + ] + }, + { + "id": "ship_ter_xl_carrier_01_a", + "version": 1, + "name": "Tokyo", + "description": "The Tokyo-class carrier has been revised and refined since its first production run, most recently during the period of the Jump Gate shutdown, but at its core it remains fundamentally the same.nnThe capacious front-facing hangar allows the carrier to quickly issue forth large waves of fighters to meet an enemy fleet head-on. In any fleet, a carrier is the central platform from which to coordinate large-scale fighter-based manoeuvres, and the Terran model does this with aplomb, whether the theatre of battle is on Sol's doorstep, or in a hostile system far removed from Terran domain.", + "size": "extralarge", + "race": "terran", + "explosionDamage": 1500, + "hull": 213000, + "storage": { + "missile": 320, + "unit": 20 + }, + "people": 201, + "purpose": "fight", + "thruster": "extralarge", + "type": "carrier", + "mass": 542.639, + "inertia": { + "pitch": 608.682, + "yaw": 608.682, + "roll": 486.945 + }, + "drag": { + "forward": 141.396, + "reverse": 565.584, + "horizontal": 259.822, + "vertical": 259.822, + "pitch": 808.528, + "yaw": 808.528, + "roll": 808.528 + }, + "engines": [ + { + "group": "group_back_mid_down", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_right_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_front_mid_top", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_mid_left_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_left_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_left_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_left_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_right_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_cent_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_cent_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_right_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_right_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_left_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_right_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_right_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_cent_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_cent_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 22000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "terran" + ], + "price": { + "min": 20670938, + "max": 27966563, + "avg": 24318750 + }, + "production": [ + { + "time": 479, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 575 + }, + { + "ware": "energycells", + "amount": 2650 + }, + { + "ware": "metallicmicrolattice", + "amount": 1207 + } + ] + } + ] + }, + { + "id": "ship_ter_xl_resupplier_01_a", + "version": 1, + "name": "Honshu", + "description": "This auxiliary ship, the Honshu, is noticeably slower than competitors' supply ships. While other ships of this type are usually aimed at providing immediate, short-term support for a fleet, this ship is designed to take part in long-distance operations that often lead Terran Protectorate fleets far away from Sol, and far also from allied harbours. For this reason, the design sacrifices speed for an exceptionally large storage capacity. However, this is not the only part of the ship that is engineered for long-range travel. Its most distinctive visual feature is its solar sail, which generates additional energy that can be made available to the ship's systems during extended journeys into hostile space.", + "size": "extralarge", + "race": "terran", + "explosionDamage": 1200, + "hull": 157000, + "storage": { + "missile": 40, + "unit": 100 + }, + "people": 123, + "purpose": "auxiliary", + "thruster": "extralarge", + "type": "resupplier", + "mass": 1199.838, + "inertia": { + "pitch": 869.255, + "yaw": 869.255, + "roll": 695.404 + }, + "drag": { + "forward": 239.976, + "reverse": 959.903, + "horizontal": 431.671, + "vertical": 431.671, + "pitch": 939.968, + "yaw": 939.968, + "roll": 939.968 + }, + "engines": [ + { + "group": "group_back_mid_down", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_cent_up", + "size": "medium", + "hittable": true + }, + { + "group": "group_cent_cent_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_right_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_cent_right_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_left_down", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_front_cent_top", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_cent_cent_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_cent_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_right_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_cent_right_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_left_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_cent_up", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_cent_right_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_cent_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_cent_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_cent_cent_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_left_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_right_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 43000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + }, + { + "capacity": 10, + "size": "medium" + } + ], + "owners": [ + "pioneers", + "terran" + ], + "price": { + "min": 22324290, + "max": 30203451, + "avg": 26263870 + }, + "production": [ + { + "time": 517, + "amount": 1, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "computronicsubstrate", + "amount": 621 + }, + { + "ware": "energycells", + "amount": 2859 + }, + { + "ware": "metallicmicrolattice", + "amount": 1303 + } + ] + } + ] + }, + { + "id": "ship_yak_m_corvette_01_a", + "version": 1, + "name": "Kuraokami", + "description": "When the Yaki established their base of operations close to the Paranid realms, it was only natural that they would pirate Paranid ships and poach their technology, before adapting them to their own purposes. The Kuraokami-class corvette was based on the Nemesis, but over time the Yaki modified the design to fit their own needs.nnTheir familiarity with experimental technology, especially their understanding, albeit imperfect, of Xenon machinery, allowed them to strip away some of the hull plating without significantly sacrificing hull integrity. Ultimately, this design's focus is almost entirely on speed and storage capacity, to enable the Yaki to raid their targets with terrifying efficiency.", + "size": "medium", + "explosionDamage": 500, + "hull": 10000, + "storage": { + "missile": 40, + "unit": 0 + }, + "people": 9, + "purpose": "fight", + "thruster": "medium", + "type": "corvette", + "mass": 16.76, + "inertia": { + "pitch": 3.751, + "yaw": 3.751, + "roll": 3.001 + }, + "drag": { + "forward": 2.76, + "reverse": 11.039, + "horizontal": 12.702, + "vertical": 12.702, + "pitch": 9.032, + "yaw": 9.032, + "roll": 9.032 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "standard" + ] + } + ], + "cargo": [ + { + "max": 1100, + "types": [ + "container", + "solid", + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "yaki" + ], + "price": { + "min": 836421, + "max": 1131629, + "avg": 984025 + }, + "production": [ + { + "time": 20, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 113 + }, + { + "ware": "hullparts", + "amount": 933 + } + ] + } + ] + }, + { + "id": "ship_yak_s_fighter_01_a", + "version": 1, + "name": "Moreya", + "description": "The Moreya-class fighter is a Yaki powerhouse. The initial design was based on hijacked Paranid Pegasus-class scouts, which were modified with temperamental Yaki technology to tailor it to their specific requirements. Frequently operating alone in enemy territory, and needing to withstand sustained enemy fire, they added reinforced hull plating for improved defence. Similarly, the Yaki made it possible for more weapons to be attached to the front of the ship, to ensure that they could execute their raids successfully.", + "size": "small", + "hull": 4000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 3, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 6.484, + "inertia": { + "pitch": 0.987, + "yaw": 0.987, + "roll": 1.085 + }, + "drag": { + "forward": 2.09, + "reverse": 8.359, + "horizontal": 3.726, + "vertical": 3.726, + "pitch": 3.292, + "yaw": 3.292, + "roll": 3.292 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 510, + "types": [ + "container", + "solid", + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "yaki" + ], + "price": { + "min": 228803, + "max": 309557, + "avg": 269180 + }, + "production": [ + { + "time": 13, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 73 + }, + { + "ware": "hullparts", + "amount": 252 + } + ] + } + ] + }, + { + "id": "ship_gen_m_yacht_01_a", + "version": 1, + "name": "Astrid", + "description": "The Astrid yacht is the Northriver Company's spirit personified: sleek and luxurious to the point of excess. The designers on board Aurora station had to make the ostentatious ship fulfil a large number of extravagant and often conflicting requirements set by their client. As such, both the assembly of the pompous final product and the manufacturing of many of its core components had to happen by hand, and the Astrid therefore remains a prized unicum. A wide array of highly specialised workshops and laboratories had to be commissioned to provide the garish synthetic materials and dazzling, custom-made metalwork used in its lavish interior and uniquely refracting, streamlined hull. This entire process proved to be incredibly expensive, and the Astrid is therefore deemed utterly unsuitable for mass production, much to the delight of the affluent collector. While working on its engine, the Aurora engineers heavily leaned on their previous experience with designing high speed ships like the Lux. The dazzlingly flamboyant ship also carries a thickly shielded storage compartment capable of containing volatile Bose-Einstein Condensates, rumoured to somehow improve its resistance to cosmic particles and improve its flight characteristics. Though this claim may sound like pseudo-scientific marketing lingo, one has to agree that even for a grandiosely cutting-edge yacht, the Astrid turns out to be surprisingly fast, which has given CEO of the Northriver Company the reputation to be in multiple places at once if he so pleases.", + "size": "medium", + "race": "argon", + "explosionDamage": 500, + "hull": 4000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 16, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 30.969, + "inertia": { + "pitch": 6.888, + "yaw": 6.888, + "roll": 5.51 + }, + "drag": { + "forward": 3.155, + "reverse": 8.833, + "horizontal": 10.55, + "vertical": 10.55, + "pitch": 10.242, + "yaw": 10.242, + "roll": 10.242 + }, + "engines": [ + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + } + ], + "cargo": [ + { + "max": 4300, + "types": [ + "container", + "condensate" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "loanshark" + ], + "price": { + "min": 1844500, + "max": 2495500, + "avg": 2170000 + }, + "production": [ + { + "time": 300, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1000 + }, + { + "ware": "hullparts", + "amount": 2000 + } + ] + } + ] + }, + { + "id": "ship_pir_l_miner_solid_01_a", + "version": 1, + "name": "Donia", + "description": "The Dark left the Windfall system not only isolated, but also ill-equipped for ship building, since it lacked both a wharf and capable engineers. For nearly four decades, the inhabitants largely had to make do with an aging fleet of stranded ships that were taken by surprise by the Jump Gate shutdown. The few remaining engineers in the system were mainly occupied with maintenance, but experimented when they could with custom ship designs. They slowly learned the craft, and became creative with the resources they had to hand. Most of their custom creations were built from repurposed luxury mass traffic vehicles, spare engines disassembled from the leftover fleet, and various parts from scrapped ships that were beyond repair. It was only in 821 (NT), after the Jump Gate to Avarice opened, that a proper supply of resources allowed the engineers to finally abandon their custom creations and develop blueprints for mass production. Arguably, those blueprints still bear the hallmarks of the haphazard designs of the past.nnWhen the Jump Gates between Avarice and Windfall connected in 821 (NT), the ice miners of Windfall, known as the Solid Ice Union, were already a dominant force in the system. For decades they had worked together to maintain an aging fleet of ice miners, of various Commonwealth designs, which were left stranded during the Dark. With a monopoly on food production and ice mining, it was imperative that they incorporated all capital ships in the system into their fleets, whether as working vessels or by scrapping them for parts. After the connection, they were the only faction in Windfall still capable of making full use of capital ships, and were unwavering in defending their mining rights against any newcomers.nnOnce the steady supply of resources from Avarice allowed the mass production of ships to restart, the Solid Ice Union began construction of a shipyard. At the same time, they started development of their own ice miner, the Donia. They drew on their experience with a broad range of ice miners, and their intricate knowledge of the strengths and weaknesses of now-dated Commonwealth designs. The result, introduced in 824 (NT), was a sturdy low-maintenance miner capable of fending off half-hearted boarding attempts, and it would soon replace their barely operable and outdated Commonwealth fleet.", + "size": "large", + "race": "argon", + "explosionDamage": 800, + "hull": 26000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 31, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 168.244, + "inertia": { + "pitch": 78.309, + "yaw": 78.309, + "roll": 62.647 + }, + "drag": { + "forward": 33.51, + "reverse": 191.487, + "horizontal": 77.62, + "vertical": 77.62, + "pitch": 100.649, + "yaw": 100.649, + "roll": 100.649 + }, + "engines": [ + { + "group": "group_rear_mid_left", + "size": "large", + "hittable": false + }, + { + "group": "group_rear_mid_left", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_top", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_mid_left", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_mid_left", + "size": "large", + "hittable": false, + "types": [ + "mining", + "standard" + ] + }, + { + "group": "group_front_mid_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "large", + "hittable": false, + "types": [ + "mining", + "standard" + ] + }, + { + "group": "group_front_mid_top", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_rear_mid_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 34000, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + }, + { + "capacity": 4, + "size": "small" + } + ], + "owners": [ + "loanshark" + ], + "price": { + "min": 1090800, + "max": 2038140, + "avg": 1564470 + }, + "production": [ + { + "time": 86, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 354 + }, + { + "ware": "hullparts", + "amount": 1470 + } + ] + } + ] + }, + { + "id": "ship_pir_l_scavenger_01_a", + "version": 1, + "name": "Barbarossa", + "description": "The Dark left the Windfall system not only isolated, but also ill-equipped for ship building, since it lacked both a wharf and capable engineers. For nearly four decades, the inhabitants largely had to make do with an aging fleet of stranded ships that were taken by surprise by the Jump Gate shutdown. The few remaining engineers in the system were mainly occupied with maintenance, but experimented when they could with custom ship designs. They slowly learned the craft, and became creative with the resources they had to hand. Most of their custom creations were built from repurposed luxury mass traffic vehicles, spare engines disassembled from the leftover fleet, and various parts from scrapped ships that were beyond repair. It was only in 821 (NT), after the Jump Gate to Avarice opened, that a proper supply of resources allowed the engineers to finally abandon their custom creations and develop blueprints for mass production. Arguably, those blueprints still bear the hallmarks of the haphazard designs of the past.nnWith the reconnection of the Jump Gate between Avarice and Windfall in 821 (NT), a new vital, and highly contested, trade route opened. The first ships to transport food to Avarice, and building materials to Windfall, were mostly ancient relics from before the Dark. These ships were quickly left inoperable by the actions of pirates, and were replaced by the Raleigh, a courier developed at the Aurora Casino. Soon afterwards, the Alliance of the Word's Wharf began operations, and started producing Commonwealth transporters. It took the Solid Ice Union, a worker conglomerate of ice miners, until 823 (NT) to complete development of their own freighter, the Barbarossa. With its high speed and decent number of turrets, Solid Ice Union captains in their freighters would soon come to dominate the trade between Windfall and Avarice, fending off piracy and even attacking other freighters to fill up their own cargo holds.nnAfter designing the Barbarossa, Solid Ice Union engineers attempted to develop a destroyer, but lacked the required knowledge to design its weapon systems. These attempts were cut short by a moratorium imposed by the Syndicate, who distrusted the already well-armed Solid Ice Union, and threatened a civil war should they attempt to militarise further.", + "size": "large", + "race": "argon", + "explosionDamage": 800, + "hull": 114000, + "storage": { + "missile": 160, + "unit": 10 + }, + "people": 126, + "purpose": "fight", + "thruster": "large", + "type": "scavenger", + "mass": 243.18, + "inertia": { + "pitch": 130.042, + "yaw": 130.042, + "roll": 104.034 + }, + "drag": { + "forward": 86.42, + "reverse": 345.68, + "horizontal": 126.805, + "vertical": 126.805, + "pitch": 115.636, + "yaw": 115.636, + "roll": 115.636 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_left", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_right", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_down_mid", + "size": "large", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 21000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 2, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "loanshark" + ], + "price": { + "min": 5382530, + "max": 10045520, + "avg": 7714025 + }, + "production": [ + { + "time": 258.75, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1056 + }, + { + "ware": "hullparts", + "amount": 7301 + } + ] + } + ] + }, + { + "id": "ship_pir_l_scrapper_01", + "version": 1, + "name": "Teuta", + "description": "With the advent of the Dark, Avarice was forced to rely on a fleet of stranded ships that had been taken by surprise by the Jump Gate shutdown. Despite the almost immediate collapse of the Avarice company, capable scientists and engineers soon took it upon themselves to stabilise the system and work towards sustainability. They first established a functioning wharf for repairs and replacement, and conducted early experiments into developing a recycling economy in anticipation of dwindling resources within the system. The regeneration of this post-shutdown economy was quickly curtailed by the first Tides, which destroyed most stations and ships in the system in 800 (NT). However, a side-effect of the destructive solar event was the greatly increased energy output from solar panels, which allowed for a paradigm shift. The new Rakers economy emerging from Tidebreak, at the time the only station in Avarice, took advantage of this new abundance of energy. This, along with the use of local wrecks, enabled the rebuilding of a new, sustainable, closed-loop economy based on recycling, allowing them to further improve on previous ship and station module designs. Resettlement of Avarice began in 818 (NT), when the Northriver Company introduced Protectyon and the associated Protectyon Shield Generators to safeguard stations from the Tide. A few years later, in 825 (NT), the reconnection of Windfall gave the long-isolated Rakers the opportunity to trade with various Syndicate factions, but also exposed them to their piracy.nnWith the introduction of the large scale recycling economy required for the resettlement of Avarice, Tidebreak's engineers were soon looking for ways to break down and reclaim resources from wrecks that were too big for Tug ships to tow, and for Scrap Processors to process. In 822 (NT) they introduced the first Compactor ship, the Teuta. Similar to capital mining ships, it seeks out resources and breaks them down, but instead of transporting them, it ejects Scrap Cubes to be transported away by Tug ships.", + "size": "large", + "race": "argon", + "explosionDamage": 800, + "hull": 66000, + "storage": { + "missile": 30, + "unit": 40 + }, + "people": 145, + "purpose": "dismantling", + "thruster": "large", + "type": "compactor", + "mass": 505.41, + "inertia": { + "pitch": 218.251, + "yaw": 218.251, + "roll": 174.601 + }, + "drag": { + "forward": 211.623, + "reverse": 846.492, + "horizontal": 202.697, + "vertical": 202.697, + "pitch": 168.082, + "yaw": 168.082, + "roll": 168.082 + }, + "engines": [ + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + }, + { + "group": "group_back_mid_mid", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "group": "group_mid_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_mid", + "size": "medium", + "hittable": true + }, + { + "size": "large", + "hittable": false + } + ], + "turrets": [ + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_mid_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 7700, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + }, + { + "capacity": 4, + "size": "small" + } + ], + "owners": [ + "scavenger" + ], + "price": { + "min": 3013480, + "max": 5630650, + "avg": 4322065 + }, + "production": [ + { + "time": 239.2, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1094 + }, + { + "ware": "hullparts", + "amount": 4539 + } + ] + } + ] + }, + { + "id": "ship_pir_s_fighter_01_a", + "version": 1, + "name": "Kyd", + "description": "The Dark left the Windfall system not only isolated, but also ill-equipped for ship building, since it lacked both a wharf and capable engineers. For nearly four decades, the inhabitants largely had to make do with an aging fleet of stranded ships that were taken by surprise by the Jump Gate shutdown. The few remaining engineers in the system were mainly occupied with maintenance, but experimented when they could with custom ship designs. They slowly learned the craft, and became creative with the resources they had to hand. Most of their custom creations were built from repurposed luxury mass traffic vehicles, spare engines disassembled from the leftover fleet, and various parts from scrapped ships that were beyond repair. It was only in 821 (NT), after the Jump Gate to Avarice opened, that a proper supply of resources allowed the engineers to finally abandon their custom creations and develop blueprints for mass production. Arguably, those blueprints still bear the hallmarks of the haphazard designs of the past.nnHastily developed in 821 (NT), Scrapyard engineers introduced the first fighter to be mass-produced in Windfall, the Kyd. Demand for the new ship was high. The influx of resources from the newly connected Avarice increased tensions in the system, leading to a struggle for control over the new trade route, and allowing old rivalries to finally finance their vendettas. The Kyd quickly gained a reputation as a cheap, low-maintenance fighter, and was widely deployed in raids and patrols. Most stories of great battles fought between Syndicate leaders at that time happened during the ship's glory days. By now, the Kyd is considered somewhat dated, but is still an inexpensive and reliable choice.", + "size": "small", + "race": "argon", + "hull": 3000, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 6.846, + "inertia": { + "pitch": 1.077, + "yaw": 1.077, + "roll": 0.862 + }, + "drag": { + "forward": 3.951, + "reverse": 10.258, + "horizontal": 3.675, + "vertical": 3.675, + "pitch": 3.405, + "yaw": 3.405, + "roll": 3.405 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 650, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "loanshark" + ], + "price": { + "min": 36250, + "max": 69910, + "avg": 53080 + }, + "production": [ + { + "time": 10.35, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 141 + }, + { + "ware": "hullparts", + "amount": 40 + } + ] + } + ] + }, + { + "id": "ship_pir_s_fighter_02_a", + "version": 1, + "name": "Lux", + "description": "The Dark left the Windfall system not only isolated, but also ill-equipped for ship building, since it lacked both a wharf and capable engineers. For nearly four decades, the inhabitants largely had to make do with an aging fleet of stranded ships that were taken by surprise by the Jump Gate shutdown. The few remaining engineers in the system were mainly occupied with maintenance, but experimented when they could with custom ship designs. They slowly learned the craft, and became creative with the resources they had to hand. Most of their custom creations were built from repurposed luxury mass traffic vehicles, spare engines disassembled from the leftover fleet, and various parts from scrapped ships that were beyond repair. It was only in 821 (NT), after the Jump Gate to Avarice opened, that a proper supply of resources allowed the engineers to finally abandon their custom creations and develop blueprints for mass production. Arguably, those blueprints still bear the hallmarks of the haphazard designs of the past.nnFollowing the introduction of the Kyd, Aurora Casino engineers started work on their own design for a viable fighter, able to outperform the existing model. After a series of failures and setbacks over a span of two years, they introduced the Lux in 823 (NT). Equipped with an additional engine, the Lux would set a new standard for both speed and manoeuvrability in Windfall's fighters. Anyone who could afford to do so, would soon decommission their Kyd fleet and replace them with Lux fighters. This lead to a flood of cheap Kyd ships on the market, which were bought up by smaller gangs, or scrapped for their raw materials. The wide availability of these cheap fighters increased local piracy and conflicts in both systems, threatening the unification progress that the Syndicate had made over the preceding years.", + "size": "small", + "race": "argon", + "hull": 2600, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 1, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 5.82, + "inertia": { + "pitch": 0.83, + "yaw": 0.83, + "roll": 0.664 + }, + "drag": { + "forward": 3.967, + "reverse": 10.37, + "horizontal": 3.747, + "vertical": 3.747, + "pitch": 3.084, + "yaw": 3.084, + "roll": 3.084 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 500, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "loanshark" + ], + "price": { + "min": 122070, + "max": 228210, + "avg": 175140 + }, + "production": [ + { + "time": 11.5, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 47 + }, + { + "ware": "hullparts", + "amount": 164 + } + ] + } + ] + }, + { + "id": "ship_pir_s_heavyfighter_01_a", + "version": 1, + "name": "Shih", + "description": "The Dark left the Windfall system not only isolated, but also ill-equipped for ship building, since it lacked both a wharf and capable engineers. For nearly four decades, the inhabitants largely had to make do with an aging fleet of stranded ships that were taken by surprise by the Jump Gate shutdown. The few remaining engineers in the system were mainly occupied with maintenance, but experimented when they could with custom ship designs. They slowly learned the craft, and became creative with the resources they had to hand. Most of their custom creations were built from repurposed luxury mass traffic vehicles, spare engines disassembled from the leftover fleet, and various parts from scrapped ships that were beyond repair. It was only in 821 (NT), after the Jump Gate to Avarice opened, that a proper supply of resources allowed the engineers to finally abandon their custom creations and develop blueprints for mass production. Arguably, those blueprints still bear the hallmarks of the haphazard designs of the past.nnIn response to the turmoil caused by the introduction of the Lux fighter, the Syndicate leadership commissioned Scrapyard engineers to develop a heavy fighter. The Syndicate plan was for it to outperform the light fighters, forcing them off the field of combat, while being too expensive for smaller gangs to afford in significant numbers. The Scrapyard engineers based their design on the Kyd, and in 824 (NT) proudly introduced the heavy fighter, the Shih. With a strong focus on durability, the Shih manages to power up to three shield generators. Although they managed to double the firepower of the Kyd, the engineers failed to increase it sufficiently to match that of the major Commonwealth factions. Despite its shortcomings, the Shih was regarded as a major success, and was widely deployed to protect Syndicate property and territory, further securing their power and stabilising the system.", + "size": "small", + "race": "argon", + "hull": 4900, + "storage": { + "missile": 20, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "heavyfighter", + "mass": 10.353, + "inertia": { + "pitch": 2.393, + "yaw": 2.393, + "roll": 1.914 + }, + "drag": { + "forward": 4.434, + "reverse": 13.765, + "horizontal": 2.893, + "vertical": 2.893, + "pitch": 4.501, + "yaw": 4.501, + "roll": 4.501 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 590, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "loanshark" + ], + "price": { + "min": 191310, + "max": 357660, + "avg": 274485 + }, + "production": [ + { + "time": 18.4, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 74 + }, + { + "ware": "hullparts", + "amount": 257 + } + ] + } + ] + }, + { + "id": "ship_pir_s_trans_condensate_01_a", + "version": 1, + "name": "Raleigh (Condensate)", + "description": "The Dark left the Windfall system not only isolated, but also ill-equipped for ship building, since it lacked both a wharf and capable engineers. For nearly four decades, the inhabitants largely had to make do with an aging fleet of stranded ships that were taken by surprise by the Jump Gate shutdown. The few remaining engineers in the system were mainly occupied with maintenance, but experimented when they could with custom ship designs. They slowly learned the craft, and became creative with the resources they had to hand. Most of their custom creations were built from repurposed luxury mass traffic vehicles, spare engines disassembled from the leftover fleet, and various parts from scrapped ships that were beyond repair. It was only in 821 (NT), after the Jump Gate to Avarice opened, that a proper supply of resources allowed the engineers to finally abandon their custom creations and develop blueprints for mass production. Arguably, those blueprints still bear the hallmarks of the haphazard designs of the past.nnThe Aurora Casino was eager to replace its aging fleet, establish itself on the new trade route, and guarantee the reliable transport of its goods. Their inexperienced crew of engineers soon had to abandon their plans for an Aurora-designed transporter, and settle instead for a courier. Throughout the ship's development, the Casino hired, blackmailed, and even abducted, engineers to ensure its success. After various setbacks, the team were finally able to introduce the Raleigh (Container) courier in 822 (NT), and were soon tasked with their next project.nnShortly after the widespread adoption of the Raleigh courier, the Aurora Casino was approached by the Northriver company, who commissioned them to create a replacement for their own haphazardly constructed courier. The requirement was for a ship capable of transporting a new type of material: Condensate. The well-funded Northriver Company, working with the Aurora engineers, introduced their prototyped storage system into the more robust framework of the Raleigh in 823 (NT), creating a new courier variant.", + "size": "small", + "race": "argon", + "hull": 2200, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 4, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 19.407, + "inertia": { + "pitch": 5.235, + "yaw": 5.235, + "roll": 4.188 + }, + "drag": { + "forward": 5.679, + "reverse": 22.82, + "horizontal": 4.642, + "vertical": 4.642, + "pitch": 7.002, + "yaw": 7.002, + "roll": 7.002 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 250, + "types": [ + "condensate" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "loanshark", + "scavenger" + ], + "price": { + "min": 151870, + "max": 283930, + "avg": 217900 + }, + "production": [ + { + "time": 14.95, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 59 + }, + { + "ware": "hullparts", + "amount": 204 + } + ] + } + ] + }, + { + "id": "ship_pir_s_trans_container_01_a", + "version": 1, + "name": "Raleigh (Container)", + "description": "The Dark left the Windfall system not only isolated, but also ill-equipped for ship building, since it lacked both a wharf and capable engineers. For nearly four decades, the inhabitants largely had to make do with an aging fleet of stranded ships that were taken by surprise by the Jump Gate shutdown. The few remaining engineers in the system were mainly occupied with maintenance, but experimented when they could with custom ship designs. They slowly learned the craft, and became creative with the resources they had to hand. Most of their custom creations were built from repurposed luxury mass traffic vehicles, spare engines disassembled from the leftover fleet, and various parts from scrapped ships that were beyond repair. It was only in 821 (NT), after the Jump Gate to Avarice opened, that a proper supply of resources allowed the engineers to finally abandon their custom creations and develop blueprints for mass production. Arguably, those blueprints still bear the hallmarks of the haphazard designs of the past.nnThe Aurora Casino was eager to replace its aging fleet, establish itself on the new trade route, and guarantee the reliable transport of its goods. Their inexperienced crew of engineers soon had to abandon their plans for an Aurora-designed transporter, and settle instead for a courier. Throughout the ship's development, the Casino hired, blackmailed, and even abducted, engineers to ensure its success. After various setbacks, the team were finally able to introduce the Raleigh (Container) courier in 822 (NT), and were soon tasked with their next project.", + "size": "small", + "race": "argon", + "hull": 2200, + "storage": { + "missile": 10, + "unit": 0 + }, + "people": 4, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 16.876, + "inertia": { + "pitch": 4.038, + "yaw": 4.038, + "roll": 3.23 + }, + "drag": { + "forward": 5.331, + "reverse": 20.288, + "horizontal": 6.262, + "vertical": 6.262, + "pitch": 6.211, + "yaw": 6.211, + "roll": 6.211 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 2080, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "loanshark", + "scavenger" + ], + "price": { + "min": 142180, + "max": 265810, + "avg": 203995 + }, + "production": [ + { + "time": 13.8, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 55 + }, + { + "ware": "hullparts", + "amount": 191 + } + ] + } + ] + }, + { + "id": "ship_pir_xl_battleship_01_a", + "version": 1, + "name": "Erlking", + "description": "With the advent of the Dark, Avarice was forced to rely on a fleet of stranded ships that had been taken by surprise by the Jump Gate shutdown. Despite the almost immediate collapse of the Avarice company, capable scientists and engineers soon took it upon themselves to stabilise the system and work towards sustainability. They first established a functioning wharf for repairs and replacement, and conducted early experiments into developing a recycling economy in anticipation of dwindling resources within the system. The regeneration of this post-shutdown economy was quickly curtailed by the first Tides, which destroyed most stations and ships in the system in 800 (NT). However, a side-effect of the destructive solar event was the greatly increased energy output from solar panels, which allowed for a paradigm shift. The new Rakers economy emerging from Tidebreak, at the time the only station in Avarice, took advantage of this new abundance of energy. This, along with the use of local wrecks, enabled the rebuilding of a new, sustainable, closed-loop economy based on recycling, allowing them to further improve on previous ship and station module designs. Resettlement of Avarice began in 818 (NT), when the Northriver Company introduced Protectyon and the associated Protectyon Shield Generators to safeguard stations from the Tide. A few years later, in 825 (NT), the reconnection of Windfall gave the long-isolated Rakers the opportunity to trade with various Syndicate factions, but also exposed them to their piracy.nnShortly after the first Tides in 800 (NT) devastated the Avarice system, nomad engineers on Tidebreak, under their lead engineer Sihi Do, began the Erlking project. This project was an attempt at building a capital ship, sturdy enough to withstand the Tide and be used as a mobile base in Avarice. No sooner had they succeeded in providing the ship with sufficient shielding, than they abandoned all work on the barely operational Erlking. They refocused their attention on another, undisclosed, major project, before ultimately disappearing. Despite being unfinished, the Erlking continued to be deployed, while Tidebreak engineers repeatedly attempted, and failed, to improve on, or even reproduce, the design's unique power core.nnWith the connection of Avarice to the more militarised Syndicate system in 821 (NT), Tidebreak engineers attempted to weaponise the Erlking, and reclassified it as Battleship. They added turret and weapon hard-points, but failed to develop compatible turrets and weapons. The Syndicate later confiscated the ship to remove this potential military threat, and attempted to develop the weapon systems themselves. Among the engineers of Windfall, those of the Solid Ice Union had the most experience with capital ships, but the political situation, and fear of a power grab, meant that they were not allowed to work on the Erlking. Instead, the Scrapyard engineers were tasked with completing the weapon systems. Having previously failed to stabilise the energy supply on the Shih fighter, to increase the number of supported weapons, the Erlking presented them with the opposite problem: all efforts to connect conventional weaponry to its unique power grid resulted in them being blown off the hull. Attempts to modify either the power grid or the weapon systems were also in vain, but their work had started only recently and Syndicate expectations remained high.", + "size": "extralarge", + "race": "argon", + "explosionDamage": 1500, + "hull": 500000, + "storage": { + "missile": 300, + "unit": 20 + }, + "people": 328, + "purpose": "fight", + "thruster": "extralarge", + "type": "battleship", + "mass": 295.441, + "inertia": { + "pitch": 280.021, + "yaw": 280.021, + "roll": 224.017 + }, + "drag": { + "forward": 173.86, + "reverse": 695.441, + "horizontal": 211.606, + "vertical": 211.606, + "pitch": 683.179, + "yaw": 683.179, + "roll": 683.179 + }, + "engines": [ + { + "group": "group_back_mid_down", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_down", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_mid_down", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_top_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "extralarge", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_front_mid_left", + "size": "large", + "hittable": false, + "types": [] + }, + { + "group": "group_back_down_left", + "size": "large", + "hittable": false, + "types": [] + }, + { + "group": "group_back_up_right", + "size": "large", + "hittable": false, + "types": [] + }, + { + "group": "group_front_top_mid", + "size": "large", + "hittable": false, + "types": [] + }, + { + "group": "group_front_mid_right", + "size": "large", + "hittable": false, + "types": [] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_mid_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true, + "types": [] + }, + { + "group": "group_front_top_right", + "size": "medium", + "hittable": true, + "types": [] + } + ], + "cargo": [ + { + "max": 56000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + }, + { + "capacity": 4, + "size": "small" + }, + { + "capacity": 2, + "size": "medium" + } + ], + "owners": [ + "ownerless" + ], + "price": { + "min": 10407890, + "max": 19432940, + "avg": 14920415 + }, + "production": [ + { + "time": 542, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2996 + }, + { + "ware": "hullparts", + "amount": 16569 + } + ] + } + ] + }, + { + "id": "ship_pir_xl_builder_01", + "version": 1, + "name": "Gannascus", + "description": "The inception of the Gannascus construction ship is credited with catalysing unity within the murky Vigor Syndicate of the Windfall system.nnThe need for the vying factions to work together on this feat suppressed otherwise brutal rivalries, turning the loose collection of bandit cadres into a somewhat more cohesive organised crime collective.nnMost observers consider the Vigor Syndicate's ship and station building capacity to be the key factor in its overall threat level.", + "size": "extralarge", + "explosionDamage": 1200, + "hull": 115000, + "storage": { + "missile": 40, + "unit": 100 + }, + "people": 219, + "purpose": "build", + "thruster": "extralarge", + "type": "builder", + "mass": 885.723, + "inertia": { + "pitch": 598.799, + "yaw": 598.799, + "roll": 479.039 + }, + "drag": { + "forward": 257.145, + "reverse": 1028.579, + "horizontal": 467.116, + "vertical": 467.116, + "pitch": 877.145, + "yaw": 877.145, + "roll": 877.145 + }, + "engines": [ + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_back_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_right", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_up_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + }, + { + "group": "group_back_down_left", + "size": "medium", + "hittable": true, + "types": [ + "standard", + "missile" + ] + } + ], + "cargo": [ + { + "max": 50, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "medium" + }, + { + "capacity": 40, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "loanshark", + "scavenger" + ], + "price": { + "min": 8001560, + "max": 14939990, + "avg": 11470775 + }, + "production": [ + { + "time": 479.55, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1957 + }, + { + "ware": "hullparts", + "amount": 10827 + } + ] + } + ] + }, + { + "id": "ship_bor_l_carrier_01_a", + "version": 1, + "name": "Guppy", + "description": "The Guppy light carrier was the first carrier Atreus Shipbuilding Currents developed. While development started during the end of the Atreus Era, it carried over into, and was completed during, the Menelaus Era. After six years of development, and a major budget increase, the first Guppy departed from the Ocean of Fantasy Shipyard in 790 (NT) to serve the Boron Royal Navy.nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "large", + "race": "boron", + "explosionDamage": 1000, + "hull": 117000, + "storage": { + "missile": 310, + "unit": 20 + }, + "people": 60, + "purpose": "fight", + "thruster": "large", + "type": "carrier", + "mass": 341.545, + "inertia": { + "pitch": 118.961, + "yaw": 118.961, + "roll": 95.169 + }, + "drag": { + "forward": 141.833, + "reverse": 540.317, + "horizontal": 84.116, + "vertical": 84.116, + "pitch": 112.976, + "yaw": 112.976, + "roll": 112.976 + }, + "engines": [ + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "size": "large", + "hittable": false + }, + { + "size": "large", + "hittable": false + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_mid_down", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "cargo": [ + { + "max": 8000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 8, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 5405973, + "max": 7620468, + "avg": 6513220 + }, + "production": [ + { + "time": 175, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1320 + }, + { + "ware": "hullparts", + "amount": 5200 + }, + { + "ware": "water", + "amount": 3660 + } + ] + } + ] + }, + { + "id": "ship_bor_l_destroyer_01_a", + "version": 1, + "name": "Ray", + "description": "With the Ray destroyer, Eleius Astrosecurity developed their largest and last Menelaus Era ship. The first Ray departed in 798 (NT) from the Depths of Silence Shipyard. Soon after entering service the ship's iconic frame became associated with the Royal Boron Navy. The Ray was deployed on major battlefields against both Split and Xenon fleets, where it proved itself to be a reliable and effective destroyer.nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "large", + "race": "boron", + "explosionDamage": 1000, + "hull": 114000, + "storage": { + "missile": 207, + "unit": 10 + }, + "people": 54, + "purpose": "fight", + "thruster": "large", + "type": "destroyer", + "mass": 308.555, + "inertia": { + "pitch": 101.194, + "yaw": 101.194, + "roll": 80.955 + }, + "drag": { + "forward": 96.868, + "reverse": 369.02, + "horizontal": 105.55, + "vertical": 105.55, + "pitch": 106.378, + "yaw": 106.378, + "roll": 106.378 + }, + "engines": [ + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "size": "large", + "hittable": false + }, + { + "size": "large", + "hittable": false + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + } + ], + "weapons": [ + { + "size": "large", + "hittable": false, + "types": [] + } + ], + "turrets": [ + { + "group": "group_front_up_mid", + "size": "large", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "large", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "cargo": [ + { + "max": 2000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 4, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 5435998, + "max": 7662793, + "avg": 6549396 + }, + "production": [ + { + "time": 175, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1140 + }, + { + "ware": "hullparts", + "amount": 5570 + }, + { + "ware": "water", + "amount": 2385 + } + ] + } + ] + }, + { + "id": "ship_bor_l_miner_liquid_01_a", + "version": 1, + "name": "Rorqual (Gas)", + "description": "Developed by Deepwater Drilling Industries, the Rorqual turned out to be an ambitious project. After several setbacks, the company managed to release their first capital ship when the first Rorqual departed from the Kingdom End Shipyard in 793 (NT). The ship turned out to be barely serviceable and would require multiple overhauls. While Deepwater Drilling Industries managed to rectify all flaws with the design, and salvaged their reputation by recalling and updating ships that had already been sold, the disastrous release brought the company to the brink of bankruptcy.nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "large", + "race": "boron", + "explosionDamage": 800, + "hull": 31000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 52, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 294.322, + "inertia": { + "pitch": 93.943, + "yaw": 93.943, + "roll": 75.155 + }, + "drag": { + "forward": 65.91, + "reverse": 358.692, + "horizontal": 112.846, + "vertical": 112.846, + "pitch": 103.531, + "yaw": 103.531, + "roll": 103.531 + }, + "engines": [ + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "size": "large", + "hittable": false + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "cargo": [ + { + "max": 42000, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 2, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 1146506, + "max": 1616159, + "avg": 1381332 + }, + "production": [ + { + "time": 55, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 500 + }, + { + "ware": "hullparts", + "amount": 1080 + }, + { + "ware": "water", + "amount": 800 + } + ] + } + ] + }, + { + "id": "ship_bor_l_miner_solid_01_a", + "version": 1, + "name": "Rorqual (Mineral)", + "description": "Developed by Deepwater Drilling Industries, the Rorqual turned out to be an ambitious project. After several setbacks, the company managed to release their first capital ship when the first Rorqual departed from the Kingdom End Shipyard in 793 (NT). The ship turned out to be barely serviceable and would require multiple overhauls. While Deepwater Drilling Industries managed to rectify all flaws with the design, and salvaged their reputation by recalling and updating ships that had already been sold, the disastrous release brought the company to the brink of bankruptcy.nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "large", + "race": "boron", + "explosionDamage": 800, + "hull": 31000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 52, + "purpose": "mine", + "thruster": "large", + "type": "largeminer", + "mass": 294.322, + "inertia": { + "pitch": 93.943, + "yaw": 93.943, + "roll": 75.155 + }, + "drag": { + "forward": 65.91, + "reverse": 358.692, + "horizontal": 112.846, + "vertical": 112.846, + "pitch": 103.531, + "yaw": 103.531, + "roll": 103.531 + }, + "engines": [ + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "size": "large", + "hittable": false + }, + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_mid", + "size": "large", + "hittable": false, + "types": [ + "mining" + ] + }, + { + "group": "group_front_down_mid", + "size": "large", + "hittable": false, + "types": [ + "mining" + ] + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "cargo": [ + { + "max": 40000, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 2, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 1128579, + "max": 1590888, + "avg": 1359733 + }, + "production": [ + { + "time": 55, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 500 + }, + { + "ware": "hullparts", + "amount": 1130 + }, + { + "ware": "water", + "amount": 520 + } + ] + } + ] + }, + { + "id": "ship_bor_l_trans_container_01_a", + "version": 1, + "name": "Sturgeon", + "description": "Stellar Shores Shipping was founded in 785 (NT) by graduates of the Royal Academy of Space Engineering. The former students brought with them their engineering experience, from working with Atreus Shipbuilding Currents on the smaller Dolphin transporter, but underestimated the difficulties of founding and running a new company. Various setbacks and delays lead to the company publicly accusing competitors of sabotage, as a project failure would lead to a retraction and reassignment of the government contract. Ultimately the company pulled itself together, and with its departure from the Great Reef Shipyard, the Sturgeon saw its successful release in 794 (NT).nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "large", + "race": "boron", + "explosionDamage": 800, + "hull": 40000, + "storage": { + "missile": 30, + "unit": 10 + }, + "people": 63, + "purpose": "trade", + "thruster": "large", + "type": "freighter", + "mass": 320.723, + "inertia": { + "pitch": 59.773, + "yaw": 59.773, + "roll": 47.818 + }, + "drag": { + "forward": 148.778, + "reverse": 566.774, + "horizontal": 139.503, + "vertical": 139.503, + "pitch": 108.811, + "yaw": 108.811, + "roll": 108.811 + }, + "engines": [ + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + }, + { + "group": "group_engines", + "size": "large", + "hittable": false + } + ], + "shields": [ + { + "size": "large", + "hittable": false + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "cargo": [ + { + "max": 30000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 2, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 3653390, + "max": 5149960, + "avg": 4401675 + }, + "production": [ + { + "time": 130, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 1500 + }, + { + "ware": "hullparts", + "amount": 3900 + }, + { + "ware": "water", + "amount": 760 + } + ] + } + ] + }, + { + "id": "ship_bor_m_corvette_01_a", + "version": 1, + "name": "Hydra", + "description": "After their reasonably successful development of the heavy fighter in 788 (NT), and a recent incident disqualifying their main competitor, Eleius Astrosecurity secured the government contract to develop the next Royal Boron Navy corvette. Widely regarded as a successful design, the Hydra entered service in 792 (NT).nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "medium", + "race": "boron", + "explosionDamage": 500, + "hull": 7900, + "storage": { + "missile": 41, + "unit": 0 + }, + "people": 6, + "purpose": "fight", + "thruster": "medium", + "type": "corvette", + "mass": 23.782, + "inertia": { + "pitch": 3.533, + "yaw": 3.533, + "roll": 2.826 + }, + "drag": { + "forward": 6.968, + "reverse": 27.87, + "horizontal": 13.12, + "vertical": 13.12, + "pitch": 7.601, + "yaw": 7.601, + "roll": 7.601 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + } + ], + "cargo": [ + { + "max": 400, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 529993, + "max": 747099, + "avg": 638546 + }, + "production": [ + { + "time": 35, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 110 + }, + { + "ware": "hullparts", + "amount": 540 + }, + { + "ware": "water", + "amount": 245 + } + ] + } + ] + }, + { + "id": "ship_bor_m_corvette_02_a", + "version": 1, + "name": "Hydra Regal", + "description": "After their reasonably successful development of the heavy fighter in 788 (NT), and a recent incident disqualifying their main competitor, Eleius Astrosecurity secured the government contract to develop the next Royal Boron Navy corvette. Widely regarded as a successful design, the Hydra entered service in 792 (NT).nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.nnThe Regal version is a custom build commissioned by the monarchy to be awarded to individuals of outstanding merit.", + "size": "medium", + "race": "boron", + "explosionDamage": 500, + "hull": 8100, + "storage": { + "missile": 41, + "unit": 0 + }, + "people": 6, + "purpose": "fight", + "thruster": "medium", + "type": "corvette", + "mass": 24.216, + "inertia": { + "pitch": 3.461, + "yaw": 3.461, + "roll": 2.769 + }, + "drag": { + "forward": 6.704, + "reverse": 26.817, + "horizontal": 13.051, + "vertical": 13.051, + "pitch": 7.699, + "yaw": 7.699, + "roll": 7.699 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + } + ], + "cargo": [ + { + "max": 400, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 561714, + "max": 791814, + "avg": 676764 + }, + "production": [ + { + "time": 35, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 110 + }, + { + "ware": "hullparts", + "amount": 574 + }, + { + "ware": "water", + "amount": 255 + } + ] + } + ] + }, + { + "id": "ship_bor_m_gunboat_01_a", + "version": 1, + "name": "Thresher", + "description": "Developed by Faded Dreams Defences as their last ship of the Menelaus Era, the Thresher gunboat saw its maiden voyage in 795 (NT). Even while production was still ramping up, the ship had already proved itself on various battlefields, defending convoys and mining operations against Split, Xenon and sometimes pirate incursions. The Royal Boron Navy, as well as various transport and mining corporations, soon valued the Thresher as a competent escort ship, and increasingly deployed it throughout the Queendom.nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "medium", + "race": "boron", + "explosionDamage": 500, + "hull": 10900, + "storage": { + "missile": 88, + "unit": 0 + }, + "people": 8, + "purpose": "fight", + "thruster": "medium", + "type": "gunboat", + "mass": 32.713, + "inertia": { + "pitch": 6.827, + "yaw": 6.827, + "roll": 5.461 + }, + "drag": { + "forward": 4.405, + "reverse": 17.619, + "horizontal": 12.611, + "vertical": 12.611, + "pitch": 10.678, + "yaw": 10.678, + "roll": 10.678 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "missile" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + } + ], + "cargo": [ + { + "max": 850, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 519734, + "max": 732637, + "avg": 626185 + }, + "production": [ + { + "time": 35, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 140 + }, + { + "ware": "hullparts", + "amount": 510 + }, + { + "ware": "water", + "amount": 308 + } + ] + } + ] + }, + { + "id": "ship_bor_m_miner_liquid_01_a", + "version": 1, + "name": "Porpoise (Gas)", + "description": "The Porpoise mining ship had many of its systems provided by Deepwater Drilling Industries, a company which excelled in the engineering of deep ocean mining machinery and successfully adapted its technology to be suitable for space mining operations. The ship was released in 784 (NT) shortly after the death of Her Majesty Queen Atreus, making it the last ship of the Atreus Era.nnAtreus Era ships were the first ships built in response to the beginning of the Jump Gate shutdowns of 778 (NT). Fearing that systems might be cut off, they were designed to operate more autonomously in contrast to earlier ships which specialised in combined usage. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The Atreus Era ships are sturdier than the later Menelaus Era ships, but not as manoeuvrable.nnIn response to further Jump Gate shutdowns, the Queendom of Boron attempted to expedite the development of new ships through increased funding and the involvement of additional corporations and research facilities. Following the great success of their initial ship frame design for S-sized ships, Atreus Shipbuilding Currents was commissioned to spearhead all work on the M-sized follow-on projects, specifically the Dolphin transporter and Porpoise miner, but it outsourced some aspects of the work and associated research.", + "size": "medium", + "race": "boron", + "explosionDamage": 100, + "hull": 8000, + "storage": { + "missile": 0, + "unit": 0 + }, + "people": 7, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 31.939, + "inertia": { + "pitch": 9.35, + "yaw": 9.35, + "roll": 7.48 + }, + "drag": { + "forward": 8.073, + "reverse": 46.133, + "horizontal": 12.966, + "vertical": 12.966, + "pitch": 10.485, + "yaw": 10.485, + "roll": 10.485 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [] + }, + { + "size": "medium", + "hittable": false, + "types": [] + } + ], + "cargo": [ + { + "max": 8600, + "types": [ + "liquid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 136612, + "max": 192573, + "avg": 164592 + }, + "production": [ + { + "time": 25, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 70 + }, + { + "ware": "hullparts", + "amount": 131 + }, + { + "ware": "water", + "amount": 83 + } + ] + } + ] + }, + { + "id": "ship_bor_m_miner_solid_01_a", + "version": 1, + "name": "Porpoise (Mineral)", + "description": "The Porpoise mining ship had many of its systems provided by Deepwater Drilling Industries, a company which excelled in the engineering of deep ocean mining machinery and successfully adapted its technology to be suitable for space mining operations. The ship was released in 784 (NT) shortly after the death of Her Majesty Queen Atreus, making it the last ship of the Atreus Era.nnAtreus Era ships were the first ships built in response to the beginning of the Jump Gate shutdowns of 778 (NT). Fearing that systems might be cut off, they were designed to operate more autonomously in contrast to earlier ships which specialised in combined usage. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The Atreus Era ships are sturdier than the later Menelaus Era ships, but not as manoeuvrable.nnIn response to further Jump Gate shutdowns, the Queendom of Boron attempted to expedite the development of new ships through increased funding and the involvement of additional corporations and research facilities. Following the great success of their initial ship frame design for S-sized ships, Atreus Shipbuilding Currents was commissioned to spearhead all work on the M-sized follow-on projects, specifically the Dolphin transporter and Porpoise miner, but it outsourced some aspects of the work and associated research.", + "size": "medium", + "race": "boron", + "explosionDamage": 100, + "hull": 8000, + "storage": { + "missile": 0, + "unit": 0 + }, + "people": 7, + "purpose": "mine", + "thruster": "medium", + "type": "miner", + "mass": 31.939, + "inertia": { + "pitch": 9.35, + "yaw": 9.35, + "roll": 7.48 + }, + "drag": { + "forward": 8.073, + "reverse": 46.133, + "horizontal": 12.966, + "vertical": 12.966, + "pitch": 10.485, + "yaw": 10.485, + "roll": 10.485 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "weapons": [ + { + "size": "medium", + "hittable": false, + "types": [ + "mining" + ] + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [ + "mining" + ] + }, + { + "size": "medium", + "hittable": false, + "types": [ + "mining" + ] + } + ], + "cargo": [ + { + "max": 7800, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 12142835, + "max": 201346, + "avg": 172090 + }, + "production": [ + { + "time": 25, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 73 + }, + { + "ware": "hullparts", + "amount": 145 + }, + { + "ware": "water", + "amount": 55 + } + ] + } + ] + }, + { + "id": "ship_bor_m_trans_container_01_a", + "version": 1, + "name": "Dolphin", + "description": "The Dolphin transporter project largely built upon lessons learnt in prior developments, but also saw new innovations and subsystems designed by students and professors of the Royal Academy of Space Engineering. This cooperation proved to be fruitful for both Atreus Shipbuilding Currents, and for the students, who would gain professional experience and grow to become valuable engineers in the field, either by working directly for the company or founding their own. The Dolphin transporter was released in early 784 (NT).nnAtreus Era ships were the first ships built in response to the beginning of the Jump Gate shutdowns of 778 (NT). Fearing that systems might be cut off, they were designed to operate more autonomously in contrast to earlier ships which specialised in combined usage. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The Atreus Era ships are sturdier than the later Menelaus Era ships, but not as manoeuvrable.nnIn response to further Jump Gate shutdowns, the Queendom of Boron attempted to expedite the development of new ships through increased funding and the involvement of additional corporations and research facilities. Following the great success of their initial ship frame design for S-sized ships, Atreus Shipbuilding Currents was commissioned to spearhead all work on the M-sized follow-on projects, specifically the Dolphin transporter and Porpoise miner, but it outsourced some aspects of the work and associated research.", + "size": "medium", + "race": "boron", + "explosionDamage": 100, + "hull": 9000, + "storage": { + "missile": 0, + "unit": 0 + }, + "people": 21, + "purpose": "trade", + "thruster": "medium", + "type": "transporter", + "mass": 59.553, + "inertia": { + "pitch": 16.062, + "yaw": 16.062, + "roll": 12.85 + }, + "drag": { + "forward": 19.127, + "reverse": 76.508, + "horizontal": 22.373, + "vertical": 22.373, + "pitch": 17.388, + "yaw": 17.388, + "roll": 17.388 + }, + "engines": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "shields": [ + { + "size": "medium", + "hittable": false + }, + { + "size": "medium", + "hittable": false + } + ], + "turrets": [ + { + "size": "medium", + "hittable": false, + "types": [] + } + ], + "cargo": [ + { + "max": 9200, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 212164, + "max": 299075, + "avg": 255620 + }, + "production": [ + { + "time": 18, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 92 + }, + { + "ware": "hullparts", + "amount": 210 + }, + { + "ware": "water", + "amount": 108 + } + ] + } + ] + }, + { + "id": "ship_bor_s_fighter_01_a", + "version": 1, + "name": "Mako", + "description": "The Mako fighter was the second Menelaus Era ship developed by Faded Dreams Defences. As with their prior project, the company could draw upon its experience with Split encounters in the Faded Dreams system. After two years of successful development, and shortly before its ambitious release scheduled in 788 (NT), the company's Mako fighter prototype was stolen by Boron pirates from Barren Shores. This raised serious security questions with the Royal Boron Navy and lead to various audits. As a result the Boron parliament introduced new security requirements for companies working on government contracts. After upgrading their security to the new standards, Faded Dreams Defences continued development and successfully released the Mako fighter in 789 (NT). The fate of the stolen prototype remained unknown, as its incorporated technology was not leaked to other parties.nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "small", + "race": "boron", + "hull": 3100, + "storage": { + "missile": 26, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "fighter", + "mass": 6.672, + "inertia": { + "pitch": 0.617, + "yaw": 0.617, + "roll": 0.475 + }, + "drag": { + "forward": 2.543, + "reverse": 10.172, + "horizontal": 3.703, + "vertical": 3.703, + "pitch": 1.904, + "yaw": 1.904, + "roll": 1.904 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "missile" + ] + } + ], + "cargo": [ + { + "max": 270, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 110527, + "max": 155803, + "avg": 133165 + }, + "production": [ + { + "time": 12, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 65 + }, + { + "ware": "hullparts", + "amount": 118 + }, + { + "ware": "water", + "amount": 25 + } + ] + } + ] + }, + { + "id": "ship_bor_s_heavyfighter_01_a", + "version": 1, + "name": "Barracuda", + "description": "In 785 (NT) Eleius Astrosecurity competed with Faded Dreams Defences for the contract to develop a Heavy Fighter for the Royal Boron Navy. The Eleius Astrosecurity plans for the Barracuda won this competition and secured the necessary government funding, along with access to Royal Boron Military Defence technologies. The first Barracudas soon entered service in 788 (NT), but required subsequent system updates to overcome initial design flaws in their software.nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "small", + "race": "boron", + "hull": 3700, + "storage": { + "missile": 34, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "heavyfighter", + "mass": 7.791, + "inertia": { + "pitch": 0.893, + "yaw": 0.893, + "roll": 0.714 + }, + "drag": { + "forward": 2.398, + "reverse": 9.593, + "horizontal": 4.048, + "vertical": 4.048, + "pitch": 2.361, + "yaw": 2.361, + "roll": 2.361 + }, + "engines": [ + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "missile" + ] + }, + { + "size": "small", + "hittable": false, + "types": [ + "missile" + ] + } + ], + "cargo": [ + { + "max": 330, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 203922, + "max": 287457, + "avg": 245690 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 79 + }, + { + "ware": "hullparts", + "amount": 201 + }, + { + "ware": "water", + "amount": 110 + } + ] + } + ] + }, + { + "id": "ship_bor_s_miner_solid_01_a", + "version": 1, + "name": "Grouper (Mineral)", + "description": "When Atreus Shipbuilding Currents was tasked with pioneering this design paradigm shift, their first project would be the development of a new ship frame to be used in three configurations: prospecting, mining and transportation. During the two years of development, the corporation would pave the way for future ship development through great advances in component miniaturisation and improvements to the travel mode. In 780 (NT) Atreus Shipbuilding Currents released their new ship frame with the Piranha scout, Grouper miner and Terrapin transporter.nnAtreus Era ships were the first ships built in response to the beginning of the Jump Gate shutdowns of 778 (NT). Fearing that systems might be cut off, they were designed to operate more autonomously in contrast to earlier ships which specialised in combined usage. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The Atreus Era ships are sturdier than the later Menelaus Era ships, but not as manoeuvrable.", + "size": "small", + "race": "boron", + "hull": 4000, + "storage": { + "missile": 0, + "unit": 0 + }, + "people": 2, + "purpose": "mine", + "thruster": "small", + "type": "miner", + "mass": 8.688, + "inertia": { + "pitch": 3.143, + "yaw": 3.143, + "roll": 2.515 + }, + "drag": { + "forward": 4.457, + "reverse": 19.912, + "horizontal": 3.784, + "vertical": 3.784, + "pitch": 3.653, + "yaw": 3.653, + "roll": 3.653 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "mining", + "missile" + ] + } + ], + "cargo": [ + { + "max": 2560, + "types": [ + "solid" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 69490, + "max": 97955, + "avg": 83723 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 39 + }, + { + "ware": "hullparts", + "amount": 74 + }, + { + "ware": "water", + "amount": 12 + } + ] + } + ] + }, + { + "id": "ship_bor_s_scout_01_a", + "version": 1, + "name": "Piranha", + "description": "When Atreus Shipbuilding Currents was tasked with pioneering this design paradigm shift, their first project would be the development of a new ship frame to be used in three configurations: prospecting, mining and transportation. During the two years of development, the corporation would pave the way for future ship development through great advances in component miniaturisation and improvements to the travel mode. In 780 (NT) Atreus Shipbuilding Currents released their new ship frame with the Piranha scout, Grouper miner and Terrapin transporter.nnAtreus Era ships were the first ships built in response to the beginning of the Jump Gate shutdowns of 778 (NT). Fearing that systems might be cut off, they were designed to operate more autonomously in contrast to earlier ships which specialised in combined usage. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The Atreus Era ships are sturdier than the later Menelaus Era ships, but not as manoeuvrable.", + "size": "small", + "race": "boron", + "hull": 4000, + "storage": { + "missile": 26, + "unit": 0 + }, + "people": 2, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 8.581, + "inertia": { + "pitch": 2.316, + "yaw": 2.316, + "roll": 1.853 + }, + "drag": { + "forward": 2.614, + "reverse": 10.456, + "horizontal": 3.823, + "vertical": 3.823, + "pitch": 4.088, + "yaw": 4.088, + "roll": 4.088 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "missile" + ] + } + ], + "cargo": [ + { + "max": 790, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 85205, + "max": 120109, + "avg": 102657 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "hullparts", + "amount": 90 + }, + { + "ware": "water", + "amount": 20 + } + ] + } + ] + }, + { + "id": "ship_bor_s_scout_02_a", + "version": 1, + "name": "Irukandji", + "description": "Faded Dreams Defences developed the Irukandji as a military scout for the Royal Boron Navy, drawing on its experience with Split encounters in the Faded Dreams system, which was by then already disconnected. As their first project under Queen Menelaus, the development helped the company to familiarise itself with the new technologies and production requirements provided by the Royal Boron Military Defence. The ship saw its first deployment in 787 (NT).nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "small", + "race": "boron", + "hull": 2600, + "storage": { + "missile": 17, + "unit": 0 + }, + "people": 1, + "purpose": "fight", + "thruster": "small", + "type": "scout", + "mass": 5.582, + "inertia": { + "pitch": 0.458, + "yaw": 0.458, + "roll": 0.352 + }, + "drag": { + "forward": 2.245, + "reverse": 8.98, + "horizontal": 3.732, + "vertical": 3.732, + "pitch": 1.69, + "yaw": 1.69, + "roll": 1.69 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "weapons": [ + { + "size": "small", + "hittable": false, + "types": [ + "missile" + ] + } + ], + "cargo": [ + { + "max": 530, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 99353, + "max": 140052, + "avg": 119702 + }, + "production": [ + { + "time": 10, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "hullparts", + "amount": 102 + }, + { + "ware": "water", + "amount": 37 + } + ] + } + ] + }, + { + "id": "ship_bor_s_trans_container_01_a", + "version": 1, + "name": "Terrapin", + "description": "Atreus Era ships were the first ships built in response to the beginning of the Jump Gate shutdowns of 778 (NT). Fearing that systems might be cut off, they were designed to operate more autonomously in contrast to earlier ships which specialised in combined usage. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The Atreus Era ships are sturdier than the later Menelaus Era ships, but not as manoeuvrable.nnWhen Atreus Shipbuilding Currents was tasked with pioneering this design paradigm shift, their first project would be the development of a new ship frame to be used in three configurations: prospecting, mining and transportation. During the two years of development, the corporation would pave the way for future ship development through great advances in component miniaturisation and improvements to the travel mode. In 780 (NT) Atreus Shipbuilding Currents released their new ship frame with the Piranha scout, Grouper miner and Terrapin transporter.", + "size": "small", + "race": "boron", + "hull": 4000, + "storage": { + "missile": 0, + "unit": 0 + }, + "people": 4, + "purpose": "trade", + "thruster": "small", + "type": "courier", + "mass": 15.639, + "inertia": { + "pitch": 5.012, + "yaw": 5.012, + "roll": 4.01 + }, + "drag": { + "forward": 5.253, + "reverse": 20.889, + "horizontal": 6.81, + "vertical": 6.81, + "pitch": 5.825, + "yaw": 5.825, + "roll": 5.825 + }, + "engines": [ + { + "size": "small", + "hittable": false + }, + { + "size": "small", + "hittable": false + } + ], + "shields": [ + { + "size": "small", + "hittable": false + } + ], + "cargo": [ + { + "max": 2230, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 164834, + "max": 232356, + "avg": 198595 + }, + "production": [ + { + "time": 15, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 62 + }, + { + "ware": "hullparts", + "amount": 180 + }, + { + "ware": "water", + "amount": 20 + } + ] + } + ] + }, + { + "id": "ship_bor_xl_builder_01_a", + "version": 1, + "name": "Walrus", + "description": "Lucky Planets Construction Enterprises made a name for itself supplying and servicing Boron colonies surrounding the Lucky Planets system. With their experience in the various space engineering fields involved in station construction, the company secured a contract to develop a builder ship in 782 (NT). Although development began during the Atreus Era, it continued well into the Menelaus Era thereby spanning the major paradigm shifts in ship design that occurred during that time. Development and construction finished with the first Walrus' maiden voyage, when it undocked from the Lucky Planets Shipyard in 789 (NT).nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "extralarge", + "race": "boron", + "explosionDamage": 1200, + "hull": 178000, + "storage": { + "missile": 349, + "unit": 192 + }, + "people": 140, + "purpose": "build", + "thruster": "extralarge", + "type": "builder", + "mass": 1430.356, + "inertia": { + "pitch": 553.233, + "yaw": 553.233, + "roll": 442.587 + }, + "drag": { + "forward": 228.795, + "reverse": 915.178, + "horizontal": 780.723, + "vertical": 780.723, + "pitch": 752.738, + "yaw": 752.738, + "roll": 752.738 + }, + "engines": [ + { + "group": "group_engines", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_mid_down_mid_01", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_mid_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + } + ], + "turrets": [ + { + "group": "group_mid_down_mid_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_mid_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_mid_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_mid_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "cargo": [ + { + "max": 50, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 2, + "size": "medium" + }, + { + "capacity": 2, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 9921974, + "max": 13986397, + "avg": 11954185 + }, + "production": [ + { + "time": 527, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 2866 + }, + { + "ware": "hullparts", + "amount": 9575 + }, + { + "ware": "water", + "amount": 6440 + } + ] + } + ] + }, + { + "id": "ship_bor_xl_carrier_01_a", + "version": 1, + "name": "Shark", + "description": "The Shark heavy carrier was the second carrier developed by Atreus Shipbuilding Currents. Aside from various budget increases, the renowned company managed to engineer and deliver the ship without major incidents. After seven years of development the first Shark was completed, and departed from the Ocean of Fantasy Shipyard in 797 (NT) to serve the Boron Royal Navy.nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "extralarge", + "race": "boron", + "explosionDamage": 1500, + "hull": 383000, + "storage": { + "missile": 500, + "unit": 20 + }, + "people": 405, + "purpose": "fight", + "thruster": "extralarge", + "type": "carrier", + "mass": 1149.882, + "inertia": { + "pitch": 740.894, + "yaw": 740.894, + "roll": 592.715 + }, + "drag": { + "forward": 332.118, + "reverse": 1265.21, + "horizontal": 271.773, + "vertical": 271.773, + "pitch": 696.643, + "yaw": 696.643, + "roll": 696.643 + }, + "engines": [ + { + "group": "group_engines", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_engines", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_engines", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_engines", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_engines", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_mid_02", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "group": "group_mid_down_mid_01", + "size": "medium", + "hittable": true + } + ], + "turrets": [ + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_mid_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_mid_02", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_mid_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_mid_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "cargo": [ + { + "max": 35000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 8, + "size": "medium" + }, + { + "capacity": 64, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 18129693, + "max": 25556315, + "avg": 21843004 + }, + "production": [ + { + "time": 780, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 4425 + }, + { + "ware": "hullparts", + "amount": 18800 + }, + { + "ware": "water", + "amount": 6880 + } + ] + } + ] + }, + { + "id": "ship_bor_xl_resupplier_01_a", + "version": 1, + "name": "Orca", + "description": "After their long history of manufacturing exclusively civilian construction and service ships, in 789 (NT) Lucky Planets Construction Enterprises accepted a government contract to develop an XL resupplier for the Royal Boron Navy. While some of their competitors suspected that the contract was acquired through foul play, the company's recent success with the builder, the Walrus, qualified it to develop their second XL sized ship. As one of the last ships to be developed in the Menelaus Era, the Orca saw its maiden voyage when it deployed from the Lucky Planets Shipyard in 798 (NT).nnMenelaus Era ships were built between 785 (NT) and 798 (NT) as a second wave of more autonomous ships in preparation for the Jump Gate shutdowns. To reduce flight mass, the ships are mostly filled with air, requiring Boron crew to wear protective suits. The new Menelaus cabinet allowed corporations, working under a government contract, access to various classified technological advancements made by Royal Boron Military Defence research facilities. The ships designed with those technologies are less sturdy than the first wave of Atreus Era ships, but more manoeuvrable.", + "size": "extralarge", + "race": "boron", + "explosionDamage": 1200, + "hull": 174000, + "storage": { + "missile": 268, + "unit": 100 + }, + "people": 154, + "purpose": "auxiliary", + "thruster": "extralarge", + "type": "resupplier", + "mass": 1569.585, + "inertia": { + "pitch": 629.542, + "yaw": 629.542, + "roll": 503.633 + }, + "drag": { + "forward": 344.677, + "reverse": 1378.709, + "horizontal": 750.951, + "vertical": 750.951, + "pitch": 750.584, + "yaw": 750.584, + "roll": 750.584 + }, + "engines": [ + { + "group": "group_engines", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_engines", + "size": "extralarge", + "hittable": false + }, + { + "group": "group_engines", + "size": "extralarge", + "hittable": false + } + ], + "shields": [ + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_engines", + "size": "medium", + "hittable": true + }, + { + "group": "group_rear_up_mid", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true + }, + { + "group": "group_mid_down_mid_01", + "size": "medium", + "hittable": true + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + }, + { + "size": "extralarge", + "hittable": false + } + ], + "turrets": [ + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_down_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_right", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_rear_up_mid", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_front_up_left", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_mid_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + }, + { + "group": "group_mid_down_mid_01", + "size": "medium", + "hittable": true, + "types": [ + "missile" + ] + } + ], + "cargo": [ + { + "max": 40000, + "types": [ + "container" + ] + } + ], + "docks": [ + { + "capacity": 4, + "size": "medium" + }, + { + "capacity": 16, + "size": "small" + }, + { + "capacity": 10, + "size": "extrasmall" + } + ], + "owners": [ + "boron" + ], + "price": { + "min": 14605352, + "max": 20588268, + "avg": 17596810 + }, + "production": [ + { + "time": 780, + "amount": 1, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 3738 + }, + { + "ware": "hullparts", + "amount": 15380 + }, + { + "ware": "water", + "amount": 4560 + } + ] + } + ] + } +] \ No newline at end of file diff --git a/shared/export/size-data.json b/shared/export/size-data.json new file mode 100644 index 0000000..a153966 --- /dev/null +++ b/shared/export/size-data.json @@ -0,0 +1,7 @@ +[ + "extrasmall", + "small", + "medium", + "large", + "extralarge" +] \ No newline at end of file diff --git a/shared/export/transport-data.json b/shared/export/transport-data.json new file mode 100644 index 0000000..0d81c71 --- /dev/null +++ b/shared/export/transport-data.json @@ -0,0 +1,5 @@ +[ + "container", + "liquid", + "solid" +] \ No newline at end of file diff --git a/shared/export/turret-type-data.json b/shared/export/turret-type-data.json new file mode 100644 index 0000000..9fe7644 --- /dev/null +++ b/shared/export/turret-type-data.json @@ -0,0 +1,5 @@ +[ + "standard", + "missile", + "mining" +] \ No newline at end of file diff --git a/shared/export/ware-groups-data.json b/shared/export/ware-groups-data.json new file mode 100644 index 0000000..62b5cff --- /dev/null +++ b/shared/export/ware-groups-data.json @@ -0,0 +1,76 @@ +[ + { + "id": "agricultural", + "name": "Agricultural Goods", + "factoryName": "Agricultural Goods Factory", + "icon": "be_upgrade_agricultural", + "tier": 5 + }, + { + "id": "energy", + "name": "Energy", + "factoryName": "Energy Complex", + "icon": "be_upgrade_energy", + "tier": 1 + }, + { + "id": "food", + "name": "Food", + "factoryName": "Farm", + "icon": "be_upgrade_food", + "tier": 6 + }, + { + "id": "gases", + "name": "Gases", + "factoryName": "Gas Refinery", + "icon": "be_upgrade_refined" + }, + { + "id": "hightech", + "name": "High Tech Goods", + "factoryName": "High Tech Factory", + "icon": "be_upgrade_hightech", + "tier": 3 + }, + { + "id": "ice", + "name": "Ice", + "factoryName": "Ice Refinery", + "icon": "be_upgrade_water" + }, + { + "id": "minerals", + "name": "Minerals", + "factoryName": "Mineral Refinery", + "icon": "be_upgrade_refined" + }, + { + "id": "pharmaceutical", + "name": "Pharmaceutical Goods", + "factoryName": "Pharmaceutical Goods Factory", + "icon": "be_upgrade_pharmaceutical", + "tier": 7 + }, + { + "id": "refined", + "name": "Refined Goods", + "factoryName": "Refined Goods Complex", + "icon": "be_upgrade_refined", + "tier": 2 + }, + { + "id": "shiptech", + "name": "Ship Technology", + "factoryName": "Ship Technology Factory", + "icon": "be_upgrade_shiptech", + "tier": 4 + }, + { + "id": "water", + "name": "Water", + "factoryName": "Water Refinery", + "icon": "be_upgrade_water", + "tier": 2 + } +] \ No newline at end of file diff --git a/shared/export/wares-data.json b/shared/export/wares-data.json new file mode 100644 index 0000000..60fd4cf --- /dev/null +++ b/shared/export/wares-data.json @@ -0,0 +1,2697 @@ +[ + { + "id": "advancedcomposites", + "version": 0, + "name": "Advanced Composites", + "description": "Formed from some of the refined resources collected from mining ships, advanced composites is a general term for many compounds created to serve several purposes; most commonly used in the production of a variety of equipment parts.", + "factoryName": "Advanced Composite Factory", + "icon": "ware_advancedcomposites", + "volume": 32, + "transport": "container", + "price": { + "min": 432, + "max": 648, + "avg": 540 + }, + "group": "hightech", + "production": [ + { + "time": 300, + "amount": 54, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "graphene", + "amount": 80 + }, + { + "ware": "refinedmetals", + "amount": 80 + } + ], + "effects": [ + { + "type": "work", + "product": 0.34 + } + ] + }, + { + "time": 300, + "amount": 54, + "method": "teladi", + "name": "Teladi", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "graphene", + "amount": 80 + }, + { + "ware": "teladianium", + "amount": 58 + } + ], + "effects": [ + { + "type": "work", + "product": 0.34 + } + ] + } + ] + }, + { + "id": "advancedelectronics", + "version": 0, + "name": "Advanced Electronics", + "description": "Designed specifically to work alongside weapon and turret components, it is a variety of advanced electronics that allow different weapons and turrets to have a range of turning speeds, fire rates and cooldowns. Whereas field coils for shields and antimatter converters for engines are more modular and can be used 'across the board', different weapons and turrets expect different electronic systems to be used in order to ensure the correct properties. However, as all equipment is built and repaired on demand, all advanced electronics are shipped to shipyards and equipment docks together.", + "factoryName": "Advanced Electronics Factory", + "icon": "ware_advancedelectronics", + "volume": 30, + "transport": "container", + "price": { + "min": 710, + "max": 1318, + "avg": 1014 + }, + "group": "shiptech", + "production": [ + { + "time": 720, + "amount": 54, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "microchips", + "amount": 44 + }, + { + "ware": "quantumtubes", + "amount": 20 + } + ], + "effects": [ + { + "type": "work", + "product": 0.36 + } + ] + } + ] + }, + { + "id": "antimattercells", + "version": 0, + "name": "Antimatter Cells", + "description": "Highly advanced magnetic storage devices that carry antimatter. Due to the effect of Hawking radiation and their being self-powered, antimatter cells cannot store antimatter indefinitely. They are produced and filled using refined hydrogen and primarily used in the production of engine parts, and also can be miniaturised to be used in claytronics.", + "factoryName": "Antimatter Cell Factory", + "icon": "ware_antimattercells", + "volume": 18, + "transport": "container", + "price": { + "min": 121, + "max": 282, + "avg": 202 + }, + "group": "refined", + "production": [ + { + "time": 120, + "amount": 99, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "hydrogen", + "amount": 320 + } + ], + "effects": [ + { + "type": "work", + "product": 0.35 + } + ] + } + ] + }, + { + "id": "antimatterconverters", + "version": 0, + "name": "Antimatter Converters", + "description": "Attached to the antimatter cells used in engine parts for both main engines and thrusters, antimatter converters fine-tune the amount of energy used to a more specific configuration. It is the use of this component that allows so many variations of engine, as their number and set up greatly impact the power and efficiency of the final product.", + "factoryName": "Antimatter Converter Factory", + "icon": "ware_antimatterconverters", + "volume": 10, + "transport": "container", + "price": { + "min": 248, + "max": 461, + "avg": 354 + }, + "group": "shiptech", + "production": [ + { + "time": 300, + "amount": 133, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedcomposites", + "amount": 20 + }, + { + "ware": "energycells", + "amount": 80 + }, + { + "ware": "microchips", + "amount": 30 + } + ], + "effects": [ + { + "type": "work", + "product": 0.39 + } + ] + } + ] + }, + { + "id": "claytronics", + "version": 0, + "name": "Claytronics", + "description": "More commonly known as programmable matter, claytronics are made up of millions of individual nanometre-scale computers known as catoms. This technology lives at the heart of any non-Xenon station, used to build anything from internal wiring to computer systems and control mechanisms - effectively everything but the hull of the station itself. Claytronics are always in high-demand, as the universe rebuilds itself after the Jump Gate shutdown.", + "factoryName": "Claytronics Factory", + "icon": "ware_claytronics", + "volume": 24, + "transport": "container", + "price": { + "min": 1734, + "max": 2346, + "avg": 2040 + }, + "group": "shiptech", + "production": [ + { + "time": 900, + "amount": 108, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimattercells", + "amount": 100 + }, + { + "ware": "energycells", + "amount": 140 + }, + { + "ware": "microchips", + "amount": 160 + }, + { + "ware": "quantumtubes", + "amount": 100 + } + ], + "effects": [ + { + "type": "work", + "product": 0.34 + } + ] + }, + { + "time": 300, + "amount": 60, + "method": "recycling", + "name": "Recycling", + "wares": [ + { + "ware": "energycells", + "amount": 12000 + }, + { + "ware": "scrapmetal", + "amount": 300 + } + ], + "effects": [ + { + "type": "work", + "product": 0.34 + } + ] + } + ] + }, + { + "id": "dronecomponents", + "version": 0, + "name": "Drone Components", + "description": "Much like weapon and turret components, drone components have been generalised and standardised across much of the Jump Gate network to be modularly used in all kinds of drone, making them a highly sought-after resource. Drone components are directly shipped to shipyards, equipment docks and stations to source drone-building, which is done on-demand as and when it is necessary.", + "factoryName": "Drone Component Factory", + "icon": "ware_dronecomponents", + "volume": 30, + "transport": "container", + "price": { + "min": 685, + "max": 1142, + "avg": 914 + }, + "group": "shiptech", + "production": [ + { + "time": 1200, + "amount": 105, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "engineparts", + "amount": 20 + }, + { + "ware": "hullparts", + "amount": 20 + }, + { + "ware": "microchips", + "amount": 20 + }, + { + "ware": "scanningarrays", + "amount": 40 + } + ], + "effects": [ + { + "type": "work", + "product": 0.43 + } + ] + } + ] + }, + { + "id": "energycells", + "version": 0, + "name": "Energy Cells", + "description": "Contrary to common belief, Energy Cells are not simply glorified batteries; actually, they are sophisticated bio-chemical (or bio-mechanical, depending on technology) devices capable of storing energy near or at 100% efficiency.", + "factoryName": "Solar Power Plant", + "icon": "ware_energycells", + "volume": 1, + "transport": "container", + "price": { + "min": 10, + "max": 22, + "avg": 16 + }, + "group": "energy", + "production": [ + { + "time": 60, + "amount": 175, + "method": "default", + "name": "Universal", + "wares": [], + "effects": [ + { + "type": "sunlight", + "product": 1 + }, + { + "type": "work", + "product": 0.43 + } + ] + }, + { + "time": 60, + "amount": 50, + "method": "terran", + "name": "Terran", + "wares": [], + "effects": [ + { + "type": "sunlight", + "product": 1 + }, + { + "type": "work", + "product": 0.43 + } + ] + } + ] + }, + { + "id": "engineparts", + "version": 0, + "name": "Engine Parts", + "description": "Comprised of a number of different components that make up ship engines, engine parts are delivered straight to the end customer, most commonly shipyards and equipment docks, who then use them themselves to produce or repair engines. While naturally engine parts are a very necessary resource across the entire Jump Gate network, the ability to produce and repair engines on demand, instead of requiring an entirely separate production step for each, has greatly streamlined the universal economy.", + "factoryName": "Engine Part Factory", + "icon": "ware_engineparts", + "volume": 15, + "transport": "container", + "price": { + "min": 128, + "max": 237, + "avg": 182 + }, + "group": "hightech", + "production": [ + { + "time": 900, + "amount": 208, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "antimattercells", + "amount": 80 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "refinedmetals", + "amount": 96 + } + ], + "effects": [ + { + "type": "work", + "product": 0.47 + } + ] + }, + { + "time": 900, + "amount": 208, + "method": "teladi", + "name": "Teladi", + "wares": [ + { + "ware": "antimattercells", + "amount": 80 + }, + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "teladianium", + "amount": 70 + } + ], + "effects": [ + { + "type": "work", + "product": 0.47 + } + ] + } + ] + }, + { + "id": "fieldcoils", + "version": 0, + "name": "Field Coils", + "description": "Used to fine-tune the arrays used on ship and station shielding, field coils allow for much more modulation than using shield components alone. As such shipyards have begun using them to build a much wider variety of shields than was previously available. Like many of the components used on ships - that aren't the hull itself - shield components are shipped straight to shipyards and equipment docks so that shields can be produced on-demand.", + "factoryName": "Field Coil Factory", + "icon": "ware_fieldcoils", + "volume": 15, + "transport": "container", + "price": { + "min": 247, + "max": 576, + "avg": 412 + }, + "group": "shiptech", + "production": [ + { + "time": 600, + "amount": 175, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "plasmaconductors", + "amount": 40 + }, + { + "ware": "quantumtubes", + "amount": 43 + } + ], + "effects": [ + { + "type": "work", + "product": 0.43 + } + ] + } + ] + }, + { + "id": "foodrations", + "version": 0, + "name": "Food Rations", + "description": "Food Rations come in a large variety; as far as rations for the species Homo sapiens are concerned, they mainly contain wheat, freeze-dried meat and different spices as well as vitamins and essential minerals.", + "factoryName": "Food Ration Factory", + "icon": "ware_foodrations", + "volume": 1, + "transport": "container", + "illegal": [ + "loanshark" + ], + "price": { + "min": 12, + "max": 29, + "avg": 21 + }, + "group": "food", + "production": [ + { + "time": 240, + "amount": 460, + "method": "default", + "name": "Argon", + "wares": [ + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "meat", + "amount": 40 + }, + { + "ware": "spices", + "amount": 40 + }, + { + "ware": "wheat", + "amount": 40 + } + ], + "effects": [ + { + "type": "work", + "product": 0.35 + } + ] + } + ] + }, + { + "id": "graphene", + "version": 0, + "name": "Graphene", + "description": "Produced from refined and heavily modified methane gas in the modern era, graphene is a semi-metal that has many uncommon properties. Due to its strength and resistance to heat and electricity, it is used to produce a variety of tech-level resources, and is also used to help in the reinforcement of hull parts.", + "factoryName": "Graphene Refinery", + "icon": "ware_graphene", + "volume": 20, + "transport": "container", + "price": { + "min": 100, + "max": 233, + "avg": 166 + }, + "group": "refined", + "production": [ + { + "time": 240, + "amount": 96, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 80 + }, + { + "ware": "methane", + "amount": 320 + } + ], + "effects": [ + { + "type": "work", + "product": 0.46 + } + ] + } + ] + }, + { + "id": "helium", + "version": 0, + "name": "Helium", + "description": "A colourless, odourless and non-toxic noble gas, helium is found in great abundance in gas nebulas across the entire Jump Gate network and is usually collected by mining ships to be refined into superfluid coolant.", + "factoryName": "Helium Extractor", + "icon": "ware_helium", + "volume": 6, + "transport": "liquid", + "price": { + "min": 37, + "max": 51, + "avg": 44 + }, + "group": "gases", + "production": [] + }, + { + "id": "hullparts", + "version": 0, + "name": "Hull Parts", + "description": "Made from refined metals or teladianium, Hull Parts are most commonly used to build the hulls of ships and stations, though they do have some other uses such as in drones and weapons. Usually layered for additional protection, and using other compounds to further reinforce, Hull Parts are still cheap to produce - a bonus, considering their position as the most frequently used resource in the Jump Gate network.", + "factoryName": "Hull Part Factory", + "icon": "ware_hullparts", + "volume": 12, + "transport": "container", + "price": { + "min": 146, + "max": 272, + "avg": 209 + }, + "group": "hightech", + "production": [ + { + "time": 900, + "amount": 294, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 80 + }, + { + "ware": "graphene", + "amount": 40 + }, + { + "ware": "refinedmetals", + "amount": 280 + } + ], + "effects": [ + { + "type": "work", + "product": 0.37 + } + ] + }, + { + "time": 300, + "amount": 200, + "method": "recycling", + "name": "Recycling", + "wares": [ + { + "ware": "energycells", + "amount": 3500 + }, + { + "ware": "scrapmetal", + "amount": 75 + } + ], + "effects": [ + { + "type": "work", + "product": 0.37 + } + ] + }, + { + "time": 900, + "amount": 294, + "method": "teladi", + "name": "Teladi", + "wares": [ + { + "ware": "energycells", + "amount": 80 + }, + { + "ware": "graphene", + "amount": 40 + }, + { + "ware": "teladianium", + "amount": 204 + } + ], + "effects": [ + { + "type": "work", + "product": 0.37 + } + ] + } + ] + }, + { + "id": "hydrogen", + "version": 0, + "name": "Hydrogen", + "description": "Historically, Hydrogen has been used mainly in H-fusion generators. These days however, with the rise of sustainable M/AM mass conversion, Hydrogen is routinely converted into anti-Hydrogen for use in Antimatter Cells.", + "factoryName": "Hydrogen Extractor", + "icon": "ware_hydrogen", + "volume": 6, + "transport": "liquid", + "price": { + "min": 49, + "max": 67, + "avg": 58 + }, + "group": "gases", + "production": [] + }, + { + "id": "ice", + "version": 0, + "name": "Ice", + "description": "H2O in its solid state of aggregation, used for industrial water supplies and general consumption after treatment.", + "factoryName": "Ice Mine", + "icon": "ware_ice", + "volume": 8, + "transport": "solid", + "illegal": [ + "loanshark" + ], + "price": { + "min": 26, + "max": 35, + "avg": 30 + }, + "group": "ice", + "production": [] + }, + { + "id": "majadust", + "version": 0, + "name": "Maja Dust", + "description": "Chemically processed from crushed maja snail shells, maja dust is a relaxant and hallucinogenic sold as a powder-substance that is inhaled. Though any official Paranid government would have the populous believe that maja dust is not commonly consumed, it is thought to be highly likely, particularly in light of the ongoing Paranid civil war, that many Paranid and non-Paranid alike are partaking in the outlawed substance.", + "factoryName": "Maja Dust Factory", + "icon": "ware_majadust", + "volume": 6, + "transport": "container", + "illegal": [ + "holyorder", + "paranid" + ], + "price": { + "min": 94, + "max": 323, + "avg": 208 + }, + "group": "pharmaceutical", + "production": [ + { + "time": 600, + "amount": 64, + "method": "default", + "name": "Paranid", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "majasnails", + "amount": 120 + }, + { + "ware": "spices", + "amount": 60 + } + ], + "effects": [ + { + "type": "work", + "product": 0.75 + } + ] + } + ] + }, + { + "id": "majasnails", + "version": 0, + "name": "Maja Snails", + "description": "Grown across many Paranid colonies, as well as in tanks across Paranid space, maja snails provide Paranid with a good number of the nutrients they need to survive. Commonly treated very well, once a snail dies its shell and flesh are both processed as part of soja husk, along with soja beans. The shell of the maja snail is also commonly used as the main ingredient of the drug known as maja dust.", + "factoryName": "Maja Snail Farm", + "icon": "ware_majasnails", + "volume": 6, + "transport": "container", + "price": { + "min": 35, + "max": 81, + "avg": 58 + }, + "group": "agricultural", + "production": [ + { + "time": 450, + "amount": 146, + "method": "default", + "name": "Paranid", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "water", + "amount": 100 + } + ], + "effects": [ + { + "type": "work", + "product": 0.59 + } + ] + } + ] + }, + { + "id": "meat", + "version": 0, + "name": "Meat", + "description": "Though meat comes in a great variety, the most sought-after type as of late is so-called 'vegan meat', synthesised and cloned not from real animals, but from cell cultures. However, real Argnu meat is still popular within the human population of many worlds.", + "factoryName": "Meat Factory", + "icon": "ware_meat", + "volume": 6, + "transport": "container", + "price": { + "min": 29, + "max": 68, + "avg": 48 + }, + "group": "agricultural", + "production": [ + { + "time": 450, + "amount": 290, + "method": "default", + "name": "Argon", + "wares": [ + { + "ware": "energycells", + "amount": 80 + }, + { + "ware": "water", + "amount": 100 + } + ], + "effects": [ + { + "type": "work", + "product": 0.33 + } + ] + } + ] + }, + { + "id": "medicalsupplies", + "version": 0, + "name": "Medical Supplies", + "description": "Medical supplies contain a number of different concoctions and remedies used to keep station workforce healthier and happier during their time aboard. Completely natural in design, these supplies have been vetted by both the Argon Federation and Godrealm of the Paranid to ensure they are both legal and safe, and thus there is no licence necessary to carry or supply them.", + "factoryName": "Medical Supply Factory", + "icon": "ware_medicalsupplies", + "volume": 2, + "transport": "container", + "price": { + "min": 43, + "max": 89, + "avg": 66 + }, + "group": "pharmaceutical", + "production": [ + { + "time": 300, + "amount": 208, + "method": "default", + "name": "Argon", + "wares": [ + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "spices", + "amount": 40 + }, + { + "ware": "water", + "amount": 60 + }, + { + "ware": "wheat", + "amount": 30 + } + ], + "effects": [ + { + "type": "work", + "product": 0.28 + } + ] + }, + { + "time": 300, + "amount": 208, + "method": "paranid", + "name": "Paranid", + "wares": [ + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "sojabeans", + "amount": 10 + }, + { + "ware": "spices", + "amount": 40 + }, + { + "ware": "water", + "amount": 60 + } + ], + "effects": [ + { + "type": "work", + "product": 0.28 + } + ] + }, + { + "time": 300, + "amount": 208, + "method": "teladi", + "name": "Teladi", + "wares": [ + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "spices", + "amount": 40 + }, + { + "ware": "sunriseflowers", + "amount": 12 + }, + { + "ware": "water", + "amount": 60 + } + ], + "effects": [ + { + "type": "work", + "product": 0.28 + } + ] + }, + { + "time": 300, + "amount": 208, + "method": "split", + "name": "Split", + "wares": [ + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "scruffinfruits", + "amount": 30 + }, + { + "ware": "spices", + "amount": 60 + }, + { + "ware": "water", + "amount": 60 + } + ], + "effects": [ + { + "type": "work", + "product": 0.28 + } + ] + }, + { + "time": 300, + "amount": 140, + "method": "terran", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "ice", + "amount": 50 + }, + { + "ware": "proteinpaste", + "amount": 24 + } + ], + "effects": [ + { + "type": "work", + "product": 0.59 + } + ] + }, + { + "time": 300, + "amount": 208, + "method": "boron", + "name": "Boron", + "wares": [ + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "plankton", + "amount": 95 + }, + { + "ware": "water", + "amount": 60 + } + ], + "effects": [ + { + "type": "work", + "product": 0.28 + } + ] + } + ] + }, + { + "id": "methane", + "version": 0, + "name": "Methane", + "description": "Found in ample supply in gas nebulas across the Jump Gate network, methane (CH4) is collected by mining ships and taken to refineries to be processed into graphene.", + "factoryName": "Methane Extractor", + "icon": "ware_methane", + "volume": 6, + "transport": "liquid", + "price": { + "min": 41, + "max": 55, + "avg": 48 + }, + "group": "gases", + "production": [] + }, + { + "id": "microchips", + "version": 0, + "name": "Microchips", + "description": "Used in a wide variety of equipment parts, micro-chips are produced using silicon wafers, which, while fragile, allows them to conduct at a much higher rate. This, in turn, allows far better processing in the equipment that uses the micro-chips, which includes many advanced electronics and components.", + "factoryName": "Microchip Factory", + "icon": "ware_microchips", + "volume": 22, + "transport": "container", + "price": { + "min": 805, + "max": 1090, + "avg": 948 + }, + "group": "hightech", + "production": [ + { + "time": 600, + "amount": 72, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "siliconwafers", + "amount": 200 + } + ], + "effects": [ + { + "type": "work", + "product": 0.36 + } + ] + } + ] + }, + { + "id": "missilecomponents", + "version": 0, + "name": "Missile Components", + "description": "Missile components are used in the construction of all missiles, often with a different number and configuration making up the construction of each missile. As with ship equipment, missiles are built on demand, and so missile components are bought at and found at shipyards and equipment docks, where most pilots can order missiles on demand.", + "factoryName": "Missile Component Factory", + "icon": "ware_missilecomponents", + "volume": 2, + "transport": "container", + "price": { + "min": 6, + "max": 13, + "avg": 9 + }, + "group": "shiptech", + "production": [ + { + "time": 900, + "amount": 281, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "advancedcomposites", + "amount": 2 + }, + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "hullparts", + "amount": 2 + } + ], + "effects": [ + { + "type": "work", + "product": 0.53 + } + ] + } + ] + }, + { + "id": "nividium", + "version": 0, + "name": "Nividium", + "description": "A rare metal found in small pockets in asteroids, Nividium has been cut out of any economic use by the improved efficiency with which businesses have been able to use ore and silicon, much easier to find and cheaper to process. However, Nividium is still valuable, and is often transported planet-side to be made into jewelry and art.", + "factoryName": "Nividium Mine", + "icon": "ware_nividium", + "volume": 10, + "transport": "solid", + "price": { + "min": 434, + "max": 587, + "avg": 510 + }, + "group": "minerals", + "production": [] + }, + { + "id": "nostropoil", + "version": 0, + "name": "Nostrop Oil", + "description": "Nostrop oil is squeezed from the leaves of sunrise flowers and mixed with water. Though the Teladi favour it for its simplicity and nutrients, other species have clearly indicated that nostrop oil does not in fact taste at all pleasing.", + "factoryName": "Nostrop Oil Factory", + "icon": "ware_nostropoil", + "volume": 1, + "transport": "container", + "price": { + "min": 20, + "max": 47, + "avg": 34 + }, + "group": "food", + "production": [ + { + "time": 300, + "amount": 500, + "method": "default", + "name": "Teladi", + "wares": [ + { + "ware": "energycells", + "amount": 100 + }, + { + "ware": "spices", + "amount": 40 + }, + { + "ware": "sunriseflowers", + "amount": 40 + }, + { + "ware": "water", + "amount": 60 + } + ], + "effects": [ + { + "type": "work", + "product": 0.2 + } + ] + } + ] + }, + { + "id": "ore", + "version": 0, + "name": "Ore", + "description": "Today ore tends not to be mined on habitable worlds, but harvested from other celestial bodies, mainly asteroids. As could be expected, Ore must always be refined to be of any use.", + "factoryName": "Ore Mine", + "icon": "ware_ore", + "volume": 10, + "transport": "solid", + "price": { + "min": 43, + "max": 58, + "avg": 50 + }, + "group": "minerals", + "production": [] + }, + { + "id": "plasmaconductors", + "version": 0, + "name": "Plasma Conductors", + "description": "These conductors are designed to allow the flow of plasma through a component at the greatest possible efficiency. Though made relatively cheap to produce through years of research and development, plasma conductors remain highly complex pieces of technology. They are used primarily in the construction of weapon and shield components.", + "factoryName": "Plasma Conductor Factory", + "icon": "ware_plasmaconductors", + "volume": 32, + "transport": "container", + "price": { + "min": 769, + "max": 1282, + "avg": 1026 + }, + "group": "hightech", + "production": [ + { + "time": 900, + "amount": 44, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "graphene", + "amount": 96 + }, + { + "ware": "superfluidcoolant", + "amount": 140 + } + ], + "effects": [ + { + "type": "work", + "product": 0.43 + } + ] + } + ] + }, + { + "id": "quantumtubes", + "version": 0, + "name": "Quantum Tubes", + "description": "An example of complex technology being made cheap through years of continuous research, no one outside of those manufacturing the technology quite knows how quantum tubes work. Though the outer wiring itself it easy to make and understand, the internal structure and what the wiring actually carries must be constructed only by those with countless hours of study and examination under their belts; otherwise risking catastrophic failures that can lead to entire shutdowns of the equipment in which they are used.", + "factoryName": "Quantum Tube Factory", + "icon": "ware_quantumtubes", + "volume": 22, + "transport": "container", + "price": { + "min": 225, + "max": 375, + "avg": 300 + }, + "group": "hightech", + "production": [ + { + "time": 720, + "amount": 94, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "graphene", + "amount": 116 + }, + { + "ware": "superfluidcoolant", + "amount": 30 + } + ], + "effects": [ + { + "type": "work", + "product": 0.53 + } + ] + } + ] + }, + { + "id": "rawscrap", + "version": 0, + "name": "Raw Scrap", + "description": "Raw Scrap is found in wrecks. It is extracted from the wrecks of capital ships and stations, and broken down into Scrap Cubes by Compactor ships. These Scrap Cubes, as well as whole smaller wrecks, can be collected by Tug ships and taken to Scrap Processors, where they are melted down into Scrap Metal for further recycling.", + "factoryName": "", + "icon": "ware_scrapmetal", + "volume": 10, + "transport": "solid", + "price": { + "min": 153, + "max": 207, + "avg": 180 + }, + "group": "refined", + "production": [] + }, + { + "id": "refinedmetals", + "version": 0, + "name": "Refined Metals", + "description": "Refined from ore found in countless asteroids across the Jump Gate network, these refined metals are cheap to produce and easy to reinforce, making them perfect for use in constructing all kinds of Hull Parts, not just for ships and stations, but also for smaller components that used across all of space.", + "factoryName": "Ore Refinery", + "icon": "ware_refinedmetals", + "volume": 14, + "transport": "container", + "price": { + "min": 89, + "max": 207, + "avg": 148 + }, + "group": "refined", + "production": [ + { + "time": 150, + "amount": 88, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 90 + }, + { + "ware": "ore", + "amount": 240 + } + ], + "effects": [ + { + "type": "work", + "product": 0.43 + } + ] + } + ] + }, + { + "id": "scanningarrays", + "version": 0, + "name": "Scanning Arrays", + "description": "Scanning arrays have seen elegant redesign over the years so that ships and stations do not risk fragile antennas being broken or destroyed by collisions. Now entirely internal systems, scanning arrays are used not just in ship and station scanners and radars, but are also used in the targeting systems supplied with turret and drone components.", + "factoryName": "Scanning Array Factory", + "icon": "ware_scanningarrays", + "volume": 38, + "transport": "container", + "price": { + "min": 842, + "max": 1264, + "avg": 1053 + }, + "group": "hightech", + "production": [ + { + "time": 600, + "amount": 36, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "refinedmetals", + "amount": 100 + }, + { + "ware": "siliconwafers", + "amount": 60 + } + ], + "effects": [ + { + "type": "work", + "product": 0.38 + } + ] + }, + { + "time": 600, + "amount": 36, + "method": "teladi", + "name": "Teladi", + "wares": [ + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "siliconwafers", + "amount": 60 + }, + { + "ware": "teladianium", + "amount": 73 + } + ], + "effects": [ + { + "type": "work", + "product": 0.38 + } + ] + } + ] + }, + { + "id": "scrapmetal", + "version": 0, + "name": "Scrap Metal", + "description": "Scrap Metal has become established as a vital part of severely resource-deprived economies. Usually obtained from salvaged station segments or recovered ship wrecks, Scrap Metal can be recycled into other, more valuable, materials.", + "factoryName": "Scrap Processing Factory", + "icon": "ware_scrapmetal", + "volume": 10, + "transport": "solid", + "price": { + "min": 318, + "max": 431, + "avg": 375 + }, + "group": "refined", + "production": [ + { + "time": 60, + "amount": 1, + "method": "processing", + "name": "Processing", + "wares": [ + { + "ware": "energycells", + "amount": 10 + }, + { + "ware": "rawscrap", + "amount": 1 + } + ], + "effects": [] + } + ] + }, + { + "id": "shieldcomponents", + "version": 0, + "name": "Shield Components", + "description": "From generators to coils that maintain energy over time, shield components are a wide arrange of technologies that provide everything necessary to build a variety of shields. Completely modular, each part can be used in each shield, which has led to a wide variety of new-generation shields being produced in recent years. As with all ship equipment, shields are built on-demand, and so shield components are produced in factories and shipped straight to shipyards and equipment docks where they can be more freely used for construction and repair.", + "factoryName": "Shield Component Factory", + "icon": "ware_shieldcomponents", + "volume": 10, + "transport": "container", + "price": { + "min": 113, + "max": 264, + "avg": 188 + }, + "group": "shiptech", + "production": [ + { + "time": 1200, + "amount": 193, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 70 + }, + { + "ware": "plasmaconductors", + "amount": 20 + }, + { + "ware": "quantumtubes", + "amount": 20 + } + ], + "effects": [ + { + "type": "work", + "product": 0.43 + } + ] + } + ] + }, + { + "id": "silicon", + "version": 0, + "name": "Silicon", + "description": "Silicon, required for the production of the most common types of silicon wafers, is usually mined or harvested from asteroids or other uninhabited celestial bodies.", + "factoryName": "Silicon Mine", + "icon": "ware_silicon", + "volume": 10, + "transport": "solid", + "price": { + "min": 111, + "max": 150, + "avg": 130 + }, + "group": "minerals", + "production": [] + }, + { + "id": "siliconwafers", + "version": 0, + "name": "Silicon Wafers", + "description": "If a technology requires any kind of chip, it is highly likely that is uses silicon wafers. Light, efficient and cheap to produce, these wafers are usually layered or constructed in hexagonal meshes to allow for quick transfer of data across a component.", + "factoryName": "Silicon Refinery", + "icon": "ware_siliconwafers", + "volume": 18, + "transport": "container", + "price": { + "min": 180, + "max": 419, + "avg": 299 + }, + "group": "refined", + "production": [ + { + "time": 180, + "amount": 107, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 90 + }, + { + "ware": "silicon", + "amount": 240 + } + ], + "effects": [ + { + "type": "work", + "product": 0.37 + } + ] + } + ] + }, + { + "id": "smartchips", + "version": 0, + "name": "Smart Chips", + "description": "A specialised form of microchip that contains a small amount of heuristic programming, these chips cannot allow a system to learn, but can allow for small, snap intelligent decision-making that assists in targeting systems and makes autonomous piloting more accurate. These chips are primarily used in guided missiles and drones.", + "factoryName": "Smart Chip Factory", + "icon": "ware_smartchips", + "volume": 2, + "transport": "container", + "price": { + "min": 46, + "max": 69, + "avg": 57 + }, + "group": "shiptech", + "production": [ + { + "time": 600, + "amount": 143, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "siliconwafers", + "amount": 20 + } + ], + "effects": [ + { + "type": "work", + "product": 0.37 + } + ] + } + ] + }, + { + "id": "sojabeans", + "version": 0, + "name": "Soja Beans", + "description": "A small bean grown all across Paranid space, the soja bean adds flavour and nutritional value to the soja husk; the Paranids' primary food source. While this is its primary purpose, on many Paranid colonies it is also dried and ground into a powder and mixed with water, creating a flavoured and healthy drink that provides Paranid with ample energy.", + "factoryName": "Soja Bean Farm", + "icon": "ware_sojabeans", + "volume": 5, + "transport": "container", + "price": { + "min": 40, + "max": 93, + "avg": 67 + }, + "group": "agricultural", + "production": [ + { + "time": 300, + "amount": 104, + "method": "default", + "name": "Paranid", + "wares": [ + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "water", + "amount": 80 + } + ], + "effects": [ + { + "type": "work", + "product": 0.48 + } + ] + } + ] + }, + { + "id": "sojahusk", + "version": 0, + "name": "Soja Husk", + "description": "A Paranid dish; soja beans that have been crushed into a paste and mixed with the flesh of the maja snail, then served in a maja snail shell, soja husk is accepted as both a tasteful and nutritious meal by the Paranid, though there are few non-Paranid who have dared try it.", + "factoryName": "Soja Husk Factory", + "icon": "ware_sojahusk", + "volume": 1, + "transport": "container", + "price": { + "min": 19, + "max": 45, + "avg": 32 + }, + "group": "food", + "production": [ + { + "time": 300, + "amount": 350, + "method": "default", + "name": "Paranid", + "wares": [ + { + "ware": "energycells", + "amount": 80 + }, + { + "ware": "majasnails", + "amount": 50 + }, + { + "ware": "sojabeans", + "amount": 40 + }, + { + "ware": "spices", + "amount": 20 + } + ], + "effects": [ + { + "type": "work", + "product": 0.37 + } + ] + } + ] + }, + { + "id": "spacefuel", + "version": 0, + "name": "Spacefuel", + "description": "Spacefuel is made from processing and distilling wheat, water and a blend of spices. It is a cheap but strong alcoholic beverage that has been made illegal to trade in bulk across the Jump Gate network in an attempt to avoid drunken accidents on both ships and stations. In order to sell spacefuel as a beverage, one must be a licenced bar owner.", + "factoryName": "Spacefuel Factory", + "icon": "ware_spacefuel", + "volume": 2, + "transport": "container", + "illegal": [ + "antigone", + "argon", + "pioneers", + "terran" + ], + "price": { + "min": 60, + "max": 207, + "avg": 133 + }, + "group": "pharmaceutical", + "production": [ + { + "time": 480, + "amount": 98, + "method": "default", + "name": "Argon", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "water", + "amount": 100 + }, + { + "ware": "wheat", + "amount": 80 + } + ], + "effects": [ + { + "type": "work", + "product": 0.69 + } + ] + } + ] + }, + { + "id": "spaceweed", + "version": 0, + "name": "Spaceweed", + "description": "While seen as part of every-day life in Teladi society, spaceweed has been made illegal in both Argon and Paranid space, as it is seen as a dangerous narcotic. This point is argued heavily by many of those who partake in the drug, which is usually dried, crushed and then smoked, but attempts to legalise it have as of yet failed.", + "factoryName": "Spaceweed Farm", + "icon": "ware_spaceweed", + "volume": 3, + "transport": "container", + "illegal": [ + "antigone", + "argon", + "holyorder", + "paranid", + "terran" + ], + "price": { + "min": 75, + "max": 257, + "avg": 166 + }, + "group": "pharmaceutical", + "production": [ + { + "time": 600, + "amount": 183, + "method": "default", + "name": "Teladi", + "wares": [ + { + "ware": "energycells", + "amount": 140 + }, + { + "ware": "spices", + "amount": 40 + }, + { + "ware": "swampplant", + "amount": 120 + } + ], + "effects": [ + { + "type": "work", + "product": 0.7 + } + ] + } + ] + }, + { + "id": "spices", + "version": 0, + "name": "Spices", + "description": "Spices are used in many food and pharmaceutical products; primarily as an agent to add extra flavour, but also sometimes due to other properties that some are known to have, ranging from acting as a relaxant to a mild hallucinogenic. Factories that legally produce spices are commonly inspected to make sure their produce is in line with the local law, but as they are often shipped as a mixture, it is sometimes difficult to keep an eye on which spice is being used for which purpose.", + "factoryName": "Spice Farm", + "icon": "ware_spices", + "volume": 3, + "transport": "container", + "price": { + "min": 12, + "max": 28, + "avg": 20 + }, + "group": "agricultural", + "production": [ + { + "time": 600, + "amount": 500, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "water", + "amount": 80 + } + ], + "effects": [ + { + "type": "work", + "product": 0.4 + } + ] + } + ] + }, + { + "id": "sunriseflowers", + "version": 0, + "name": "Sunrise Flowers", + "description": "Known to grow naturally only on Ianamus Zura, the Teladi mastered the art of bio-engineering a near-identical but still artificially grown sunrise flower long ago. When squeezed, the leaves of the sunrise flower produce a bitter-tasting oil that while despised by other species, the Teladi appreciate as an adequate food source.", + "factoryName": "Sunrise Flower Farm", + "icon": "ware_sunriseflowers", + "volume": 5, + "transport": "container", + "price": { + "min": 48, + "max": 112, + "avg": 80 + }, + "group": "agricultural", + "production": [ + { + "time": 300, + "amount": 100, + "method": "default", + "name": "Teladi", + "wares": [ + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "water", + "amount": 80 + } + ], + "effects": [ + { + "type": "work", + "product": 0.28 + } + ] + } + ] + }, + { + "id": "superfluidcoolant", + "version": 0, + "name": "Superfluid Coolant", + "description": "Designed with superfluidity to ensure both efficiency and endurance, this coolant is used in complex technical components such as plasma conductors and quantum tubes to protect said components from overheating. The losslessness of kinetic energy afforded by the coolant's superfluidity means that it can continue to circulate around the component for a much longer time before needing to be recycled. This has led to such components lifetimes being greatly increased.", + "factoryName": "Helium Refinery", + "icon": "ware_superfluidcoolant", + "volume": 16, + "transport": "container", + "price": { + "min": 90, + "max": 211, + "avg": 150 + }, + "group": "refined", + "production": [ + { + "time": 240, + "amount": 95, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "helium", + "amount": 320 + } + ], + "effects": [ + { + "type": "work", + "product": 0.49 + } + ] + } + ] + }, + { + "id": "swampplant", + "version": 0, + "name": "Swamp Plant", + "description": "Cultivated in a warm and humid environment, swamp plant is a small moss-like plant known to have mildly narcotic properties; the reason it is dried and crushed to be used as space weed. Though it is widely known that swamp plant is the main ingredient of a drug made illegal throughout non-Teladi space, producing and trading it itself is not illegal, as it is only in the processing of the plant that the narcotic properties can be unlocked.", + "factoryName": "Swamp Plant Farm", + "icon": "ware_swampplant", + "volume": 6, + "transport": "container", + "price": { + "min": 50, + "max": 117, + "avg": 84 + }, + "group": "agricultural", + "production": [ + { + "time": 450, + "amount": 120, + "method": "default", + "name": "Teladi", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "water", + "amount": 100 + } + ], + "effects": [ + { + "type": "work", + "product": 0.59 + } + ] + } + ] + }, + { + "id": "teladianium", + "version": 0, + "name": "Teladianium", + "description": "Teladianium is a hard, tough material used by the Teladi for station and, more commonly, ship construction. A lighter compound than the refined metals used in other races' vessels, Teladianium is traditionally made from chemically treated Teladian mud. However, as the necessary chemicals are rarely found in space, and expensive to produce, the Teladi often replace them with the raw minerals found in asteroids.", + "factoryName": "Teladianium Foundry", + "icon": "ware_teladianium", + "volume": 16, + "transport": "container", + "price": { + "min": 121, + "max": 283, + "avg": 202 + }, + "group": "refined", + "production": [ + { + "time": 120, + "amount": 70, + "method": "default", + "name": "Teladi", + "wares": [ + { + "ware": "energycells", + "amount": 45 + }, + { + "ware": "ore", + "amount": 280 + } + ], + "effects": [ + { + "type": "work", + "product": 0.43 + } + ] + } + ] + }, + { + "id": "turretcomponents", + "version": 0, + "name": "Turret Components", + "description": "After the unification of the design process in station and capital ship weapon systems, many different turrets can be built from different configurations of these turret components.", + "factoryName": "Turret Component Factory", + "icon": "ware_turretcomponents", + "volume": 20, + "transport": "container", + "price": { + "min": 164, + "max": 383, + "avg": 273 + }, + "group": "shiptech", + "production": [ + { + "time": 1800, + "amount": 170, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "microchips", + "amount": 20 + }, + { + "ware": "quantumtubes", + "amount": 20 + }, + { + "ware": "scanningarrays", + "amount": 10 + } + ], + "effects": [ + { + "type": "work", + "product": 0.53 + } + ] + } + ] + }, + { + "id": "water", + "version": 0, + "name": "Water", + "description": "Essential to all known biological life forms, water has never become much of a catalyst for dispute amongst species, owing to its ubiquity in space. It is being used somewhere in the manufacturing process of nearly all goods available across space; especially, however, in the production of edible goods.", + "factoryName": "Ice Refinery", + "icon": "ware_water", + "volume": 6, + "transport": "container", + "illegal": [ + "loanshark" + ], + "price": { + "min": 32, + "max": 74, + "avg": 53 + }, + "group": "water", + "production": [ + { + "time": 120, + "amount": 193, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "ice", + "amount": 320 + } + ], + "effects": [ + { + "type": "work", + "product": 0.43 + } + ] + } + ] + }, + { + "id": "weaponcomponents", + "version": 0, + "name": "Weapon Components", + "description": "Made up from such things as trigger and reloading mechanisms, chambers and barrels, weapon components make up the mechanical part of all ship weapons. Combined with specialised advanced electronics, a number of different weapons can be made from the modular components, also across different size ranges. Shipped to shipyards and equipment docks as a single package, these components can then be put together relatively quickly and easily to make any weapon for the final customer on-demand.", + "factoryName": "Weapon Component Factory", + "icon": "ware_weaponcomponents", + "volume": 20, + "transport": "container", + "price": { + "min": 171, + "max": 399, + "avg": 285 + }, + "group": "shiptech", + "production": [ + { + "time": 1800, + "amount": 170, + "method": "default", + "name": "Universal", + "wares": [ + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "hullparts", + "amount": 20 + }, + { + "ware": "plasmaconductors", + "amount": 30 + } + ], + "effects": [ + { + "type": "work", + "product": 0.53 + } + ] + } + ] + }, + { + "id": "wheat", + "version": 0, + "name": "Wheat", + "description": "A staple ingredient in food rations, wheat is grown across all of Argon space and consumed on a daily basis in the form of flatbread or bunyos. Where meat is still produced from Argnu, instead of synthesised or cloned, wheat is also fed to the animals, which results in meat of exceptional quality.", + "factoryName": "Wheat Farm", + "icon": "ware_wheat", + "volume": 4, + "transport": "container", + "price": { + "min": 19, + "max": 44, + "avg": 31 + }, + "group": "agricultural", + "production": [ + { + "time": 300, + "amount": 310, + "method": "default", + "name": "Argon", + "wares": [ + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "water", + "amount": 80 + } + ], + "effects": [ + { + "type": "work", + "product": 0.28 + } + ] + } + ] + }, + { + "id": "cheltmeat", + "version": 1, + "name": "Chelt Meat", + "description": "Chelts are sea-bound creatures that once roamed the seas and oceans of the Split home planet. The Split harvested them for meat, oil and their skins, which they used to create a tough leather like material. However, Chelts were eventually over-hunted and almost brought to extinction. Nowadays Chelts are grown in space, in Chelt Aquariums, and used to produce food for Split workers to consume.", + "factoryName": "Chelt Aquarium", + "icon": "ware_cheltmeat", + "volume": 7, + "transport": "container", + "price": { + "min": 31, + "max": 72, + "avg": 51 + }, + "group": "agricultural", + "production": [ + { + "time": 450, + "amount": 209, + "method": "default", + "name": "Split", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "water", + "amount": 120 + } + ], + "effects": [ + { + "type": "work", + "product": 0.6 + } + ] + } + ] + }, + { + "id": "scruffinfruits", + "version": 1, + "name": "Scruffin Fruit", + "description": "Scruffin are fruit similar to sweet potatoes. They are grown by Split farmers in large, open fields on a number of planets, as well as in space aboard large installations known as Scruffin Farms. Scruffin flesh is a versatile foodstuff that, when processed, provides the basis of a number of Split food types. Although Scruffin are traded both inside and outside Split territory, they are mainly in demand in areas where Split workers are in abundance.", + "factoryName": "Scruffin Farm", + "icon": "ware_scruffinfruit", + "volume": 6, + "transport": "container", + "price": { + "min": 17, + "max": 40, + "avg": 28 + }, + "group": "agricultural", + "production": [ + { + "time": 300, + "amount": 255, + "method": "default", + "name": "Split", + "wares": [ + { + "ware": "energycells", + "amount": 30 + }, + { + "ware": "water", + "amount": 80 + } + ], + "effects": [ + { + "type": "work", + "product": 0.53 + } + ] + } + ] + }, + { + "id": "computronicsubstrate", + "version": 1, + "name": "Computronic Substrate", + "description": "Computronic Substrate is the advanced Terran version of programmable matter. The \"atoms\" forming the Substrate can mimic virtually all other elements and particles, natural or artificial. This incredible feat, and its wide-spread application, is what makes modern Terran station and ship designs possible.", + "factoryName": "Computronic Substrate Fab", + "icon": "ware_computronicsubstrate", + "volume": 50, + "transport": "container", + "price": { + "min": 7452, + "max": 9108, + "avg": 8280 + }, + "group": "hightech", + "production": [ + { + "time": 600, + "amount": 98, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 4000 + }, + { + "ware": "hydrogen", + "amount": 2000 + }, + { + "ware": "ore", + "amount": 3000 + }, + { + "ware": "silicon", + "amount": 3000 + } + ], + "effects": [ + { + "type": "work", + "product": 0.1 + } + ] + }, + { + "time": 300, + "amount": 50, + "method": "recycling", + "name": "Recycling", + "wares": [ + { + "ware": "energycells", + "amount": 12500 + }, + { + "ware": "scrapmetal", + "amount": 1000 + } + ], + "effects": [ + { + "type": "work", + "product": 0.1 + } + ] + } + ] + }, + { + "id": "metallicmicrolattice", + "version": 1, + "name": "Metallic Microlattice", + "description": "A metallic microlattice is a synthetic porous metallic material consisting of an ultra-light metal foam. One of the many uses of microlattices is in the production of extremely lightweight and efficient structures for structural reinforcement and heat transfer in high-performance vehicles.", + "factoryName": "Microlattice Factory", + "icon": "ware_metallicmicrolattice", + "volume": 1, + "transport": "container", + "price": { + "min": 42, + "max": 57, + "avg": 50 + }, + "group": "hightech", + "production": [ + { + "time": 180, + "amount": 190, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 50 + }, + { + "ware": "helium", + "amount": 130 + }, + { + "ware": "ore", + "amount": 50 + } + ], + "effects": [ + { + "type": "work", + "product": 0.2 + } + ] + } + ] + }, + { + "id": "proteinpaste", + "version": 1, + "name": "Protein Paste", + "description": "Protein Paste is a concentrated blend of meat and vegetable proteins used to produce specialised food products.", + "factoryName": "Protein Processing Plant", + "icon": "ware_proteinpaste", + "volume": 4, + "transport": "container", + "price": { + "min": 57, + "max": 134, + "avg": 96 + }, + "group": "agricultural", + "production": [ + { + "time": 300, + "amount": 219, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 80 + }, + { + "ware": "ice", + "amount": 80 + }, + { + "ware": "methane", + "amount": 200 + } + ], + "effects": [ + { + "type": "work", + "product": 0.3 + } + ] + } + ] + }, + { + "id": "siliconcarbide", + "version": 1, + "name": "Silicon Carbide", + "description": "Silicon Carbide is a semiconductor containing silicon and carbon. It can be used to form very hard ceramics that are widely used in applications requiring high endurance. Its electrical properties make the material suitable for dealing with high temperatures and voltages. Consequently Silicon Carbide is a key component in the manufacture of equipment such as ship engines or weapons.", + "factoryName": "Silicon Carbide Mill", + "icon": "ware_siliconcarbide", + "volume": 20, + "transport": "container", + "price": { + "min": 1202, + "max": 1627, + "avg": 1414 + }, + "group": "hightech", + "production": [ + { + "time": 300, + "amount": 48, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 200 + }, + { + "ware": "metallicmicrolattice", + "amount": 2 + }, + { + "ware": "methane", + "amount": 400 + }, + { + "ware": "silicon", + "amount": 300 + } + ], + "effects": [ + { + "type": "work", + "product": 0.2 + } + ] + }, + { + "time": 300, + "amount": 60, + "method": "recycling", + "name": "Recycling", + "wares": [ + { + "ware": "energycells", + "amount": 4000 + }, + { + "ware": "scrapmetal", + "amount": 250 + } + ], + "effects": [ + { + "type": "work", + "product": 0.2 + } + ] + } + ] + }, + { + "id": "stimulants", + "version": 1, + "name": "Stimulants", + "description": "The term Stimulants has evolved to refer to the type of drugs that increase activity of the central nervous system and the body. The manufacture, distribution and use of Stimulants is considered illegal by the Terran government. However, there are persistent rumours that they are regularly used for specific military purposes, such as enhancing the combat performance of pilots.", + "factoryName": "Stimulants Lab", + "icon": "ware_stimulants", + "volume": 12, + "transport": "container", + "price": { + "min": 153, + "max": 527, + "avg": 340 + }, + "group": "pharmaceutical", + "production": [ + { + "time": 300, + "amount": 98, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 80 + }, + { + "ware": "helium", + "amount": 400 + }, + { + "ware": "silicon", + "amount": 20 + } + ], + "effects": [ + { + "type": "work", + "product": 0.65 + } + ] + } + ] + }, + { + "id": "terranmre", + "version": 1, + "name": "Terran MRE", + "description": "The MRE, Meal-Ready-to-Eat, was first invented on Earth in the 20th Century. Since that time the food that comprises it has developed and is more nutritious. These prehydrated meals require no preparation and are self-heating as required.", + "factoryName": "MRE Packing Facility", + "icon": "ware_terranmre", + "volume": 2, + "transport": "container", + "price": { + "min": 32, + "max": 75, + "avg": 54 + }, + "group": "food", + "production": [ + { + "time": 240, + "amount": 175, + "method": "default", + "name": "Terran", + "wares": [ + { + "ware": "energycells", + "amount": 60 + }, + { + "ware": "proteinpaste", + "amount": 60 + } + ], + "effects": [ + { + "type": "work", + "product": 0.42 + } + ] + } + ] + }, + { + "id": "bofu", + "version": 1, + "name": "BoFu", + "description": "BoFu meals are known to be very nutritious and healthy. The Boron love them, and it is said that their pilots can live on just a nugget of BoFu for almost a week.nnBoFu is grown in special BoFu Chemical Labs, from Plankton and other secret ingredients. Even though the Boron are famous among other races for their delicious Stott Spices, the taste of BoFu is no joy to anybody but themselves.", + "factoryName": "BoFu Chemical Lab", + "icon": "ware_bofu", + "volume": 4, + "transport": "container", + "price": { + "min": 61, + "max": 142, + "avg": 101 + }, + "group": "food", + "production": [ + { + "time": 240, + "amount": 82, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "bogas", + "amount": 40 + }, + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "plankton", + "amount": 120 + } + ], + "effects": [ + { + "type": "work", + "product": 0.38 + } + ] + } + ] + }, + { + "id": "bogas", + "version": 1, + "name": "BoGas", + "description": "The unusual natural resources found on the planet Nishala mean that the planet is really a huge chemical factory. From these many chemicals, the Boron manufacture a unique gas that is used throughout the universe as the ultimate painkiller and anaesthetic.nnAfter the Boron government stopped any commercial use of the natural resources of its planet, BoGas is now artificially reproduced in Synthetic BoGas Breweries throughout the Queendom of Boron.", + "factoryName": "Synthetic BoGas Brewery", + "icon": "ware_bogas", + "volume": 4, + "transport": "container", + "price": { + "min": 44, + "max": 102, + "avg": 73 + }, + "group": "refined", + "production": [ + { + "time": 150, + "amount": 110, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "energycells", + "amount": 40 + }, + { + "ware": "water", + "amount": 100 + } + ], + "effects": [ + { + "type": "work", + "product": 0.46 + } + ] + } + ] + }, + { + "id": "plankton", + "version": 1, + "name": "Plankton", + "description": "Boron plankton is found as a scum-like layer that floats on the surface of the chemical swamps on the Planet Nishala. It forms naturally where certain chemicals, that are found in the swamp, mix with the ammonia-based atmosphere.nnThis scum is collected, and then treated with additives and other Boron minerals, to produce a wide range of different, nutritious spices. Since the Boron seas are now completely protected from any industrial usage, Plankton is mainly produced in space, aboard huge Plankton Farms that can be found everywhere in the Queendom of Boron.", + "factoryName": "Plankton Farm", + "icon": "ware_plankton", + "volume": 1, + "transport": "container", + "price": { + "min": 11, + "max": 25, + "avg": 18 + }, + "group": "agricultural", + "production": [ + { + "time": 400, + "amount": 275, + "method": "default", + "name": "Boron", + "wares": [ + { + "ware": "energycells", + "amount": 20 + }, + { + "ware": "water", + "amount": 50 + } + ], + "effects": [ + { + "type": "work", + "product": 0.4 + } + ] + } + ] + } +] \ No newline at end of file diff --git a/shared/export/workers-data.json b/shared/export/workers-data.json new file mode 100644 index 0000000..0cb2860 --- /dev/null +++ b/shared/export/workers-data.json @@ -0,0 +1,94 @@ +[ + { + "race": "argon", + "amount": 200, + "consumption": [ + { + "ware": "foodrations", + "amount": 450 + }, + { + "ware": "medicalsupplies", + "amount": 270 + } + ] + }, + { + "race": "teladi", + "amount": 200, + "consumption": [ + { + "ware": "nostropoil", + "amount": 228 + }, + { + "ware": "medicalsupplies", + "amount": 270 + } + ] + }, + { + "race": "paranid", + "amount": 200, + "consumption": [ + { + "ware": "sojahusk", + "amount": 288 + }, + { + "ware": "medicalsupplies", + "amount": 270 + } + ] + }, + { + "race": "split", + "amount": 200, + "consumption": [ + { + "ware": "cheltmeat", + "amount": 102 + }, + { + "ware": "scruffinfruits", + "amount": 138 + }, + { + "ware": "medicalsupplies", + "amount": 270 + } + ] + }, + { + "race": "terran", + "amount": 200, + "consumption": [ + { + "ware": "terranmre", + "amount": 258 + }, + { + "ware": "medicalsupplies", + "amount": 270 + } + ] + }, + { + "race": "boron", + "amount": 200, + "consumption": [ + { + "ware": "bofu", + "amount": 90 + }, + { + "ware": "medicalsupplies", + "amount": 198 + }, + { + "ware": "water", + "amount": 162 + } + ] + } +] \ No newline at end of file