diff --git a/modifications/modules.json b/modifications/modules.json index f1db942..9ef7f94 100644 --- a/modifications/modules.json +++ b/modifications/modules.json @@ -1409,6 +1409,129 @@ "scantime" ] }, + "csl": { + "blueprints": { + "Misc_HeatSinkCapacity": { + "grades": { + "1": { + "engineers": [ + "Petra Olmanova", + "Ram Tah" + ] + } + } + }, + "Misc_LightWeight": { + "grades": { + "1": { + "engineers": [ + "Petra Olmanova", + "Ram Tah" + ] + }, + "2": { + "engineers": [ + "Petra Olmanova", + "Ram Tah" + ] + }, + "3": { + "engineers": [ + "Petra Olmanova", + "Ram Tah" + ] + }, + "4": { + "engineers": [ + "Petra Olmanova", + "Ram Tah" + ] + }, + "5": { + "engineers": [ + "Petra Olmanova", + "Ram Tah" + ] + } + } + }, + "Misc_Reinforced": { + "grades": { + "1": { + "engineers": [ + "Petra Olmanova", + "Ram Tah" + ] + }, + "2": { + "engineers": [ + "Petra Olmanova", + "Ram Tah" + ] + }, + "3": { + "engineers": [ + "Petra Olmanova", + "Ram Tah" + ] + }, + "4": { + "engineers": [ + "Petra Olmanova", + "Ram Tah" + ] + }, + "5": { + "engineers": [ + "Petra Olmanova", + "Ram Tah" + ] + } + } + }, + "Misc_Shielded": { + "grades": { + "1": { + "engineers": [ + "Petra Olmanova", + "Ram Tah" + ] + }, + "2": { + "engineers": [ + "Petra Olmanova", + "Ram Tah" + ] + }, + "3": { + "engineers": [ + "Petra Olmanova", + "Ram Tah" + ] + }, + "4": { + "engineers": [ + "Petra Olmanova", + "Ram Tah" + ] + }, + "5": { + "engineers": [ + "Petra Olmanova", + "Ram Tah" + ] + } + } + } + }, + "modifications": [ + "ammo", + "integrity", + "mass", + "power", + "reload" + ] + }, "dc": { "blueprints": { }, @@ -3450,6 +3573,12 @@ "modifications": [ ] }, + "ews": { + "blueprints": { + }, + "modifications": [ + ] + }, "mrp": { "blueprints": { }, diff --git a/modules/hardpoints/caustic_sink_launcher.json b/modules/hardpoints/caustic_sink_launcher.json new file mode 100644 index 0000000..f02dc03 --- /dev/null +++ b/modules/hardpoints/caustic_sink_launcher.json @@ -0,0 +1,25 @@ +{ + "csl": [ + { + "ammo": 5, + "ammocost": 10, + "class": 0, + "clip": 1, + "cost": 50000, + "distdraw": 2, + "edID": 129019262, + "eps": 0.4, + "fireint": 5.0, + "grp": "csl", + "id": "4A", + "integrity": 45, + "mass": 1.7, + "name": "Caustic Sink Launcher", + "passive": 1, + "power": 0.6, + "rating": "I", + "reload": 10, + "symbol": "Hpt_CausticSinkLauncher_Turret_Tiny" + } + ] +} diff --git a/modules/hardpoints/shutdown_field_neutraliser.json b/modules/hardpoints/shutdown_field_neutraliser.json index 9af4702..3dad48c 100644 --- a/modules/hardpoints/shutdown_field_neutraliser.json +++ b/modules/hardpoints/shutdown_field_neutraliser.json @@ -18,6 +18,24 @@ "duration": 1, "range": 3000, "symbol": "Hpt_AntiUnknownShutdown_Tiny" + }, + { + "class": 0, + "cost": 0, + "grp": "sfn", + "id": "4E", + "edID": 129022663, + "integrity": 70, + "mass": 3, + "name": "Thargoid Pulse Neutraliser", + "passive": 1, + "power": 0.4, + "activepower": 0.33, + "rating": "E", + "cooldown": 10, + "duration": 1, + "range": 0, + "symbol": "Hpt_AntiUnknownShutdown_Tiny_V2" } ] } diff --git a/modules/hardpoints/xeno_scanner.json b/modules/hardpoints/xeno_scanner.json index 6db9b44..fab46d9 100644 --- a/modules/hardpoints/xeno_scanner.json +++ b/modules/hardpoints/xeno_scanner.json @@ -34,6 +34,23 @@ "scantime": 10, "angle": 23, "symbol": "Hpt_XenoScannerMk2_Basic_Tiny" + }, + { + "class": 0, + "cost": 745950, + "edID": 129022952, + "grp": "xs", + "id": "4B", + "integrity": 100, + "mass": 3, + "name": "Pulse Wave Xeno Scanner", + "power": 1.0, + "range": 1000, + "rating": "C", + "boot": 2, + "scantime": 10, + "angle": 23, + "symbol": "Hpt_XenoScanner_Advanced_Tiny" } ] } diff --git a/modules/index.js b/modules/index.js index c3b1e61..b2d8867 100644 --- a/modules/index.js +++ b/modules/index.js @@ -26,6 +26,7 @@ module.exports = { nl: require('./hardpoints/mine_launcher').nl, ml: require('./hardpoints/mining_laser').ml, cs: require('./hardpoints/cargo_scanner').cs, + csl: require('./hardpoints/caustic_sink_launcher').csl, ws: require('./hardpoints/frame_shift_wake_scanner').ws, pwa: require('./hardpoints/pulse_wave_analyser').pwa, abl: require('./hardpoints/abrasion_blaster').abl, @@ -61,7 +62,7 @@ module.exports = { hb: require('./internal/hatch_breaker_limpet_controller').hb, hr: require('./internal/hull_reinforcement_package').hr, mahr: require('./internal/meta_alloy_hull_reinforcement_package.json').mahr, - mlc: require('./internal/multi_limpet_controllers.json').mlc, + mlc: require('./internal/multi_limpet_controllers.json').mlc, mrp: require('./internal/module_reinforcement_package').mrp, pv: require('./internal/planetary_vehicle_hanger').pv, psg: require('./internal/pristmatic_shield_generator').psg, @@ -82,5 +83,6 @@ module.exports = { ghrp: require('./internal/guardian_hull_reinforcement_package').ghrp, gmrp: require('./internal/guardian_module_reinforcement_package').gmrp, sua: require('./internal/supercruise_assist').sua, + ews: require('./internal/experemental_weapon_stabilizer').ews, } } diff --git a/modules/internal/experemental_weapon_stabilizer.json b/modules/internal/experemental_weapon_stabilizer.json new file mode 100644 index 0000000..b682361 --- /dev/null +++ b/modules/internal/experemental_weapon_stabilizer.json @@ -0,0 +1,32 @@ +{ + "ews": [ + { + "rating": "F", + "class": 3, + "mass": 8, + "id": "3z", + "edID": 129019260, + "eddbID": 1836, + "power": 1.5, + "cost": 1930500, + "symbol": "Int_ExpModuleStabiliser_Size3_Class3", + "grp": "ews", + "ukName": "Experimental Weapon Stabilizer", + "ukDiscript": "Stabilises the stress typically applied to a ship's structural integrity by experimental weapons" + }, + { + "rating": "F", + "class": 5, + "mass": 20, + "id": "4D", + "edID": 129019261, + "eddbID": 1837, + "power": 3.0, + "cost": 4000000, + "symbol": "Int_ExpModuleStabiliser_Size5_Class3", + "grp": "ews", + "ukName": "Experimental Weapon Stabilizer", + "ukDiscript": "Stabilises the stress typically applied to a ship's structural integrity by experimental weapons" + } + ] +}