5etools-utils 0.12.37 → 0.12.38
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 +1 -1
- package/schema/brew/backgrounds.json +10 -1
- package/schema/brew/class/class.json +368 -21
- package/schema/brew/util-copy.json +13 -1
- package/schema/brew/util.json +5 -8
- package/schema/brew-fast/backgrounds.json +10 -1
- package/schema/brew-fast/class/class.json +368 -21
- package/schema/brew-fast/util-copy.json +13 -1
- package/schema/brew-fast/util.json +5 -8
- package/schema/site/backgrounds.json +10 -1
- package/schema/site/class/class.json +269 -12
- package/schema/site/util-copy.json +13 -1
- package/schema/site/util.json +5 -8
- package/schema/site-fast/backgrounds.json +10 -1
- package/schema/site-fast/class/class.json +269 -12
- package/schema/site-fast/util-copy.json +13 -1
- package/schema/site-fast/util.json +5 -8
- package/schema/ua/backgrounds.json +10 -1
- package/schema/ua/class/class.json +269 -12
- package/schema/ua/util-copy.json +13 -1
- package/schema/ua/util.json +5 -8
- package/schema/ua-fast/backgrounds.json +10 -1
- package/schema/ua-fast/class/class.json +269 -12
- package/schema/ua-fast/util-copy.json +13 -1
- package/schema/ua-fast/util.json +5 -8
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "2.12.
|
|
3
|
+
"version": "2.12.3",
|
|
4
4
|
"$id": "class.json",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
@@ -253,7 +253,7 @@
|
|
|
253
253
|
],
|
|
254
254
|
"additionalProperties": false
|
|
255
255
|
},
|
|
256
|
-
"
|
|
256
|
+
"subclassFeatureData": {
|
|
257
257
|
"type": "object",
|
|
258
258
|
"properties": {
|
|
259
259
|
"name": {
|
|
@@ -322,18 +322,170 @@
|
|
|
322
322
|
"$ref": "../util.json#/$defs/consumesObject"
|
|
323
323
|
}
|
|
324
324
|
},
|
|
325
|
-
"required": [
|
|
326
|
-
"name",
|
|
327
|
-
"source",
|
|
328
|
-
"className",
|
|
329
|
-
"classSource",
|
|
330
|
-
"subclassShortName",
|
|
331
|
-
"subclassSource",
|
|
332
|
-
"level",
|
|
333
|
-
"entries"
|
|
334
|
-
],
|
|
335
325
|
"additionalProperties": false
|
|
336
326
|
},
|
|
327
|
+
"subclassFeature": {
|
|
328
|
+
"anyOf": [
|
|
329
|
+
{
|
|
330
|
+
"type": "object",
|
|
331
|
+
"properties": {
|
|
332
|
+
"name": {
|
|
333
|
+
"type": "string"
|
|
334
|
+
},
|
|
335
|
+
"source": {
|
|
336
|
+
"$ref": "../util.json#/$defs/source"
|
|
337
|
+
},
|
|
338
|
+
"srd": {
|
|
339
|
+
"$ref": "../util.json#/$defs/srd"
|
|
340
|
+
},
|
|
341
|
+
"srd52": {
|
|
342
|
+
"$ref": "../util.json#/$defs/srd"
|
|
343
|
+
},
|
|
344
|
+
"basicRules": {
|
|
345
|
+
"$ref": "../util.json#/$defs/basicRules"
|
|
346
|
+
},
|
|
347
|
+
"freeRules2024": {
|
|
348
|
+
"$ref": "../util.json#/$defs/basicRules"
|
|
349
|
+
},
|
|
350
|
+
"className": {
|
|
351
|
+
"type": "string"
|
|
352
|
+
},
|
|
353
|
+
"classSource": {
|
|
354
|
+
"$ref": "../util.json#/$defs/source"
|
|
355
|
+
},
|
|
356
|
+
"subclassShortName": {
|
|
357
|
+
"type": "string"
|
|
358
|
+
},
|
|
359
|
+
"subclassSource": {
|
|
360
|
+
"$ref": "../util.json#/$defs/source"
|
|
361
|
+
},
|
|
362
|
+
"level": {
|
|
363
|
+
"type": "integer"
|
|
364
|
+
},
|
|
365
|
+
"header": {
|
|
366
|
+
"type": "integer"
|
|
367
|
+
},
|
|
368
|
+
"page": {
|
|
369
|
+
"$ref": "../util.json#/$defs/page"
|
|
370
|
+
},
|
|
371
|
+
"type": {
|
|
372
|
+
"type": "string",
|
|
373
|
+
"enum": [
|
|
374
|
+
"inset",
|
|
375
|
+
"item"
|
|
376
|
+
]
|
|
377
|
+
},
|
|
378
|
+
"entries": {
|
|
379
|
+
"type": "array",
|
|
380
|
+
"items": {
|
|
381
|
+
"$ref": "../entry.json"
|
|
382
|
+
}
|
|
383
|
+
},
|
|
384
|
+
"isClassFeatureVariant": {
|
|
385
|
+
"type": "boolean"
|
|
386
|
+
},
|
|
387
|
+
"isGainAtNextFeatureLevel": {
|
|
388
|
+
"description": "If this feature should only be (optionally) gained at the next \"gainSubclassFeature\" level, rather than at the level listed on the feature.",
|
|
389
|
+
"type": "boolean"
|
|
390
|
+
},
|
|
391
|
+
"otherSources": {
|
|
392
|
+
"$ref": "../util.json#/$defs/otherSources"
|
|
393
|
+
},
|
|
394
|
+
"consumes": {
|
|
395
|
+
"$ref": "../util.json#/$defs/consumesObject"
|
|
396
|
+
}
|
|
397
|
+
},
|
|
398
|
+
"additionalProperties": false,
|
|
399
|
+
"required": [
|
|
400
|
+
"name",
|
|
401
|
+
"source",
|
|
402
|
+
"className",
|
|
403
|
+
"classSource",
|
|
404
|
+
"subclassShortName",
|
|
405
|
+
"subclassSource",
|
|
406
|
+
"level",
|
|
407
|
+
"entries"
|
|
408
|
+
]
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"type": "object",
|
|
412
|
+
"properties": {
|
|
413
|
+
"name": {
|
|
414
|
+
"type": "string"
|
|
415
|
+
},
|
|
416
|
+
"source": {
|
|
417
|
+
"$ref": "../util.json#/$defs/source"
|
|
418
|
+
},
|
|
419
|
+
"srd": {
|
|
420
|
+
"$ref": "../util.json#/$defs/srd"
|
|
421
|
+
},
|
|
422
|
+
"srd52": {
|
|
423
|
+
"$ref": "../util.json#/$defs/srd"
|
|
424
|
+
},
|
|
425
|
+
"basicRules": {
|
|
426
|
+
"$ref": "../util.json#/$defs/basicRules"
|
|
427
|
+
},
|
|
428
|
+
"freeRules2024": {
|
|
429
|
+
"$ref": "../util.json#/$defs/basicRules"
|
|
430
|
+
},
|
|
431
|
+
"className": {
|
|
432
|
+
"type": "string"
|
|
433
|
+
},
|
|
434
|
+
"classSource": {
|
|
435
|
+
"$ref": "../util.json#/$defs/source"
|
|
436
|
+
},
|
|
437
|
+
"subclassShortName": {
|
|
438
|
+
"type": "string"
|
|
439
|
+
},
|
|
440
|
+
"subclassSource": {
|
|
441
|
+
"$ref": "../util.json#/$defs/source"
|
|
442
|
+
},
|
|
443
|
+
"level": {
|
|
444
|
+
"type": "integer"
|
|
445
|
+
},
|
|
446
|
+
"header": {
|
|
447
|
+
"type": "integer"
|
|
448
|
+
},
|
|
449
|
+
"page": {
|
|
450
|
+
"$ref": "../util.json#/$defs/page"
|
|
451
|
+
},
|
|
452
|
+
"type": {
|
|
453
|
+
"type": "string",
|
|
454
|
+
"enum": [
|
|
455
|
+
"inset",
|
|
456
|
+
"item"
|
|
457
|
+
]
|
|
458
|
+
},
|
|
459
|
+
"entries": {
|
|
460
|
+
"type": "array",
|
|
461
|
+
"items": {
|
|
462
|
+
"$ref": "../entry.json"
|
|
463
|
+
}
|
|
464
|
+
},
|
|
465
|
+
"isClassFeatureVariant": {
|
|
466
|
+
"type": "boolean"
|
|
467
|
+
},
|
|
468
|
+
"isGainAtNextFeatureLevel": {
|
|
469
|
+
"description": "If this feature should only be (optionally) gained at the next \"gainSubclassFeature\" level, rather than at the level listed on the feature.",
|
|
470
|
+
"type": "boolean"
|
|
471
|
+
},
|
|
472
|
+
"otherSources": {
|
|
473
|
+
"$ref": "../util.json#/$defs/otherSources"
|
|
474
|
+
},
|
|
475
|
+
"consumes": {
|
|
476
|
+
"$ref": "../util.json#/$defs/consumesObject"
|
|
477
|
+
},
|
|
478
|
+
"_copy": {
|
|
479
|
+
"$ref": "../util-copy.json#/$defs/copyBlock_copy_generic"
|
|
480
|
+
}
|
|
481
|
+
},
|
|
482
|
+
"additionalProperties": false,
|
|
483
|
+
"required": [
|
|
484
|
+
"_copy"
|
|
485
|
+
]
|
|
486
|
+
}
|
|
487
|
+
]
|
|
488
|
+
},
|
|
337
489
|
"proficiencies": {
|
|
338
490
|
"type": "object",
|
|
339
491
|
"properties": {
|
|
@@ -446,6 +598,9 @@
|
|
|
446
598
|
"description": "The source of the class this subclass belongs to (defaults to PHB).",
|
|
447
599
|
"$ref": "../util.json#/$defs/source"
|
|
448
600
|
},
|
|
601
|
+
"edition": {
|
|
602
|
+
"$ref": "../util-edition.json#/$defs/edition"
|
|
603
|
+
},
|
|
449
604
|
"isReprinted": {
|
|
450
605
|
"type": "boolean"
|
|
451
606
|
},
|
|
@@ -549,6 +704,35 @@
|
|
|
549
704
|
},
|
|
550
705
|
"hasFluffImages": {
|
|
551
706
|
"const": true
|
|
707
|
+
},
|
|
708
|
+
"fluff": {
|
|
709
|
+
"anyOf": [
|
|
710
|
+
{
|
|
711
|
+
"description": "Reference \"subclassFluff\" array items",
|
|
712
|
+
"type": "object",
|
|
713
|
+
"properties": {
|
|
714
|
+
"_subclassFluff": {
|
|
715
|
+
"type": "object",
|
|
716
|
+
"properties": {
|
|
717
|
+
"name": {
|
|
718
|
+
"type": "string"
|
|
719
|
+
},
|
|
720
|
+
"source": {
|
|
721
|
+
"$ref": "../util.json#/$defs/source"
|
|
722
|
+
},
|
|
723
|
+
"className": {
|
|
724
|
+
"type": "string"
|
|
725
|
+
},
|
|
726
|
+
"classSource": {
|
|
727
|
+
"$ref": "../util.json#/$defs/source"
|
|
728
|
+
}
|
|
729
|
+
}
|
|
730
|
+
}
|
|
731
|
+
},
|
|
732
|
+
"additionalProperties": false,
|
|
733
|
+
"minProperties": 1
|
|
734
|
+
}
|
|
735
|
+
]
|
|
552
736
|
}
|
|
553
737
|
},
|
|
554
738
|
"additionalProperties": false,
|
|
@@ -584,6 +768,9 @@
|
|
|
584
768
|
"description": "The source of the class this subclass belongs to (defaults to PHB).",
|
|
585
769
|
"$ref": "../util.json#/$defs/source"
|
|
586
770
|
},
|
|
771
|
+
"edition": {
|
|
772
|
+
"$ref": "../util-edition.json#/$defs/edition"
|
|
773
|
+
},
|
|
587
774
|
"isReprinted": {
|
|
588
775
|
"type": "boolean"
|
|
589
776
|
},
|
|
@@ -688,6 +875,35 @@
|
|
|
688
875
|
"hasFluffImages": {
|
|
689
876
|
"const": true
|
|
690
877
|
},
|
|
878
|
+
"fluff": {
|
|
879
|
+
"anyOf": [
|
|
880
|
+
{
|
|
881
|
+
"description": "Reference \"subclassFluff\" array items",
|
|
882
|
+
"type": "object",
|
|
883
|
+
"properties": {
|
|
884
|
+
"_subclassFluff": {
|
|
885
|
+
"type": "object",
|
|
886
|
+
"properties": {
|
|
887
|
+
"name": {
|
|
888
|
+
"type": "string"
|
|
889
|
+
},
|
|
890
|
+
"source": {
|
|
891
|
+
"$ref": "../util.json#/$defs/source"
|
|
892
|
+
},
|
|
893
|
+
"className": {
|
|
894
|
+
"type": "string"
|
|
895
|
+
},
|
|
896
|
+
"classSource": {
|
|
897
|
+
"$ref": "../util.json#/$defs/source"
|
|
898
|
+
}
|
|
899
|
+
}
|
|
900
|
+
}
|
|
901
|
+
},
|
|
902
|
+
"additionalProperties": false,
|
|
903
|
+
"minProperties": 1
|
|
904
|
+
}
|
|
905
|
+
]
|
|
906
|
+
},
|
|
691
907
|
"_copy": {
|
|
692
908
|
"$ref": "../util-copy.json#/$defs/copyBlock_copy_generic"
|
|
693
909
|
}
|
|
@@ -722,6 +938,9 @@
|
|
|
722
938
|
"description": "The source of the class this subclass belongs to (defaults to PHB).",
|
|
723
939
|
"$ref": "../util.json#/$defs/source"
|
|
724
940
|
},
|
|
941
|
+
"edition": {
|
|
942
|
+
"$ref": "../util-edition.json#/$defs/edition"
|
|
943
|
+
},
|
|
725
944
|
"isReprinted": {
|
|
726
945
|
"type": "boolean"
|
|
727
946
|
},
|
|
@@ -825,6 +1044,35 @@
|
|
|
825
1044
|
},
|
|
826
1045
|
"hasFluffImages": {
|
|
827
1046
|
"const": true
|
|
1047
|
+
},
|
|
1048
|
+
"fluff": {
|
|
1049
|
+
"anyOf": [
|
|
1050
|
+
{
|
|
1051
|
+
"description": "Reference \"subclassFluff\" array items",
|
|
1052
|
+
"type": "object",
|
|
1053
|
+
"properties": {
|
|
1054
|
+
"_subclassFluff": {
|
|
1055
|
+
"type": "object",
|
|
1056
|
+
"properties": {
|
|
1057
|
+
"name": {
|
|
1058
|
+
"type": "string"
|
|
1059
|
+
},
|
|
1060
|
+
"source": {
|
|
1061
|
+
"$ref": "../util.json#/$defs/source"
|
|
1062
|
+
},
|
|
1063
|
+
"className": {
|
|
1064
|
+
"type": "string"
|
|
1065
|
+
},
|
|
1066
|
+
"classSource": {
|
|
1067
|
+
"$ref": "../util.json#/$defs/source"
|
|
1068
|
+
}
|
|
1069
|
+
}
|
|
1070
|
+
}
|
|
1071
|
+
},
|
|
1072
|
+
"additionalProperties": false,
|
|
1073
|
+
"minProperties": 1
|
|
1074
|
+
}
|
|
1075
|
+
]
|
|
828
1076
|
}
|
|
829
1077
|
},
|
|
830
1078
|
"additionalProperties": false
|
|
@@ -931,6 +1179,9 @@
|
|
|
931
1179
|
"otherSources": {
|
|
932
1180
|
"$ref": "../util.json#/$defs/otherSources"
|
|
933
1181
|
},
|
|
1182
|
+
"edition": {
|
|
1183
|
+
"$ref": "../util-edition.json#/$defs/edition"
|
|
1184
|
+
},
|
|
934
1185
|
"srd": {
|
|
935
1186
|
"$ref": "../util.json#/$defs/srd"
|
|
936
1187
|
},
|
|
@@ -1203,6 +1454,9 @@
|
|
|
1203
1454
|
"otherSources": {
|
|
1204
1455
|
"$ref": "../util.json#/$defs/otherSources"
|
|
1205
1456
|
},
|
|
1457
|
+
"edition": {
|
|
1458
|
+
"$ref": "../util-edition.json#/$defs/edition"
|
|
1459
|
+
},
|
|
1206
1460
|
"srd": {
|
|
1207
1461
|
"$ref": "../util.json#/$defs/srd"
|
|
1208
1462
|
},
|
|
@@ -1478,6 +1732,9 @@
|
|
|
1478
1732
|
"otherSources": {
|
|
1479
1733
|
"$ref": "../util.json#/$defs/otherSources"
|
|
1480
1734
|
},
|
|
1735
|
+
"edition": {
|
|
1736
|
+
"$ref": "../util-edition.json#/$defs/edition"
|
|
1737
|
+
},
|
|
1481
1738
|
"srd": {
|
|
1482
1739
|
"$ref": "../util.json#/$defs/srd"
|
|
1483
1740
|
},
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "util-copy.json",
|
|
4
4
|
"title": "Util: Copy",
|
|
5
|
-
"version": "1.0.
|
|
5
|
+
"version": "1.0.2",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"_mod_renameArr_rename": {
|
|
8
8
|
"type": "object",
|
|
@@ -953,6 +953,18 @@
|
|
|
953
953
|
"description": "Used in subclass data",
|
|
954
954
|
"$ref": "util.json#/$defs/source"
|
|
955
955
|
},
|
|
956
|
+
"subclassSource": {
|
|
957
|
+
"description": "Used in subclass feature data",
|
|
958
|
+
"$ref": "util.json#/$defs/source"
|
|
959
|
+
},
|
|
960
|
+
"subclassShortName": {
|
|
961
|
+
"description": "Used in subclass feature data",
|
|
962
|
+
"type": "string"
|
|
963
|
+
},
|
|
964
|
+
"level": {
|
|
965
|
+
"description": "Used in subclass feature data",
|
|
966
|
+
"type": "integer"
|
|
967
|
+
},
|
|
956
968
|
"raceName": {
|
|
957
969
|
"description": "Used in race feature data",
|
|
958
970
|
"type": "string"
|
|
@@ -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.
|
|
6
|
+
"version": "1.17.6",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaDependenciesArray": {
|
|
9
9
|
"type": "array",
|
|
@@ -1618,13 +1618,7 @@
|
|
|
1618
1618
|
"properties": {
|
|
1619
1619
|
"any": {
|
|
1620
1620
|
"type": "integer"
|
|
1621
|
-
}
|
|
1622
|
-
},
|
|
1623
|
-
"additionalProperties": true
|
|
1624
|
-
},
|
|
1625
|
-
{
|
|
1626
|
-
"type": "object",
|
|
1627
|
-
"properties": {
|
|
1621
|
+
},
|
|
1628
1622
|
"anyFromCategory": {
|
|
1629
1623
|
"type": "object",
|
|
1630
1624
|
"properties": {
|
|
@@ -1635,6 +1629,9 @@
|
|
|
1635
1629
|
"type": "integer"
|
|
1636
1630
|
}
|
|
1637
1631
|
},
|
|
1632
|
+
"required": [
|
|
1633
|
+
"category"
|
|
1634
|
+
],
|
|
1638
1635
|
"additionalProperties": false
|
|
1639
1636
|
}
|
|
1640
1637
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "backgrounds.json",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.8",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"backgroundData": {
|
|
@@ -19,6 +19,9 @@
|
|
|
19
19
|
"reprintedAs": {
|
|
20
20
|
"$ref": "util.json#/$defs/reprintedAs"
|
|
21
21
|
},
|
|
22
|
+
"edition": {
|
|
23
|
+
"$ref": "util-edition.json#/$defs/edition"
|
|
24
|
+
},
|
|
22
25
|
"prerequisite": {
|
|
23
26
|
"$ref": "util.json#/$defs/prerequisite"
|
|
24
27
|
},
|
|
@@ -116,6 +119,9 @@
|
|
|
116
119
|
"reprintedAs": {
|
|
117
120
|
"$ref": "util.json#/$defs/reprintedAs"
|
|
118
121
|
},
|
|
122
|
+
"edition": {
|
|
123
|
+
"$ref": "util-edition.json#/$defs/edition"
|
|
124
|
+
},
|
|
119
125
|
"prerequisite": {
|
|
120
126
|
"$ref": "util.json#/$defs/prerequisite"
|
|
121
127
|
},
|
|
@@ -216,6 +222,9 @@
|
|
|
216
222
|
"reprintedAs": {
|
|
217
223
|
"$ref": "util.json#/$defs/reprintedAs"
|
|
218
224
|
},
|
|
225
|
+
"edition": {
|
|
226
|
+
"$ref": "util-edition.json#/$defs/edition"
|
|
227
|
+
},
|
|
219
228
|
"prerequisite": {
|
|
220
229
|
"$ref": "util.json#/$defs/prerequisite"
|
|
221
230
|
},
|