5etools-utils 0.12.64 → 0.12.65
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 +3 -3
- package/schema/brew/bestiary/bestiary.json +164 -13
- package/schema/brew/class/class.json +6 -6
- package/schema/brew/class/fluff-class.json +9 -0
- package/schema/brew/entry.json +53 -4
- package/schema/brew/feats.json +3 -3
- package/schema/brew/optionalfeatures.json +3 -3
- package/schema/brew/races.json +6 -6
- package/schema/brew/util-additionalspells.json +302 -0
- package/schema/brew/util-foundry.json +1 -1
- package/schema/brew/util.json +10 -295
- package/schema/brew-fast/backgrounds.json +3 -3
- package/schema/brew-fast/bestiary/bestiary.json +164 -13
- package/schema/brew-fast/class/class.json +6 -6
- package/schema/brew-fast/class/fluff-class.json +9 -0
- package/schema/brew-fast/entry.json +53 -4
- package/schema/brew-fast/feats.json +3 -3
- package/schema/brew-fast/optionalfeatures.json +3 -3
- package/schema/brew-fast/races.json +6 -6
- package/schema/brew-fast/util-additionalspells.json +302 -0
- package/schema/brew-fast/util-foundry.json +1 -1
- package/schema/brew-fast/util.json +10 -295
- package/schema/site/backgrounds.json +3 -3
- package/schema/site/bestiary/bestiary.json +164 -13
- package/schema/site/class/class.json +6 -6
- package/schema/site/class/fluff-class.json +9 -0
- package/schema/site/entry.json +53 -4
- package/schema/site/feats.json +3 -3
- package/schema/site/optionalfeatures.json +3 -3
- package/schema/site/races.json +6 -6
- package/schema/site/util-additionalspells.json +302 -0
- package/schema/site/util-foundry.json +1 -1
- package/schema/site/util.json +10 -295
- package/schema/site-fast/backgrounds.json +3 -3
- package/schema/site-fast/bestiary/bestiary.json +164 -13
- package/schema/site-fast/class/class.json +6 -6
- package/schema/site-fast/class/fluff-class.json +9 -0
- package/schema/site-fast/entry.json +53 -4
- package/schema/site-fast/feats.json +3 -3
- package/schema/site-fast/optionalfeatures.json +3 -3
- package/schema/site-fast/races.json +6 -6
- package/schema/site-fast/util-additionalspells.json +302 -0
- package/schema/site-fast/util-foundry.json +1 -1
- package/schema/site-fast/util.json +10 -295
- package/schema/ua/backgrounds.json +3 -3
- package/schema/ua/bestiary/bestiary.json +164 -13
- package/schema/ua/class/class.json +6 -6
- package/schema/ua/class/fluff-class.json +9 -0
- package/schema/ua/entry.json +53 -4
- package/schema/ua/feats.json +3 -3
- package/schema/ua/optionalfeatures.json +3 -3
- package/schema/ua/races.json +6 -6
- package/schema/ua/util-additionalspells.json +302 -0
- package/schema/ua/util-foundry.json +1 -1
- package/schema/ua/util.json +10 -295
- package/schema/ua-fast/backgrounds.json +3 -3
- package/schema/ua-fast/bestiary/bestiary.json +164 -13
- package/schema/ua-fast/class/class.json +6 -6
- package/schema/ua-fast/class/fluff-class.json +9 -0
- package/schema/ua-fast/entry.json +53 -4
- package/schema/ua-fast/feats.json +3 -3
- package/schema/ua-fast/optionalfeatures.json +3 -3
- package/schema/ua-fast/races.json +6 -6
- package/schema/ua-fast/util-additionalspells.json +302 -0
- package/schema/ua-fast/util-foundry.json +1 -1
- package/schema/ua-fast/util.json +10 -295
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "1.21.
|
|
3
|
+
"version": "1.21.45",
|
|
4
4
|
"title": "Bestiary Schema",
|
|
5
5
|
"$id": "bestiary.json",
|
|
6
6
|
"type": "object",
|
|
@@ -110,6 +110,10 @@
|
|
|
110
110
|
}
|
|
111
111
|
]
|
|
112
112
|
},
|
|
113
|
+
"_legendaryActions": {
|
|
114
|
+
"type": "integer",
|
|
115
|
+
"minimum": 1
|
|
116
|
+
},
|
|
113
117
|
"creatureData": {
|
|
114
118
|
"type": "object",
|
|
115
119
|
"properties": {
|
|
@@ -963,8 +967,10 @@
|
|
|
963
967
|
]
|
|
964
968
|
},
|
|
965
969
|
"legendaryActions": {
|
|
966
|
-
"
|
|
967
|
-
|
|
970
|
+
"$ref": "#/$defs/_legendaryActions"
|
|
971
|
+
},
|
|
972
|
+
"legendaryActionsLair": {
|
|
973
|
+
"$ref": "#/$defs/_legendaryActions"
|
|
968
974
|
},
|
|
969
975
|
"legendaryHeader": {
|
|
970
976
|
"type": "array",
|
|
@@ -1097,6 +1103,7 @@
|
|
|
1097
1103
|
"items": {
|
|
1098
1104
|
"type": "string",
|
|
1099
1105
|
"enum": [
|
|
1106
|
+
"any",
|
|
1100
1107
|
"underwater",
|
|
1101
1108
|
"coastal",
|
|
1102
1109
|
"mountain",
|
|
@@ -1108,10 +1115,56 @@
|
|
|
1108
1115
|
"swamp",
|
|
1109
1116
|
"underdark",
|
|
1110
1117
|
"desert",
|
|
1111
|
-
"any",
|
|
1112
1118
|
"badlands",
|
|
1113
1119
|
"farmland",
|
|
1114
|
-
"planar"
|
|
1120
|
+
"planar",
|
|
1121
|
+
"planar, transitive",
|
|
1122
|
+
"planar, elemental",
|
|
1123
|
+
"planar, inner",
|
|
1124
|
+
"planar, upper",
|
|
1125
|
+
"planar, lower",
|
|
1126
|
+
"planar, water",
|
|
1127
|
+
"planar, earth",
|
|
1128
|
+
"planar, fire",
|
|
1129
|
+
"planar, air",
|
|
1130
|
+
"planar, ooze",
|
|
1131
|
+
"planar, magma",
|
|
1132
|
+
"planar, ash",
|
|
1133
|
+
"planar, ice",
|
|
1134
|
+
"planar, ethereal",
|
|
1135
|
+
"planar, astral",
|
|
1136
|
+
"planar, arborea",
|
|
1137
|
+
"planar, arcadia",
|
|
1138
|
+
"planar, beastlands",
|
|
1139
|
+
"planar, bytopia",
|
|
1140
|
+
"planar, elysium",
|
|
1141
|
+
"planar, mount celestia",
|
|
1142
|
+
"planar, ysgard",
|
|
1143
|
+
"planar, abyss",
|
|
1144
|
+
"planar, acheron",
|
|
1145
|
+
"planar, carceri",
|
|
1146
|
+
"planar, gehenna",
|
|
1147
|
+
"planar, hades",
|
|
1148
|
+
"planar, nine hells",
|
|
1149
|
+
"planar, pandemonium",
|
|
1150
|
+
"planar, limbo",
|
|
1151
|
+
"planar, mechanus",
|
|
1152
|
+
"planar, outlands"
|
|
1153
|
+
]
|
|
1154
|
+
}
|
|
1155
|
+
},
|
|
1156
|
+
"treasure": {
|
|
1157
|
+
"type": "array",
|
|
1158
|
+
"minItems": 1,
|
|
1159
|
+
"items": {
|
|
1160
|
+
"type": "string",
|
|
1161
|
+
"enum": [
|
|
1162
|
+
"any",
|
|
1163
|
+
"individual",
|
|
1164
|
+
"arcana",
|
|
1165
|
+
"armaments",
|
|
1166
|
+
"implements",
|
|
1167
|
+
"relics"
|
|
1115
1168
|
]
|
|
1116
1169
|
}
|
|
1117
1170
|
},
|
|
@@ -2276,8 +2329,10 @@
|
|
|
2276
2329
|
]
|
|
2277
2330
|
},
|
|
2278
2331
|
"legendaryActions": {
|
|
2279
|
-
"
|
|
2280
|
-
|
|
2332
|
+
"$ref": "#/$defs/_legendaryActions"
|
|
2333
|
+
},
|
|
2334
|
+
"legendaryActionsLair": {
|
|
2335
|
+
"$ref": "#/$defs/_legendaryActions"
|
|
2281
2336
|
},
|
|
2282
2337
|
"legendaryHeader": {
|
|
2283
2338
|
"type": "array",
|
|
@@ -2410,6 +2465,7 @@
|
|
|
2410
2465
|
"items": {
|
|
2411
2466
|
"type": "string",
|
|
2412
2467
|
"enum": [
|
|
2468
|
+
"any",
|
|
2413
2469
|
"underwater",
|
|
2414
2470
|
"coastal",
|
|
2415
2471
|
"mountain",
|
|
@@ -2421,10 +2477,56 @@
|
|
|
2421
2477
|
"swamp",
|
|
2422
2478
|
"underdark",
|
|
2423
2479
|
"desert",
|
|
2424
|
-
"any",
|
|
2425
2480
|
"badlands",
|
|
2426
2481
|
"farmland",
|
|
2427
|
-
"planar"
|
|
2482
|
+
"planar",
|
|
2483
|
+
"planar, transitive",
|
|
2484
|
+
"planar, elemental",
|
|
2485
|
+
"planar, inner",
|
|
2486
|
+
"planar, upper",
|
|
2487
|
+
"planar, lower",
|
|
2488
|
+
"planar, water",
|
|
2489
|
+
"planar, earth",
|
|
2490
|
+
"planar, fire",
|
|
2491
|
+
"planar, air",
|
|
2492
|
+
"planar, ooze",
|
|
2493
|
+
"planar, magma",
|
|
2494
|
+
"planar, ash",
|
|
2495
|
+
"planar, ice",
|
|
2496
|
+
"planar, ethereal",
|
|
2497
|
+
"planar, astral",
|
|
2498
|
+
"planar, arborea",
|
|
2499
|
+
"planar, arcadia",
|
|
2500
|
+
"planar, beastlands",
|
|
2501
|
+
"planar, bytopia",
|
|
2502
|
+
"planar, elysium",
|
|
2503
|
+
"planar, mount celestia",
|
|
2504
|
+
"planar, ysgard",
|
|
2505
|
+
"planar, abyss",
|
|
2506
|
+
"planar, acheron",
|
|
2507
|
+
"planar, carceri",
|
|
2508
|
+
"planar, gehenna",
|
|
2509
|
+
"planar, hades",
|
|
2510
|
+
"planar, nine hells",
|
|
2511
|
+
"planar, pandemonium",
|
|
2512
|
+
"planar, limbo",
|
|
2513
|
+
"planar, mechanus",
|
|
2514
|
+
"planar, outlands"
|
|
2515
|
+
]
|
|
2516
|
+
}
|
|
2517
|
+
},
|
|
2518
|
+
"treasure": {
|
|
2519
|
+
"type": "array",
|
|
2520
|
+
"minItems": 1,
|
|
2521
|
+
"items": {
|
|
2522
|
+
"type": "string",
|
|
2523
|
+
"enum": [
|
|
2524
|
+
"any",
|
|
2525
|
+
"individual",
|
|
2526
|
+
"arcana",
|
|
2527
|
+
"armaments",
|
|
2528
|
+
"implements",
|
|
2529
|
+
"relics"
|
|
2428
2530
|
]
|
|
2429
2531
|
}
|
|
2430
2532
|
},
|
|
@@ -3594,8 +3696,10 @@
|
|
|
3594
3696
|
]
|
|
3595
3697
|
},
|
|
3596
3698
|
"legendaryActions": {
|
|
3597
|
-
"
|
|
3598
|
-
|
|
3699
|
+
"$ref": "#/$defs/_legendaryActions"
|
|
3700
|
+
},
|
|
3701
|
+
"legendaryActionsLair": {
|
|
3702
|
+
"$ref": "#/$defs/_legendaryActions"
|
|
3599
3703
|
},
|
|
3600
3704
|
"legendaryHeader": {
|
|
3601
3705
|
"type": "array",
|
|
@@ -3728,6 +3832,7 @@
|
|
|
3728
3832
|
"items": {
|
|
3729
3833
|
"type": "string",
|
|
3730
3834
|
"enum": [
|
|
3835
|
+
"any",
|
|
3731
3836
|
"underwater",
|
|
3732
3837
|
"coastal",
|
|
3733
3838
|
"mountain",
|
|
@@ -3739,10 +3844,56 @@
|
|
|
3739
3844
|
"swamp",
|
|
3740
3845
|
"underdark",
|
|
3741
3846
|
"desert",
|
|
3742
|
-
"any",
|
|
3743
3847
|
"badlands",
|
|
3744
3848
|
"farmland",
|
|
3745
|
-
"planar"
|
|
3849
|
+
"planar",
|
|
3850
|
+
"planar, transitive",
|
|
3851
|
+
"planar, elemental",
|
|
3852
|
+
"planar, inner",
|
|
3853
|
+
"planar, upper",
|
|
3854
|
+
"planar, lower",
|
|
3855
|
+
"planar, water",
|
|
3856
|
+
"planar, earth",
|
|
3857
|
+
"planar, fire",
|
|
3858
|
+
"planar, air",
|
|
3859
|
+
"planar, ooze",
|
|
3860
|
+
"planar, magma",
|
|
3861
|
+
"planar, ash",
|
|
3862
|
+
"planar, ice",
|
|
3863
|
+
"planar, ethereal",
|
|
3864
|
+
"planar, astral",
|
|
3865
|
+
"planar, arborea",
|
|
3866
|
+
"planar, arcadia",
|
|
3867
|
+
"planar, beastlands",
|
|
3868
|
+
"planar, bytopia",
|
|
3869
|
+
"planar, elysium",
|
|
3870
|
+
"planar, mount celestia",
|
|
3871
|
+
"planar, ysgard",
|
|
3872
|
+
"planar, abyss",
|
|
3873
|
+
"planar, acheron",
|
|
3874
|
+
"planar, carceri",
|
|
3875
|
+
"planar, gehenna",
|
|
3876
|
+
"planar, hades",
|
|
3877
|
+
"planar, nine hells",
|
|
3878
|
+
"planar, pandemonium",
|
|
3879
|
+
"planar, limbo",
|
|
3880
|
+
"planar, mechanus",
|
|
3881
|
+
"planar, outlands"
|
|
3882
|
+
]
|
|
3883
|
+
}
|
|
3884
|
+
},
|
|
3885
|
+
"treasure": {
|
|
3886
|
+
"type": "array",
|
|
3887
|
+
"minItems": 1,
|
|
3888
|
+
"items": {
|
|
3889
|
+
"type": "string",
|
|
3890
|
+
"enum": [
|
|
3891
|
+
"any",
|
|
3892
|
+
"individual",
|
|
3893
|
+
"arcana",
|
|
3894
|
+
"armaments",
|
|
3895
|
+
"implements",
|
|
3896
|
+
"relics"
|
|
3746
3897
|
]
|
|
3747
3898
|
}
|
|
3748
3899
|
},
|
|
@@ -710,7 +710,7 @@
|
|
|
710
710
|
"$ref": "../util.json#/$defs/otherSources"
|
|
711
711
|
},
|
|
712
712
|
"additionalSpells": {
|
|
713
|
-
"$ref": "../util.json#/$defs/additionalSpellsArray"
|
|
713
|
+
"$ref": "../util-additionalspells.json#/$defs/additionalSpellsArray"
|
|
714
714
|
},
|
|
715
715
|
"hasFluff": {
|
|
716
716
|
"const": true
|
|
@@ -907,7 +907,7 @@
|
|
|
907
907
|
"$ref": "../util.json#/$defs/otherSources"
|
|
908
908
|
},
|
|
909
909
|
"additionalSpells": {
|
|
910
|
-
"$ref": "../util.json#/$defs/additionalSpellsArray"
|
|
910
|
+
"$ref": "../util-additionalspells.json#/$defs/additionalSpellsArray"
|
|
911
911
|
},
|
|
912
912
|
"hasFluff": {
|
|
913
913
|
"const": true
|
|
@@ -1104,7 +1104,7 @@
|
|
|
1104
1104
|
"$ref": "../util.json#/$defs/otherSources"
|
|
1105
1105
|
},
|
|
1106
1106
|
"additionalSpells": {
|
|
1107
|
-
"$ref": "../util.json#/$defs/additionalSpellsArray"
|
|
1107
|
+
"$ref": "../util-additionalspells.json#/$defs/additionalSpellsArray"
|
|
1108
1108
|
},
|
|
1109
1109
|
"hasFluff": {
|
|
1110
1110
|
"const": true
|
|
@@ -1518,7 +1518,7 @@
|
|
|
1518
1518
|
]
|
|
1519
1519
|
},
|
|
1520
1520
|
"additionalSpells": {
|
|
1521
|
-
"$ref": "../util.json#/$defs/additionalSpellsArray"
|
|
1521
|
+
"$ref": "../util-additionalspells.json#/$defs/additionalSpellsArray"
|
|
1522
1522
|
},
|
|
1523
1523
|
"hasFluff": {
|
|
1524
1524
|
"const": true
|
|
@@ -1807,7 +1807,7 @@
|
|
|
1807
1807
|
]
|
|
1808
1808
|
},
|
|
1809
1809
|
"additionalSpells": {
|
|
1810
|
-
"$ref": "../util.json#/$defs/additionalSpellsArray"
|
|
1810
|
+
"$ref": "../util-additionalspells.json#/$defs/additionalSpellsArray"
|
|
1811
1811
|
},
|
|
1812
1812
|
"hasFluff": {
|
|
1813
1813
|
"const": true
|
|
@@ -2099,7 +2099,7 @@
|
|
|
2099
2099
|
]
|
|
2100
2100
|
},
|
|
2101
2101
|
"additionalSpells": {
|
|
2102
|
-
"$ref": "../util.json#/$defs/additionalSpellsArray"
|
|
2102
|
+
"$ref": "../util-additionalspells.json#/$defs/additionalSpellsArray"
|
|
2103
2103
|
},
|
|
2104
2104
|
"hasFluff": {
|
|
2105
2105
|
"const": true
|
|
@@ -10,6 +10,9 @@
|
|
|
10
10
|
"name": {
|
|
11
11
|
"type": "string"
|
|
12
12
|
},
|
|
13
|
+
"preserveName": {
|
|
14
|
+
"const": true
|
|
15
|
+
},
|
|
13
16
|
"source": {
|
|
14
17
|
"$ref": "../util.json#/$defs/source"
|
|
15
18
|
},
|
|
@@ -56,6 +59,9 @@
|
|
|
56
59
|
"name": {
|
|
57
60
|
"type": "string"
|
|
58
61
|
},
|
|
62
|
+
"preserveName": {
|
|
63
|
+
"const": true
|
|
64
|
+
},
|
|
59
65
|
"source": {
|
|
60
66
|
"$ref": "../util.json#/$defs/source"
|
|
61
67
|
},
|
|
@@ -103,6 +109,9 @@
|
|
|
103
109
|
"name": {
|
|
104
110
|
"type": "string"
|
|
105
111
|
},
|
|
112
|
+
"preserveName": {
|
|
113
|
+
"const": true
|
|
114
|
+
},
|
|
106
115
|
"source": {
|
|
107
116
|
"$ref": "../util.json#/$defs/source"
|
|
108
117
|
},
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "entry.json",
|
|
4
4
|
"title": "Entry",
|
|
5
5
|
"description": "A recursively renderable object.",
|
|
6
|
-
"version": "1.9.
|
|
6
|
+
"version": "1.9.5",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_arrayOfSpell": {
|
|
9
9
|
"type": "array",
|
|
@@ -39,7 +39,46 @@
|
|
|
39
39
|
},
|
|
40
40
|
"_entryDataData": {
|
|
41
41
|
"description": "A generic object for storing special data for external use-cases. Keys prefixed with \"rd-\" should be added as \"data-\" HTML attributes when rendering to HTML.",
|
|
42
|
-
"type": "object"
|
|
42
|
+
"type": "object",
|
|
43
|
+
"properties": {
|
|
44
|
+
"genTables": {
|
|
45
|
+
"type": "object",
|
|
46
|
+
"properties": {
|
|
47
|
+
"tableIgnore": {
|
|
48
|
+
"const": true
|
|
49
|
+
},
|
|
50
|
+
"tableChapterIgnore": {
|
|
51
|
+
"const": true
|
|
52
|
+
},
|
|
53
|
+
"tableInclude": {
|
|
54
|
+
"const": true
|
|
55
|
+
},
|
|
56
|
+
"tableNamePrefix": {
|
|
57
|
+
"type": "string"
|
|
58
|
+
},
|
|
59
|
+
"tableName": {
|
|
60
|
+
"type": "string"
|
|
61
|
+
},
|
|
62
|
+
"skipSectionPrefix": {
|
|
63
|
+
"const": true
|
|
64
|
+
},
|
|
65
|
+
"fauxGroupName": {
|
|
66
|
+
"type": "string"
|
|
67
|
+
},
|
|
68
|
+
"fauxGroupSource": {
|
|
69
|
+
"$ref": "util.json#/$defs/source"
|
|
70
|
+
},
|
|
71
|
+
"fauxGroupPage": {
|
|
72
|
+
"$ref": "util.json#/$defs/page"
|
|
73
|
+
},
|
|
74
|
+
"isFauxGroupAdditional": {
|
|
75
|
+
"const": true
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"additionalProperties": false,
|
|
79
|
+
"minProperties": 1
|
|
80
|
+
}
|
|
81
|
+
}
|
|
43
82
|
},
|
|
44
83
|
"_entryTableColLabelItem": {
|
|
45
84
|
"anyOf": [
|
|
@@ -3748,6 +3787,9 @@
|
|
|
3748
3787
|
"rest": {
|
|
3749
3788
|
"$ref": "#/$defs/entrySpellcasting_frequency"
|
|
3750
3789
|
},
|
|
3790
|
+
"restLong": {
|
|
3791
|
+
"$ref": "#/$defs/entrySpellcasting_frequency"
|
|
3792
|
+
},
|
|
3751
3793
|
"daily": {
|
|
3752
3794
|
"$ref": "#/$defs/entrySpellcasting_frequency"
|
|
3753
3795
|
},
|
|
@@ -3766,6 +3808,9 @@
|
|
|
3766
3808
|
"recharge": {
|
|
3767
3809
|
"$ref": "#/$defs/entrySpellcasting_recharge"
|
|
3768
3810
|
},
|
|
3811
|
+
"legendary": {
|
|
3812
|
+
"$ref": "#/$defs/entrySpellcasting_frequency"
|
|
3813
|
+
},
|
|
3769
3814
|
"spells": {
|
|
3770
3815
|
"type": "object",
|
|
3771
3816
|
"properties": {
|
|
@@ -3824,6 +3869,7 @@
|
|
|
3824
3869
|
"constant",
|
|
3825
3870
|
"will",
|
|
3826
3871
|
"rest",
|
|
3872
|
+
"restLong",
|
|
3827
3873
|
"daily",
|
|
3828
3874
|
"weekly",
|
|
3829
3875
|
"monthly",
|
|
@@ -3831,7 +3877,8 @@
|
|
|
3831
3877
|
"ritual",
|
|
3832
3878
|
"spells",
|
|
3833
3879
|
"charges",
|
|
3834
|
-
"recharge"
|
|
3880
|
+
"recharge",
|
|
3881
|
+
"legendary"
|
|
3835
3882
|
]
|
|
3836
3883
|
}
|
|
3837
3884
|
},
|
|
@@ -3851,7 +3898,9 @@
|
|
|
3851
3898
|
"trait",
|
|
3852
3899
|
"action",
|
|
3853
3900
|
"bonus",
|
|
3854
|
-
"reaction"
|
|
3901
|
+
"reaction",
|
|
3902
|
+
"legendary",
|
|
3903
|
+
"mythic"
|
|
3855
3904
|
]
|
|
3856
3905
|
},
|
|
3857
3906
|
"chargesItem": {
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"$ref": "util.json#/$defs/dataFeatCategory"
|
|
66
66
|
},
|
|
67
67
|
"additionalSpells": {
|
|
68
|
-
"$ref": "util.json#/$defs/additionalSpellsArray"
|
|
68
|
+
"$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
|
|
69
69
|
},
|
|
70
70
|
"languageProficiencies": {
|
|
71
71
|
"$ref": "util.json#/$defs/languageProficiencies"
|
|
@@ -204,7 +204,7 @@
|
|
|
204
204
|
"$ref": "util.json#/$defs/dataFeatCategory"
|
|
205
205
|
},
|
|
206
206
|
"additionalSpells": {
|
|
207
|
-
"$ref": "util.json#/$defs/additionalSpellsArray"
|
|
207
|
+
"$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
|
|
208
208
|
},
|
|
209
209
|
"languageProficiencies": {
|
|
210
210
|
"$ref": "util.json#/$defs/languageProficiencies"
|
|
@@ -346,7 +346,7 @@
|
|
|
346
346
|
"$ref": "util.json#/$defs/dataFeatCategory"
|
|
347
347
|
},
|
|
348
348
|
"additionalSpells": {
|
|
349
|
-
"$ref": "util.json#/$defs/additionalSpellsArray"
|
|
349
|
+
"$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
|
|
350
350
|
},
|
|
351
351
|
"languageProficiencies": {
|
|
352
352
|
"$ref": "util.json#/$defs/languageProficiencies"
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"type": "boolean"
|
|
69
69
|
},
|
|
70
70
|
"additionalSpells": {
|
|
71
|
-
"$ref": "util.json#/$defs/additionalSpellsArray"
|
|
71
|
+
"$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
|
|
72
72
|
},
|
|
73
73
|
"languageProficiencies": {
|
|
74
74
|
"$ref": "util.json#/$defs/languageProficiencies"
|
|
@@ -189,7 +189,7 @@
|
|
|
189
189
|
"type": "boolean"
|
|
190
190
|
},
|
|
191
191
|
"additionalSpells": {
|
|
192
|
-
"$ref": "util.json#/$defs/additionalSpellsArray"
|
|
192
|
+
"$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
|
|
193
193
|
},
|
|
194
194
|
"languageProficiencies": {
|
|
195
195
|
"$ref": "util.json#/$defs/languageProficiencies"
|
|
@@ -314,7 +314,7 @@
|
|
|
314
314
|
"type": "boolean"
|
|
315
315
|
},
|
|
316
316
|
"additionalSpells": {
|
|
317
|
-
"$ref": "util.json#/$defs/additionalSpellsArray"
|
|
317
|
+
"$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
|
|
318
318
|
},
|
|
319
319
|
"languageProficiencies": {
|
|
320
320
|
"$ref": "util.json#/$defs/languageProficiencies"
|
|
@@ -173,7 +173,7 @@
|
|
|
173
173
|
"type": "null"
|
|
174
174
|
},
|
|
175
175
|
{
|
|
176
|
-
"$ref": "util.json#/$defs/additionalSpellsArray"
|
|
176
|
+
"$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
|
|
177
177
|
}
|
|
178
178
|
]
|
|
179
179
|
},
|
|
@@ -437,7 +437,7 @@
|
|
|
437
437
|
"type": "null"
|
|
438
438
|
},
|
|
439
439
|
{
|
|
440
|
-
"$ref": "util.json#/$defs/additionalSpellsArray"
|
|
440
|
+
"$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
|
|
441
441
|
}
|
|
442
442
|
]
|
|
443
443
|
},
|
|
@@ -783,7 +783,7 @@
|
|
|
783
783
|
"type": "null"
|
|
784
784
|
},
|
|
785
785
|
{
|
|
786
|
-
"$ref": "util.json#/$defs/additionalSpellsArray"
|
|
786
|
+
"$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
|
|
787
787
|
}
|
|
788
788
|
]
|
|
789
789
|
},
|
|
@@ -1051,7 +1051,7 @@
|
|
|
1051
1051
|
"type": "null"
|
|
1052
1052
|
},
|
|
1053
1053
|
{
|
|
1054
|
-
"$ref": "util.json#/$defs/additionalSpellsArray"
|
|
1054
|
+
"$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
|
|
1055
1055
|
}
|
|
1056
1056
|
]
|
|
1057
1057
|
},
|
|
@@ -1325,7 +1325,7 @@
|
|
|
1325
1325
|
"type": "null"
|
|
1326
1326
|
},
|
|
1327
1327
|
{
|
|
1328
|
-
"$ref": "util.json#/$defs/additionalSpellsArray"
|
|
1328
|
+
"$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
|
|
1329
1329
|
}
|
|
1330
1330
|
]
|
|
1331
1331
|
},
|
|
@@ -1604,7 +1604,7 @@
|
|
|
1604
1604
|
"type": "null"
|
|
1605
1605
|
},
|
|
1606
1606
|
{
|
|
1607
|
-
"$ref": "util.json#/$defs/additionalSpellsArray"
|
|
1607
|
+
"$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
|
|
1608
1608
|
}
|
|
1609
1609
|
]
|
|
1610
1610
|
},
|