@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
|
@@ -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 }}
|