5etools-utils 0.9.46 → 0.9.48

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.
@@ -108,11 +108,14 @@
108
108
  "SatO",
109
109
  "ToFW",
110
110
  "MPP",
111
+ "BMT",
111
112
  "Screen",
112
113
  "ScreenWildernessKit",
113
114
  "ScreenDungeonKit",
114
115
  "ScreenSpelljammer",
115
116
  "HF",
117
+ "HFFotM",
118
+ "HFStCM",
116
119
  "CM",
117
120
  "NRH",
118
121
  "NRH-TCMC",
@@ -130,6 +133,7 @@
130
133
  "GotSF",
131
134
  "LK",
132
135
  "CoA",
136
+ "PiP",
133
137
  "ALCurseOfStrahd",
134
138
  "ALElementalEvil",
135
139
  "ALRageOfDemons",
@@ -140,80 +144,7 @@
140
144
  "PSX",
141
145
  "PSD",
142
146
  "XMtS",
143
- "UAArtificer",
144
- "UAEladrinAndGith",
145
- "UAEberron",
146
- "UAFeatsForRaces",
147
- "UAFeatsForSkills",
148
- "UAFiendishOptions",
149
- "UAFeats",
150
- "UAGothicHeroes",
151
- "UAModernMagic",
152
- "UAStarterSpells",
153
147
  "UATheMysticClass",
154
- "UAThatOldBlackMagic",
155
- "UATheRangerRevised",
156
- "UAWaterborneAdventures",
157
- "UAVariantRules",
158
- "UALightDarkUnderdark",
159
- "UARangerAndRogue",
160
- "UAATrioOfSubclasses",
161
- "UABarbarianPrimalPaths",
162
- "UARevisedSubclasses",
163
- "UAKitsOfOld",
164
- "UABardBardColleges",
165
- "UAClericDivineDomains",
166
- "UADruid",
167
- "UARevisedClassOptions",
168
- "UAFighter",
169
- "UAMonk",
170
- "UAPaladin",
171
- "UAModifyingClasses",
172
- "UASorcerer",
173
- "UAWarlockAndWizard",
174
- "UATheFaithful",
175
- "UAWizardRevisited",
176
- "UAElfSubraces",
177
- "UAMassCombat",
178
- "UAThreePillarExperience",
179
- "UAGreyhawkInitiative",
180
- "UAThreeSubclasses",
181
- "UAOrderDomain",
182
- "UACentaursMinotaurs",
183
- "UAGiantSoulSorcerer",
184
- "UARacesOfEberron",
185
- "UARacesOfRavnica",
186
- "UAWGE",
187
- "UAOfShipsAndSea",
188
- "UASidekicks",
189
- "UAArtificerRevisited",
190
- "UABarbarianAndMonk",
191
- "UASorcererAndWarlock",
192
- "UABardAndPaladin",
193
- "UAClericDruidWizard",
194
- "UAFighterRangerRogue",
195
- "UAClassFeatureVariants",
196
- "UAFighterRogueWizard",
197
- "UAPrestigeClassesRunMagic",
198
- "UARanger",
199
- "UA2020SubclassesPt1",
200
- "UA2020SubclassesPt2",
201
- "UA2020SubclassesPt3",
202
- "UA2020SubclassesPt4",
203
- "UA2020SubclassesPt5",
204
- "UA2020SpellsAndMagicTattoos",
205
- "UA2020PsionicOptionsRevisited",
206
- "UA2020SubclassesRevisited",
207
- "UA2020Feats",
208
- "UA2021GothicLineages",
209
- "UA2021FolkOfTheFeywild",
210
- "UA2021DraconicOptions",
211
- "UA2021MagesOfStrixhaven",
212
- "UA2021TravelersOfTheMultiverse",
213
- "UA2022HeroesOfKrynn",
214
- "UA2022HeroesOfKrynnRevisited",
215
- "UA2022GiantOptions",
216
- "UA2022WondersOfTheMultiverse",
217
148
  "MCV1SC",
218
149
  "MCV2DC",
219
150
  "MCV3MC",
@@ -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.8",
4
+ "version": "1.9.9",
5
5
  "title": "Spells",
6
6
  "type": "object",
7
7
  "$defs": {
@@ -343,6 +343,175 @@
343
343
  },
344
344
  "minItems": 1,
345
345
  "uniqueItems": true
346
+ },
347
+ "classes": {
348
+ "type": "object",
349
+ "properties": {
350
+ "fromClassList": {
351
+ "type": "array",
352
+ "items": {
353
+ "$ref": "#/$defs/class"
354
+ },
355
+ "minItems": 1,
356
+ "uniqueItems": true
357
+ },
358
+ "fromClassListVariant": {
359
+ "type": "array",
360
+ "items": {
361
+ "$ref": "#/$defs/class"
362
+ },
363
+ "minItems": 1,
364
+ "uniqueItems": true
365
+ },
366
+ "fromSubclass": {
367
+ "type": "array",
368
+ "items": {
369
+ "type": "object",
370
+ "properties": {
371
+ "class": {
372
+ "$ref": "#/$defs/class"
373
+ },
374
+ "subclass": {
375
+ "type": "object",
376
+ "properties": {
377
+ "name": {
378
+ "type": "string"
379
+ },
380
+ "shortName": {
381
+ "type": "string"
382
+ },
383
+ "source": {
384
+ "$ref": "../util.json#/$defs/source"
385
+ },
386
+ "subSubclass": {
387
+ "type": "string"
388
+ }
389
+ },
390
+ "required": [
391
+ "name",
392
+ "shortName",
393
+ "source"
394
+ ],
395
+ "additionalProperties": false
396
+ }
397
+ },
398
+ "required": [
399
+ "class",
400
+ "subclass"
401
+ ],
402
+ "additionalProperties": false
403
+ },
404
+ "minItems": 1,
405
+ "uniqueItems": true
406
+ }
407
+ },
408
+ "additionalProperties": false
409
+ },
410
+ "races": {
411
+ "type": "array",
412
+ "items": {
413
+ "type": "object",
414
+ "properties": {
415
+ "name": {
416
+ "type": "string"
417
+ },
418
+ "source": {
419
+ "$ref": "../util.json#/$defs/source"
420
+ },
421
+ "baseName": {
422
+ "type": "string"
423
+ },
424
+ "baseSource": {
425
+ "$ref": "../util.json#/$defs/source"
426
+ }
427
+ },
428
+ "required": [
429
+ "name",
430
+ "source"
431
+ ]
432
+ },
433
+ "minItems": 1,
434
+ "uniqueItems": true
435
+ },
436
+ "backgrounds": {
437
+ "type": "array",
438
+ "items": {
439
+ "type": "object",
440
+ "properties": {
441
+ "name": {
442
+ "type": "string"
443
+ },
444
+ "source": {
445
+ "$ref": "../util.json#/$defs/source"
446
+ }
447
+ },
448
+ "required": [
449
+ "name",
450
+ "source"
451
+ ]
452
+ },
453
+ "minItems": 1,
454
+ "uniqueItems": true
455
+ },
456
+ "optionalfeatures": {
457
+ "type": "array",
458
+ "items": {
459
+ "type": "object",
460
+ "properties": {
461
+ "name": {
462
+ "type": "string"
463
+ },
464
+ "source": {
465
+ "$ref": "../util.json#/$defs/source"
466
+ },
467
+ "featureType": {
468
+ "type": "array",
469
+ "items": {
470
+ "$ref": "../util.json#/$defs/dataOptionalfeatureType"
471
+ },
472
+ "uniqueItems": true
473
+ }
474
+ },
475
+ "required": [
476
+ "name",
477
+ "source"
478
+ ]
479
+ },
480
+ "minItems": 1,
481
+ "uniqueItems": true
482
+ },
483
+ "feats": {
484
+ "type": "array",
485
+ "items": {
486
+ "type": "object",
487
+ "properties": {
488
+ "name": {
489
+ "type": "string"
490
+ },
491
+ "source": {
492
+ "$ref": "../util.json#/$defs/source"
493
+ }
494
+ },
495
+ "required": [
496
+ "name",
497
+ "source"
498
+ ]
499
+ },
500
+ "minItems": 1,
501
+ "uniqueItems": true
502
+ },
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
+ "fluff": {
513
+ "description": "This is intended to be used for Homebrew only - site data should include a fluff file per source",
514
+ "$ref": "../util.json#/$defs/fluffObject"
346
515
  }
347
516
  },
348
517
  "additionalProperties": false
@@ -687,6 +856,175 @@
687
856
  },
688
857
  "minItems": 1,
689
858
  "uniqueItems": true
859
+ },
860
+ "classes": {
861
+ "type": "object",
862
+ "properties": {
863
+ "fromClassList": {
864
+ "type": "array",
865
+ "items": {
866
+ "$ref": "#/$defs/class"
867
+ },
868
+ "minItems": 1,
869
+ "uniqueItems": true
870
+ },
871
+ "fromClassListVariant": {
872
+ "type": "array",
873
+ "items": {
874
+ "$ref": "#/$defs/class"
875
+ },
876
+ "minItems": 1,
877
+ "uniqueItems": true
878
+ },
879
+ "fromSubclass": {
880
+ "type": "array",
881
+ "items": {
882
+ "type": "object",
883
+ "properties": {
884
+ "class": {
885
+ "$ref": "#/$defs/class"
886
+ },
887
+ "subclass": {
888
+ "type": "object",
889
+ "properties": {
890
+ "name": {
891
+ "type": "string"
892
+ },
893
+ "shortName": {
894
+ "type": "string"
895
+ },
896
+ "source": {
897
+ "$ref": "../util.json#/$defs/source"
898
+ },
899
+ "subSubclass": {
900
+ "type": "string"
901
+ }
902
+ },
903
+ "required": [
904
+ "name",
905
+ "shortName",
906
+ "source"
907
+ ],
908
+ "additionalProperties": false
909
+ }
910
+ },
911
+ "required": [
912
+ "class",
913
+ "subclass"
914
+ ],
915
+ "additionalProperties": false
916
+ },
917
+ "minItems": 1,
918
+ "uniqueItems": true
919
+ }
920
+ },
921
+ "additionalProperties": false
922
+ },
923
+ "races": {
924
+ "type": "array",
925
+ "items": {
926
+ "type": "object",
927
+ "properties": {
928
+ "name": {
929
+ "type": "string"
930
+ },
931
+ "source": {
932
+ "$ref": "../util.json#/$defs/source"
933
+ },
934
+ "baseName": {
935
+ "type": "string"
936
+ },
937
+ "baseSource": {
938
+ "$ref": "../util.json#/$defs/source"
939
+ }
940
+ },
941
+ "required": [
942
+ "name",
943
+ "source"
944
+ ]
945
+ },
946
+ "minItems": 1,
947
+ "uniqueItems": true
948
+ },
949
+ "backgrounds": {
950
+ "type": "array",
951
+ "items": {
952
+ "type": "object",
953
+ "properties": {
954
+ "name": {
955
+ "type": "string"
956
+ },
957
+ "source": {
958
+ "$ref": "../util.json#/$defs/source"
959
+ }
960
+ },
961
+ "required": [
962
+ "name",
963
+ "source"
964
+ ]
965
+ },
966
+ "minItems": 1,
967
+ "uniqueItems": true
968
+ },
969
+ "optionalfeatures": {
970
+ "type": "array",
971
+ "items": {
972
+ "type": "object",
973
+ "properties": {
974
+ "name": {
975
+ "type": "string"
976
+ },
977
+ "source": {
978
+ "$ref": "../util.json#/$defs/source"
979
+ },
980
+ "featureType": {
981
+ "type": "array",
982
+ "items": {
983
+ "$ref": "../util.json#/$defs/dataOptionalfeatureType"
984
+ },
985
+ "uniqueItems": true
986
+ }
987
+ },
988
+ "required": [
989
+ "name",
990
+ "source"
991
+ ]
992
+ },
993
+ "minItems": 1,
994
+ "uniqueItems": true
995
+ },
996
+ "feats": {
997
+ "type": "array",
998
+ "items": {
999
+ "type": "object",
1000
+ "properties": {
1001
+ "name": {
1002
+ "type": "string"
1003
+ },
1004
+ "source": {
1005
+ "$ref": "../util.json#/$defs/source"
1006
+ }
1007
+ },
1008
+ "required": [
1009
+ "name",
1010
+ "source"
1011
+ ]
1012
+ },
1013
+ "minItems": 1,
1014
+ "uniqueItems": true
1015
+ },
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
+ "fluff": {
1026
+ "description": "This is intended to be used for Homebrew only - site data should include a fluff file per source",
1027
+ "$ref": "../util.json#/$defs/fluffObject"
690
1028
  }
691
1029
  },
692
1030
  "additionalProperties": false,
@@ -1040,6 +1378,175 @@
1040
1378
  "minItems": 1,
1041
1379
  "uniqueItems": true
1042
1380
  },
1381
+ "classes": {
1382
+ "type": "object",
1383
+ "properties": {
1384
+ "fromClassList": {
1385
+ "type": "array",
1386
+ "items": {
1387
+ "$ref": "#/$defs/class"
1388
+ },
1389
+ "minItems": 1,
1390
+ "uniqueItems": true
1391
+ },
1392
+ "fromClassListVariant": {
1393
+ "type": "array",
1394
+ "items": {
1395
+ "$ref": "#/$defs/class"
1396
+ },
1397
+ "minItems": 1,
1398
+ "uniqueItems": true
1399
+ },
1400
+ "fromSubclass": {
1401
+ "type": "array",
1402
+ "items": {
1403
+ "type": "object",
1404
+ "properties": {
1405
+ "class": {
1406
+ "$ref": "#/$defs/class"
1407
+ },
1408
+ "subclass": {
1409
+ "type": "object",
1410
+ "properties": {
1411
+ "name": {
1412
+ "type": "string"
1413
+ },
1414
+ "shortName": {
1415
+ "type": "string"
1416
+ },
1417
+ "source": {
1418
+ "$ref": "../util.json#/$defs/source"
1419
+ },
1420
+ "subSubclass": {
1421
+ "type": "string"
1422
+ }
1423
+ },
1424
+ "required": [
1425
+ "name",
1426
+ "shortName",
1427
+ "source"
1428
+ ],
1429
+ "additionalProperties": false
1430
+ }
1431
+ },
1432
+ "required": [
1433
+ "class",
1434
+ "subclass"
1435
+ ],
1436
+ "additionalProperties": false
1437
+ },
1438
+ "minItems": 1,
1439
+ "uniqueItems": true
1440
+ }
1441
+ },
1442
+ "additionalProperties": false
1443
+ },
1444
+ "races": {
1445
+ "type": "array",
1446
+ "items": {
1447
+ "type": "object",
1448
+ "properties": {
1449
+ "name": {
1450
+ "type": "string"
1451
+ },
1452
+ "source": {
1453
+ "$ref": "../util.json#/$defs/source"
1454
+ },
1455
+ "baseName": {
1456
+ "type": "string"
1457
+ },
1458
+ "baseSource": {
1459
+ "$ref": "../util.json#/$defs/source"
1460
+ }
1461
+ },
1462
+ "required": [
1463
+ "name",
1464
+ "source"
1465
+ ]
1466
+ },
1467
+ "minItems": 1,
1468
+ "uniqueItems": true
1469
+ },
1470
+ "backgrounds": {
1471
+ "type": "array",
1472
+ "items": {
1473
+ "type": "object",
1474
+ "properties": {
1475
+ "name": {
1476
+ "type": "string"
1477
+ },
1478
+ "source": {
1479
+ "$ref": "../util.json#/$defs/source"
1480
+ }
1481
+ },
1482
+ "required": [
1483
+ "name",
1484
+ "source"
1485
+ ]
1486
+ },
1487
+ "minItems": 1,
1488
+ "uniqueItems": true
1489
+ },
1490
+ "optionalfeatures": {
1491
+ "type": "array",
1492
+ "items": {
1493
+ "type": "object",
1494
+ "properties": {
1495
+ "name": {
1496
+ "type": "string"
1497
+ },
1498
+ "source": {
1499
+ "$ref": "../util.json#/$defs/source"
1500
+ },
1501
+ "featureType": {
1502
+ "type": "array",
1503
+ "items": {
1504
+ "$ref": "../util.json#/$defs/dataOptionalfeatureType"
1505
+ },
1506
+ "uniqueItems": true
1507
+ }
1508
+ },
1509
+ "required": [
1510
+ "name",
1511
+ "source"
1512
+ ]
1513
+ },
1514
+ "minItems": 1,
1515
+ "uniqueItems": true
1516
+ },
1517
+ "feats": {
1518
+ "type": "array",
1519
+ "items": {
1520
+ "type": "object",
1521
+ "properties": {
1522
+ "name": {
1523
+ "type": "string"
1524
+ },
1525
+ "source": {
1526
+ "$ref": "../util.json#/$defs/source"
1527
+ }
1528
+ },
1529
+ "required": [
1530
+ "name",
1531
+ "source"
1532
+ ]
1533
+ },
1534
+ "minItems": 1,
1535
+ "uniqueItems": true
1536
+ },
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
+ "fluff": {
1547
+ "description": "This is intended to be used for Homebrew only - site data should include a fluff file per source",
1548
+ "$ref": "../util.json#/$defs/fluffObject"
1549
+ },
1043
1550
  "_copy": {
1044
1551
  "$ref": "../util.json#/$defs/copyBlock_copy_generic"
1045
1552
  }