5etools-utils 0.8.0 → 0.8.1
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
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.2",
|
|
4
4
|
"$id": "class.json",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
@@ -518,6 +518,8 @@
|
|
|
518
518
|
"subclassSpells": {
|
|
519
519
|
"description": "Homebrew use only; adds custom subclasses to lists in spells.\nDoes not enable VTT import - see \"additionalSpells\".",
|
|
520
520
|
"type": "array",
|
|
521
|
+
"minItems": 1,
|
|
522
|
+
"uniqueItems": true,
|
|
521
523
|
"items": {
|
|
522
524
|
"$ref": "../util.json#/$defs/spellListSpellRef"
|
|
523
525
|
}
|
|
@@ -529,6 +531,8 @@
|
|
|
529
531
|
".*": {
|
|
530
532
|
"type": "array",
|
|
531
533
|
"description": "For example, a druid circle, religious order, or other sub-subclass name",
|
|
534
|
+
"minItems": 1,
|
|
535
|
+
"uniqueItems": true,
|
|
532
536
|
"items": {
|
|
533
537
|
"$ref": "../util.json#/$defs/spellListSpellRef"
|
|
534
538
|
}
|
|
@@ -675,6 +679,8 @@
|
|
|
675
679
|
"subclassSpells": {
|
|
676
680
|
"description": "Homebrew use only; adds custom subclasses to lists in spells.\nDoes not enable VTT import - see \"additionalSpells\".",
|
|
677
681
|
"type": "array",
|
|
682
|
+
"minItems": 1,
|
|
683
|
+
"uniqueItems": true,
|
|
678
684
|
"items": {
|
|
679
685
|
"$ref": "../util.json#/$defs/spellListSpellRef"
|
|
680
686
|
}
|
|
@@ -686,6 +692,8 @@
|
|
|
686
692
|
".*": {
|
|
687
693
|
"type": "array",
|
|
688
694
|
"description": "For example, a druid circle, religious order, or other sub-subclass name",
|
|
695
|
+
"minItems": 1,
|
|
696
|
+
"uniqueItems": true,
|
|
689
697
|
"items": {
|
|
690
698
|
"$ref": "../util.json#/$defs/spellListSpellRef"
|
|
691
699
|
}
|
|
@@ -887,6 +895,8 @@
|
|
|
887
895
|
"subclassSpells": {
|
|
888
896
|
"description": "Homebrew use only; adds custom subclasses to lists in spells.\nDoes not enable VTT import - see \"additionalSpells\".",
|
|
889
897
|
"type": "array",
|
|
898
|
+
"minItems": 1,
|
|
899
|
+
"uniqueItems": true,
|
|
890
900
|
"items": {
|
|
891
901
|
"$ref": "../util.json#/$defs/spellListSpellRef"
|
|
892
902
|
}
|
|
@@ -898,6 +908,8 @@
|
|
|
898
908
|
".*": {
|
|
899
909
|
"type": "array",
|
|
900
910
|
"description": "For example, a druid circle, religious order, or other sub-subclass name",
|
|
911
|
+
"minItems": 1,
|
|
912
|
+
"uniqueItems": true,
|
|
901
913
|
"items": {
|
|
902
914
|
"$ref": "../util.json#/$defs/spellListSpellRef"
|
|
903
915
|
}
|
|
@@ -1266,6 +1278,8 @@
|
|
|
1266
1278
|
"classSpells": {
|
|
1267
1279
|
"description": "Homebrew use only",
|
|
1268
1280
|
"type": "array",
|
|
1281
|
+
"minItems": 1,
|
|
1282
|
+
"uniqueItems": true,
|
|
1269
1283
|
"items": {
|
|
1270
1284
|
"$ref": "../util.json#/$defs/spellListSpellRef"
|
|
1271
1285
|
}
|
|
@@ -1582,6 +1596,8 @@
|
|
|
1582
1596
|
"classSpells": {
|
|
1583
1597
|
"description": "Homebrew use only",
|
|
1584
1598
|
"type": "array",
|
|
1599
|
+
"minItems": 1,
|
|
1600
|
+
"uniqueItems": true,
|
|
1585
1601
|
"items": {
|
|
1586
1602
|
"$ref": "../util.json#/$defs/spellListSpellRef"
|
|
1587
1603
|
}
|
|
@@ -1956,6 +1972,8 @@
|
|
|
1956
1972
|
"classSpells": {
|
|
1957
1973
|
"description": "Homebrew use only",
|
|
1958
1974
|
"type": "array",
|
|
1975
|
+
"minItems": 1,
|
|
1976
|
+
"uniqueItems": true,
|
|
1959
1977
|
"items": {
|
|
1960
1978
|
"$ref": "../util.json#/$defs/spellListSpellRef"
|
|
1961
1979
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.2",
|
|
4
4
|
"$id": "class.json",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
@@ -518,6 +518,8 @@
|
|
|
518
518
|
"subclassSpells": {
|
|
519
519
|
"description": "Homebrew use only; adds custom subclasses to lists in spells.\nDoes not enable VTT import - see \"additionalSpells\".",
|
|
520
520
|
"type": "array",
|
|
521
|
+
"minItems": 1,
|
|
522
|
+
"uniqueItems": true,
|
|
521
523
|
"items": {
|
|
522
524
|
"$ref": "../util.json#/$defs/spellListSpellRef"
|
|
523
525
|
}
|
|
@@ -529,6 +531,8 @@
|
|
|
529
531
|
".*": {
|
|
530
532
|
"type": "array",
|
|
531
533
|
"description": "For example, a druid circle, religious order, or other sub-subclass name",
|
|
534
|
+
"minItems": 1,
|
|
535
|
+
"uniqueItems": true,
|
|
532
536
|
"items": {
|
|
533
537
|
"$ref": "../util.json#/$defs/spellListSpellRef"
|
|
534
538
|
}
|
|
@@ -675,6 +679,8 @@
|
|
|
675
679
|
"subclassSpells": {
|
|
676
680
|
"description": "Homebrew use only; adds custom subclasses to lists in spells.\nDoes not enable VTT import - see \"additionalSpells\".",
|
|
677
681
|
"type": "array",
|
|
682
|
+
"minItems": 1,
|
|
683
|
+
"uniqueItems": true,
|
|
678
684
|
"items": {
|
|
679
685
|
"$ref": "../util.json#/$defs/spellListSpellRef"
|
|
680
686
|
}
|
|
@@ -686,6 +692,8 @@
|
|
|
686
692
|
".*": {
|
|
687
693
|
"type": "array",
|
|
688
694
|
"description": "For example, a druid circle, religious order, or other sub-subclass name",
|
|
695
|
+
"minItems": 1,
|
|
696
|
+
"uniqueItems": true,
|
|
689
697
|
"items": {
|
|
690
698
|
"$ref": "../util.json#/$defs/spellListSpellRef"
|
|
691
699
|
}
|
|
@@ -887,6 +895,8 @@
|
|
|
887
895
|
"subclassSpells": {
|
|
888
896
|
"description": "Homebrew use only; adds custom subclasses to lists in spells.\nDoes not enable VTT import - see \"additionalSpells\".",
|
|
889
897
|
"type": "array",
|
|
898
|
+
"minItems": 1,
|
|
899
|
+
"uniqueItems": true,
|
|
890
900
|
"items": {
|
|
891
901
|
"$ref": "../util.json#/$defs/spellListSpellRef"
|
|
892
902
|
}
|
|
@@ -898,6 +908,8 @@
|
|
|
898
908
|
".*": {
|
|
899
909
|
"type": "array",
|
|
900
910
|
"description": "For example, a druid circle, religious order, or other sub-subclass name",
|
|
911
|
+
"minItems": 1,
|
|
912
|
+
"uniqueItems": true,
|
|
901
913
|
"items": {
|
|
902
914
|
"$ref": "../util.json#/$defs/spellListSpellRef"
|
|
903
915
|
}
|
|
@@ -1266,6 +1278,8 @@
|
|
|
1266
1278
|
"classSpells": {
|
|
1267
1279
|
"description": "Homebrew use only",
|
|
1268
1280
|
"type": "array",
|
|
1281
|
+
"minItems": 1,
|
|
1282
|
+
"uniqueItems": true,
|
|
1269
1283
|
"items": {
|
|
1270
1284
|
"$ref": "../util.json#/$defs/spellListSpellRef"
|
|
1271
1285
|
}
|
|
@@ -1582,6 +1596,8 @@
|
|
|
1582
1596
|
"classSpells": {
|
|
1583
1597
|
"description": "Homebrew use only",
|
|
1584
1598
|
"type": "array",
|
|
1599
|
+
"minItems": 1,
|
|
1600
|
+
"uniqueItems": true,
|
|
1585
1601
|
"items": {
|
|
1586
1602
|
"$ref": "../util.json#/$defs/spellListSpellRef"
|
|
1587
1603
|
}
|
|
@@ -1956,6 +1972,8 @@
|
|
|
1956
1972
|
"classSpells": {
|
|
1957
1973
|
"description": "Homebrew use only",
|
|
1958
1974
|
"type": "array",
|
|
1975
|
+
"minItems": 1,
|
|
1976
|
+
"uniqueItems": true,
|
|
1959
1977
|
"items": {
|
|
1960
1978
|
"$ref": "../util.json#/$defs/spellListSpellRef"
|
|
1961
1979
|
}
|