@massif/lancer-data 3.1.1 → 3.1.3
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/workflows/deploy-npm.yml +14 -0
- package/.github/workflows/lcp-version-bump.yml +22 -0
- package/README.md +3 -1
- package/lib/actions.json +463 -463
- package/lib/frames.json +1844 -1844
- package/lib/glossary.json +157 -157
- package/lib/mods.json +8 -8
- package/lib/reserves.json +7 -17
- package/lib/skills.json +155 -155
- package/lib/statuses.json +110 -110
- package/lib/systems.json +104 -104
- package/lib/weapons.json +56 -56
- package/package.json +3 -2
- package/scripts/test.js +19 -0
|
@@ -0,0 +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:
|
|
14
|
+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
@@ -0,0 +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:
|
|
22
|
+
version_level: ${{ inputs.version_level }}
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# !! IMPORTANT !!
|
|
2
2
|
|
|
3
|
-
The `lancer-data` package is
|
|
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
4
|
|
|
5
5
|
# About
|
|
6
6
|
|
|
@@ -1223,6 +1223,8 @@ The optional type and size parameters will restrict any weapon-related bonus to
|
|
|
1223
1223
|
| `drone_tech_attack` | Add tech attack to all deployed Drones | integer |
|
|
1224
1224
|
| `drone_save` | Add save to all deployed Drones | integer |
|
|
1225
1225
|
| `drone_speed` | Add speed to all deployed Drones | integer |
|
|
1226
|
+
| `pilot_gear_slots` | Increase Pilot Gear capacity | integer |
|
|
1227
|
+
| `pilot_weapon_slots` | Increase Pilot Weapon capacity | integer |
|
|
1226
1228
|
|
|
1227
1229
|
The `overwrite` flag will _overwrite_ any integer value bonus with the highest bonus of the same type from any source that has an `overwrite` flag. Which is to say: all applicable bonuses of that bonus ID will be collected and everything will be discarded _except for_ the bonus of the highest value _that has an `overwrite` flag_.
|
|
1228
1230
|
Eg: a mech with items that give +4, +2, +3 (overwrite) and +2 (overwrite) AI Cap will result in a +3 AI Cap bonus.
|