Add module name for blueprint

This commit is contained in:
Cmdr McDonald
2017-03-04 08:40:35 +00:00
parent 2a74be5b30
commit f0db785bf7
4 changed files with 589 additions and 0 deletions

View File

@@ -6,6 +6,7 @@
* Add long range / wide angle / fast scan scanner blueprints * Add long range / wide angle / fast scan scanner blueprints
* Fix EDDB IDs for class 5 and 7 fighter hangars for correct shopping list * Fix EDDB IDs for class 5 and 7 fighter hangars for correct shopping list
* Fix cost for rocket-propelled FSD disruptor * Fix cost for rocket-propelled FSD disruptor
* Add module names for blueprints
#2.2.19 #2.2.19
* Remove shot speed modification - it is directly tied to range * Remove shot speed modification - it is directly tied to range

105
dist/index.js vendored
View File

@@ -14315,6 +14315,7 @@ module.exports = {
} }
}, },
id: 3, id: 3,
modulename: [ "Auto field mainentance unit", "AFMU" ],
name: "Shielded" name: "Shielded"
}, },
Armour_Advanced: { Armour_Advanced: {
@@ -14388,6 +14389,7 @@ module.exports = {
} }
}, },
id: 6, id: 6,
modulename: [ "Bulkheads", "Armour" ],
name: "Lightweight" name: "Lightweight"
}, },
Armour_Explosive: { Armour_Explosive: {
@@ -14450,6 +14452,7 @@ module.exports = {
} }
}, },
id: 5, id: 5,
modulename: [ "Bulkheads", "Armour" ],
name: "Blast resistant" name: "Blast resistant"
}, },
Armour_HeavyDuty: { Armour_HeavyDuty: {
@@ -14523,6 +14526,7 @@ module.exports = {
} }
}, },
id: 7, id: 7,
modulename: [ "Bulkheads", "Armour" ],
name: "Heavy duty" name: "Heavy duty"
}, },
Armour_Kinetic: { Armour_Kinetic: {
@@ -14586,6 +14590,7 @@ module.exports = {
} }
}, },
id: 4, id: 4,
modulename: [ "Bulkheads", "Armour" ],
name: "Kinetic resistant" name: "Kinetic resistant"
}, },
Armour_Thermic: { Armour_Thermic: {
@@ -14641,6 +14646,7 @@ module.exports = {
} }
}, },
id: 8, id: 8,
modulename: [ "Bulkheads", "Armour" ],
name: "Thermal resistant" name: "Thermal resistant"
}, },
CargoScanner_LightWeight: { CargoScanner_LightWeight: {
@@ -14699,6 +14705,7 @@ module.exports = {
} }
}, },
id: 9, id: 9,
modulename: [ "Cargo scanner", "Manifest scanner" ],
name: "Lightweight" name: "Lightweight"
}, },
CargoScanner_Reinforced: { CargoScanner_Reinforced: {
@@ -14757,6 +14764,7 @@ module.exports = {
} }
}, },
id: 10, id: 10,
modulename: [ "Cargo scanner", "Manifest scanner" ],
name: "Reinforced" name: "Reinforced"
}, },
CargoScanner_Shielded: { CargoScanner_Shielded: {
@@ -14815,6 +14823,7 @@ module.exports = {
} }
}, },
id: 11, id: 11,
modulename: [ "Cargo scanner", "Manifest scanner" ],
name: "Shielded" name: "Shielded"
}, },
ChaffLauncher_ChaffCapacity: { ChaffLauncher_ChaffCapacity: {
@@ -14833,6 +14842,7 @@ module.exports = {
} }
}, },
id: 12, id: 12,
modulename: [ "Chaff launcher" ],
name: "Ammo capacity" name: "Ammo capacity"
}, },
ChaffLauncher_LightWeight: { ChaffLauncher_LightWeight: {
@@ -14891,6 +14901,7 @@ module.exports = {
} }
}, },
id: 13, id: 13,
modulename: [ "Chaff launcher" ],
name: "Lightweight" name: "Lightweight"
}, },
ChaffLauncher_Reinforced: { ChaffLauncher_Reinforced: {
@@ -14949,6 +14960,7 @@ module.exports = {
} }
}, },
id: 14, id: 14,
modulename: [ "Chaff launcher" ],
name: "Reinforced" name: "Reinforced"
}, },
ChaffLauncher_Shielded: { ChaffLauncher_Shielded: {
@@ -15007,6 +15019,7 @@ module.exports = {
} }
}, },
id: 15, id: 15,
modulename: [ "Chaff launcher" ],
name: "Shielded" name: "Shielded"
}, },
CollectionLimpet_LightWeight: { CollectionLimpet_LightWeight: {
@@ -15065,6 +15078,7 @@ module.exports = {
} }
}, },
id: 16, id: 16,
modulename: [ "Collector limpet controller" ],
name: "Lightweight" name: "Lightweight"
}, },
CollectionLimpet_Reinforced: { CollectionLimpet_Reinforced: {
@@ -15123,6 +15137,7 @@ module.exports = {
} }
}, },
id: 17, id: 17,
modulename: [ "Collector limpet controller" ],
name: "Reinforced" name: "Reinforced"
}, },
CollectionLimpet_Shielded: { CollectionLimpet_Shielded: {
@@ -15181,6 +15196,7 @@ module.exports = {
} }
}, },
id: 18, id: 18,
modulename: [ "Collector limpet controller" ],
name: "Shielded" name: "Shielded"
}, },
ECM_LightWeight: { ECM_LightWeight: {
@@ -15239,6 +15255,7 @@ module.exports = {
} }
}, },
id: 19, id: 19,
modulename: [ "Electronic counter measures", "ECM" ],
name: "Lightweight" name: "Lightweight"
}, },
ECM_Reinforced: { ECM_Reinforced: {
@@ -15297,6 +15314,7 @@ module.exports = {
} }
}, },
id: 20, id: 20,
modulename: [ "Electronic counter measures", "ECM" ],
name: "Reinforced" name: "Reinforced"
}, },
ECM_Shielded: { ECM_Shielded: {
@@ -15355,6 +15373,7 @@ module.exports = {
} }
}, },
id: 21, id: 21,
modulename: [ "Electronic counter measures", "ECM" ],
name: "Shielded" name: "Shielded"
}, },
Engine_Dirty: { Engine_Dirty: {
@@ -15428,6 +15447,7 @@ module.exports = {
} }
}, },
id: 22, id: 22,
modulename: [ "Thrusters", "Engines" ],
name: "Dirty" name: "Dirty"
}, },
Engine_Reinforced: { Engine_Reinforced: {
@@ -15496,6 +15516,7 @@ module.exports = {
} }
}, },
id: 23, id: 23,
modulename: [ "Thrusters", "Engines" ],
name: "Reinforced" name: "Reinforced"
}, },
Engine_Tuned: { Engine_Tuned: {
@@ -15569,6 +15590,7 @@ module.exports = {
} }
}, },
id: 24, id: 24,
modulename: [ "Thrusters", "Engines" ],
name: "Clean" name: "Clean"
}, },
FSD_FastBoot: { FSD_FastBoot: {
@@ -15637,6 +15659,7 @@ module.exports = {
} }
}, },
id: 25, id: 25,
modulename: [ "Frame shift drive", "FSD" ],
name: "Faster boot sequence" name: "Faster boot sequence"
}, },
FSD_LongRange: { FSD_LongRange: {
@@ -15705,6 +15728,7 @@ module.exports = {
} }
}, },
id: 26, id: 26,
modulename: [ "Frame shift drive", "FSD" ],
name: "Increased range" name: "Increased range"
}, },
FSD_Shielded: { FSD_Shielded: {
@@ -15773,6 +15797,7 @@ module.exports = {
} }
}, },
id: 27, id: 27,
modulename: [ "Frame shift drive", "FSD" ],
name: "Shielded" name: "Shielded"
}, },
FSDinterdictor_Expanded: { FSDinterdictor_Expanded: {
@@ -15824,6 +15849,7 @@ module.exports = {
} }
}, },
id: 28, id: 28,
modulename: [ "Frame shift drive interdictor", "FSDI" ],
name: "Expanded capture arc" name: "Expanded capture arc"
}, },
FSDinterdictor_LongRange: { FSDinterdictor_LongRange: {
@@ -15866,6 +15892,7 @@ module.exports = {
} }
}, },
id: 29, id: 29,
modulename: [ "Frame shift drive interdictor", "FSDI" ],
name: "Long range" name: "Long range"
}, },
FuelScoop_Shielded: { FuelScoop_Shielded: {
@@ -15913,6 +15940,7 @@ module.exports = {
} }
}, },
id: 30, id: 30,
modulename: [ "Fuel scoop" ],
name: "Shielded" name: "Shielded"
}, },
FuelTransferLimpet_LightWeight: { FuelTransferLimpet_LightWeight: {
@@ -15971,6 +15999,7 @@ module.exports = {
} }
}, },
id: 31, id: 31,
modulename: [ "Fuel transfer limpet controller" ],
name: "Lightweight" name: "Lightweight"
}, },
FuelTransferLimpet_Reinforced: { FuelTransferLimpet_Reinforced: {
@@ -16029,6 +16058,7 @@ module.exports = {
} }
}, },
id: 32, id: 32,
modulename: [ "Fuel transfer limpet controller" ],
name: "Reinforced" name: "Reinforced"
}, },
FuelTransferLimpet_Shielded: { FuelTransferLimpet_Shielded: {
@@ -16087,6 +16117,7 @@ module.exports = {
} }
}, },
id: 33, id: 33,
modulename: [ "Fuel transfer limpet controller" ],
name: "Shielded" name: "Shielded"
}, },
HatchBreakerLimpet_LightWeight: { HatchBreakerLimpet_LightWeight: {
@@ -16145,6 +16176,7 @@ module.exports = {
} }
}, },
id: 34, id: 34,
modulename: [ "Hatch breaker limpet controller" ],
name: "Lightweight" name: "Lightweight"
}, },
HatchBreakerLimpet_Reinforced: { HatchBreakerLimpet_Reinforced: {
@@ -16203,6 +16235,7 @@ module.exports = {
} }
}, },
id: 35, id: 35,
modulename: [ "Hatch breaker limpet controller" ],
name: "Reinforced" name: "Reinforced"
}, },
HatchBreakerLimpet_Shielded: { HatchBreakerLimpet_Shielded: {
@@ -16261,6 +16294,7 @@ module.exports = {
} }
}, },
id: 36, id: 36,
modulename: [ "Hatch breaker limpet controller" ],
name: "Shielded" name: "Shielded"
}, },
HeatSinkLauncher_HeatSinkCapacity: { HeatSinkLauncher_HeatSinkCapacity: {
@@ -16279,6 +16313,7 @@ module.exports = {
} }
}, },
id: 37, id: 37,
modulename: [ "Heat sink launcher" ],
name: "Ammo capacity" name: "Ammo capacity"
}, },
HeatSinkLauncher_LightWeight: { HeatSinkLauncher_LightWeight: {
@@ -16337,6 +16372,7 @@ module.exports = {
} }
}, },
id: 38, id: 38,
modulename: [ "Heat sink launcher" ],
name: "Lightweight" name: "Lightweight"
}, },
HeatSinkLauncher_Reinforced: { HeatSinkLauncher_Reinforced: {
@@ -16395,6 +16431,7 @@ module.exports = {
} }
}, },
id: 39, id: 39,
modulename: [ "Heat sink launcher" ],
name: "Reinforced" name: "Reinforced"
}, },
HeatSinkLauncher_Shielded: { HeatSinkLauncher_Shielded: {
@@ -16453,6 +16490,7 @@ module.exports = {
} }
}, },
id: 40, id: 40,
modulename: [ "Heat sink launcher" ],
name: "Shielded" name: "Shielded"
}, },
HullReinforcement_Advanced: { HullReinforcement_Advanced: {
@@ -16516,6 +16554,7 @@ module.exports = {
} }
}, },
id: 41, id: 41,
modulename: [ "Hull reinforcement", "Hull reinforcement package", "HRP" ],
name: "Lightweight" name: "Lightweight"
}, },
HullReinforcement_Explosive: { HullReinforcement_Explosive: {
@@ -16579,6 +16618,7 @@ module.exports = {
} }
}, },
id: 43, id: 43,
modulename: [ "Hull reinforcement", "Hull reinforcement package", "HRP" ],
name: "Blast resistant" name: "Blast resistant"
}, },
HullReinforcement_HeavyDuty: { HullReinforcement_HeavyDuty: {
@@ -16652,6 +16692,7 @@ module.exports = {
} }
}, },
id: 42, id: 42,
modulename: [ "Hull reinforcement", "Hull reinforcement package", "HRP" ],
name: "Heavy duty" name: "Heavy duty"
}, },
HullReinforcement_Kinetic: { HullReinforcement_Kinetic: {
@@ -16715,6 +16756,7 @@ module.exports = {
} }
}, },
id: 44, id: 44,
modulename: [ "Hull reinforcement", "Hull reinforcement package", "HRP" ],
name: "Kinetic resistant" name: "Kinetic resistant"
}, },
HullReinforcement_Thermic: { HullReinforcement_Thermic: {
@@ -16778,6 +16820,7 @@ module.exports = {
} }
}, },
id: 45, id: 45,
modulename: [ "Hull reinforcement", "Hull reinforcement package", "HRP" ],
name: "Thermal resistant" name: "Thermal resistant"
}, },
KillWarrantScanner_LightWeight: { KillWarrantScanner_LightWeight: {
@@ -16836,6 +16879,7 @@ module.exports = {
} }
}, },
id: 46, id: 46,
modulename: [ "Kill warrant scanner", "KWS" ],
name: "Lightweight" name: "Lightweight"
}, },
KillWarrantScanner_LongRange: { KillWarrantScanner_LongRange: {
@@ -16899,6 +16943,7 @@ module.exports = {
} }
}, },
id: 99, id: 99,
modulename: [ "Kill warrant scanner", "KWS" ],
name: "Long range" name: "Long range"
}, },
KillWarrantScanner_Reinforced: { KillWarrantScanner_Reinforced: {
@@ -16957,6 +17002,7 @@ module.exports = {
} }
}, },
id: 47, id: 47,
modulename: [ "Kill warrant scanner", "KWS" ],
name: "Reinforced" name: "Reinforced"
}, },
KillWarrantScanner_Shielded: { KillWarrantScanner_Shielded: {
@@ -17015,6 +17061,7 @@ module.exports = {
} }
}, },
id: 48, id: 48,
modulename: [ "Kill warrant scanner", "KWS" ],
name: "Shielded" name: "Shielded"
}, },
LifeSupport_LightWeight: { LifeSupport_LightWeight: {
@@ -17062,6 +17109,7 @@ module.exports = {
} }
}, },
id: 49, id: 49,
modulename: [ "Life support" ],
name: "Lightweight" name: "Lightweight"
}, },
LifeSupport_Reinforced: { LifeSupport_Reinforced: {
@@ -17109,6 +17157,7 @@ module.exports = {
} }
}, },
id: 50, id: 50,
modulename: [ "Life support" ],
name: "Reinforced" name: "Reinforced"
}, },
LifeSupport_Shielded: { LifeSupport_Shielded: {
@@ -17156,6 +17205,7 @@ module.exports = {
} }
}, },
id: 51, id: 51,
modulename: [ "Life support" ],
name: "Shielded" name: "Shielded"
}, },
PointDefence_LightWeight: { PointDefence_LightWeight: {
@@ -17214,6 +17264,7 @@ module.exports = {
} }
}, },
id: 52, id: 52,
modulename: [ "Point defence" ],
name: "Lightweight" name: "Lightweight"
}, },
PointDefence_PointDefenseCapacity: { PointDefence_PointDefenseCapacity: {
@@ -17232,6 +17283,7 @@ module.exports = {
} }
}, },
id: 55, id: 55,
modulename: [ "Point defence" ],
name: "Ammo capacity" name: "Ammo capacity"
}, },
PointDefence_Reinforced: { PointDefence_Reinforced: {
@@ -17290,6 +17342,7 @@ module.exports = {
} }
}, },
id: 53, id: 53,
modulename: [ "Point defence" ],
name: "Reinforced" name: "Reinforced"
}, },
PointDefence_Shielded: { PointDefence_Shielded: {
@@ -17348,6 +17401,7 @@ module.exports = {
} }
}, },
id: 54, id: 54,
modulename: [ "Point defence" ],
name: "Shielded" name: "Shielded"
}, },
PowerDistributor_HighCapacity: { PowerDistributor_HighCapacity: {
@@ -17426,6 +17480,7 @@ module.exports = {
} }
}, },
id: 56, id: 56,
modulename: [ "Power distributor", "Distributor" ],
name: "High charge capacity" name: "High charge capacity"
}, },
PowerDistributor_HighFrequency: { PowerDistributor_HighFrequency: {
@@ -17504,6 +17559,7 @@ module.exports = {
} }
}, },
id: 57, id: 57,
modulename: [ "Power distributor", "Distributor" ],
name: "Charge enhanced" name: "Charge enhanced"
}, },
PowerDistributor_PriorityEngines: { PowerDistributor_PriorityEngines: {
@@ -17552,6 +17608,7 @@ module.exports = {
} }
}, },
id: 58, id: 58,
modulename: [ "Power distributor", "Distributor" ],
name: "Engine focused" name: "Engine focused"
}, },
PowerDistributor_PrioritySystems: { PowerDistributor_PrioritySystems: {
@@ -17600,6 +17657,7 @@ module.exports = {
} }
}, },
id: 59, id: 59,
modulename: [ "Power distributor", "Distributor" ],
name: "System focused" name: "System focused"
}, },
PowerDistributor_PriorityWeapons: { PowerDistributor_PriorityWeapons: {
@@ -17648,6 +17706,7 @@ module.exports = {
} }
}, },
id: 60, id: 60,
modulename: [ "Power distributor", "Distributor" ],
name: "Weapon focused" name: "Weapon focused"
}, },
PowerDistributor_Shielded: { PowerDistributor_Shielded: {
@@ -17706,6 +17765,7 @@ module.exports = {
} }
}, },
id: 61, id: 61,
modulename: [ "Power distributor", "Distributor" ],
name: "Shielded" name: "Shielded"
}, },
PowerPlant_Armoured: { PowerPlant_Armoured: {
@@ -17769,6 +17829,7 @@ module.exports = {
} }
}, },
id: 62, id: 62,
modulename: [ "Power distributor", "Distributor" ],
name: "Armoured" name: "Armoured"
}, },
PowerPlant_Boosted: { PowerPlant_Boosted: {
@@ -17832,6 +17893,7 @@ module.exports = {
} }
}, },
id: 63, id: 63,
modulename: [ "Power distributor", "Distributor" ],
name: "Overcharged" name: "Overcharged"
}, },
PowerPlant_Stealth: { PowerPlant_Stealth: {
@@ -17871,6 +17933,7 @@ module.exports = {
} }
}, },
id: 64, id: 64,
modulename: [ "Power distributor", "Distributor" ],
name: "Low emissions" name: "Low emissions"
}, },
ProspectingLimpet_LightWeight: { ProspectingLimpet_LightWeight: {
@@ -17929,6 +17992,7 @@ module.exports = {
} }
}, },
id: 65, id: 65,
modulename: [ "Prospector limpet controller" ],
name: "Lightweight" name: "Lightweight"
}, },
ProspectingLimpet_Reinforced: { ProspectingLimpet_Reinforced: {
@@ -17987,6 +18051,7 @@ module.exports = {
} }
}, },
id: 66, id: 66,
modulename: [ "Prospector limpet controller" ],
name: "Reinforced" name: "Reinforced"
}, },
ProspectingLimpet_Shielded: { ProspectingLimpet_Shielded: {
@@ -18045,6 +18110,7 @@ module.exports = {
} }
}, },
id: 67, id: 67,
modulename: [ "Prospector limpet controller" ],
name: "Shielded" name: "Shielded"
}, },
Refineries_Shielded: { Refineries_Shielded: {
@@ -18092,6 +18158,7 @@ module.exports = {
} }
}, },
id: 92, id: 92,
modulename: [ "Refinery" ],
name: "Shielded" name: "Shielded"
}, },
Sensor_CargoScanner_FastScan: { Sensor_CargoScanner_FastScan: {
@@ -18155,6 +18222,7 @@ module.exports = {
} }
}, },
id: 102, id: 102,
modulename: [ "Cargo scanner", "Manifest scanner" ],
name: "Fast scan" name: "Fast scan"
}, },
Sensor_CargoScanner_LongRange: { Sensor_CargoScanner_LongRange: {
@@ -18218,6 +18286,7 @@ module.exports = {
} }
}, },
id: 104, id: 104,
modulename: [ "Cargo scanner", "Manifest scanner" ],
name: "Long range" name: "Long range"
}, },
Sensor_CargoScanner_WideAngle: { Sensor_CargoScanner_WideAngle: {
@@ -18281,6 +18350,7 @@ module.exports = {
} }
}, },
id: 105, id: 105,
modulename: [ "Cargo scanner", "Manifest scanner" ],
name: "Wide angle" name: "Wide angle"
}, },
Sensor_KillWarrantScanner_FastScan: { Sensor_KillWarrantScanner_FastScan: {
@@ -18344,6 +18414,7 @@ module.exports = {
} }
}, },
id: 101, id: 101,
modulename: [ "Kill warrant scanner", "KWS" ],
name: "Fast scan" name: "Fast scan"
}, },
Sensor_KillWarrantScanner_WideAngle: { Sensor_KillWarrantScanner_WideAngle: {
@@ -18407,6 +18478,7 @@ module.exports = {
} }
}, },
id: 107, id: 107,
modulename: [ "Kill warrant scanner", "KWS" ],
name: "Wide angle" name: "Wide angle"
}, },
Sensor_Sensor_LightWeight: { Sensor_Sensor_LightWeight: {
@@ -18470,6 +18542,7 @@ module.exports = {
} }
}, },
id: 96, id: 96,
modulename: [ "Sensors" ],
name: "Lightweight" name: "Lightweight"
}, },
Sensor_Sensor_LongRange: { Sensor_Sensor_LongRange: {
@@ -18533,6 +18606,7 @@ module.exports = {
} }
}, },
id: 97, id: 97,
modulename: [ "Sensors" ],
name: "Long range" name: "Long range"
}, },
Sensor_Sensor_WideAngle: { Sensor_Sensor_WideAngle: {
@@ -18596,6 +18670,7 @@ module.exports = {
} }
}, },
id: 98, id: 98,
modulename: [ "Sensors" ],
name: "Wide angle" name: "Wide angle"
}, },
Sensor_SurfaceScanner_FastScan: { Sensor_SurfaceScanner_FastScan: {
@@ -18659,6 +18734,7 @@ module.exports = {
} }
}, },
id: 95, id: 95,
modulename: [ "Detailed surface scanner", "DSS" ],
name: "Fast scan" name: "Fast scan"
}, },
Sensor_SurfaceScanner_LongRange: { Sensor_SurfaceScanner_LongRange: {
@@ -18722,6 +18798,7 @@ module.exports = {
} }
}, },
id: 93, id: 93,
modulename: [ "Detailed surface scanner", "DSS" ],
name: "Long range" name: "Long range"
}, },
Sensor_SurfaceScanner_WideAngle: { Sensor_SurfaceScanner_WideAngle: {
@@ -18785,6 +18862,7 @@ module.exports = {
} }
}, },
id: 94, id: 94,
modulename: [ "Detailed surface scanner", "DSS" ],
name: "Wide angle" name: "Wide angle"
}, },
Sensor_WakeScanner_FastScan: { Sensor_WakeScanner_FastScan: {
@@ -18848,6 +18926,7 @@ module.exports = {
} }
}, },
id: 109, id: 109,
modulename: [ "Wake scanner", "Frame shift wake scanner" ],
name: "Fast scan" name: "Fast scan"
}, },
Sensor_WakeScanner_LongRange: { Sensor_WakeScanner_LongRange: {
@@ -18911,6 +18990,7 @@ module.exports = {
} }
}, },
id: 108, id: 108,
modulename: [ "Wake scanner", "Frame shift wake scanner" ],
name: "Long range" name: "Long range"
}, },
Sensor_WakeScanner_WideAngle: { Sensor_WakeScanner_WideAngle: {
@@ -18974,6 +19054,7 @@ module.exports = {
} }
}, },
id: 106, id: 106,
modulename: [ "Wake scanner", "Frame shift wake scanner" ],
name: "Wide angle" name: "Wide angle"
}, },
ShieldBooster_Explosive: { ShieldBooster_Explosive: {
@@ -19037,6 +19118,7 @@ module.exports = {
} }
}, },
id: 68, id: 68,
modulename: [ "Shield booster" ],
name: "Blast resistant" name: "Blast resistant"
}, },
ShieldBooster_HeavyDuty: { ShieldBooster_HeavyDuty: {
@@ -19105,6 +19187,7 @@ module.exports = {
} }
}, },
id: 69, id: 69,
modulename: [ "Shield booster" ],
name: "Heavy duty" name: "Heavy duty"
}, },
ShieldBooster_Kinetic: { ShieldBooster_Kinetic: {
@@ -19168,6 +19251,7 @@ module.exports = {
} }
}, },
id: 70, id: 70,
modulename: [ "Shield booster" ],
name: "Kinetic resistant" name: "Kinetic resistant"
}, },
ShieldBooster_Resistive: { ShieldBooster_Resistive: {
@@ -19241,6 +19325,7 @@ module.exports = {
} }
}, },
id: 71, id: 71,
modulename: [ "Shield booster" ],
name: "Resistance augmented" name: "Resistance augmented"
}, },
ShieldBooster_Thermic: { ShieldBooster_Thermic: {
@@ -19304,6 +19389,7 @@ module.exports = {
} }
}, },
id: 72, id: 72,
modulename: [ "Shield booster" ],
name: "Thermal resistant" name: "Thermal resistant"
}, },
ShieldCellBank_Rapid: { ShieldCellBank_Rapid: {
@@ -19346,6 +19432,7 @@ module.exports = {
} }
}, },
id: 73, id: 73,
modulename: [ "Shield cell bank", "SCB" ],
name: "Rapid charge" name: "Rapid charge"
}, },
ShieldCellBank_Specialised: { ShieldCellBank_Specialised: {
@@ -19388,6 +19475,7 @@ module.exports = {
} }
}, },
id: 74, id: 74,
modulename: [ "Shield cell bank", "SCB" ],
name: "Specialised" name: "Specialised"
}, },
ShieldGenerator_Kinetic: { ShieldGenerator_Kinetic: {
@@ -19451,6 +19539,7 @@ module.exports = {
} }
}, },
id: 75, id: 75,
modulename: [ "Shield generator", "Shields" ],
name: "Kinetic resistant" name: "Kinetic resistant"
}, },
ShieldGenerator_Optimised: { ShieldGenerator_Optimised: {
@@ -19522,6 +19611,7 @@ module.exports = {
} }
}, },
id: 76, id: 76,
modulename: [ "Shield generator", "Shields" ],
name: "Enhanced low power" name: "Enhanced low power"
}, },
ShieldGenerator_Reinforced: { ShieldGenerator_Reinforced: {
@@ -19602,6 +19692,7 @@ module.exports = {
} }
}, },
id: 77, id: 77,
modulename: [ "Shield generator", "Shields" ],
name: "Reinforced" name: "Reinforced"
}, },
ShieldGenerator_Thermic: { ShieldGenerator_Thermic: {
@@ -19665,6 +19756,7 @@ module.exports = {
} }
}, },
id: 78, id: 78,
modulename: [ "Shield generator", "Shields" ],
name: "Thermal resistant" name: "Thermal resistant"
}, },
WakeScanner_LightWeight: { WakeScanner_LightWeight: {
@@ -19723,6 +19815,7 @@ module.exports = {
} }
}, },
id: 79, id: 79,
modulename: [ "Frame shift wake scanner", "Wake scanner" ],
name: "Lightweight" name: "Lightweight"
}, },
WakeScanner_Reinforced: { WakeScanner_Reinforced: {
@@ -19781,6 +19874,7 @@ module.exports = {
} }
}, },
id: 81, id: 81,
modulename: [ "Frame shift wake scanner", "Wake scanner" ],
name: "Reinforced" name: "Reinforced"
}, },
WakeScanner_Shielded: { WakeScanner_Shielded: {
@@ -19839,6 +19933,7 @@ module.exports = {
} }
}, },
id: 80, id: 80,
modulename: [ "Frame shift wake scanner", "Wake scanner" ],
name: "Shielded" name: "Shielded"
}, },
Weapon_DoubleShot: { Weapon_DoubleShot: {
@@ -19907,6 +20002,7 @@ module.exports = {
} }
}, },
id: 82, id: 82,
modulename: [ "Weapon" ],
name: "Double shot" name: "Double shot"
}, },
Weapon_Efficient: { Weapon_Efficient: {
@@ -19972,6 +20068,7 @@ module.exports = {
} }
}, },
id: 83, id: 83,
modulename: [ "Weapon" ],
name: "Efficient" name: "Efficient"
}, },
Weapon_Focused: { Weapon_Focused: {
@@ -20039,6 +20136,7 @@ module.exports = {
} }
}, },
id: 84, id: 84,
modulename: [ "Weapon" ],
name: "Focused" name: "Focused"
}, },
Weapon_HighCapacity: { Weapon_HighCapacity: {
@@ -20112,6 +20210,7 @@ module.exports = {
} }
}, },
id: 85, id: 85,
modulename: [ "Weapon" ],
name: "High capacity" name: "High capacity"
}, },
Weapon_LightWeight: { Weapon_LightWeight: {
@@ -20180,6 +20279,7 @@ module.exports = {
} }
}, },
id: 86, id: 86,
modulename: [ "Weapon" ],
name: "Lightweight" name: "Lightweight"
}, },
Weapon_LongRange: { Weapon_LongRange: {
@@ -20247,6 +20347,7 @@ module.exports = {
} }
}, },
id: 87, id: 87,
modulename: [ "Weapon" ],
name: "Long range" name: "Long range"
}, },
Weapon_Overcharged: { Weapon_Overcharged: {
@@ -20317,6 +20418,7 @@ module.exports = {
} }
}, },
id: 88, id: 88,
modulename: [ "Weapon" ],
name: "Overcharged" name: "Overcharged"
}, },
Weapon_RapidFire: { Weapon_RapidFire: {
@@ -20389,6 +20491,7 @@ module.exports = {
} }
}, },
id: 89, id: 89,
modulename: [ "Weapon" ],
name: "Rapid fire" name: "Rapid fire"
}, },
Weapon_ShortRange: { Weapon_ShortRange: {
@@ -20454,6 +20557,7 @@ module.exports = {
} }
}, },
id: 90, id: 90,
modulename: [ "Weapon" ],
name: "Short range" name: "Short range"
}, },
Weapon_Sturdy: { Weapon_Sturdy: {
@@ -20520,6 +20624,7 @@ module.exports = {
} }
}, },
id: 91, id: 91,
modulename: [ "Weapon" ],
name: "Sturdy" name: "Sturdy"
} }
}, },

378
dist/index.json vendored

File diff suppressed because it is too large Load Diff

View File

@@ -44,6 +44,7 @@
} }
}, },
"id": 3, "id": 3,
"modulename": ["Auto field mainentance unit", "AFMU"],
"name": "Shielded" "name": "Shielded"
}, },
"Armour_Advanced": { "Armour_Advanced": {
@@ -117,6 +118,7 @@
} }
}, },
"id": 6, "id": 6,
"modulename": ["Bulkheads", "Armour"],
"name": "Lightweight" "name": "Lightweight"
}, },
"Armour_Explosive": { "Armour_Explosive": {
@@ -179,6 +181,7 @@
} }
}, },
"id": 5, "id": 5,
"modulename": ["Bulkheads", "Armour"],
"name": "Blast resistant" "name": "Blast resistant"
}, },
"Armour_HeavyDuty": { "Armour_HeavyDuty": {
@@ -252,6 +255,7 @@
} }
}, },
"id": 7, "id": 7,
"modulename": ["Bulkheads", "Armour"],
"name": "Heavy duty" "name": "Heavy duty"
}, },
"Armour_Kinetic": { "Armour_Kinetic": {
@@ -315,6 +319,7 @@
} }
}, },
"id": 4, "id": 4,
"modulename": ["Bulkheads", "Armour"],
"name": "Kinetic resistant" "name": "Kinetic resistant"
}, },
"Armour_Thermic": { "Armour_Thermic": {
@@ -370,6 +375,7 @@
} }
}, },
"id": 8, "id": 8,
"modulename": ["Bulkheads", "Armour"],
"name": "Thermal resistant" "name": "Thermal resistant"
}, },
"CargoScanner_LightWeight": { "CargoScanner_LightWeight": {
@@ -428,6 +434,7 @@
} }
}, },
"id": 9, "id": 9,
"modulename": ["Cargo scanner", "Manifest scanner"],
"name": "Lightweight" "name": "Lightweight"
}, },
"CargoScanner_Reinforced": { "CargoScanner_Reinforced": {
@@ -486,6 +493,7 @@
} }
}, },
"id": 10, "id": 10,
"modulename": ["Cargo scanner", "Manifest scanner"],
"name": "Reinforced" "name": "Reinforced"
}, },
"CargoScanner_Shielded": { "CargoScanner_Shielded": {
@@ -544,6 +552,7 @@
} }
}, },
"id": 11, "id": 11,
"modulename": ["Cargo scanner", "Manifest scanner"],
"name": "Shielded" "name": "Shielded"
}, },
"ChaffLauncher_ChaffCapacity": { "ChaffLauncher_ChaffCapacity": {
@@ -562,6 +571,7 @@
} }
}, },
"id": 12, "id": 12,
"modulename": ["Chaff launcher"],
"name": "Ammo capacity" "name": "Ammo capacity"
}, },
"ChaffLauncher_LightWeight": { "ChaffLauncher_LightWeight": {
@@ -620,6 +630,7 @@
} }
}, },
"id": 13, "id": 13,
"modulename": ["Chaff launcher"],
"name": "Lightweight" "name": "Lightweight"
}, },
"ChaffLauncher_Reinforced": { "ChaffLauncher_Reinforced": {
@@ -678,6 +689,7 @@
} }
}, },
"id": 14, "id": 14,
"modulename": ["Chaff launcher"],
"name": "Reinforced" "name": "Reinforced"
}, },
"ChaffLauncher_Shielded": { "ChaffLauncher_Shielded": {
@@ -736,6 +748,7 @@
} }
}, },
"id": 15, "id": 15,
"modulename": ["Chaff launcher"],
"name": "Shielded" "name": "Shielded"
}, },
"CollectionLimpet_LightWeight": { "CollectionLimpet_LightWeight": {
@@ -794,6 +807,7 @@
} }
}, },
"id": 16, "id": 16,
"modulename": ["Collector limpet controller"],
"name": "Lightweight" "name": "Lightweight"
}, },
"CollectionLimpet_Reinforced": { "CollectionLimpet_Reinforced": {
@@ -852,6 +866,7 @@
} }
}, },
"id": 17, "id": 17,
"modulename": ["Collector limpet controller"],
"name": "Reinforced" "name": "Reinforced"
}, },
"CollectionLimpet_Shielded": { "CollectionLimpet_Shielded": {
@@ -910,6 +925,7 @@
} }
}, },
"id": 18, "id": 18,
"modulename": ["Collector limpet controller"],
"name": "Shielded" "name": "Shielded"
}, },
"ECM_LightWeight": { "ECM_LightWeight": {
@@ -968,6 +984,7 @@
} }
}, },
"id": 19, "id": 19,
"modulename": ["Electronic counter measures", "ECM"],
"name": "Lightweight" "name": "Lightweight"
}, },
"ECM_Reinforced": { "ECM_Reinforced": {
@@ -1026,6 +1043,7 @@
} }
}, },
"id": 20, "id": 20,
"modulename": ["Electronic counter measures", "ECM"],
"name": "Reinforced" "name": "Reinforced"
}, },
"ECM_Shielded": { "ECM_Shielded": {
@@ -1084,6 +1102,7 @@
} }
}, },
"id": 21, "id": 21,
"modulename": ["Electronic counter measures", "ECM"],
"name": "Shielded" "name": "Shielded"
}, },
"Engine_Dirty": { "Engine_Dirty": {
@@ -1157,6 +1176,7 @@
} }
}, },
"id": 22, "id": 22,
"modulename": ["Thrusters", "Engines"],
"name": "Dirty" "name": "Dirty"
}, },
"Engine_Reinforced": { "Engine_Reinforced": {
@@ -1225,6 +1245,7 @@
} }
}, },
"id": 23, "id": 23,
"modulename": ["Thrusters", "Engines"],
"name": "Reinforced" "name": "Reinforced"
}, },
"Engine_Tuned": { "Engine_Tuned": {
@@ -1298,6 +1319,7 @@
} }
}, },
"id": 24, "id": 24,
"modulename": ["Thrusters", "Engines"],
"name": "Clean" "name": "Clean"
}, },
"FSD_FastBoot": { "FSD_FastBoot": {
@@ -1366,6 +1388,7 @@
} }
}, },
"id": 25, "id": 25,
"modulename": ["Frame shift drive", "FSD"],
"name": "Faster boot sequence" "name": "Faster boot sequence"
}, },
"FSD_LongRange": { "FSD_LongRange": {
@@ -1434,6 +1457,7 @@
} }
}, },
"id": 26, "id": 26,
"modulename": ["Frame shift drive", "FSD"],
"name": "Increased range" "name": "Increased range"
}, },
"FSD_Shielded": { "FSD_Shielded": {
@@ -1502,6 +1526,7 @@
} }
}, },
"id": 27, "id": 27,
"modulename": ["Frame shift drive", "FSD"],
"name": "Shielded" "name": "Shielded"
}, },
"FSDinterdictor_Expanded": { "FSDinterdictor_Expanded": {
@@ -1553,6 +1578,7 @@
} }
}, },
"id": 28, "id": 28,
"modulename": ["Frame shift drive interdictor", "FSDI"],
"name": "Expanded capture arc" "name": "Expanded capture arc"
}, },
"FSDinterdictor_LongRange": { "FSDinterdictor_LongRange": {
@@ -1595,6 +1621,7 @@
} }
}, },
"id": 29, "id": 29,
"modulename": ["Frame shift drive interdictor", "FSDI"],
"name": "Long range" "name": "Long range"
}, },
"FuelScoop_Shielded": { "FuelScoop_Shielded": {
@@ -1642,6 +1669,7 @@
} }
}, },
"id": 30, "id": 30,
"modulename": ["Fuel scoop"],
"name": "Shielded" "name": "Shielded"
}, },
"FuelTransferLimpet_LightWeight": { "FuelTransferLimpet_LightWeight": {
@@ -1700,6 +1728,7 @@
} }
}, },
"id": 31, "id": 31,
"modulename": ["Fuel transfer limpet controller"],
"name": "Lightweight" "name": "Lightweight"
}, },
"FuelTransferLimpet_Reinforced": { "FuelTransferLimpet_Reinforced": {
@@ -1758,6 +1787,7 @@
} }
}, },
"id": 32, "id": 32,
"modulename": ["Fuel transfer limpet controller"],
"name": "Reinforced" "name": "Reinforced"
}, },
"FuelTransferLimpet_Shielded": { "FuelTransferLimpet_Shielded": {
@@ -1816,6 +1846,7 @@
} }
}, },
"id": 33, "id": 33,
"modulename": ["Fuel transfer limpet controller"],
"name": "Shielded" "name": "Shielded"
}, },
"HatchBreakerLimpet_LightWeight": { "HatchBreakerLimpet_LightWeight": {
@@ -1874,6 +1905,7 @@
} }
}, },
"id": 34, "id": 34,
"modulename": ["Hatch breaker limpet controller"],
"name": "Lightweight" "name": "Lightweight"
}, },
"HatchBreakerLimpet_Reinforced": { "HatchBreakerLimpet_Reinforced": {
@@ -1932,6 +1964,7 @@
} }
}, },
"id": 35, "id": 35,
"modulename": ["Hatch breaker limpet controller"],
"name": "Reinforced" "name": "Reinforced"
}, },
"HatchBreakerLimpet_Shielded": { "HatchBreakerLimpet_Shielded": {
@@ -1990,6 +2023,7 @@
} }
}, },
"id": 36, "id": 36,
"modulename": ["Hatch breaker limpet controller"],
"name": "Shielded" "name": "Shielded"
}, },
"HeatSinkLauncher_HeatSinkCapacity": { "HeatSinkLauncher_HeatSinkCapacity": {
@@ -2008,6 +2042,7 @@
} }
}, },
"id": 37, "id": 37,
"modulename": ["Heat sink launcher"],
"name": "Ammo capacity" "name": "Ammo capacity"
}, },
"HeatSinkLauncher_LightWeight": { "HeatSinkLauncher_LightWeight": {
@@ -2066,6 +2101,7 @@
} }
}, },
"id": 38, "id": 38,
"modulename": ["Heat sink launcher"],
"name": "Lightweight" "name": "Lightweight"
}, },
"HeatSinkLauncher_Reinforced": { "HeatSinkLauncher_Reinforced": {
@@ -2124,6 +2160,7 @@
} }
}, },
"id": 39, "id": 39,
"modulename": ["Heat sink launcher"],
"name": "Reinforced" "name": "Reinforced"
}, },
"HeatSinkLauncher_Shielded": { "HeatSinkLauncher_Shielded": {
@@ -2182,6 +2219,7 @@
} }
}, },
"id": 40, "id": 40,
"modulename": ["Heat sink launcher"],
"name": "Shielded" "name": "Shielded"
}, },
"HullReinforcement_Advanced": { "HullReinforcement_Advanced": {
@@ -2245,6 +2283,7 @@
} }
}, },
"id": 41, "id": 41,
"modulename": ["Hull reinforcement", "Hull reinforcement package", "HRP"],
"name": "Lightweight" "name": "Lightweight"
}, },
"HullReinforcement_Explosive": { "HullReinforcement_Explosive": {
@@ -2308,6 +2347,7 @@
} }
}, },
"id": 43, "id": 43,
"modulename": ["Hull reinforcement", "Hull reinforcement package", "HRP"],
"name": "Blast resistant" "name": "Blast resistant"
}, },
"HullReinforcement_HeavyDuty": { "HullReinforcement_HeavyDuty": {
@@ -2381,6 +2421,7 @@
} }
}, },
"id": 42, "id": 42,
"modulename": ["Hull reinforcement", "Hull reinforcement package", "HRP"],
"name": "Heavy duty" "name": "Heavy duty"
}, },
"HullReinforcement_Kinetic": { "HullReinforcement_Kinetic": {
@@ -2444,6 +2485,7 @@
} }
}, },
"id": 44, "id": 44,
"modulename": ["Hull reinforcement", "Hull reinforcement package", "HRP"],
"name": "Kinetic resistant" "name": "Kinetic resistant"
}, },
"HullReinforcement_Thermic": { "HullReinforcement_Thermic": {
@@ -2507,6 +2549,7 @@
} }
}, },
"id": 45, "id": 45,
"modulename": ["Hull reinforcement", "Hull reinforcement package", "HRP"],
"name": "Thermal resistant" "name": "Thermal resistant"
}, },
"KillWarrantScanner_LightWeight": { "KillWarrantScanner_LightWeight": {
@@ -2565,6 +2608,7 @@
} }
}, },
"id": 46, "id": 46,
"modulename": ["Kill warrant scanner", "KWS"],
"name": "Lightweight" "name": "Lightweight"
}, },
"KillWarrantScanner_LongRange": { "KillWarrantScanner_LongRange": {
@@ -2628,6 +2672,7 @@
} }
}, },
"id": 99, "id": 99,
"modulename": ["Kill warrant scanner", "KWS"],
"name": "Long range" "name": "Long range"
}, },
"KillWarrantScanner_Reinforced": { "KillWarrantScanner_Reinforced": {
@@ -2686,6 +2731,7 @@
} }
}, },
"id": 47, "id": 47,
"modulename": ["Kill warrant scanner", "KWS"],
"name": "Reinforced" "name": "Reinforced"
}, },
"KillWarrantScanner_Shielded": { "KillWarrantScanner_Shielded": {
@@ -2744,6 +2790,7 @@
} }
}, },
"id": 48, "id": 48,
"modulename": ["Kill warrant scanner", "KWS"],
"name": "Shielded" "name": "Shielded"
}, },
"LifeSupport_LightWeight": { "LifeSupport_LightWeight": {
@@ -2791,6 +2838,7 @@
} }
}, },
"id": 49, "id": 49,
"modulename": ["Life support"],
"name": "Lightweight" "name": "Lightweight"
}, },
"LifeSupport_Reinforced": { "LifeSupport_Reinforced": {
@@ -2838,6 +2886,7 @@
} }
}, },
"id": 50, "id": 50,
"modulename": ["Life support"],
"name": "Reinforced" "name": "Reinforced"
}, },
"LifeSupport_Shielded": { "LifeSupport_Shielded": {
@@ -2885,6 +2934,7 @@
} }
}, },
"id": 51, "id": 51,
"modulename": ["Life support"],
"name": "Shielded" "name": "Shielded"
}, },
"PointDefence_LightWeight": { "PointDefence_LightWeight": {
@@ -2943,6 +2993,7 @@
} }
}, },
"id": 52, "id": 52,
"modulename": ["Point defence"],
"name": "Lightweight" "name": "Lightweight"
}, },
"PointDefence_PointDefenseCapacity": { "PointDefence_PointDefenseCapacity": {
@@ -2961,6 +3012,7 @@
} }
}, },
"id": 55, "id": 55,
"modulename": ["Point defence"],
"name": "Ammo capacity" "name": "Ammo capacity"
}, },
"PointDefence_Reinforced": { "PointDefence_Reinforced": {
@@ -3019,6 +3071,7 @@
} }
}, },
"id": 53, "id": 53,
"modulename": ["Point defence"],
"name": "Reinforced" "name": "Reinforced"
}, },
"PointDefence_Shielded": { "PointDefence_Shielded": {
@@ -3077,6 +3130,7 @@
} }
}, },
"id": 54, "id": 54,
"modulename": ["Point defence"],
"name": "Shielded" "name": "Shielded"
}, },
"PowerDistributor_HighCapacity": { "PowerDistributor_HighCapacity": {
@@ -3155,6 +3209,7 @@
} }
}, },
"id": 56, "id": 56,
"modulename": ["Power distributor", "Distributor"],
"name": "High charge capacity" "name": "High charge capacity"
}, },
"PowerDistributor_HighFrequency": { "PowerDistributor_HighFrequency": {
@@ -3233,6 +3288,7 @@
} }
}, },
"id": 57, "id": 57,
"modulename": ["Power distributor", "Distributor"],
"name": "Charge enhanced" "name": "Charge enhanced"
}, },
"PowerDistributor_PriorityEngines": { "PowerDistributor_PriorityEngines": {
@@ -3281,6 +3337,7 @@
} }
}, },
"id": 58, "id": 58,
"modulename": ["Power distributor", "Distributor"],
"name": "Engine focused" "name": "Engine focused"
}, },
"PowerDistributor_PrioritySystems": { "PowerDistributor_PrioritySystems": {
@@ -3329,6 +3386,7 @@
} }
}, },
"id": 59, "id": 59,
"modulename": ["Power distributor", "Distributor"],
"name": "System focused" "name": "System focused"
}, },
"PowerDistributor_PriorityWeapons": { "PowerDistributor_PriorityWeapons": {
@@ -3377,6 +3435,7 @@
} }
}, },
"id": 60, "id": 60,
"modulename": ["Power distributor", "Distributor"],
"name": "Weapon focused" "name": "Weapon focused"
}, },
"PowerDistributor_Shielded": { "PowerDistributor_Shielded": {
@@ -3435,6 +3494,7 @@
} }
}, },
"id": 61, "id": 61,
"modulename": ["Power distributor", "Distributor"],
"name": "Shielded" "name": "Shielded"
}, },
"PowerPlant_Armoured": { "PowerPlant_Armoured": {
@@ -3498,6 +3558,7 @@
} }
}, },
"id": 62, "id": 62,
"modulename": ["Power distributor", "Distributor"],
"name": "Armoured" "name": "Armoured"
}, },
"PowerPlant_Boosted": { "PowerPlant_Boosted": {
@@ -3561,6 +3622,7 @@
} }
}, },
"id": 63, "id": 63,
"modulename": ["Power distributor", "Distributor"],
"name": "Overcharged" "name": "Overcharged"
}, },
"PowerPlant_Stealth": { "PowerPlant_Stealth": {
@@ -3600,6 +3662,7 @@
} }
}, },
"id": 64, "id": 64,
"modulename": ["Power distributor", "Distributor"],
"name": "Low emissions" "name": "Low emissions"
}, },
"ProspectingLimpet_LightWeight": { "ProspectingLimpet_LightWeight": {
@@ -3658,6 +3721,7 @@
} }
}, },
"id": 65, "id": 65,
"modulename": ["Prospector limpet controller"],
"name": "Lightweight" "name": "Lightweight"
}, },
"ProspectingLimpet_Reinforced": { "ProspectingLimpet_Reinforced": {
@@ -3716,6 +3780,7 @@
} }
}, },
"id": 66, "id": 66,
"modulename": ["Prospector limpet controller"],
"name": "Reinforced" "name": "Reinforced"
}, },
"ProspectingLimpet_Shielded": { "ProspectingLimpet_Shielded": {
@@ -3774,6 +3839,7 @@
} }
}, },
"id": 67, "id": 67,
"modulename": ["Prospector limpet controller"],
"name": "Shielded" "name": "Shielded"
}, },
"Refineries_Shielded": { "Refineries_Shielded": {
@@ -3821,6 +3887,7 @@
} }
}, },
"id": 92, "id": 92,
"modulename": ["Refinery"],
"name": "Shielded" "name": "Shielded"
}, },
"Sensor_CargoScanner_FastScan": { "Sensor_CargoScanner_FastScan": {
@@ -3884,6 +3951,7 @@
} }
}, },
"id": 102, "id": 102,
"modulename": ["Cargo scanner", "Manifest scanner"],
"name": "Fast scan" "name": "Fast scan"
}, },
"Sensor_CargoScanner_LongRange": { "Sensor_CargoScanner_LongRange": {
@@ -3947,6 +4015,7 @@
} }
}, },
"id": 104, "id": 104,
"modulename": ["Cargo scanner", "Manifest scanner"],
"name": "Long range" "name": "Long range"
}, },
"Sensor_CargoScanner_WideAngle": { "Sensor_CargoScanner_WideAngle": {
@@ -4010,6 +4079,7 @@
} }
}, },
"id": 105, "id": 105,
"modulename": ["Cargo scanner", "Manifest scanner"],
"name": "Wide angle" "name": "Wide angle"
}, },
"Sensor_KillWarrantScanner_FastScan": { "Sensor_KillWarrantScanner_FastScan": {
@@ -4073,6 +4143,7 @@
} }
}, },
"id": 101, "id": 101,
"modulename": ["Kill warrant scanner", "KWS"],
"name": "Fast scan" "name": "Fast scan"
}, },
"Sensor_KillWarrantScanner_WideAngle": { "Sensor_KillWarrantScanner_WideAngle": {
@@ -4136,6 +4207,7 @@
} }
}, },
"id": 107, "id": 107,
"modulename": ["Kill warrant scanner", "KWS"],
"name": "Wide angle" "name": "Wide angle"
}, },
"Sensor_Sensor_LightWeight": { "Sensor_Sensor_LightWeight": {
@@ -4199,6 +4271,7 @@
} }
}, },
"id": 96, "id": 96,
"modulename": ["Sensors"],
"name": "Lightweight" "name": "Lightweight"
}, },
"Sensor_Sensor_LongRange": { "Sensor_Sensor_LongRange": {
@@ -4262,6 +4335,7 @@
} }
}, },
"id": 97, "id": 97,
"modulename": ["Sensors"],
"name": "Long range" "name": "Long range"
}, },
"Sensor_Sensor_WideAngle": { "Sensor_Sensor_WideAngle": {
@@ -4325,6 +4399,7 @@
} }
}, },
"id": 98, "id": 98,
"modulename": ["Sensors"],
"name": "Wide angle" "name": "Wide angle"
}, },
"Sensor_SurfaceScanner_FastScan": { "Sensor_SurfaceScanner_FastScan": {
@@ -4388,6 +4463,7 @@
} }
}, },
"id": 95, "id": 95,
"modulename": ["Detailed surface scanner", "DSS"],
"name": "Fast scan" "name": "Fast scan"
}, },
"Sensor_SurfaceScanner_LongRange": { "Sensor_SurfaceScanner_LongRange": {
@@ -4451,6 +4527,7 @@
} }
}, },
"id": 93, "id": 93,
"modulename": ["Detailed surface scanner", "DSS"],
"name": "Long range" "name": "Long range"
}, },
"Sensor_SurfaceScanner_WideAngle": { "Sensor_SurfaceScanner_WideAngle": {
@@ -4514,6 +4591,7 @@
} }
}, },
"id": 94, "id": 94,
"modulename": ["Detailed surface scanner", "DSS"],
"name": "Wide angle" "name": "Wide angle"
}, },
"Sensor_WakeScanner_FastScan": { "Sensor_WakeScanner_FastScan": {
@@ -4577,6 +4655,7 @@
} }
}, },
"id": 109, "id": 109,
"modulename": ["Wake scanner", "Frame shift wake scanner"],
"name": "Fast scan" "name": "Fast scan"
}, },
"Sensor_WakeScanner_LongRange": { "Sensor_WakeScanner_LongRange": {
@@ -4640,6 +4719,7 @@
} }
}, },
"id": 108, "id": 108,
"modulename": ["Wake scanner", "Frame shift wake scanner"],
"name": "Long range" "name": "Long range"
}, },
"Sensor_WakeScanner_WideAngle": { "Sensor_WakeScanner_WideAngle": {
@@ -4703,6 +4783,7 @@
} }
}, },
"id": 106, "id": 106,
"modulename": ["Wake scanner", "Frame shift wake scanner"],
"name": "Wide angle" "name": "Wide angle"
}, },
"ShieldBooster_Explosive": { "ShieldBooster_Explosive": {
@@ -4766,6 +4847,7 @@
} }
}, },
"id": 68, "id": 68,
"modulename": ["Shield booster"],
"name": "Blast resistant" "name": "Blast resistant"
}, },
"ShieldBooster_HeavyDuty": { "ShieldBooster_HeavyDuty": {
@@ -4834,6 +4916,7 @@
} }
}, },
"id": 69, "id": 69,
"modulename": ["Shield booster"],
"name": "Heavy duty" "name": "Heavy duty"
}, },
"ShieldBooster_Kinetic": { "ShieldBooster_Kinetic": {
@@ -4897,6 +4980,7 @@
} }
}, },
"id": 70, "id": 70,
"modulename": ["Shield booster"],
"name": "Kinetic resistant" "name": "Kinetic resistant"
}, },
"ShieldBooster_Resistive": { "ShieldBooster_Resistive": {
@@ -4970,6 +5054,7 @@
} }
}, },
"id": 71, "id": 71,
"modulename": ["Shield booster"],
"name": "Resistance augmented" "name": "Resistance augmented"
}, },
"ShieldBooster_Thermic": { "ShieldBooster_Thermic": {
@@ -5033,6 +5118,7 @@
} }
}, },
"id": 72, "id": 72,
"modulename": ["Shield booster"],
"name": "Thermal resistant" "name": "Thermal resistant"
}, },
"ShieldCellBank_Rapid": { "ShieldCellBank_Rapid": {
@@ -5075,6 +5161,7 @@
} }
}, },
"id": 73, "id": 73,
"modulename": ["Shield cell bank", "SCB"],
"name": "Rapid charge" "name": "Rapid charge"
}, },
"ShieldCellBank_Specialised": { "ShieldCellBank_Specialised": {
@@ -5117,6 +5204,7 @@
} }
}, },
"id": 74, "id": 74,
"modulename": ["Shield cell bank", "SCB"],
"name": "Specialised" "name": "Specialised"
}, },
"ShieldGenerator_Kinetic": { "ShieldGenerator_Kinetic": {
@@ -5180,6 +5268,7 @@
} }
}, },
"id": 75, "id": 75,
"modulename": ["Shield generator", "Shields"],
"name": "Kinetic resistant" "name": "Kinetic resistant"
}, },
"ShieldGenerator_Optimised": { "ShieldGenerator_Optimised": {
@@ -5251,6 +5340,7 @@
} }
}, },
"id": 76, "id": 76,
"modulename": ["Shield generator", "Shields"],
"name": "Enhanced low power" "name": "Enhanced low power"
}, },
"ShieldGenerator_Reinforced": { "ShieldGenerator_Reinforced": {
@@ -5331,6 +5421,7 @@
} }
}, },
"id": 77, "id": 77,
"modulename": ["Shield generator", "Shields"],
"name": "Reinforced" "name": "Reinforced"
}, },
"ShieldGenerator_Thermic": { "ShieldGenerator_Thermic": {
@@ -5394,6 +5485,7 @@
} }
}, },
"id": 78, "id": 78,
"modulename": ["Shield generator", "Shields"],
"name": "Thermal resistant" "name": "Thermal resistant"
}, },
"WakeScanner_LightWeight": { "WakeScanner_LightWeight": {
@@ -5452,6 +5544,7 @@
} }
}, },
"id": 79, "id": 79,
"modulename": ["Frame shift wake scanner", "Wake scanner"],
"name": "Lightweight" "name": "Lightweight"
}, },
"WakeScanner_Reinforced": { "WakeScanner_Reinforced": {
@@ -5510,6 +5603,7 @@
} }
}, },
"id": 81, "id": 81,
"modulename": ["Frame shift wake scanner", "Wake scanner"],
"name": "Reinforced" "name": "Reinforced"
}, },
"WakeScanner_Shielded": { "WakeScanner_Shielded": {
@@ -5568,6 +5662,7 @@
} }
}, },
"id": 80, "id": 80,
"modulename": ["Frame shift wake scanner", "Wake scanner"],
"name": "Shielded" "name": "Shielded"
}, },
"Weapon_DoubleShot": { "Weapon_DoubleShot": {
@@ -5636,6 +5731,7 @@
} }
}, },
"id": 82, "id": 82,
"modulename": ["Weapon"],
"name": "Double shot" "name": "Double shot"
}, },
"Weapon_Efficient": { "Weapon_Efficient": {
@@ -5701,6 +5797,7 @@
} }
}, },
"id": 83, "id": 83,
"modulename": ["Weapon"],
"name": "Efficient" "name": "Efficient"
}, },
"Weapon_Focused": { "Weapon_Focused": {
@@ -5768,6 +5865,7 @@
} }
}, },
"id": 84, "id": 84,
"modulename": ["Weapon"],
"name": "Focused" "name": "Focused"
}, },
"Weapon_HighCapacity": { "Weapon_HighCapacity": {
@@ -5841,6 +5939,7 @@
} }
}, },
"id": 85, "id": 85,
"modulename": ["Weapon"],
"name": "High capacity" "name": "High capacity"
}, },
"Weapon_LightWeight": { "Weapon_LightWeight": {
@@ -5909,6 +6008,7 @@
} }
}, },
"id": 86, "id": 86,
"modulename": ["Weapon"],
"name": "Lightweight" "name": "Lightweight"
}, },
"Weapon_LongRange": { "Weapon_LongRange": {
@@ -5976,6 +6076,7 @@
} }
}, },
"id": 87, "id": 87,
"modulename": ["Weapon"],
"name": "Long range" "name": "Long range"
}, },
"Weapon_Overcharged": { "Weapon_Overcharged": {
@@ -6046,6 +6147,7 @@
} }
}, },
"id": 88, "id": 88,
"modulename": ["Weapon"],
"name": "Overcharged" "name": "Overcharged"
}, },
"Weapon_RapidFire": { "Weapon_RapidFire": {
@@ -6118,6 +6220,7 @@
} }
}, },
"id": 89, "id": 89,
"modulename": ["Weapon"],
"name": "Rapid fire" "name": "Rapid fire"
}, },
"Weapon_ShortRange": { "Weapon_ShortRange": {
@@ -6183,6 +6286,7 @@
} }
}, },
"id": 90, "id": 90,
"modulename": ["Weapon"],
"name": "Short range" "name": "Short range"
}, },
"Weapon_Sturdy": { "Weapon_Sturdy": {
@@ -6249,6 +6353,7 @@
} }
}, },
"id": 91, "id": 91,
"modulename": ["Weapon"],
"name": "Sturdy" "name": "Sturdy"
} }
} }