@massif/lancer-data 4.0.0-beta.18 → 4.0.0-beta.19
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 +21 -21
- package/index.js +31 -31
- package/lib/actions.json +326 -323
- package/lib/backgrounds.json +221 -221
- package/lib/core_bonuses.json +515 -515
- package/lib/downtime_actions.json +203 -203
- package/lib/frames.json +2566 -2566
- package/lib/glossary.json +157 -157
- package/lib/info.json +7 -7
- package/lib/lists.json +28 -28
- package/lib/manufacturers.json +47 -47
- package/lib/mods.json +193 -193
- package/lib/pilot_gear.json +755 -755
- package/lib/reserves.json +424 -424
- package/lib/rules.json +53 -53
- package/lib/skills.json +155 -155
- package/lib/statuses.json +126 -126
- package/lib/systems.json +4211 -4211
- package/lib/tables.json +66 -66
- package/lib/tags.json +335 -335
- package/lib/talents.json +1819 -1819
- package/lib/weapons.json +3039 -3039
- 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 +232 -232
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
# Description
|
|
2
|
-
|
|
3
|
-
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
|
|
4
|
-
|
|
5
|
-
## Issue Number
|
|
6
|
-
`#0000`
|
|
7
|
-
|
|
8
|
-
## Type of change
|
|
9
|
-
|
|
10
|
-
Please delete options that are not relevant.
|
|
11
|
-
|
|
12
|
-
- [ ] Bug fix (non-breaking change which fixes an issue)
|
|
13
|
-
- [ ] New feature (non-breaking change which adds functionality)
|
|
14
|
-
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
|
|
15
|
-
- [ ] This change requires a documentation update
|
|
1
|
+
# Description
|
|
2
|
+
|
|
3
|
+
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
|
|
4
|
+
|
|
5
|
+
## Issue Number
|
|
6
|
+
`#0000`
|
|
7
|
+
|
|
8
|
+
## Type of change
|
|
9
|
+
|
|
10
|
+
Please delete options that are not relevant.
|
|
11
|
+
|
|
12
|
+
- [ ] Bug fix (non-breaking change which fixes an issue)
|
|
13
|
+
- [ ] New feature (non-breaking change which adds functionality)
|
|
14
|
+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
|
|
15
|
+
- [ ] This change requires a documentation update
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
# This workflow will call org-level reusable workflows for deploying an NPM package to npmjs.com.
|
|
2
|
-
|
|
3
|
-
name: Deploy NPM
|
|
4
|
-
|
|
5
|
-
on:
|
|
6
|
-
workflow_dispatch:
|
|
7
|
-
release:
|
|
8
|
-
types: [created]
|
|
9
|
-
|
|
10
|
-
jobs:
|
|
11
|
-
call-npm-publish:
|
|
12
|
-
uses: massif-press/.github/.github/workflows/npm-publish.yml@master
|
|
13
|
-
secrets:
|
|
1
|
+
# This workflow will call org-level reusable workflows for deploying an NPM package to npmjs.com.
|
|
2
|
+
|
|
3
|
+
name: Deploy NPM
|
|
4
|
+
|
|
5
|
+
on:
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
release:
|
|
8
|
+
types: [created]
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
call-npm-publish:
|
|
12
|
+
uses: massif-press/.github/.github/workflows/npm-publish.yml@master
|
|
13
|
+
secrets:
|
|
14
14
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
# This workflow calls an org-level reusable workflow for incrementing LCP and NPM package versions.
|
|
2
|
-
|
|
3
|
-
name: LCP Version Bump
|
|
4
|
-
|
|
5
|
-
on:
|
|
6
|
-
workflow_dispatch:
|
|
7
|
-
inputs:
|
|
8
|
-
version_level:
|
|
9
|
-
description: 'Version level to bump'
|
|
10
|
-
required: true
|
|
11
|
-
default: 'patch'
|
|
12
|
-
type: choice
|
|
13
|
-
options:
|
|
14
|
-
- patch
|
|
15
|
-
- minor
|
|
16
|
-
- major
|
|
17
|
-
|
|
18
|
-
jobs:
|
|
19
|
-
call-bump-version-tag:
|
|
20
|
-
uses: massif-press/.github/.github/workflows/bump-version-tag.yml@master
|
|
21
|
-
with:
|
|
1
|
+
# This workflow calls an org-level reusable workflow for incrementing LCP and NPM package versions.
|
|
2
|
+
|
|
3
|
+
name: LCP Version Bump
|
|
4
|
+
|
|
5
|
+
on:
|
|
6
|
+
workflow_dispatch:
|
|
7
|
+
inputs:
|
|
8
|
+
version_level:
|
|
9
|
+
description: 'Version level to bump'
|
|
10
|
+
required: true
|
|
11
|
+
default: 'patch'
|
|
12
|
+
type: choice
|
|
13
|
+
options:
|
|
14
|
+
- patch
|
|
15
|
+
- minor
|
|
16
|
+
- major
|
|
17
|
+
|
|
18
|
+
jobs:
|
|
19
|
+
call-bump-version-tag:
|
|
20
|
+
uses: massif-press/.github/.github/workflows/bump-version-tag.yml@master
|
|
21
|
+
with:
|
|
22
22
|
version_level: ${{ inputs.version_level }}
|
package/README.md
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
# !! IMPORTANT !!
|
|
2
|
-
|
|
3
|
-
The `lancer-data` npm package is now available under `@massif/lancer-data`. The `lancer-data` package will no longer be updated, and will be removed in the future. Please update your dependencies accordingly. It is published from this repo, so everything else will stay the same otherwise.
|
|
4
|
-
|
|
5
|
-
# About
|
|
6
|
-
|
|
7
|
-
JSON data for Massif Press' LANCER TTRPG
|
|
8
|
-
|
|
9
|
-
# Documentation
|
|
10
|
-
|
|
11
|
-
Documentation is available in the [Repo Wiki](https://github.com/massif-press/lancer-data/wiki).
|
|
12
|
-
|
|
13
|
-
## Adding Content to COMP/CON
|
|
14
|
-
|
|
15
|
-
COMP/CON comes with the Core book data already loaded, but other data (official and otherwise) must be loaded via a Lancer Content Package (.lcp) file, a renamed .zip archive.
|
|
16
|
-
|
|
17
|
-
If you are interested in submitting your content package to be included in the directory within COMP/CON, please check the [LANCER Community Content Packs](#LANCER-Community-Content-Packs) section
|
|
18
|
-
|
|
19
|
-
A working example of custom data can be found [here](https://github.com/massif-press/long-rim-data), in the Long Rim player data repository. Additionally, all item data for the Core book can be found within this repository.
|
|
20
|
-
|
|
21
|
-
If you have any additional questions after reading this document, please contact me at @Beeftime#0558 in the `#comp-con-homebrew` channel on [the official LANCER Discord](https://discord.gg/Qu3C4te)
|
|
1
|
+
# !! IMPORTANT !!
|
|
2
|
+
|
|
3
|
+
The `lancer-data` npm package is now available under `@massif/lancer-data`. The `lancer-data` package will no longer be updated, and will be removed in the future. Please update your dependencies accordingly. It is published from this repo, so everything else will stay the same otherwise.
|
|
4
|
+
|
|
5
|
+
# About
|
|
6
|
+
|
|
7
|
+
JSON data for Massif Press' LANCER TTRPG
|
|
8
|
+
|
|
9
|
+
# Documentation
|
|
10
|
+
|
|
11
|
+
Documentation is available in the [Repo Wiki](https://github.com/massif-press/lancer-data/wiki).
|
|
12
|
+
|
|
13
|
+
## Adding Content to COMP/CON
|
|
14
|
+
|
|
15
|
+
COMP/CON comes with the Core book data already loaded, but other data (official and otherwise) must be loaded via a Lancer Content Package (.lcp) file, a renamed .zip archive.
|
|
16
|
+
|
|
17
|
+
If you are interested in submitting your content package to be included in the directory within COMP/CON, please check the [LANCER Community Content Packs](#LANCER-Community-Content-Packs) section
|
|
18
|
+
|
|
19
|
+
A working example of custom data can be found [here](https://github.com/massif-press/long-rim-data), in the Long Rim player data repository. Additionally, all item data for the Core book can be found within this repository.
|
|
20
|
+
|
|
21
|
+
If you have any additional questions after reading this document, please contact me at @Beeftime#0558 in the `#comp-con-homebrew` channel on [the official LANCER Discord](https://discord.gg/Qu3C4te)
|
package/index.js
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
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
|
-
frames: require('./lib/frames.json'),
|
|
9
|
-
glossary: require('./lib/glossary.json'),
|
|
10
|
-
info: require('./lib/info.json'),
|
|
11
|
-
manufacturers: require('./lib/manufacturers.json'),
|
|
12
|
-
mods: require('./lib/mods.json'),
|
|
13
|
-
npc_classes: [],
|
|
14
|
-
npc_features: [],
|
|
15
|
-
npc_templates: [],
|
|
16
|
-
pilot_gear: require('./lib/pilot_gear.json'),
|
|
17
|
-
reserves: require('./lib/reserves.json'),
|
|
18
|
-
rules: require('./lib/rules.json'),
|
|
19
|
-
sitreps: require('./lib/sitreps.json'),
|
|
20
|
-
skills: require('./lib/skills.json'),
|
|
21
|
-
statuses: require('./lib/statuses.json'),
|
|
22
|
-
systems: require('./lib/systems.json'),
|
|
23
|
-
tables: require('./lib/tables.json'),
|
|
24
|
-
lists: require('./lib/lists.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;
|
|
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
|
+
frames: require('./lib/frames.json'),
|
|
9
|
+
glossary: require('./lib/glossary.json'),
|
|
10
|
+
info: require('./lib/info.json'),
|
|
11
|
+
manufacturers: require('./lib/manufacturers.json'),
|
|
12
|
+
mods: require('./lib/mods.json'),
|
|
13
|
+
npc_classes: [],
|
|
14
|
+
npc_features: [],
|
|
15
|
+
npc_templates: [],
|
|
16
|
+
pilot_gear: require('./lib/pilot_gear.json'),
|
|
17
|
+
reserves: require('./lib/reserves.json'),
|
|
18
|
+
rules: require('./lib/rules.json'),
|
|
19
|
+
sitreps: require('./lib/sitreps.json'),
|
|
20
|
+
skills: require('./lib/skills.json'),
|
|
21
|
+
statuses: require('./lib/statuses.json'),
|
|
22
|
+
systems: require('./lib/systems.json'),
|
|
23
|
+
tables: require('./lib/tables.json'),
|
|
24
|
+
lists: require('./lib/lists.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;
|