5etools-utils 0.12.20 → 0.12.22

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "5etools-utils",
3
- "version": "0.12.20",
3
+ "version": "0.12.22",
4
4
  "description": "Shared utilities for the 5etools ecosystem.",
5
5
  "type": "module",
6
6
  "main": "lib/Api.js",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "feats.json",
4
- "version": "1.6.4",
4
+ "version": "1.6.5",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "featData": {
@@ -92,6 +92,20 @@
92
92
  "conditionImmune": {
93
93
  "$ref": "util.json#/$defs/conditionImmunityArrayPlayer"
94
94
  },
95
+ "traitTags": {
96
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
97
+ "oneOf": [
98
+ {
99
+ "type": "array",
100
+ "items": {
101
+ "$ref": "util.json#/$defs/traitTagCharacter"
102
+ }
103
+ },
104
+ {
105
+ "type": "null"
106
+ }
107
+ ]
108
+ },
95
109
  "hasFluff": {
96
110
  "const": true
97
111
  },
@@ -207,6 +221,20 @@
207
221
  "conditionImmune": {
208
222
  "$ref": "util.json#/$defs/conditionImmunityArrayPlayer"
209
223
  },
224
+ "traitTags": {
225
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
226
+ "oneOf": [
227
+ {
228
+ "type": "array",
229
+ "items": {
230
+ "$ref": "util.json#/$defs/traitTagCharacter"
231
+ }
232
+ },
233
+ {
234
+ "type": "null"
235
+ }
236
+ ]
237
+ },
210
238
  "hasFluff": {
211
239
  "const": true
212
240
  },
@@ -325,6 +353,20 @@
325
353
  "conditionImmune": {
326
354
  "$ref": "util.json#/$defs/conditionImmunityArrayPlayer"
327
355
  },
356
+ "traitTags": {
357
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
358
+ "oneOf": [
359
+ {
360
+ "type": "array",
361
+ "items": {
362
+ "$ref": "util.json#/$defs/traitTagCharacter"
363
+ }
364
+ },
365
+ {
366
+ "type": "null"
367
+ }
368
+ ]
369
+ },
328
370
  "hasFluff": {
329
371
  "const": true
330
372
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "magicvariants.json",
4
- "version": "1.8.19",
4
+ "version": "1.8.20",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "_magicvariantItemBase": {
@@ -112,6 +112,7 @@
112
112
  }
113
113
  }
114
114
  },
115
+ "minProperties": 1,
115
116
  "additionalProperties": false
116
117
  }
117
118
  },
@@ -479,6 +480,7 @@
479
480
  "$ref": "items-shared.json#/$defs/customProperties"
480
481
  }
481
482
  },
483
+ "minProperties": 1,
482
484
  "additionalProperties": false
483
485
  },
484
486
  "noDisplay": {
@@ -644,6 +646,7 @@
644
646
  }
645
647
  }
646
648
  },
649
+ "minProperties": 1,
647
650
  "additionalProperties": false
648
651
  }
649
652
  },
@@ -1016,6 +1019,7 @@
1016
1019
  "$ref": "items-shared.json#/$defs/customProperties"
1017
1020
  }
1018
1021
  },
1022
+ "minProperties": 1,
1019
1023
  "additionalProperties": false
1020
1024
  },
1021
1025
  "noDisplay": {
@@ -1186,6 +1190,7 @@
1186
1190
  }
1187
1191
  }
1188
1192
  },
1193
+ "minProperties": 1,
1189
1194
  "additionalProperties": false
1190
1195
  }
1191
1196
  },
@@ -1557,6 +1562,7 @@
1557
1562
  "$ref": "items-shared.json#/$defs/customProperties"
1558
1563
  }
1559
1564
  },
1565
+ "minProperties": 1,
1560
1566
  "additionalProperties": false
1561
1567
  },
1562
1568
  "noDisplay": {
@@ -63,6 +63,7 @@
63
63
  "$ref": "util.json#/$defs/additionalFeatsArray"
64
64
  },
65
65
  "traitTags": {
66
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
66
67
  "oneOf": [
67
68
  {
68
69
  "type": "array",
@@ -307,6 +308,7 @@
307
308
  "$ref": "util.json#/$defs/additionalFeatsArray"
308
309
  },
309
310
  "traitTags": {
311
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
310
312
  "oneOf": [
311
313
  {
312
314
  "type": "array",
@@ -508,23 +510,14 @@
508
510
  "traitTag": {
509
511
  "oneOf": [
510
512
  {
511
- "$ref": "util.json#/$defs/proficiencyTag"
513
+ "$ref": "util.json#/$defs/traitTagCharacter"
512
514
  },
513
515
  {
514
516
  "type": "string",
515
517
  "enum": [
516
- "Amphibious",
517
518
  "Dragonmark",
518
- "Improved Resting",
519
- "Magic Resistance",
520
519
  "Monstrous Race",
521
- "Natural Armor",
522
- "Natural Weapon",
523
520
  "NPC Race",
524
- "Powerful Build",
525
- "Skill Bonus Dice",
526
- "Sunlight Sensitivity",
527
- "Tool Bonus Dice",
528
521
  "Uncommon Race"
529
522
  ]
530
523
  }
@@ -642,6 +635,7 @@
642
635
  "$ref": "util.json#/$defs/additionalFeatsArray"
643
636
  },
644
637
  "traitTags": {
638
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
645
639
  "oneOf": [
646
640
  {
647
641
  "type": "array",
@@ -890,6 +884,7 @@
890
884
  "$ref": "util.json#/$defs/additionalFeatsArray"
891
885
  },
892
886
  "traitTags": {
887
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
893
888
  "oneOf": [
894
889
  {
895
890
  "type": "array",
@@ -1144,6 +1139,7 @@
1144
1139
  "$ref": "util.json#/$defs/additionalFeatsArray"
1145
1140
  },
1146
1141
  "traitTags": {
1142
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
1147
1143
  "oneOf": [
1148
1144
  {
1149
1145
  "type": "array",
@@ -1404,6 +1400,7 @@
1404
1400
  "$ref": "util.json#/$defs/additionalFeatsArray"
1405
1401
  },
1406
1402
  "traitTags": {
1403
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
1407
1404
  "oneOf": [
1408
1405
  {
1409
1406
  "type": "array",
@@ -3,7 +3,7 @@
3
3
  "$id": "util.json",
4
4
  "title": "Util",
5
5
  "description": "Utility definitions to be used in other schemas.",
6
- "version": "1.17.0",
6
+ "version": "1.17.1",
7
7
  "$defs": {
8
8
  "metaDependenciesArray": {
9
9
  "type": "array",
@@ -1644,6 +1644,30 @@
1644
1644
  "Language Proficiency"
1645
1645
  ]
1646
1646
  },
1647
+ "traitTagCharacter": {
1648
+ "oneOf": [
1649
+ {
1650
+ "$ref": "util.json#/$defs/proficiencyTag"
1651
+ },
1652
+ {
1653
+ "type": "string",
1654
+ "enum": [
1655
+ "Amphibious",
1656
+ "Improved Resting",
1657
+ "Magic Resistance",
1658
+ "Natural Armor",
1659
+ "Natural Weapon",
1660
+ "Powerful Build",
1661
+ "Skill Bonus Dice",
1662
+ "Sunlight Sensitivity",
1663
+ "Tool Bonus Dice",
1664
+ "Damage Resistance",
1665
+ "Damage Immunity",
1666
+ "Condition Immunity"
1667
+ ]
1668
+ }
1669
+ ]
1670
+ },
1647
1671
  "_speedVal": {
1648
1672
  "oneOf": [
1649
1673
  {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "feats.json",
4
- "version": "1.6.4",
4
+ "version": "1.6.5",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "featData": {
@@ -92,6 +92,20 @@
92
92
  "conditionImmune": {
93
93
  "$ref": "util.json#/$defs/conditionImmunityArrayPlayer"
94
94
  },
95
+ "traitTags": {
96
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
97
+ "oneOf": [
98
+ {
99
+ "type": "array",
100
+ "items": {
101
+ "$ref": "util.json#/$defs/traitTagCharacter"
102
+ }
103
+ },
104
+ {
105
+ "type": "null"
106
+ }
107
+ ]
108
+ },
95
109
  "hasFluff": {
96
110
  "const": true
97
111
  },
@@ -207,6 +221,20 @@
207
221
  "conditionImmune": {
208
222
  "$ref": "util.json#/$defs/conditionImmunityArrayPlayer"
209
223
  },
224
+ "traitTags": {
225
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
226
+ "oneOf": [
227
+ {
228
+ "type": "array",
229
+ "items": {
230
+ "$ref": "util.json#/$defs/traitTagCharacter"
231
+ }
232
+ },
233
+ {
234
+ "type": "null"
235
+ }
236
+ ]
237
+ },
210
238
  "hasFluff": {
211
239
  "const": true
212
240
  },
@@ -325,6 +353,20 @@
325
353
  "conditionImmune": {
326
354
  "$ref": "util.json#/$defs/conditionImmunityArrayPlayer"
327
355
  },
356
+ "traitTags": {
357
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
358
+ "oneOf": [
359
+ {
360
+ "type": "array",
361
+ "items": {
362
+ "$ref": "util.json#/$defs/traitTagCharacter"
363
+ }
364
+ },
365
+ {
366
+ "type": "null"
367
+ }
368
+ ]
369
+ },
328
370
  "hasFluff": {
329
371
  "const": true
330
372
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "magicvariants.json",
4
- "version": "1.8.19",
4
+ "version": "1.8.20",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "_magicvariantItemBase": {
@@ -112,6 +112,7 @@
112
112
  }
113
113
  }
114
114
  },
115
+ "minProperties": 1,
115
116
  "additionalProperties": false
116
117
  }
117
118
  },
@@ -479,6 +480,7 @@
479
480
  "$ref": "items-shared.json#/$defs/customProperties"
480
481
  }
481
482
  },
483
+ "minProperties": 1,
482
484
  "additionalProperties": false
483
485
  },
484
486
  "noDisplay": {
@@ -644,6 +646,7 @@
644
646
  }
645
647
  }
646
648
  },
649
+ "minProperties": 1,
647
650
  "additionalProperties": false
648
651
  }
649
652
  },
@@ -1016,6 +1019,7 @@
1016
1019
  "$ref": "items-shared.json#/$defs/customProperties"
1017
1020
  }
1018
1021
  },
1022
+ "minProperties": 1,
1019
1023
  "additionalProperties": false
1020
1024
  },
1021
1025
  "noDisplay": {
@@ -1186,6 +1190,7 @@
1186
1190
  }
1187
1191
  }
1188
1192
  },
1193
+ "minProperties": 1,
1189
1194
  "additionalProperties": false
1190
1195
  }
1191
1196
  },
@@ -1557,6 +1562,7 @@
1557
1562
  "$ref": "items-shared.json#/$defs/customProperties"
1558
1563
  }
1559
1564
  },
1565
+ "minProperties": 1,
1560
1566
  "additionalProperties": false
1561
1567
  },
1562
1568
  "noDisplay": {
@@ -63,6 +63,7 @@
63
63
  "$ref": "util.json#/$defs/additionalFeatsArray"
64
64
  },
65
65
  "traitTags": {
66
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
66
67
  "oneOf": [
67
68
  {
68
69
  "type": "array",
@@ -307,6 +308,7 @@
307
308
  "$ref": "util.json#/$defs/additionalFeatsArray"
308
309
  },
309
310
  "traitTags": {
311
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
310
312
  "oneOf": [
311
313
  {
312
314
  "type": "array",
@@ -508,23 +510,14 @@
508
510
  "traitTag": {
509
511
  "oneOf": [
510
512
  {
511
- "$ref": "util.json#/$defs/proficiencyTag"
513
+ "$ref": "util.json#/$defs/traitTagCharacter"
512
514
  },
513
515
  {
514
516
  "type": "string",
515
517
  "enum": [
516
- "Amphibious",
517
518
  "Dragonmark",
518
- "Improved Resting",
519
- "Magic Resistance",
520
519
  "Monstrous Race",
521
- "Natural Armor",
522
- "Natural Weapon",
523
520
  "NPC Race",
524
- "Powerful Build",
525
- "Skill Bonus Dice",
526
- "Sunlight Sensitivity",
527
- "Tool Bonus Dice",
528
521
  "Uncommon Race"
529
522
  ]
530
523
  }
@@ -642,6 +635,7 @@
642
635
  "$ref": "util.json#/$defs/additionalFeatsArray"
643
636
  },
644
637
  "traitTags": {
638
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
645
639
  "oneOf": [
646
640
  {
647
641
  "type": "array",
@@ -890,6 +884,7 @@
890
884
  "$ref": "util.json#/$defs/additionalFeatsArray"
891
885
  },
892
886
  "traitTags": {
887
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
893
888
  "oneOf": [
894
889
  {
895
890
  "type": "array",
@@ -1144,6 +1139,7 @@
1144
1139
  "$ref": "util.json#/$defs/additionalFeatsArray"
1145
1140
  },
1146
1141
  "traitTags": {
1142
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
1147
1143
  "oneOf": [
1148
1144
  {
1149
1145
  "type": "array",
@@ -1404,6 +1400,7 @@
1404
1400
  "$ref": "util.json#/$defs/additionalFeatsArray"
1405
1401
  },
1406
1402
  "traitTags": {
1403
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
1407
1404
  "oneOf": [
1408
1405
  {
1409
1406
  "type": "array",
@@ -3,7 +3,7 @@
3
3
  "$id": "util.json",
4
4
  "title": "Util",
5
5
  "description": "Utility definitions to be used in other schemas.",
6
- "version": "1.17.0",
6
+ "version": "1.17.1",
7
7
  "$defs": {
8
8
  "metaDependenciesArray": {
9
9
  "type": "array",
@@ -1644,6 +1644,30 @@
1644
1644
  "Language Proficiency"
1645
1645
  ]
1646
1646
  },
1647
+ "traitTagCharacter": {
1648
+ "oneOf": [
1649
+ {
1650
+ "$ref": "util.json#/$defs/proficiencyTag"
1651
+ },
1652
+ {
1653
+ "type": "string",
1654
+ "enum": [
1655
+ "Amphibious",
1656
+ "Improved Resting",
1657
+ "Magic Resistance",
1658
+ "Natural Armor",
1659
+ "Natural Weapon",
1660
+ "Powerful Build",
1661
+ "Skill Bonus Dice",
1662
+ "Sunlight Sensitivity",
1663
+ "Tool Bonus Dice",
1664
+ "Damage Resistance",
1665
+ "Damage Immunity",
1666
+ "Condition Immunity"
1667
+ ]
1668
+ }
1669
+ ]
1670
+ },
1647
1671
  "_speedVal": {
1648
1672
  "oneOf": [
1649
1673
  {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "feats.json",
4
- "version": "1.6.4",
4
+ "version": "1.6.5",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "featData": {
@@ -92,6 +92,20 @@
92
92
  "conditionImmune": {
93
93
  "$ref": "util.json#/$defs/conditionImmunityArrayPlayer"
94
94
  },
95
+ "traitTags": {
96
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
97
+ "oneOf": [
98
+ {
99
+ "type": "array",
100
+ "items": {
101
+ "$ref": "util.json#/$defs/traitTagCharacter"
102
+ }
103
+ },
104
+ {
105
+ "type": "null"
106
+ }
107
+ ]
108
+ },
95
109
  "hasFluff": {
96
110
  "const": true
97
111
  },
@@ -191,6 +205,20 @@
191
205
  "conditionImmune": {
192
206
  "$ref": "util.json#/$defs/conditionImmunityArrayPlayer"
193
207
  },
208
+ "traitTags": {
209
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
210
+ "oneOf": [
211
+ {
212
+ "type": "array",
213
+ "items": {
214
+ "$ref": "util.json#/$defs/traitTagCharacter"
215
+ }
216
+ },
217
+ {
218
+ "type": "null"
219
+ }
220
+ ]
221
+ },
194
222
  "hasFluff": {
195
223
  "const": true
196
224
  },
@@ -293,6 +321,20 @@
293
321
  "conditionImmune": {
294
322
  "$ref": "util.json#/$defs/conditionImmunityArrayPlayer"
295
323
  },
324
+ "traitTags": {
325
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
326
+ "oneOf": [
327
+ {
328
+ "type": "array",
329
+ "items": {
330
+ "$ref": "util.json#/$defs/traitTagCharacter"
331
+ }
332
+ },
333
+ {
334
+ "type": "null"
335
+ }
336
+ ]
337
+ },
296
338
  "hasFluff": {
297
339
  "const": true
298
340
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "magicvariants.json",
4
- "version": "1.8.19",
4
+ "version": "1.8.20",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "_magicvariantItemBase": {
@@ -103,6 +103,7 @@
103
103
  "$ref": "items-shared.json#/$defs/itemWeaponCategory"
104
104
  }
105
105
  },
106
+ "minProperties": 1,
106
107
  "additionalProperties": false
107
108
  }
108
109
  },
@@ -453,6 +454,7 @@
453
454
  "$ref": "items-shared.json#/$defs/itemWeaponCategory"
454
455
  }
455
456
  },
457
+ "minProperties": 1,
456
458
  "additionalProperties": false
457
459
  },
458
460
  "noDisplay": {
@@ -591,6 +593,7 @@
591
593
  "$ref": "items-shared.json#/$defs/itemWeaponCategory"
592
594
  }
593
595
  },
596
+ "minProperties": 1,
594
597
  "additionalProperties": false
595
598
  }
596
599
  },
@@ -946,6 +949,7 @@
946
949
  "$ref": "items-shared.json#/$defs/itemWeaponCategory"
947
950
  }
948
951
  },
952
+ "minProperties": 1,
949
953
  "additionalProperties": false
950
954
  },
951
955
  "noDisplay": {
@@ -1089,6 +1093,7 @@
1089
1093
  "$ref": "items-shared.json#/$defs/itemWeaponCategory"
1090
1094
  }
1091
1095
  },
1096
+ "minProperties": 1,
1092
1097
  "additionalProperties": false
1093
1098
  }
1094
1099
  },
@@ -1443,6 +1448,7 @@
1443
1448
  "$ref": "items-shared.json#/$defs/itemWeaponCategory"
1444
1449
  }
1445
1450
  },
1451
+ "minProperties": 1,
1446
1452
  "additionalProperties": false
1447
1453
  },
1448
1454
  "noDisplay": {
@@ -63,6 +63,7 @@
63
63
  "$ref": "util.json#/$defs/additionalFeatsArray"
64
64
  },
65
65
  "traitTags": {
66
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
66
67
  "oneOf": [
67
68
  {
68
69
  "type": "array",
@@ -292,6 +293,7 @@
292
293
  "$ref": "util.json#/$defs/additionalFeatsArray"
293
294
  },
294
295
  "traitTags": {
296
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
295
297
  "oneOf": [
296
298
  {
297
299
  "type": "array",
@@ -478,23 +480,14 @@
478
480
  "traitTag": {
479
481
  "oneOf": [
480
482
  {
481
- "$ref": "util.json#/$defs/proficiencyTag"
483
+ "$ref": "util.json#/$defs/traitTagCharacter"
482
484
  },
483
485
  {
484
486
  "type": "string",
485
487
  "enum": [
486
- "Amphibious",
487
488
  "Dragonmark",
488
- "Improved Resting",
489
- "Magic Resistance",
490
489
  "Monstrous Race",
491
- "Natural Armor",
492
- "Natural Weapon",
493
490
  "NPC Race",
494
- "Powerful Build",
495
- "Skill Bonus Dice",
496
- "Sunlight Sensitivity",
497
- "Tool Bonus Dice",
498
491
  "Uncommon Race"
499
492
  ]
500
493
  }
@@ -612,6 +605,7 @@
612
605
  "$ref": "util.json#/$defs/additionalFeatsArray"
613
606
  },
614
607
  "traitTags": {
608
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
615
609
  "oneOf": [
616
610
  {
617
611
  "type": "array",
@@ -845,6 +839,7 @@
845
839
  "$ref": "util.json#/$defs/additionalFeatsArray"
846
840
  },
847
841
  "traitTags": {
842
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
848
843
  "oneOf": [
849
844
  {
850
845
  "type": "array",
@@ -1084,6 +1079,7 @@
1084
1079
  "$ref": "util.json#/$defs/additionalFeatsArray"
1085
1080
  },
1086
1081
  "traitTags": {
1082
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
1087
1083
  "oneOf": [
1088
1084
  {
1089
1085
  "type": "array",
@@ -1328,6 +1324,7 @@
1328
1324
  "$ref": "util.json#/$defs/additionalFeatsArray"
1329
1325
  },
1330
1326
  "traitTags": {
1327
+ "description": "Additional filter-only tags, to be used when more specific data (\"skillProficiencies\", etc.) is not appropriate, due to e.g. conditional or temporary effects.",
1331
1328
  "oneOf": [
1332
1329
  {
1333
1330
  "type": "array",