From 1264a6edf969700f507668f145739d3d069b8fb4 Mon Sep 17 00:00:00 2001 From: willyb321 Date: Wed, 25 Apr 2018 15:05:17 +1000 Subject: [PATCH] add guardian plasma charger --- modifications/modules.json | 6 ++ .../hardpoints/guardian_plasma_charger.json | 66 +++++++++++++++++++ modules/index.js | 2 + 3 files changed, 74 insertions(+) create mode 100644 modules/hardpoints/guardian_plasma_charger.json diff --git a/modifications/modules.json b/modifications/modules.json index b1f4307..049a6b9 100644 --- a/modifications/modules.json +++ b/modifications/modules.json @@ -3427,6 +3427,12 @@ "special_weapon_lightweight" ] }, + "gpc": { + "blueprints": { + }, + "modifications": [ + ] + }, "gpl": { "blueprints": { }, diff --git a/modules/hardpoints/guardian_plasma_charger.json b/modules/hardpoints/guardian_plasma_charger.json new file mode 100644 index 0000000..640f4ed --- /dev/null +++ b/modules/hardpoints/guardian_plasma_charger.json @@ -0,0 +1,66 @@ +{ + "gpc": [ + { + "ammo": 200, + "breachdmg": 0.7, + "breachmax": 0.8, + "breachmin": 0.5, + "class": 2, + "clip": 15, + "cost": 3051200, + "damage": 5, + "damagedist": { + "A": 1 + }, + "distdraw": 13.6, + "edID": 128049466, + "eddbID": 874, + "falloff": 1000, + "grp": "gpc", + "id": "0J", + "integrity": 42, + "mass": 4, + "mount": "F", + "piercing": 80, + "power": 2.13, + "range": 3500, + "rating": "B", + "reload": 3, + "rof": 5, + "shotspeed": 1200, + "thermload": 5.2, + "symbol": "Hpt_Guardian_PlasmaLauncher_Fixed_Medium" + }, + { + "ammo": 200, + "breachdmg": 1.0, + "breachmax": 0.8, + "breachmin": 0.5, + "class": 2, + "clip": 15, + "cost": 3051200, + "damage": 4, + "damagedist": { + "A": 1 + }, + "distdraw": 13.6, + "edID": 128049466, + "eddbID": 874, + "falloff": 1000, + "grp": "gpc", + "id": "0I", + "integrity": 42, + "mass": 4, + "mount": "T", + "piercing": 80, + "power": 2.01, + "range": 3500, + "rating": "E", + "reload": 3, + "rof": 5, + "shotspeed": 1200, + "thermload": 5.8, + "symbol": "Hpt_Guardian_PlasmaLauncher_Turret_Medium" + } + ] +} \ No newline at end of file diff --git a/modules/index.js b/modules/index.js index 1bc97bc..01abb8d 100644 --- a/modules/index.js +++ b/modules/index.js @@ -33,6 +33,8 @@ module.exports = { ec: require('./hardpoints/electronic_countermeasure').ec, hs: require('./hardpoints/heat_sink_launcher').hs, po: require('./hardpoints/point_defence').po, + gpc: require('./hardpoints/guardian_plasma_charger').gpc, + ggc: require('./hardpoints/guardian_gauss_cannon').ggc, sfn: require('./hardpoints/shutdown_field_neutraliser').sfn, xs: require('./hardpoints/xeno_scanner').xs },