mirror of
https://github.com/EDCD/coriolis-data.git
synced 2025-12-09 23:45:34 +00:00
Separate hidden attribute of modifications
This commit is contained in:
@@ -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
|
#2.2.13
|
||||||
* Add plasma slug special effect for plasma accelerator
|
* Add plasma slug special effect for plasma accelerator
|
||||||
* Tweak hull costs of ships
|
* Tweak hull costs of ships
|
||||||
|
|||||||
6
dist/index.js
vendored
6
dist/index.js
vendored
@@ -19386,7 +19386,8 @@ module.exports = {
|
|||||||
damagedist: {
|
damagedist: {
|
||||||
id: 40,
|
id: 40,
|
||||||
name: "damage",
|
name: "damage",
|
||||||
type: "hidden",
|
type: "object",
|
||||||
|
hidden: true,
|
||||||
method: "overwrite"
|
method: "overwrite"
|
||||||
},
|
},
|
||||||
distdraw: {
|
distdraw: {
|
||||||
@@ -19440,7 +19441,8 @@ module.exports = {
|
|||||||
fallofffromrange: {
|
fallofffromrange: {
|
||||||
id: 42,
|
id: 42,
|
||||||
name: "fallofffromrange",
|
name: "fallofffromrange",
|
||||||
type: "hidden",
|
type: "numeric",
|
||||||
|
hidden: true,
|
||||||
method: "overwrite"
|
method: "overwrite"
|
||||||
},
|
},
|
||||||
hullboost: {
|
hullboost: {
|
||||||
|
|||||||
6
dist/index.json
vendored
6
dist/index.json
vendored
@@ -25658,7 +25658,8 @@
|
|||||||
"damagedist": {
|
"damagedist": {
|
||||||
"id": 40,
|
"id": 40,
|
||||||
"name": "damage",
|
"name": "damage",
|
||||||
"type": "hidden",
|
"type": "object",
|
||||||
|
"hidden": true,
|
||||||
"method": "overwrite"
|
"method": "overwrite"
|
||||||
},
|
},
|
||||||
"distdraw": {
|
"distdraw": {
|
||||||
@@ -25712,7 +25713,8 @@
|
|||||||
"fallofffromrange": {
|
"fallofffromrange": {
|
||||||
"id": 42,
|
"id": 42,
|
||||||
"name": "fallofffromrange",
|
"name": "fallofffromrange",
|
||||||
"type": "hidden",
|
"type": "numeric",
|
||||||
|
"hidden": true,
|
||||||
"method": "overwrite"
|
"method": "overwrite"
|
||||||
},
|
},
|
||||||
"hullboost": {
|
"hullboost": {
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
"burstrof": {"id": 41, "name": "burstrof", "type": "numeric", "method": "overwrite"},
|
"burstrof": {"id": 41, "name": "burstrof", "type": "numeric", "method": "overwrite"},
|
||||||
"clip": {"id": 4, "name": "clip", "type": "percentage", "method": "multiplicative"},
|
"clip": {"id": 4, "name": "clip", "type": "percentage", "method": "multiplicative"},
|
||||||
"damage": {"id": 5, "name": "damage", "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"},
|
"distdraw": {"id": 6, "name": "distdraw", "type": "percentage", "method": "multiplicative"},
|
||||||
"duration": {"id": 7, "name": "duration", "type": "percentage", "method": "multiplicative"},
|
"duration": {"id": 7, "name": "duration", "type": "percentage", "method": "multiplicative"},
|
||||||
"eff": {"id": 8, "name": "eff", "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"},
|
"explres": {"id": 11, "name": "explres", "type": "percentage", "method": "additive"},
|
||||||
"facinglimit": {"id": 12, "name": "facinglimit", "type": "percentage", "method": "multiplicative"},
|
"facinglimit": {"id": 12, "name": "facinglimit", "type": "percentage", "method": "multiplicative"},
|
||||||
"falloff": {"id": 45, "name": "falloff", "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"},
|
"hullboost": {"id": 13, "name": "hullboost", "type": "percentage", "method": "multiplicative"},
|
||||||
"hullreinforcement": {"id": 14, "name": "hullreinforcement", "type": "percentage", "method": "multiplicative"},
|
"hullreinforcement": {"id": 14, "name": "hullreinforcement", "type": "percentage", "method": "multiplicative"},
|
||||||
"integrity": {"id": 15, "name": "integrity", "type": "percentage", "method": "multiplicative"},
|
"integrity": {"id": 15, "name": "integrity", "type": "percentage", "method": "multiplicative"},
|
||||||
|
|||||||
Reference in New Issue
Block a user