@massif/lancer-data 3.1.7 → 4.0.0-beta.2
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/.github/pull_request_template.md +15 -15
- package/.github/workflows/deploy-npm.yml +13 -13
- package/.github/workflows/lcp-version-bump.yml +21 -21
- package/README.md +1373 -1373
- package/index.js +31 -30
- package/lib/actions.json +296 -464
- package/lib/backgrounds.json +221 -221
- package/lib/core_bonuses.json +156 -87
- package/lib/downtime_actions.json +203 -0
- package/lib/frames.json +1844 -1844
- package/lib/glossary.json +157 -157
- package/lib/info.json +7 -7
- package/lib/manufacturers.json +47 -47
- package/lib/mods.json +24 -21
- package/lib/pilot_gear.json +33 -11
- package/lib/rules.json +53 -53
- package/lib/skills.json +155 -155
- package/lib/statuses.json +126 -111
- package/lib/systems.json +191 -61
- package/lib/tables.json +28 -28
- package/lib/tags.json +319 -319
- package/lib/talents.json +1347 -1346
- package/lib/weapons.json +58 -20
- package/package.json +29 -29
- package/scripts/aptitude_export.js +134 -134
- package/scripts/build.js +14 -14
- package/scripts/output/equipment.csv +86 -86
- package/scripts/test.js +19 -19
- package/scripts/util.js +127 -0
- package/scripts/rename.js +0 -74
package/index.js
CHANGED
|
@@ -1,30 +1,31 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
const data = {
|
|
4
|
-
actions: require('./lib/actions.json'),
|
|
5
|
-
backgrounds: require('./lib/backgrounds.json'),
|
|
6
|
-
core_bonuses: require('./lib/core_bonuses.json'),
|
|
7
|
-
environments: require('./lib/environments.json'),
|
|
8
|
-
factions: require('./lib/factions.json'),
|
|
9
|
-
frames: require('./lib/frames.json'),
|
|
10
|
-
glossary: require('./lib/glossary.json'),
|
|
11
|
-
info: require('./lib/info.json'),
|
|
12
|
-
manufacturers: require('./lib/manufacturers.json'),
|
|
13
|
-
mods: require('./lib/mods.json'),
|
|
14
|
-
npc_classes: [],
|
|
15
|
-
npc_features: [],
|
|
16
|
-
npc_templates: [],
|
|
17
|
-
pilot_gear: require('./lib/pilot_gear.json'),
|
|
18
|
-
reserves: require('./lib/reserves.json'),
|
|
19
|
-
rules: require('./lib/rules.json'),
|
|
20
|
-
sitreps: require('./lib/sitreps.json'),
|
|
21
|
-
skills: require('./lib/skills.json'),
|
|
22
|
-
statuses: require('./lib/statuses.json'),
|
|
23
|
-
systems: require('./lib/systems.json'),
|
|
24
|
-
tables: require('./lib/tables.json'),
|
|
25
|
-
tags: require('./lib/tags.json'),
|
|
26
|
-
talents: require('./lib/talents.json'),
|
|
27
|
-
weapons: require('./lib/weapons.json'),
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const data = {
|
|
4
|
+
actions: require('./lib/actions.json'),
|
|
5
|
+
backgrounds: require('./lib/backgrounds.json'),
|
|
6
|
+
core_bonuses: require('./lib/core_bonuses.json'),
|
|
7
|
+
environments: require('./lib/environments.json'),
|
|
8
|
+
factions: require('./lib/factions.json'),
|
|
9
|
+
frames: require('./lib/frames.json'),
|
|
10
|
+
glossary: require('./lib/glossary.json'),
|
|
11
|
+
info: require('./lib/info.json'),
|
|
12
|
+
manufacturers: require('./lib/manufacturers.json'),
|
|
13
|
+
mods: require('./lib/mods.json'),
|
|
14
|
+
npc_classes: [],
|
|
15
|
+
npc_features: [],
|
|
16
|
+
npc_templates: [],
|
|
17
|
+
pilot_gear: require('./lib/pilot_gear.json'),
|
|
18
|
+
reserves: require('./lib/reserves.json'),
|
|
19
|
+
rules: require('./lib/rules.json'),
|
|
20
|
+
sitreps: require('./lib/sitreps.json'),
|
|
21
|
+
skills: require('./lib/skills.json'),
|
|
22
|
+
statuses: require('./lib/statuses.json'),
|
|
23
|
+
systems: require('./lib/systems.json'),
|
|
24
|
+
tables: require('./lib/tables.json'),
|
|
25
|
+
tags: require('./lib/tags.json'),
|
|
26
|
+
talents: require('./lib/talents.json'),
|
|
27
|
+
weapons: require('./lib/weapons.json'),
|
|
28
|
+
downtime_actions: require('./lib/downtime_actions.json'),
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
module.exports = data;
|