From d51c2a7562f3116a864a2fb6e820867250d536e8 Mon Sep 17 00:00:00 2001 From: Cmdr McDonald Date: Tue, 25 Apr 2017 07:33:03 +0100 Subject: [PATCH 1/6] Add long-range blueprint to multi-cannon --- ChangeLog.md | 3 +++ dist/index.js | 19 +++++++++++++++++++ dist/index.json | 32 ++++++++++++++++++++++++++++++++ modifications/modules.json | 32 ++++++++++++++++++++++++++++++++ 4 files changed, 86 insertions(+) diff --git a/ChangeLog.md b/ChangeLog.md index de160fb..57906a3 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,6 @@ +#2.3.4 + * Add missing Long Range blueprint to multi-cannon + #2.3.3 * Add Felicity Farseer to list of engineers that supply sensor and detailed surface scanner modifications diff --git a/dist/index.js b/dist/index.js index 3509934..1077e1c 100644 --- a/dist/index.js +++ b/dist/index.js @@ -23199,6 +23199,25 @@ module.exports = { } } }, + Weapon_LongRange: { + grades: { + "1": { + engineers: [ "Tod McQuinn", "Zacariah Nemo" ] + }, + "2": { + engineers: [ "Tod McQuinn", "Zacariah Nemo" ] + }, + "3": { + engineers: [ "Tod McQuinn", "Zacariah Nemo" ] + }, + "4": { + engineers: [ "Tod McQuinn" ] + }, + "5": { + engineers: [ "Tod McQuinn" ] + } + } + }, Weapon_Overcharged: { grades: { "1": { diff --git a/dist/index.json b/dist/index.json index 7c6ab8c..6494b02 100644 --- a/dist/index.json +++ b/dist/index.json @@ -31706,6 +31706,38 @@ } } }, + "Weapon_LongRange": { + "grades": { + "1": { + "engineers": [ + "Tod McQuinn", + "Zacariah Nemo" + ] + }, + "2": { + "engineers": [ + "Tod McQuinn", + "Zacariah Nemo" + ] + }, + "3": { + "engineers": [ + "Tod McQuinn", + "Zacariah Nemo" + ] + }, + "4": { + "engineers": [ + "Tod McQuinn" + ] + }, + "5": { + "engineers": [ + "Tod McQuinn" + ] + } + } + }, "Weapon_Overcharged": { "grades": { "1": { diff --git a/modifications/modules.json b/modifications/modules.json index 8b1044b..0d313ec 100644 --- a/modifications/modules.json +++ b/modifications/modules.json @@ -2849,6 +2849,38 @@ } } }, + "Weapon_LongRange": { + "grades": { + "1": { + "engineers": [ + "Tod McQuinn", + "Zacariah Nemo" + ] + }, + "2": { + "engineers": [ + "Tod McQuinn", + "Zacariah Nemo" + ] + }, + "3": { + "engineers": [ + "Tod McQuinn", + "Zacariah Nemo" + ] + }, + "4": { + "engineers": [ + "Tod McQuinn" + ] + }, + "5": { + "engineers": [ + "Tod McQuinn" + ] + } + } + }, "Weapon_Overcharged": { "grades": { "1": { From d7922eda7f5cb79dae3ec4eb00330bf73fba8fb2 Mon Sep 17 00:00:00 2001 From: Cmdr McDonald Date: Thu, 27 Apr 2017 06:56:05 -0400 Subject: [PATCH 2/6] Fix thermal load of focused grade 4 --- ChangeLog.md | 1 + modifications/blueprints.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index 57906a3..21a2d8c 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,6 @@ #2.3.4 * Add missing Long Range blueprint to multi-cannon + * Fix values for thermal load of focused weapon grade 4 #2.3.3 * Add Felicity Farseer to list of engineers that supply sensor and detailed surface scanner modifications diff --git a/modifications/blueprints.json b/modifications/blueprints.json index 9e95eb5..a172a42 100644 --- a/modifications/blueprints.json +++ b/modifications/blueprints.json @@ -5938,7 +5938,7 @@ "piercing": [ 0.2, 0.4 ], "range": [ 0.4, 0.8 ], "rof": [ -0.08, -0.02 ], - "thermload": [ -0.2, -0.1 ] + "thermload": [ 0.2, 0.1 ] } }, "5": { From 64b7ca503aba043588cf5b96085265e64bc4cc57 Mon Sep 17 00:00:00 2001 From: Cmdr McDonald Date: Thu, 27 Apr 2017 06:59:06 -0400 Subject: [PATCH 3/6] Fix internal names for power plant blueprints --- ChangeLog.md | 1 + dist/index.js | 6 +++--- dist/index.json | 10 ++++------ modifications/blueprints.json | 4 ++-- 4 files changed, 10 insertions(+), 11 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 21a2d8c..f716c2d 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,7 @@ #2.3.4 * Add missing Long Range blueprint to multi-cannon * Fix values for thermal load of focused weapon grade 4 + * Fix internal module information for power plant blueprints #2.3.3 * Add Felicity Farseer to list of engineers that supply sensor and detailed surface scanner modifications diff --git a/dist/index.js b/dist/index.js index 1077e1c..2cf6a36 100644 --- a/dist/index.js +++ b/dist/index.js @@ -18072,7 +18072,7 @@ module.exports = { } }, id: 62, - modulename: [ "Power distributor", "Distributor" ], + modulename: [ "Power plant" ], name: "Armoured" }, PowerPlant_Boosted: { @@ -18137,7 +18137,7 @@ module.exports = { } }, id: 63, - modulename: [ "Power distributor", "Distributor" ], + modulename: [ "Power plant" ], name: "Overcharged" }, PowerPlant_Stealth: { @@ -20383,7 +20383,7 @@ module.exports = { piercing: [ .2, .4 ], range: [ .4, .8 ], rof: [ -.08, -.02 ], - thermload: [ -.2, -.1 ] + thermload: [ .2, .1 ] } }, "5": { diff --git a/dist/index.json b/dist/index.json index 6494b02..ede9bf6 100644 --- a/dist/index.json +++ b/dist/index.json @@ -23152,8 +23152,7 @@ }, "id": 62, "modulename": [ - "Power distributor", - "Distributor" + "Power plant" ], "name": "Armoured" }, @@ -23265,8 +23264,7 @@ }, "id": 63, "modulename": [ - "Power distributor", - "Distributor" + "Power plant" ], "name": "Overcharged" }, @@ -27171,8 +27169,8 @@ -0.02 ], "thermload": [ - -0.2, - -0.1 + 0.2, + 0.1 ] } }, diff --git a/modifications/blueprints.json b/modifications/blueprints.json index a172a42..c26086e 100644 --- a/modifications/blueprints.json +++ b/modifications/blueprints.json @@ -3627,7 +3627,7 @@ } }, "id": 62, - "modulename": ["Power distributor", "Distributor"], + "modulename": ["Power plant"], "name": "Armoured" }, "PowerPlant_Boosted": { @@ -3692,7 +3692,7 @@ } }, "id": 63, - "modulename": ["Power distributor", "Distributor"], + "modulename": ["Power plant"], "name": "Overcharged" }, "PowerPlant_Stealth": { From 982547411735154c2e2ae11839ea9514ed483568 Mon Sep 17 00:00:00 2001 From: Cmdr McDonald Date: Wed, 3 May 2017 09:57:56 +0100 Subject: [PATCH 4/6] Add FSD interrupt special --- ChangeLog.md | 1 + dist/index.js | 8 +++++++- dist/index.json | 7 +++++++ modifications/modifierActions.json | 2 ++ modifications/modules.json | 1 + modifications/specials.json | 1 + 6 files changed, 19 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index f716c2d..cbb9a8d 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -2,6 +2,7 @@ * Add missing Long Range blueprint to multi-cannon * Fix values for thermal load of focused weapon grade 4 * Fix internal module information for power plant blueprints + * Add 'FSD Interrupt' special for missile racks #2.3.3 * Add Felicity Farseer to list of engineers that supply sensor and detailed surface scanner modifications diff --git a/dist/index.js b/dist/index.js index 2cf6a36..ae36538 100644 --- a/dist/index.js +++ b/dist/index.js @@ -21456,6 +21456,7 @@ module.exports = { jitter: 1, speed: -.1667 }, + special_fsd_interrupt: {}, special_high_yield_shell: { rof: .1111111111111111 }, @@ -23382,7 +23383,7 @@ module.exports = { } }, modifications: [ "ammo", "clip", "damage", "damagedist", "fallofffromrange", "distdraw", "integrity", "jitter", "mass", "piercing", "power", "reload", "rof", "thermload" ], - specials: [ "special_drag_munitions", "special_emissive_munitions", "special_overload_munitions", "special_penetrator_payload", "special_thermal_cascade" ] + specials: [ "special_drag_munitions", "special_emissive_munitions", "special_fsd_interrupt", "special_overload_munitions", "special_penetrator_payload", "special_thermal_cascade" ] }, mrp: { blueprints: {}, @@ -25082,6 +25083,11 @@ module.exports = { edname: "special_force_shell", name: "Force shell" }, + special_fsd_interrupt: { + id: 33, + edname: "special_fsd_interrupt", + name: "FSD interrupt" + }, special_high_yield_shell: { id: 11, edname: "special_high_yield_shell", diff --git a/dist/index.json b/dist/index.json index ede9bf6..a40859c 100644 --- a/dist/index.json +++ b/dist/index.json @@ -28707,6 +28707,7 @@ "jitter": 1, "speed": -0.1667 }, + "special_fsd_interrupt": {}, "special_high_yield_shell": { "rof": 0.1111111111111111 }, @@ -32045,6 +32046,7 @@ "specials": [ "special_drag_munitions", "special_emissive_munitions", + "special_fsd_interrupt", "special_overload_munitions", "special_penetrator_payload", "special_thermal_cascade" @@ -35208,6 +35210,11 @@ "edname": "special_force_shell", "name": "Force shell" }, + "special_fsd_interrupt": { + "id": 33, + "edname": "special_fsd_interrupt", + "name": "FSD interrupt" + }, "special_high_yield_shell": { "id": 11, "edname": "special_high_yield_shell", diff --git a/modifications/modifierActions.json b/modifications/modifierActions.json index ed8bee1..45494dd 100644 --- a/modifications/modifierActions.json +++ b/modifications/modifierActions.json @@ -211,6 +211,8 @@ "jitter": 1, "speed": -0.1667 }, + "special_fsd_interrupt": { + }, "special_high_yield_shell": { "rof": 0.1111111111111111 }, diff --git a/modifications/modules.json b/modifications/modules.json index 0d313ec..f802859 100644 --- a/modifications/modules.json +++ b/modifications/modules.json @@ -3192,6 +3192,7 @@ "specials": [ "special_drag_munitions", "special_emissive_munitions", + "special_fsd_interrupt", "special_overload_munitions", "special_penetrator_payload", "special_thermal_cascade" diff --git a/modifications/specials.json b/modifications/specials.json index ec9f5c7..ad6f888 100644 --- a/modifications/specials.json +++ b/modifications/specials.json @@ -10,6 +10,7 @@ "special_emissive_munitions": {"id": 8, "edname": "special_emissive_munitions", "name": "Emissive munitions"}, "special_feedback_cascade": {"id": 9, "edname": "special_feedback_cascade", "name": "Feedback cascade"}, "special_force_shell": {"id": 10, "edname": "special_force_shell", "name": "Force shell"}, + "special_fsd_interrupt": {"id": 33, "edname": "special_fsd_interrupt", "name": "FSD interrupt"}, "special_high_yield_shell": {"id": 11, "edname": "special_high_yield_shell", "name": "High yield shell"}, "special_incendiary_rounds": {"id": 12, "edname": "special_incendiary_rounds", "name": "Incendiary rounds"}, "special_inertial_impact": {"id": 32, "edname": "special_inertial_impact", "name": "Inertial impact"}, From 6a5817237df93661d6abc716d85abc0d033418f3 Mon Sep 17 00:00:00 2001 From: Cmdr McDonald Date: Wed, 3 May 2017 10:15:54 +0100 Subject: [PATCH 5/6] Separate specials for dumbfire and seeker missiles --- ChangeLog.md | 2 +- dist/index.js | 3 ++- dist/index.json | 9 ++++++++- modifications/modules.json | 9 ++++++++- 4 files changed, 19 insertions(+), 4 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index cbb9a8d..e8c1476 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -2,7 +2,7 @@ * Add missing Long Range blueprint to multi-cannon * Fix values for thermal load of focused weapon grade 4 * Fix internal module information for power plant blueprints - * Add 'FSD Interrupt' special for missile racks + * Add 'FSD Interrupt' special to dumbfire missile racks; this module now has `specials_S` and `specials_D` keys for specials to differentiate #2.3.3 * Add Felicity Farseer to list of engineers that supply sensor and detailed surface scanner modifications diff --git a/dist/index.js b/dist/index.js index ae36538..2b1b958 100644 --- a/dist/index.js +++ b/dist/index.js @@ -23383,7 +23383,8 @@ module.exports = { } }, modifications: [ "ammo", "clip", "damage", "damagedist", "fallofffromrange", "distdraw", "integrity", "jitter", "mass", "piercing", "power", "reload", "rof", "thermload" ], - specials: [ "special_drag_munitions", "special_emissive_munitions", "special_fsd_interrupt", "special_overload_munitions", "special_penetrator_payload", "special_thermal_cascade" ] + specials_S: [ "special_drag_munitions", "special_emissive_munitions", "special_overload_munitions", "special_penetrator_payload", "special_thermal_cascade" ], + specials_D: [ "special_drag_munitions", "special_emissive_munitions", "special_fsd_interrupt", "special_overload_munitions", "special_penetrator_payload", "special_thermal_cascade" ] }, mrp: { blueprints: {}, diff --git a/dist/index.json b/dist/index.json index a40859c..58f3af9 100644 --- a/dist/index.json +++ b/dist/index.json @@ -32043,7 +32043,14 @@ "rof", "thermload" ], - "specials": [ + "specials_S": [ + "special_drag_munitions", + "special_emissive_munitions", + "special_overload_munitions", + "special_penetrator_payload", + "special_thermal_cascade" + ], + "specials_D": [ "special_drag_munitions", "special_emissive_munitions", "special_fsd_interrupt", diff --git a/modifications/modules.json b/modifications/modules.json index f802859..0be26de 100644 --- a/modifications/modules.json +++ b/modifications/modules.json @@ -3189,7 +3189,14 @@ "rof", "thermload" ], - "specials": [ + "specials_S": [ + "special_drag_munitions", + "special_emissive_munitions", + "special_overload_munitions", + "special_penetrator_payload", + "special_thermal_cascade" + ], + "specials_D": [ "special_drag_munitions", "special_emissive_munitions", "special_fsd_interrupt", From 355d2ef88d030cc7b8d054a445bf5cbd4ac397c8 Mon Sep 17 00:00:00 2001 From: Cmdr McDonald Date: Wed, 3 May 2017 12:38:32 +0100 Subject: [PATCH 6/6] Version bump --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a8893c4..38a587d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coriolis-data", - "version": "2.3.3", + "version": "2.3.4", "repository": { "type": "git", "url": "https://github.com/EDCD/coriolis-data"