Fix bad value for kinetic shield booster grade 5

This commit is contained in:
Cmdr McDonald
2017-03-04 08:42:16 +00:00
parent f0db785bf7
commit b25278bf81
4 changed files with 4 additions and 3 deletions

View File

@@ -7,6 +7,7 @@
* 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 * Add module names for blueprints
* Fix erroneous value for grade 5 kinetic shield booster
#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

2
dist/index.js vendored
View File

@@ -19233,7 +19233,7 @@ module.exports = {
}, },
features: { features: {
explres: [ -.05, -.03 ], explres: [ -.05, -.03 ],
kinres: [ .17, -.2 ], kinres: [ .17, .2 ],
thermres: [ -.05, -.03 ] thermres: [ -.05, -.03 ]
} }
}, },

2
dist/index.json vendored
View File

@@ -25321,7 +25321,7 @@
], ],
"kinres": [ "kinres": [
0.17, 0.17,
-0.2 0.2
], ],
"thermres": [ "thermres": [
-0.05, -0.05,

View File

@@ -4962,7 +4962,7 @@
}, },
"features": { "features": {
"explres": [ -0.05, -0.03 ], "explres": [ -0.05, -0.03 ],
"kinres": [ 0.17, -0.2 ], "kinres": [ 0.17, 0.2 ],
"thermres": [ -0.05, -0.03 ] "thermres": [ -0.05, -0.03 ]
} }
}, },