diff --git a/ChangeLog.md b/ChangeLog.md index 8d9b367..2813741 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,7 @@ +#2.2.14 + * Alter blueprint structure to combine components and features + * Make hidden value of modifications its own attribute + #2.2.13 * Add plasma slug special effect for plasma accelerator * Tweak hull costs of ships diff --git a/dist/index.js b/dist/index.js index 4002a6d..e2cc0d2 100644 --- a/dist/index.js +++ b/dist/index.js @@ -19386,7 +19386,8 @@ module.exports = { damagedist: { id: 40, name: "damage", - type: "hidden", + type: "object", + hidden: true, method: "overwrite" }, distdraw: { @@ -19440,7 +19441,8 @@ module.exports = { fallofffromrange: { id: 42, name: "fallofffromrange", - type: "hidden", + type: "numeric", + hidden: true, method: "overwrite" }, hullboost: { diff --git a/dist/index.json b/dist/index.json index 78ca354..64f72ad 100644 --- a/dist/index.json +++ b/dist/index.json @@ -25658,7 +25658,8 @@ "damagedist": { "id": 40, "name": "damage", - "type": "hidden", + "type": "object", + "hidden": true, "method": "overwrite" }, "distdraw": { @@ -25712,7 +25713,8 @@ "fallofffromrange": { "id": 42, "name": "fallofffromrange", - "type": "hidden", + "type": "numeric", + "hidden": true, "method": "overwrite" }, "hullboost": { diff --git a/modifications/modifications.json b/modifications/modifications.json index e792955..99e4485 100644 --- a/modifications/modifications.json +++ b/modifications/modifications.json @@ -6,7 +6,7 @@ "burstrof": {"id": 41, "name": "burstrof", "type": "numeric", "method": "overwrite"}, "clip": {"id": 4, "name": "clip", "type": "percentage", "method": "multiplicative"}, "damage": {"id": 5, "name": "damage", "type": "percentage", "method": "multiplicative"}, - "damagedist": {"id": 40, "name": "damage", "type": "hidden", "method": "overwrite"}, + "damagedist": {"id": 40, "name": "damage", "type": "object", "hidden": true, "method": "overwrite"}, "distdraw": {"id": 6, "name": "distdraw", "type": "percentage", "method": "multiplicative"}, "duration": {"id": 7, "name": "duration", "type": "percentage", "method": "multiplicative"}, "eff": {"id": 8, "name": "eff", "type": "percentage", "method": "multiplicative"}, @@ -15,7 +15,7 @@ "explres": {"id": 11, "name": "explres", "type": "percentage", "method": "additive"}, "facinglimit": {"id": 12, "name": "facinglimit", "type": "percentage", "method": "multiplicative"}, "falloff": {"id": 45, "name": "falloff", "type": "percentage", "method": "multiplicative"}, - "fallofffromrange": {"id": 42, "name": "fallofffromrange", "type": "hidden", "method": "overwrite"}, + "fallofffromrange": {"id": 42, "name": "fallofffromrange", "type": "numeric", "hidden": true, "method": "overwrite"}, "hullboost": {"id": 13, "name": "hullboost", "type": "percentage", "method": "multiplicative"}, "hullreinforcement": {"id": 14, "name": "hullreinforcement", "type": "percentage", "method": "multiplicative"}, "integrity": {"id": 15, "name": "integrity", "type": "percentage", "method": "multiplicative"},