@massif/lancer-data 3.1.2 → 3.1.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 CHANGED
@@ -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.
package/lib/reserves.json CHANGED
@@ -211,9 +211,7 @@
211
211
  "description": "+1 ACCURACY to skill checks made with one skill – HULL, AGILITY, SYSTEMS or ENGINEERING.",
212
212
  "synergies": [
213
213
  {
214
- "locations": [
215
- "hase"
216
- ],
214
+ "locations": ["hase"],
217
215
  "detail": "+1 ACCURACY to skill checks made with one skill – HULL, AGILITY, SYSTEMS or ENGINEERING."
218
216
  }
219
217
  ]
@@ -226,9 +224,7 @@
226
224
  "description": "All weapons of your choice can be fired as if they are SMART.",
227
225
  "synergies": [
228
226
  {
229
- "locations": [
230
- "weapon"
231
- ],
227
+ "locations": ["weapon"],
232
228
  "detail": "All weapons of your choice can be fired as if they are SMART"
233
229
  }
234
230
  ]
@@ -241,9 +237,7 @@
241
237
  "description": "IMMUNITY to the SLOWED condition.",
242
238
  "synergies": [
243
239
  {
244
- "locations": [
245
- "move"
246
- ],
240
+ "locations": ["move"],
247
241
  "detail": "Your mech has IMMUNITY to the SLOWED condition."
248
242
  }
249
243
  ]
@@ -256,9 +250,7 @@
256
250
  "description": "During this mission your mech can FLY when moving, but must end movement on land.",
257
251
  "synergies": [
258
252
  {
259
- "locations": [
260
- "move"
261
- ],
253
+ "locations": ["move"],
262
254
  "detail": "Your mech can FLY when moving, but must end movement on land."
263
255
  }
264
256
  ]
@@ -299,9 +291,7 @@
299
291
  "description": "Training or enhancement that provides +1 ACCURACY to a particular mech skill or action for the duration of this mission.",
300
292
  "synergies": [
301
293
  {
302
- "locations": [
303
- "other"
304
- ],
294
+ "locations": ["other"],
305
295
  "detail": "+1 ACCURACY to a particular mech skill or action for the duration of this mission."
306
296
  }
307
297
  ]
@@ -344,8 +334,12 @@
344
334
  "description": "A custom harness that allows you to carry an extra pilot weapon and two extra pieces of pilot gear for the duration of this mission.",
345
335
  "bonuses": [
346
336
  {
347
- "id": "pilot_gear",
337
+ "id": "pilot_gear_slots",
348
338
  "val": 2
339
+ },
340
+ {
341
+ "id": "pilot_weapon_slots",
342
+ "val": 1
349
343
  }
350
344
  ]
351
345
  },
@@ -370,4 +364,4 @@
370
364
  "label": "Designation",
371
365
  "description": "A non-human person (NHP) – an advanced artificial intelligence – controlled by the GM, that can give you advice on the current situation."
372
366
  }
373
- ]
367
+ ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@massif/lancer-data",
3
- "version": "3.1.2",
3
+ "version": "3.1.4",
4
4
  "description": "Data for the LANCER TTRPG",
5
5
  "main": "index.js",
6
6
  "scripts": {