From 4a02fa4f0de37d0eb00d17b6bb401b687ec8c8e2 Mon Sep 17 00:00:00 2001 From: Willyb321 Date: Wed, 19 Dec 2018 08:20:07 +1100 Subject: [PATCH] scl (cost not confirmed, need to add symbols and ids) --- dist/index.js | 72 ++++++++++++++++++ dist/index.json | 75 +++++++++++++++++++ modifications/modifications.json | 3 +- modifications/modules.json | 6 ++ .../hardpoints/seismic_charge_launcher.json | 66 ++++++++++++++++ modules/index.js | 1 + 6 files changed, 222 insertions(+), 1 deletion(-) create mode 100644 modules/hardpoints/seismic_charge_launcher.json diff --git a/dist/index.js b/dist/index.js index 07d84d7..2f37d5d 100644 --- a/dist/index.js +++ b/dist/index.js @@ -11230,6 +11230,67 @@ module.exports = { edID: 0, symbol: "" } ], + scl: [ { + breachdmg: 3, + breachmax: 0, + shotspeed: 350, + breachmin: 0, + class: 2, + cost: 2200, + damage: 15, + chargetime: 2, + damagedist: { + E: 1 + }, + distdraw: .24, + edID: 128049381, + eddbID: 823, + falloff: 500, + ammo: 72, + clip: 1, + grp: "scl", + id: "3L", + integrity: 51, + mass: 4, + mount: "T", + piercing: 35, + power: 1.2, + range: 3e3, + rating: "B", + rof: 1, + thermload: 3.6, + symbol: "" + }, { + breachdmg: 3, + breachmax: 0, + shotspeed: 350, + breachmin: 0, + class: 2, + cost: 2200, + damage: 15, + chargetime: 2, + damagedist: { + E: 1 + }, + distdraw: .24, + edID: 128049381, + eddbID: 823, + falloff: 500, + ammo: 72, + clip: 1, + grp: "scl", + id: "3M", + integrity: 51, + mass: 4, + mount: "F", + piercing: 35, + power: 1.01, + range: 3e3, + rating: "B", + rof: 1, + thermload: 3.6, + symbol: "" + } ], kw: [ { class: 0, cost: 13540, @@ -26399,6 +26460,13 @@ module.exports = { type: "numeric", method: "additive", higherbetter: true + }, + chargetime: { + id: 52, + name: "chargetime", + type: "percentage", + method: "multiplicative", + higherbetter: false } }, modifierActions: { @@ -30477,6 +30545,10 @@ module.exports = { pwa: { blueprints: {}, modifications: [] + }, + scl: { + blueprints: {}, + modifications: [] } }, specials: { diff --git a/dist/index.json b/dist/index.json index 8476ec2..91e6aae 100644 --- a/dist/index.json +++ b/dist/index.json @@ -13816,6 +13816,70 @@ "symbol": "" } ], + "scl": [ + { + "breachdmg": 3, + "breachmax": 0, + "shotspeed": 350, + "breachmin": 0, + "class": 2, + "cost": 2200, + "damage": 15, + "chargetime": 2, + "damagedist": { + "E": 1 + }, + "distdraw": 0.24, + "edID": 128049381, + "eddbID": 823, + "falloff": 500, + "ammo": 72, + "clip": 1, + "grp": "scl", + "id": "3L", + "integrity": 51, + "mass": 4, + "mount": "T", + "piercing": 35, + "power": 1.2, + "range": 3000, + "rating": "B", + "rof": 1, + "thermload": 3.6, + "symbol": "" + }, + { + "breachdmg": 3, + "breachmax": 0, + "shotspeed": 350, + "breachmin": 0, + "class": 2, + "cost": 2200, + "damage": 15, + "chargetime": 2, + "damagedist": { + "E": 1 + }, + "distdraw": 0.24, + "edID": 128049381, + "eddbID": 823, + "falloff": 500, + "ammo": 72, + "clip": 1, + "grp": "scl", + "id": "3M", + "integrity": 51, + "mass": 4, + "mount": "F", + "piercing": 35, + "power": 1.01, + "range": 3000, + "rating": "B", + "rof": 1, + "thermload": 3.6, + "symbol": "" + } + ], "kw": [ { "class": 0, @@ -34535,6 +34599,13 @@ "type": "numeric", "method": "additive", "higherbetter": true + }, + "chargetime": { + "id": 52, + "name": "chargetime", + "type": "percentage", + "method": "multiplicative", + "higherbetter": false } }, "modifierActions": { @@ -41638,6 +41709,10 @@ "pwa": { "blueprints": {}, "modifications": [] + }, + "scl": { + "blueprints": {}, + "modifications": [] } }, "specials": { diff --git a/modifications/modifications.json b/modifications/modifications.json index 2aa8451..fbba019 100644 --- a/modifications/modifications.json +++ b/modifications/modifications.json @@ -52,5 +52,6 @@ "jumpboost": {"id": 47, "name": "jumpboost", "type": "numeric", "method": "additive", "higherbetter": true}, "shieldaddition": {"id": 50, "name": "shieldaddition", "type": "numeric", "method": "additive", "higherbetter": true}, "scanrange": {"id": 51, "name": "scanrange", "type": "numeric", "method": "additive", "higherbetter": true}, - "maxangle": {"id": 51, "name": "maxangle", "type": "numeric", "method": "additive", "higherbetter": true} + "maxangle": {"id": 51, "name": "maxangle", "type": "numeric", "method": "additive", "higherbetter": true}, + "chargetime": {"id": 52, "name": "chargetime", "type": "percentage", "method": "multiplicative", "higherbetter": false} } diff --git a/modifications/modules.json b/modifications/modules.json index 233f194..d717b7e 100644 --- a/modifications/modules.json +++ b/modifications/modules.json @@ -6608,5 +6608,11 @@ }, "modifications": [ ] + }, + "scl": { + "blueprints": { + }, + "modifications": [ + ] } } diff --git a/modules/hardpoints/seismic_charge_launcher.json b/modules/hardpoints/seismic_charge_launcher.json new file mode 100644 index 0000000..c69a5e1 --- /dev/null +++ b/modules/hardpoints/seismic_charge_launcher.json @@ -0,0 +1,66 @@ +{ + "scl": [ + { + "breachdmg": 3, + "breachmax": 0, + "shotspeed": 350, + "breachmin": 0, + "class": 2, + "cost": 2200, + "damage": 15, + "chargetime": 2, + "damagedist": { + "E": 1 + }, + "distdraw": 0.24, + "edID": 128049381, + "eddbID": 823, + "falloff": 500, + "ammo": 72, + "clip": 1, + "grp": "scl", + "id": "3L", + "integrity": 51, + "mass": 4, + "mount": "T", + "piercing": 35, + "power": 1.2, + "range": 3000, + "rating": "B", + "rof": 1, + "thermload": 3.6, + "symbol": "" + }, + { + "breachdmg": 3, + "breachmax": 0, + "shotspeed": 350, + "breachmin": 0, + "class": 2, + "cost": 2200, + "damage": 15, + "chargetime": 2, + "damagedist": { + "E": 1 + }, + "distdraw": 0.24, + "edID": 128049381, + "eddbID": 823, + "falloff": 500, + "ammo": 72, + "clip": 1, + "grp": "scl", + "id": "3M", + "integrity": 51, + "mass": 4, + "mount": "F", + "piercing": 35, + "power": 1.01, + "range": 3000, + "rating": "B", + "rof": 1, + "thermload": 3.6, + "symbol": "" + } + ] +} diff --git a/modules/index.js b/modules/index.js index 451bc8c..f4d3e7c 100644 --- a/modules/index.js +++ b/modules/index.js @@ -28,6 +28,7 @@ module.exports = { cs: require('./hardpoints/cargo_scanner').cs, ws: require('./hardpoints/frame_shift_wake_scanner').ws, pwa: require('./hardpoints/pulse_wave_analyser').pwa, + scl: require('./hardpoints/seismic_charge_launcher').scl, kw: require('./hardpoints/kill_warrant_scanner').kw, sb: require('./hardpoints/shield_booster').sb, ch: require('./hardpoints/chaff_launcher').ch,