@massif/lancer-data 4.0.0-beta.2 → 4.0.0-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -6
- package/index.js +0 -1
- package/lib/core_bonuses.json +218 -140
- package/lib/frames.json +948 -195
- package/lib/info.json +2 -3
- package/lib/lists.json +28 -0
- package/lib/mods.json +47 -35
- package/lib/pilot_gear.json +38 -74
- package/lib/reserves.json +80 -11
- package/lib/systems.json +905 -327
- package/lib/tables.json +68 -28
- package/lib/tags.json +22 -6
- package/lib/talents.json +609 -86
- package/lib/weapons.json +152 -144
- package/package.json +1 -1
- package/scripts/util.js +110 -5
- package/lib/factions.json +0 -1
package/README.md
CHANGED
|
@@ -190,6 +190,7 @@ C/C will try to calculate the heat cost of item actions based on item tags, but
|
|
|
190
190
|
"skills"?: string[] // Use ids from skills.json
|
|
191
191
|
}
|
|
192
192
|
```
|
|
193
|
+
|
|
193
194
|
The `skills` field is an optional array of skill IDs from `skills.json`, used to present example skill triggers for a background. Upon selection of a background, if a pilot currently has no skill trigger points assigned, C/C will attempt to auto-populate the pilot with 1 point in each of the example skill triggers.
|
|
194
195
|
|
|
195
196
|
# CORE Bonuses (core_bonuses.json)
|
|
@@ -226,10 +227,6 @@ Many of the CORE Bonus effects are hardcoded, which is something to keep in mind
|
|
|
226
227
|
}
|
|
227
228
|
```
|
|
228
229
|
|
|
229
|
-
# Factions (factions.json)
|
|
230
|
-
|
|
231
|
-
FACTIONS are an upcoming feature that is not yet implemented within COMP/CON. This document will be updated when that changes.
|
|
232
|
-
|
|
233
230
|
# Frames (frames.json)
|
|
234
231
|
|
|
235
232
|
```ts
|
|
@@ -834,7 +831,7 @@ Note that, aside from the `name` field, all fields on a profile are optional. If
|
|
|
834
831
|
"profiles": [{
|
|
835
832
|
"name": "Profile A",
|
|
836
833
|
"damage": [{
|
|
837
|
-
"type": "
|
|
834
|
+
"type": "Kinetic",
|
|
838
835
|
"val": "1d6"
|
|
839
836
|
}],
|
|
840
837
|
"range": [{
|
|
@@ -855,7 +852,7 @@ Note that, aside from the `name` field, all fields on a profile are optional. If
|
|
|
855
852
|
{
|
|
856
853
|
"name": "Profile B",
|
|
857
854
|
"damage": [{
|
|
858
|
-
"type": "
|
|
855
|
+
"type": "Kinetic",
|
|
859
856
|
"val": 10
|
|
860
857
|
}],
|
|
861
858
|
"range": [{
|
package/index.js
CHANGED
|
@@ -5,7 +5,6 @@ const data = {
|
|
|
5
5
|
backgrounds: require('./lib/backgrounds.json'),
|
|
6
6
|
core_bonuses: require('./lib/core_bonuses.json'),
|
|
7
7
|
environments: require('./lib/environments.json'),
|
|
8
|
-
factions: require('./lib/factions.json'),
|
|
9
8
|
frames: require('./lib/frames.json'),
|
|
10
9
|
glossary: require('./lib/glossary.json'),
|
|
11
10
|
info: require('./lib/info.json'),
|