5etools-utils 0.9.50 → 0.9.52

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.
Files changed (37) hide show
  1. package/package.json +1 -1
  2. package/schema/brew/adventures.json +3 -2
  3. package/schema/brew/entry.json +7 -1
  4. package/schema/brew/items-base.json +25 -1
  5. package/schema/brew/items-shared.json +6 -1
  6. package/schema/brew/magicvariants.json +13 -1
  7. package/schema/brew/spells/spells.json +34 -28
  8. package/schema/brew-fast/adventures.json +3 -2
  9. package/schema/brew-fast/entry.json +7 -1
  10. package/schema/brew-fast/items-base.json +25 -1
  11. package/schema/brew-fast/items-shared.json +6 -1
  12. package/schema/brew-fast/magicvariants.json +13 -1
  13. package/schema/brew-fast/spells/spells.json +34 -28
  14. package/schema/site/adventures.json +3 -2
  15. package/schema/site/entry.json +7 -1
  16. package/schema/site/items-base.json +25 -1
  17. package/schema/site/items-shared.json +6 -1
  18. package/schema/site/magicvariants.json +13 -1
  19. package/schema/site/spells/spells.json +34 -1
  20. package/schema/site-fast/adventures.json +3 -2
  21. package/schema/site-fast/entry.json +7 -1
  22. package/schema/site-fast/items-base.json +25 -1
  23. package/schema/site-fast/items-shared.json +6 -1
  24. package/schema/site-fast/magicvariants.json +13 -1
  25. package/schema/site-fast/spells/spells.json +34 -1
  26. package/schema/ua/adventures.json +3 -2
  27. package/schema/ua/entry.json +7 -1
  28. package/schema/ua/items-base.json +25 -1
  29. package/schema/ua/items-shared.json +6 -1
  30. package/schema/ua/magicvariants.json +13 -1
  31. package/schema/ua/spells/spells.json +34 -28
  32. package/schema/ua-fast/adventures.json +3 -2
  33. package/schema/ua-fast/entry.json +7 -1
  34. package/schema/ua-fast/items-base.json +25 -1
  35. package/schema/ua-fast/items-shared.json +6 -1
  36. package/schema/ua-fast/magicvariants.json +13 -1
  37. package/schema/ua-fast/spells/spells.json +34 -28
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "spells.json",
4
- "version": "1.9.9",
4
+ "version": "1.9.10",
5
5
  "title": "Spells",
6
6
  "type": "object",
7
7
  "$defs": {
@@ -17,6 +17,17 @@
17
17
  "school": {
18
18
  "$ref": "../util.json#/$defs/spellSchool"
19
19
  },
20
+ "subschools": {
21
+ "type": "array",
22
+ "items": {
23
+ "type": "string",
24
+ "enum": [
25
+ "contaminated"
26
+ ]
27
+ },
28
+ "minItems": 1,
29
+ "uniqueItems": true
30
+ },
20
31
  "meta": {
21
32
  "type": "object",
22
33
  "properties": {
@@ -341,6 +352,17 @@
341
352
  "school": {
342
353
  "$ref": "../util.json#/$defs/spellSchool"
343
354
  },
355
+ "subschools": {
356
+ "type": "array",
357
+ "items": {
358
+ "type": "string",
359
+ "enum": [
360
+ "contaminated"
361
+ ]
362
+ },
363
+ "minItems": 1,
364
+ "uniqueItems": true
365
+ },
344
366
  "meta": {
345
367
  "type": "object",
346
368
  "properties": {
@@ -673,6 +695,17 @@
673
695
  "school": {
674
696
  "$ref": "../util.json#/$defs/spellSchool"
675
697
  },
698
+ "subschools": {
699
+ "type": "array",
700
+ "items": {
701
+ "type": "string",
702
+ "enum": [
703
+ "contaminated"
704
+ ]
705
+ },
706
+ "minItems": 1,
707
+ "uniqueItems": true
708
+ },
676
709
  "meta": {
677
710
  "type": "object",
678
711
  "properties": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "adventures.json",
4
- "version": "1.10.16",
4
+ "version": "1.10.17",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "adventure": {
@@ -199,7 +199,8 @@
199
199
  "Adventure Atlas",
200
200
  "Heroes' Feast",
201
201
  "Family Friendly",
202
- "Grim Hollow"
202
+ "Grim Hollow",
203
+ "Drakkenheim"
203
204
  ]
204
205
  }
205
206
  },
@@ -3,7 +3,7 @@
3
3
  "$id": "entry.json",
4
4
  "title": "Entry",
5
5
  "description": "A recursively renderable object.",
6
- "version": "1.8.15",
6
+ "version": "1.8.16",
7
7
  "$defs": {
8
8
  "_arrayOfSpell": {
9
9
  "type": "array",
@@ -257,6 +257,12 @@
257
257
  },
258
258
  "skipItalics": {
259
259
  "type": "boolean"
260
+ },
261
+ "style": {
262
+ "type": "string",
263
+ "enum": [
264
+ "quote-pull"
265
+ ]
260
266
  }
261
267
  },
262
268
  "required": [
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "items-base.json",
4
- "version": "1.5.15",
4
+ "version": "1.5.16",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "itemLookupBase": {
@@ -216,6 +216,14 @@
216
216
  "description": "Flag used when merging generic variants",
217
217
  "type": "boolean"
218
218
  },
219
+ "arrow": {
220
+ "description": "Flag used when merging generic variants",
221
+ "type": "boolean"
222
+ },
223
+ "bolt": {
224
+ "description": "Flag used when merging generic variants",
225
+ "type": "boolean"
226
+ },
219
227
  "weapon": {
220
228
  "description": "Flag used when merging generic variants",
221
229
  "type": "boolean"
@@ -469,6 +477,14 @@
469
477
  "description": "Flag used when merging generic variants",
470
478
  "type": "boolean"
471
479
  },
480
+ "arrow": {
481
+ "description": "Flag used when merging generic variants",
482
+ "type": "boolean"
483
+ },
484
+ "bolt": {
485
+ "description": "Flag used when merging generic variants",
486
+ "type": "boolean"
487
+ },
472
488
  "weapon": {
473
489
  "description": "Flag used when merging generic variants",
474
490
  "type": "boolean"
@@ -726,6 +742,14 @@
726
742
  "description": "Flag used when merging generic variants",
727
743
  "type": "boolean"
728
744
  },
745
+ "arrow": {
746
+ "description": "Flag used when merging generic variants",
747
+ "type": "boolean"
748
+ },
749
+ "bolt": {
750
+ "description": "Flag used when merging generic variants",
751
+ "type": "boolean"
752
+ },
729
753
  "weapon": {
730
754
  "description": "Flag used when merging generic variants",
731
755
  "type": "boolean"
@@ -3,7 +3,7 @@
3
3
  "$id": "items-shared.json",
4
4
  "title": "Shared Item Schema",
5
5
  "description": "Shared item definitions to be used in item schemas.",
6
- "version": "1.0.5",
6
+ "version": "1.0.6",
7
7
  "$defs": {
8
8
  "_itemModifySpeedEqual": {
9
9
  "type": "string",
@@ -139,6 +139,11 @@
139
139
  "dawn",
140
140
  "dusk",
141
141
  "midnight",
142
+ "week",
143
+ "month",
144
+ "year",
145
+ "decade",
146
+ "century",
142
147
  "special"
143
148
  ]
144
149
  },
@@ -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.12",
4
+ "version": "1.8.13",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "magicvariant": {
@@ -88,6 +88,12 @@
88
88
  "polearm": {
89
89
  "type": "boolean"
90
90
  },
91
+ "arrow": {
92
+ "type": "boolean"
93
+ },
94
+ "bolt": {
95
+ "type": "boolean"
96
+ },
91
97
  "weaponCategory": {
92
98
  "$ref": "items-shared.json#/$defs/itemWeaponCategory"
93
99
  }
@@ -416,6 +422,12 @@
416
422
  "polearm": {
417
423
  "type": "boolean"
418
424
  },
425
+ "arrow": {
426
+ "type": "boolean"
427
+ },
428
+ "bolt": {
429
+ "type": "boolean"
430
+ },
419
431
  "weaponCategory": {
420
432
  "$ref": "items-shared.json#/$defs/itemWeaponCategory"
421
433
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "spells.json",
4
- "version": "1.9.9",
4
+ "version": "1.9.10",
5
5
  "title": "Spells",
6
6
  "type": "object",
7
7
  "$defs": {
@@ -17,6 +17,17 @@
17
17
  "school": {
18
18
  "$ref": "../util.json#/$defs/spellSchool"
19
19
  },
20
+ "subschools": {
21
+ "type": "array",
22
+ "items": {
23
+ "type": "string",
24
+ "enum": [
25
+ "contaminated"
26
+ ]
27
+ },
28
+ "minItems": 1,
29
+ "uniqueItems": true
30
+ },
20
31
  "meta": {
21
32
  "type": "object",
22
33
  "properties": {
@@ -341,6 +352,17 @@
341
352
  "school": {
342
353
  "$ref": "../util.json#/$defs/spellSchool"
343
354
  },
355
+ "subschools": {
356
+ "type": "array",
357
+ "items": {
358
+ "type": "string",
359
+ "enum": [
360
+ "contaminated"
361
+ ]
362
+ },
363
+ "minItems": 1,
364
+ "uniqueItems": true
365
+ },
344
366
  "meta": {
345
367
  "type": "object",
346
368
  "properties": {
@@ -673,6 +695,17 @@
673
695
  "school": {
674
696
  "$ref": "../util.json#/$defs/spellSchool"
675
697
  },
698
+ "subschools": {
699
+ "type": "array",
700
+ "items": {
701
+ "type": "string",
702
+ "enum": [
703
+ "contaminated"
704
+ ]
705
+ },
706
+ "minItems": 1,
707
+ "uniqueItems": true
708
+ },
676
709
  "meta": {
677
710
  "type": "object",
678
711
  "properties": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "adventures.json",
4
- "version": "1.10.16",
4
+ "version": "1.10.17",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "adventure": {
@@ -199,7 +199,8 @@
199
199
  "Adventure Atlas",
200
200
  "Heroes' Feast",
201
201
  "Family Friendly",
202
- "Grim Hollow"
202
+ "Grim Hollow",
203
+ "Drakkenheim"
203
204
  ]
204
205
  }
205
206
  },
@@ -3,7 +3,7 @@
3
3
  "$id": "entry.json",
4
4
  "title": "Entry",
5
5
  "description": "A recursively renderable object.",
6
- "version": "1.8.15",
6
+ "version": "1.8.16",
7
7
  "$defs": {
8
8
  "_arrayOfSpell": {
9
9
  "type": "array",
@@ -257,6 +257,12 @@
257
257
  },
258
258
  "skipItalics": {
259
259
  "type": "boolean"
260
+ },
261
+ "style": {
262
+ "type": "string",
263
+ "enum": [
264
+ "quote-pull"
265
+ ]
260
266
  }
261
267
  },
262
268
  "required": [
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "items-base.json",
4
- "version": "1.5.15",
4
+ "version": "1.5.16",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "itemLookupBase": {
@@ -216,6 +216,14 @@
216
216
  "description": "Flag used when merging generic variants",
217
217
  "type": "boolean"
218
218
  },
219
+ "arrow": {
220
+ "description": "Flag used when merging generic variants",
221
+ "type": "boolean"
222
+ },
223
+ "bolt": {
224
+ "description": "Flag used when merging generic variants",
225
+ "type": "boolean"
226
+ },
219
227
  "weapon": {
220
228
  "description": "Flag used when merging generic variants",
221
229
  "type": "boolean"
@@ -472,6 +480,14 @@
472
480
  "description": "Flag used when merging generic variants",
473
481
  "type": "boolean"
474
482
  },
483
+ "arrow": {
484
+ "description": "Flag used when merging generic variants",
485
+ "type": "boolean"
486
+ },
487
+ "bolt": {
488
+ "description": "Flag used when merging generic variants",
489
+ "type": "boolean"
490
+ },
475
491
  "weapon": {
476
492
  "description": "Flag used when merging generic variants",
477
493
  "type": "boolean"
@@ -732,6 +748,14 @@
732
748
  "description": "Flag used when merging generic variants",
733
749
  "type": "boolean"
734
750
  },
751
+ "arrow": {
752
+ "description": "Flag used when merging generic variants",
753
+ "type": "boolean"
754
+ },
755
+ "bolt": {
756
+ "description": "Flag used when merging generic variants",
757
+ "type": "boolean"
758
+ },
735
759
  "weapon": {
736
760
  "description": "Flag used when merging generic variants",
737
761
  "type": "boolean"
@@ -3,7 +3,7 @@
3
3
  "$id": "items-shared.json",
4
4
  "title": "Shared Item Schema",
5
5
  "description": "Shared item definitions to be used in item schemas.",
6
- "version": "1.0.5",
6
+ "version": "1.0.6",
7
7
  "$defs": {
8
8
  "_itemModifySpeedEqual": {
9
9
  "type": "string",
@@ -139,6 +139,11 @@
139
139
  "dawn",
140
140
  "dusk",
141
141
  "midnight",
142
+ "week",
143
+ "month",
144
+ "year",
145
+ "decade",
146
+ "century",
142
147
  "special"
143
148
  ]
144
149
  },
@@ -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.12",
4
+ "version": "1.8.13",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "magicvariant": {
@@ -88,6 +88,12 @@
88
88
  "polearm": {
89
89
  "type": "boolean"
90
90
  },
91
+ "arrow": {
92
+ "type": "boolean"
93
+ },
94
+ "bolt": {
95
+ "type": "boolean"
96
+ },
91
97
  "weaponCategory": {
92
98
  "$ref": "items-shared.json#/$defs/itemWeaponCategory"
93
99
  },
@@ -429,6 +435,12 @@
429
435
  "polearm": {
430
436
  "type": "boolean"
431
437
  },
438
+ "arrow": {
439
+ "type": "boolean"
440
+ },
441
+ "bolt": {
442
+ "type": "boolean"
443
+ },
432
444
  "weaponCategory": {
433
445
  "$ref": "items-shared.json#/$defs/itemWeaponCategory"
434
446
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "spells.json",
4
- "version": "1.9.9",
4
+ "version": "1.9.10",
5
5
  "title": "Spells",
6
6
  "type": "object",
7
7
  "$defs": {
@@ -17,6 +17,17 @@
17
17
  "school": {
18
18
  "$ref": "../util.json#/$defs/spellSchool"
19
19
  },
20
+ "subschools": {
21
+ "type": "array",
22
+ "items": {
23
+ "type": "string",
24
+ "enum": [
25
+ "contaminated"
26
+ ]
27
+ },
28
+ "minItems": 1,
29
+ "uniqueItems": true
30
+ },
20
31
  "meta": {
21
32
  "type": "object",
22
33
  "properties": {
@@ -500,15 +511,6 @@
500
511
  "minItems": 1,
501
512
  "uniqueItems": true
502
513
  },
503
- "subschools": {
504
- "description": "For homebrew use only.",
505
- "type": "array",
506
- "items": {
507
- "type": "string"
508
- },
509
- "minItems": 1,
510
- "uniqueItems": true
511
- },
512
514
  "fluff": {
513
515
  "description": "This is intended to be used for Homebrew only - site data should include a fluff file per source",
514
516
  "$ref": "../util.json#/$defs/fluffObject"
@@ -530,6 +532,17 @@
530
532
  "school": {
531
533
  "$ref": "../util.json#/$defs/spellSchool"
532
534
  },
535
+ "subschools": {
536
+ "type": "array",
537
+ "items": {
538
+ "type": "string",
539
+ "enum": [
540
+ "contaminated"
541
+ ]
542
+ },
543
+ "minItems": 1,
544
+ "uniqueItems": true
545
+ },
533
546
  "meta": {
534
547
  "type": "object",
535
548
  "properties": {
@@ -1013,15 +1026,6 @@
1013
1026
  "minItems": 1,
1014
1027
  "uniqueItems": true
1015
1028
  },
1016
- "subschools": {
1017
- "description": "For homebrew use only.",
1018
- "type": "array",
1019
- "items": {
1020
- "type": "string"
1021
- },
1022
- "minItems": 1,
1023
- "uniqueItems": true
1024
- },
1025
1029
  "fluff": {
1026
1030
  "description": "This is intended to be used for Homebrew only - site data should include a fluff file per source",
1027
1031
  "$ref": "../util.json#/$defs/fluffObject"
@@ -1051,6 +1055,17 @@
1051
1055
  "school": {
1052
1056
  "$ref": "../util.json#/$defs/spellSchool"
1053
1057
  },
1058
+ "subschools": {
1059
+ "type": "array",
1060
+ "items": {
1061
+ "type": "string",
1062
+ "enum": [
1063
+ "contaminated"
1064
+ ]
1065
+ },
1066
+ "minItems": 1,
1067
+ "uniqueItems": true
1068
+ },
1054
1069
  "meta": {
1055
1070
  "type": "object",
1056
1071
  "properties": {
@@ -1534,15 +1549,6 @@
1534
1549
  "minItems": 1,
1535
1550
  "uniqueItems": true
1536
1551
  },
1537
- "subschools": {
1538
- "description": "For homebrew use only.",
1539
- "type": "array",
1540
- "items": {
1541
- "type": "string"
1542
- },
1543
- "minItems": 1,
1544
- "uniqueItems": true
1545
- },
1546
1552
  "fluff": {
1547
1553
  "description": "This is intended to be used for Homebrew only - site data should include a fluff file per source",
1548
1554
  "$ref": "../util.json#/$defs/fluffObject"
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "adventures.json",
4
- "version": "1.10.16",
4
+ "version": "1.10.17",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "adventure": {
@@ -199,7 +199,8 @@
199
199
  "Adventure Atlas",
200
200
  "Heroes' Feast",
201
201
  "Family Friendly",
202
- "Grim Hollow"
202
+ "Grim Hollow",
203
+ "Drakkenheim"
203
204
  ]
204
205
  }
205
206
  },
@@ -3,7 +3,7 @@
3
3
  "$id": "entry.json",
4
4
  "title": "Entry",
5
5
  "description": "A recursively renderable object.",
6
- "version": "1.8.15",
6
+ "version": "1.8.16",
7
7
  "$defs": {
8
8
  "_arrayOfSpell": {
9
9
  "type": "array",
@@ -257,6 +257,12 @@
257
257
  },
258
258
  "skipItalics": {
259
259
  "type": "boolean"
260
+ },
261
+ "style": {
262
+ "type": "string",
263
+ "enum": [
264
+ "quote-pull"
265
+ ]
260
266
  }
261
267
  },
262
268
  "required": [
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "items-base.json",
4
- "version": "1.5.15",
4
+ "version": "1.5.16",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "itemLookupBase": {
@@ -216,6 +216,14 @@
216
216
  "description": "Flag used when merging generic variants",
217
217
  "type": "boolean"
218
218
  },
219
+ "arrow": {
220
+ "description": "Flag used when merging generic variants",
221
+ "type": "boolean"
222
+ },
223
+ "bolt": {
224
+ "description": "Flag used when merging generic variants",
225
+ "type": "boolean"
226
+ },
219
227
  "weapon": {
220
228
  "description": "Flag used when merging generic variants",
221
229
  "type": "boolean"
@@ -472,6 +480,14 @@
472
480
  "description": "Flag used when merging generic variants",
473
481
  "type": "boolean"
474
482
  },
483
+ "arrow": {
484
+ "description": "Flag used when merging generic variants",
485
+ "type": "boolean"
486
+ },
487
+ "bolt": {
488
+ "description": "Flag used when merging generic variants",
489
+ "type": "boolean"
490
+ },
475
491
  "weapon": {
476
492
  "description": "Flag used when merging generic variants",
477
493
  "type": "boolean"
@@ -732,6 +748,14 @@
732
748
  "description": "Flag used when merging generic variants",
733
749
  "type": "boolean"
734
750
  },
751
+ "arrow": {
752
+ "description": "Flag used when merging generic variants",
753
+ "type": "boolean"
754
+ },
755
+ "bolt": {
756
+ "description": "Flag used when merging generic variants",
757
+ "type": "boolean"
758
+ },
735
759
  "weapon": {
736
760
  "description": "Flag used when merging generic variants",
737
761
  "type": "boolean"
@@ -3,7 +3,7 @@
3
3
  "$id": "items-shared.json",
4
4
  "title": "Shared Item Schema",
5
5
  "description": "Shared item definitions to be used in item schemas.",
6
- "version": "1.0.5",
6
+ "version": "1.0.6",
7
7
  "$defs": {
8
8
  "_itemModifySpeedEqual": {
9
9
  "type": "string",
@@ -139,6 +139,11 @@
139
139
  "dawn",
140
140
  "dusk",
141
141
  "midnight",
142
+ "week",
143
+ "month",
144
+ "year",
145
+ "decade",
146
+ "century",
142
147
  "special"
143
148
  ]
144
149
  },
@@ -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.12",
4
+ "version": "1.8.13",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "magicvariant": {
@@ -88,6 +88,12 @@
88
88
  "polearm": {
89
89
  "type": "boolean"
90
90
  },
91
+ "arrow": {
92
+ "type": "boolean"
93
+ },
94
+ "bolt": {
95
+ "type": "boolean"
96
+ },
91
97
  "weaponCategory": {
92
98
  "$ref": "items-shared.json#/$defs/itemWeaponCategory"
93
99
  },
@@ -429,6 +435,12 @@
429
435
  "polearm": {
430
436
  "type": "boolean"
431
437
  },
438
+ "arrow": {
439
+ "type": "boolean"
440
+ },
441
+ "bolt": {
442
+ "type": "boolean"
443
+ },
432
444
  "weaponCategory": {
433
445
  "$ref": "items-shared.json#/$defs/itemWeaponCategory"
434
446
  },