5etools-utils 0.8.21 → 0.8.23
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/bestiary/bestiary.json +28 -1
- package/schema/brew/items.json +6 -0
- package/schema/brew/spells/spells.json +4 -37
- package/schema/brew/util.json +40 -1
- package/schema/brew-fast/bestiary/bestiary.json +28 -1
- package/schema/brew-fast/items.json +6 -0
- package/schema/brew-fast/spells/spells.json +4 -37
- package/schema/brew-fast/util.json +40 -1
- package/schema/site/bestiary/bestiary.json +28 -1
- package/schema/site/items.json +6 -0
- package/schema/site/spells/spells.json +4 -37
- package/schema/site/util.json +40 -1
- package/schema/site-fast/bestiary/bestiary.json +28 -1
- package/schema/site-fast/items.json +6 -0
- package/schema/site-fast/spells/spells.json +4 -37
- package/schema/site-fast/util.json +40 -1
package/package.json
CHANGED
|
@@ -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.17",
|
|
4
4
|
"title": "Bestiary Schema",
|
|
5
5
|
"$id": "bestiary.json",
|
|
6
6
|
"type": "object",
|
|
@@ -1132,6 +1132,15 @@
|
|
|
1132
1132
|
]
|
|
1133
1133
|
}
|
|
1134
1134
|
},
|
|
1135
|
+
"attachedItems": {
|
|
1136
|
+
"type": "array",
|
|
1137
|
+
"minItems": 1,
|
|
1138
|
+
"uniqueItems": true,
|
|
1139
|
+
"items": {
|
|
1140
|
+
"description": "A UID, e.g. \"longsword|phb\"",
|
|
1141
|
+
"type": "string"
|
|
1142
|
+
}
|
|
1143
|
+
},
|
|
1135
1144
|
"conditionInflict": {
|
|
1136
1145
|
"$ref": "../util.json#/$defs/tagsConditions"
|
|
1137
1146
|
},
|
|
@@ -2287,6 +2296,15 @@
|
|
|
2287
2296
|
]
|
|
2288
2297
|
}
|
|
2289
2298
|
},
|
|
2299
|
+
"attachedItems": {
|
|
2300
|
+
"type": "array",
|
|
2301
|
+
"minItems": 1,
|
|
2302
|
+
"uniqueItems": true,
|
|
2303
|
+
"items": {
|
|
2304
|
+
"description": "A UID, e.g. \"longsword|phb\"",
|
|
2305
|
+
"type": "string"
|
|
2306
|
+
}
|
|
2307
|
+
},
|
|
2290
2308
|
"conditionInflict": {
|
|
2291
2309
|
"$ref": "../util.json#/$defs/tagsConditions"
|
|
2292
2310
|
},
|
|
@@ -3456,6 +3474,15 @@
|
|
|
3456
3474
|
]
|
|
3457
3475
|
}
|
|
3458
3476
|
},
|
|
3477
|
+
"attachedItems": {
|
|
3478
|
+
"type": "array",
|
|
3479
|
+
"minItems": 1,
|
|
3480
|
+
"uniqueItems": true,
|
|
3481
|
+
"items": {
|
|
3482
|
+
"description": "A UID, e.g. \"longsword|phb\"",
|
|
3483
|
+
"type": "string"
|
|
3484
|
+
}
|
|
3485
|
+
},
|
|
3459
3486
|
"conditionInflict": {
|
|
3460
3487
|
"$ref": "../util.json#/$defs/tagsConditions"
|
|
3461
3488
|
},
|
package/schema/brew/items.json
CHANGED
|
@@ -251,6 +251,8 @@
|
|
|
251
251
|
},
|
|
252
252
|
"attachedSpells": {
|
|
253
253
|
"type": "array",
|
|
254
|
+
"minItems": 1,
|
|
255
|
+
"uniqueItems": true,
|
|
254
256
|
"items": {
|
|
255
257
|
"type": "string"
|
|
256
258
|
}
|
|
@@ -850,6 +852,8 @@
|
|
|
850
852
|
},
|
|
851
853
|
"attachedSpells": {
|
|
852
854
|
"type": "array",
|
|
855
|
+
"minItems": 1,
|
|
856
|
+
"uniqueItems": true,
|
|
853
857
|
"items": {
|
|
854
858
|
"type": "string"
|
|
855
859
|
}
|
|
@@ -1452,6 +1456,8 @@
|
|
|
1452
1456
|
},
|
|
1453
1457
|
"attachedSpells": {
|
|
1454
1458
|
"type": "array",
|
|
1459
|
+
"minItems": 1,
|
|
1460
|
+
"uniqueItems": true,
|
|
1455
1461
|
"items": {
|
|
1456
1462
|
"type": "string"
|
|
1457
1463
|
}
|
|
@@ -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.
|
|
4
|
+
"version": "1.9.6",
|
|
5
5
|
"title": "Spells",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"$defs": {
|
|
@@ -15,18 +15,7 @@
|
|
|
15
15
|
"type": "integer"
|
|
16
16
|
},
|
|
17
17
|
"school": {
|
|
18
|
-
"
|
|
19
|
-
"examples": [
|
|
20
|
-
"A",
|
|
21
|
-
"V",
|
|
22
|
-
"E",
|
|
23
|
-
"I",
|
|
24
|
-
"D",
|
|
25
|
-
"N",
|
|
26
|
-
"T",
|
|
27
|
-
"C",
|
|
28
|
-
"P"
|
|
29
|
-
]
|
|
18
|
+
"$ref": "../util.json#/$defs/spellSchool"
|
|
30
19
|
},
|
|
31
20
|
"meta": {
|
|
32
21
|
"type": "object",
|
|
@@ -584,18 +573,7 @@
|
|
|
584
573
|
"type": "integer"
|
|
585
574
|
},
|
|
586
575
|
"school": {
|
|
587
|
-
"
|
|
588
|
-
"examples": [
|
|
589
|
-
"A",
|
|
590
|
-
"V",
|
|
591
|
-
"E",
|
|
592
|
-
"I",
|
|
593
|
-
"D",
|
|
594
|
-
"N",
|
|
595
|
-
"T",
|
|
596
|
-
"C",
|
|
597
|
-
"P"
|
|
598
|
-
]
|
|
576
|
+
"$ref": "../util.json#/$defs/spellSchool"
|
|
599
577
|
},
|
|
600
578
|
"meta": {
|
|
601
579
|
"type": "object",
|
|
@@ -1161,18 +1139,7 @@
|
|
|
1161
1139
|
"type": "integer"
|
|
1162
1140
|
},
|
|
1163
1141
|
"school": {
|
|
1164
|
-
"
|
|
1165
|
-
"examples": [
|
|
1166
|
-
"A",
|
|
1167
|
-
"V",
|
|
1168
|
-
"E",
|
|
1169
|
-
"I",
|
|
1170
|
-
"D",
|
|
1171
|
-
"N",
|
|
1172
|
-
"T",
|
|
1173
|
-
"C",
|
|
1174
|
-
"P"
|
|
1175
|
-
]
|
|
1142
|
+
"$ref": "../util.json#/$defs/spellSchool"
|
|
1176
1143
|
},
|
|
1177
1144
|
"meta": {
|
|
1178
1145
|
"type": "object",
|
package/schema/brew/util.json
CHANGED
|
@@ -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.13.
|
|
6
|
+
"version": "1.13.20",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaBlock": {
|
|
9
9
|
"type": "object",
|
|
@@ -2527,6 +2527,20 @@
|
|
|
2527
2527
|
"T"
|
|
2528
2528
|
]
|
|
2529
2529
|
},
|
|
2530
|
+
"spellSchool": {
|
|
2531
|
+
"type": "string",
|
|
2532
|
+
"examples": [
|
|
2533
|
+
"A",
|
|
2534
|
+
"V",
|
|
2535
|
+
"E",
|
|
2536
|
+
"I",
|
|
2537
|
+
"D",
|
|
2538
|
+
"N",
|
|
2539
|
+
"T",
|
|
2540
|
+
"C",
|
|
2541
|
+
"P"
|
|
2542
|
+
]
|
|
2543
|
+
},
|
|
2530
2544
|
"genericFluffArrayItemData": {
|
|
2531
2545
|
"type": "object",
|
|
2532
2546
|
"properties": {
|
|
@@ -4051,6 +4065,31 @@
|
|
|
4051
4065
|
"spellListSpellRef": {
|
|
4052
4066
|
"description": "A reference to a spell or an existing spell list, linked by name and source. Assumes PHB as the source, if none is provided.",
|
|
4053
4067
|
"oneOf": [
|
|
4068
|
+
{
|
|
4069
|
+
"description": "A group spell list",
|
|
4070
|
+
"type": "object",
|
|
4071
|
+
"properties": {
|
|
4072
|
+
"groupName": {
|
|
4073
|
+
"type": "string"
|
|
4074
|
+
},
|
|
4075
|
+
"groupSource": {
|
|
4076
|
+
"type": "string"
|
|
4077
|
+
},
|
|
4078
|
+
"spellSchools": {
|
|
4079
|
+
"type": "array",
|
|
4080
|
+
"items": {
|
|
4081
|
+
"$ref": "#/$defs/spellSchool"
|
|
4082
|
+
},
|
|
4083
|
+
"minItems": 1,
|
|
4084
|
+
"uniqueItems": true
|
|
4085
|
+
}
|
|
4086
|
+
},
|
|
4087
|
+
"required": [
|
|
4088
|
+
"groupName",
|
|
4089
|
+
"groupSource"
|
|
4090
|
+
],
|
|
4091
|
+
"additionalProperties": false
|
|
4092
|
+
},
|
|
4054
4093
|
{
|
|
4055
4094
|
"description": "Another class's spell list",
|
|
4056
4095
|
"type": "object",
|
|
@@ -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.17",
|
|
4
4
|
"title": "Bestiary Schema",
|
|
5
5
|
"$id": "bestiary.json",
|
|
6
6
|
"type": "object",
|
|
@@ -1132,6 +1132,15 @@
|
|
|
1132
1132
|
]
|
|
1133
1133
|
}
|
|
1134
1134
|
},
|
|
1135
|
+
"attachedItems": {
|
|
1136
|
+
"type": "array",
|
|
1137
|
+
"minItems": 1,
|
|
1138
|
+
"uniqueItems": true,
|
|
1139
|
+
"items": {
|
|
1140
|
+
"description": "A UID, e.g. \"longsword|phb\"",
|
|
1141
|
+
"type": "string"
|
|
1142
|
+
}
|
|
1143
|
+
},
|
|
1135
1144
|
"conditionInflict": {
|
|
1136
1145
|
"$ref": "../util.json#/$defs/tagsConditions"
|
|
1137
1146
|
},
|
|
@@ -2287,6 +2296,15 @@
|
|
|
2287
2296
|
]
|
|
2288
2297
|
}
|
|
2289
2298
|
},
|
|
2299
|
+
"attachedItems": {
|
|
2300
|
+
"type": "array",
|
|
2301
|
+
"minItems": 1,
|
|
2302
|
+
"uniqueItems": true,
|
|
2303
|
+
"items": {
|
|
2304
|
+
"description": "A UID, e.g. \"longsword|phb\"",
|
|
2305
|
+
"type": "string"
|
|
2306
|
+
}
|
|
2307
|
+
},
|
|
2290
2308
|
"conditionInflict": {
|
|
2291
2309
|
"$ref": "../util.json#/$defs/tagsConditions"
|
|
2292
2310
|
},
|
|
@@ -3456,6 +3474,15 @@
|
|
|
3456
3474
|
]
|
|
3457
3475
|
}
|
|
3458
3476
|
},
|
|
3477
|
+
"attachedItems": {
|
|
3478
|
+
"type": "array",
|
|
3479
|
+
"minItems": 1,
|
|
3480
|
+
"uniqueItems": true,
|
|
3481
|
+
"items": {
|
|
3482
|
+
"description": "A UID, e.g. \"longsword|phb\"",
|
|
3483
|
+
"type": "string"
|
|
3484
|
+
}
|
|
3485
|
+
},
|
|
3459
3486
|
"conditionInflict": {
|
|
3460
3487
|
"$ref": "../util.json#/$defs/tagsConditions"
|
|
3461
3488
|
},
|
|
@@ -251,6 +251,8 @@
|
|
|
251
251
|
},
|
|
252
252
|
"attachedSpells": {
|
|
253
253
|
"type": "array",
|
|
254
|
+
"minItems": 1,
|
|
255
|
+
"uniqueItems": true,
|
|
254
256
|
"items": {
|
|
255
257
|
"type": "string"
|
|
256
258
|
}
|
|
@@ -850,6 +852,8 @@
|
|
|
850
852
|
},
|
|
851
853
|
"attachedSpells": {
|
|
852
854
|
"type": "array",
|
|
855
|
+
"minItems": 1,
|
|
856
|
+
"uniqueItems": true,
|
|
853
857
|
"items": {
|
|
854
858
|
"type": "string"
|
|
855
859
|
}
|
|
@@ -1452,6 +1456,8 @@
|
|
|
1452
1456
|
},
|
|
1453
1457
|
"attachedSpells": {
|
|
1454
1458
|
"type": "array",
|
|
1459
|
+
"minItems": 1,
|
|
1460
|
+
"uniqueItems": true,
|
|
1455
1461
|
"items": {
|
|
1456
1462
|
"type": "string"
|
|
1457
1463
|
}
|
|
@@ -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.
|
|
4
|
+
"version": "1.9.6",
|
|
5
5
|
"title": "Spells",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"$defs": {
|
|
@@ -15,18 +15,7 @@
|
|
|
15
15
|
"type": "integer"
|
|
16
16
|
},
|
|
17
17
|
"school": {
|
|
18
|
-
"
|
|
19
|
-
"examples": [
|
|
20
|
-
"A",
|
|
21
|
-
"V",
|
|
22
|
-
"E",
|
|
23
|
-
"I",
|
|
24
|
-
"D",
|
|
25
|
-
"N",
|
|
26
|
-
"T",
|
|
27
|
-
"C",
|
|
28
|
-
"P"
|
|
29
|
-
]
|
|
18
|
+
"$ref": "../util.json#/$defs/spellSchool"
|
|
30
19
|
},
|
|
31
20
|
"meta": {
|
|
32
21
|
"type": "object",
|
|
@@ -584,18 +573,7 @@
|
|
|
584
573
|
"type": "integer"
|
|
585
574
|
},
|
|
586
575
|
"school": {
|
|
587
|
-
"
|
|
588
|
-
"examples": [
|
|
589
|
-
"A",
|
|
590
|
-
"V",
|
|
591
|
-
"E",
|
|
592
|
-
"I",
|
|
593
|
-
"D",
|
|
594
|
-
"N",
|
|
595
|
-
"T",
|
|
596
|
-
"C",
|
|
597
|
-
"P"
|
|
598
|
-
]
|
|
576
|
+
"$ref": "../util.json#/$defs/spellSchool"
|
|
599
577
|
},
|
|
600
578
|
"meta": {
|
|
601
579
|
"type": "object",
|
|
@@ -1161,18 +1139,7 @@
|
|
|
1161
1139
|
"type": "integer"
|
|
1162
1140
|
},
|
|
1163
1141
|
"school": {
|
|
1164
|
-
"
|
|
1165
|
-
"examples": [
|
|
1166
|
-
"A",
|
|
1167
|
-
"V",
|
|
1168
|
-
"E",
|
|
1169
|
-
"I",
|
|
1170
|
-
"D",
|
|
1171
|
-
"N",
|
|
1172
|
-
"T",
|
|
1173
|
-
"C",
|
|
1174
|
-
"P"
|
|
1175
|
-
]
|
|
1142
|
+
"$ref": "../util.json#/$defs/spellSchool"
|
|
1176
1143
|
},
|
|
1177
1144
|
"meta": {
|
|
1178
1145
|
"type": "object",
|
|
@@ -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.13.
|
|
6
|
+
"version": "1.13.20",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaBlock": {
|
|
9
9
|
"type": "object",
|
|
@@ -2527,6 +2527,20 @@
|
|
|
2527
2527
|
"T"
|
|
2528
2528
|
]
|
|
2529
2529
|
},
|
|
2530
|
+
"spellSchool": {
|
|
2531
|
+
"type": "string",
|
|
2532
|
+
"examples": [
|
|
2533
|
+
"A",
|
|
2534
|
+
"V",
|
|
2535
|
+
"E",
|
|
2536
|
+
"I",
|
|
2537
|
+
"D",
|
|
2538
|
+
"N",
|
|
2539
|
+
"T",
|
|
2540
|
+
"C",
|
|
2541
|
+
"P"
|
|
2542
|
+
]
|
|
2543
|
+
},
|
|
2530
2544
|
"genericFluffArrayItemData": {
|
|
2531
2545
|
"type": "object",
|
|
2532
2546
|
"properties": {
|
|
@@ -4051,6 +4065,31 @@
|
|
|
4051
4065
|
"spellListSpellRef": {
|
|
4052
4066
|
"description": "A reference to a spell or an existing spell list, linked by name and source. Assumes PHB as the source, if none is provided.",
|
|
4053
4067
|
"oneOf": [
|
|
4068
|
+
{
|
|
4069
|
+
"description": "A group spell list",
|
|
4070
|
+
"type": "object",
|
|
4071
|
+
"properties": {
|
|
4072
|
+
"groupName": {
|
|
4073
|
+
"type": "string"
|
|
4074
|
+
},
|
|
4075
|
+
"groupSource": {
|
|
4076
|
+
"type": "string"
|
|
4077
|
+
},
|
|
4078
|
+
"spellSchools": {
|
|
4079
|
+
"type": "array",
|
|
4080
|
+
"items": {
|
|
4081
|
+
"$ref": "#/$defs/spellSchool"
|
|
4082
|
+
},
|
|
4083
|
+
"minItems": 1,
|
|
4084
|
+
"uniqueItems": true
|
|
4085
|
+
}
|
|
4086
|
+
},
|
|
4087
|
+
"required": [
|
|
4088
|
+
"groupName",
|
|
4089
|
+
"groupSource"
|
|
4090
|
+
],
|
|
4091
|
+
"additionalProperties": false
|
|
4092
|
+
},
|
|
4054
4093
|
{
|
|
4055
4094
|
"description": "Another class's spell list",
|
|
4056
4095
|
"type": "object",
|
|
@@ -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.17",
|
|
4
4
|
"title": "Bestiary Schema",
|
|
5
5
|
"$id": "bestiary.json",
|
|
6
6
|
"type": "object",
|
|
@@ -1111,6 +1111,15 @@
|
|
|
1111
1111
|
]
|
|
1112
1112
|
}
|
|
1113
1113
|
},
|
|
1114
|
+
"attachedItems": {
|
|
1115
|
+
"type": "array",
|
|
1116
|
+
"minItems": 1,
|
|
1117
|
+
"uniqueItems": true,
|
|
1118
|
+
"items": {
|
|
1119
|
+
"description": "A UID, e.g. \"longsword|phb\"",
|
|
1120
|
+
"type": "string"
|
|
1121
|
+
}
|
|
1122
|
+
},
|
|
1114
1123
|
"conditionInflict": {
|
|
1115
1124
|
"$ref": "../util.json#/$defs/tagsConditions"
|
|
1116
1125
|
},
|
|
@@ -2170,6 +2179,15 @@
|
|
|
2170
2179
|
]
|
|
2171
2180
|
}
|
|
2172
2181
|
},
|
|
2182
|
+
"attachedItems": {
|
|
2183
|
+
"type": "array",
|
|
2184
|
+
"minItems": 1,
|
|
2185
|
+
"uniqueItems": true,
|
|
2186
|
+
"items": {
|
|
2187
|
+
"description": "A UID, e.g. \"longsword|phb\"",
|
|
2188
|
+
"type": "string"
|
|
2189
|
+
}
|
|
2190
|
+
},
|
|
2173
2191
|
"conditionInflict": {
|
|
2174
2192
|
"$ref": "../util.json#/$defs/tagsConditions"
|
|
2175
2193
|
},
|
|
@@ -3243,6 +3261,15 @@
|
|
|
3243
3261
|
]
|
|
3244
3262
|
}
|
|
3245
3263
|
},
|
|
3264
|
+
"attachedItems": {
|
|
3265
|
+
"type": "array",
|
|
3266
|
+
"minItems": 1,
|
|
3267
|
+
"uniqueItems": true,
|
|
3268
|
+
"items": {
|
|
3269
|
+
"description": "A UID, e.g. \"longsword|phb\"",
|
|
3270
|
+
"type": "string"
|
|
3271
|
+
}
|
|
3272
|
+
},
|
|
3246
3273
|
"conditionInflict": {
|
|
3247
3274
|
"$ref": "../util.json#/$defs/tagsConditions"
|
|
3248
3275
|
},
|
package/schema/site/items.json
CHANGED
|
@@ -251,6 +251,8 @@
|
|
|
251
251
|
},
|
|
252
252
|
"attachedSpells": {
|
|
253
253
|
"type": "array",
|
|
254
|
+
"minItems": 1,
|
|
255
|
+
"uniqueItems": true,
|
|
254
256
|
"items": {
|
|
255
257
|
"type": "string"
|
|
256
258
|
}
|
|
@@ -802,6 +804,8 @@
|
|
|
802
804
|
},
|
|
803
805
|
"attachedSpells": {
|
|
804
806
|
"type": "array",
|
|
807
|
+
"minItems": 1,
|
|
808
|
+
"uniqueItems": true,
|
|
805
809
|
"items": {
|
|
806
810
|
"type": "string"
|
|
807
811
|
}
|
|
@@ -1356,6 +1360,8 @@
|
|
|
1356
1360
|
},
|
|
1357
1361
|
"attachedSpells": {
|
|
1358
1362
|
"type": "array",
|
|
1363
|
+
"minItems": 1,
|
|
1364
|
+
"uniqueItems": true,
|
|
1359
1365
|
"items": {
|
|
1360
1366
|
"type": "string"
|
|
1361
1367
|
}
|
|
@@ -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.
|
|
4
|
+
"version": "1.9.6",
|
|
5
5
|
"title": "Spells",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"$defs": {
|
|
@@ -15,18 +15,7 @@
|
|
|
15
15
|
"type": "integer"
|
|
16
16
|
},
|
|
17
17
|
"school": {
|
|
18
|
-
"
|
|
19
|
-
"enum": [
|
|
20
|
-
"A",
|
|
21
|
-
"V",
|
|
22
|
-
"E",
|
|
23
|
-
"I",
|
|
24
|
-
"D",
|
|
25
|
-
"N",
|
|
26
|
-
"T",
|
|
27
|
-
"C",
|
|
28
|
-
"P"
|
|
29
|
-
]
|
|
18
|
+
"$ref": "../util.json#/$defs/spellSchool"
|
|
30
19
|
},
|
|
31
20
|
"meta": {
|
|
32
21
|
"type": "object",
|
|
@@ -362,18 +351,7 @@
|
|
|
362
351
|
"type": "integer"
|
|
363
352
|
},
|
|
364
353
|
"school": {
|
|
365
|
-
"
|
|
366
|
-
"enum": [
|
|
367
|
-
"A",
|
|
368
|
-
"V",
|
|
369
|
-
"E",
|
|
370
|
-
"I",
|
|
371
|
-
"D",
|
|
372
|
-
"N",
|
|
373
|
-
"T",
|
|
374
|
-
"C",
|
|
375
|
-
"P"
|
|
376
|
-
]
|
|
354
|
+
"$ref": "../util.json#/$defs/spellSchool"
|
|
377
355
|
},
|
|
378
356
|
"meta": {
|
|
379
357
|
"type": "object",
|
|
@@ -717,18 +695,7 @@
|
|
|
717
695
|
"type": "integer"
|
|
718
696
|
},
|
|
719
697
|
"school": {
|
|
720
|
-
"
|
|
721
|
-
"enum": [
|
|
722
|
-
"A",
|
|
723
|
-
"V",
|
|
724
|
-
"E",
|
|
725
|
-
"I",
|
|
726
|
-
"D",
|
|
727
|
-
"N",
|
|
728
|
-
"T",
|
|
729
|
-
"C",
|
|
730
|
-
"P"
|
|
731
|
-
]
|
|
698
|
+
"$ref": "../util.json#/$defs/spellSchool"
|
|
732
699
|
},
|
|
733
700
|
"meta": {
|
|
734
701
|
"type": "object",
|
package/schema/site/util.json
CHANGED
|
@@ -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.13.
|
|
6
|
+
"version": "1.13.20",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaBlock": {
|
|
9
9
|
"type": "object",
|
|
@@ -2507,6 +2507,20 @@
|
|
|
2507
2507
|
"T"
|
|
2508
2508
|
]
|
|
2509
2509
|
},
|
|
2510
|
+
"spellSchool": {
|
|
2511
|
+
"type": "string",
|
|
2512
|
+
"enum": [
|
|
2513
|
+
"A",
|
|
2514
|
+
"V",
|
|
2515
|
+
"E",
|
|
2516
|
+
"I",
|
|
2517
|
+
"D",
|
|
2518
|
+
"N",
|
|
2519
|
+
"T",
|
|
2520
|
+
"C",
|
|
2521
|
+
"P"
|
|
2522
|
+
]
|
|
2523
|
+
},
|
|
2510
2524
|
"genericFluffArrayItemData": {
|
|
2511
2525
|
"type": "object",
|
|
2512
2526
|
"properties": {
|
|
@@ -4031,6 +4045,31 @@
|
|
|
4031
4045
|
"spellListSpellRef": {
|
|
4032
4046
|
"description": "A reference to a spell or an existing spell list, linked by name and source. Assumes PHB as the source, if none is provided.",
|
|
4033
4047
|
"oneOf": [
|
|
4048
|
+
{
|
|
4049
|
+
"description": "A group spell list",
|
|
4050
|
+
"type": "object",
|
|
4051
|
+
"properties": {
|
|
4052
|
+
"groupName": {
|
|
4053
|
+
"type": "string"
|
|
4054
|
+
},
|
|
4055
|
+
"groupSource": {
|
|
4056
|
+
"type": "string"
|
|
4057
|
+
},
|
|
4058
|
+
"spellSchools": {
|
|
4059
|
+
"type": "array",
|
|
4060
|
+
"items": {
|
|
4061
|
+
"$ref": "#/$defs/spellSchool"
|
|
4062
|
+
},
|
|
4063
|
+
"minItems": 1,
|
|
4064
|
+
"uniqueItems": true
|
|
4065
|
+
}
|
|
4066
|
+
},
|
|
4067
|
+
"required": [
|
|
4068
|
+
"groupName",
|
|
4069
|
+
"groupSource"
|
|
4070
|
+
],
|
|
4071
|
+
"additionalProperties": false
|
|
4072
|
+
},
|
|
4034
4073
|
{
|
|
4035
4074
|
"description": "Another class's spell list",
|
|
4036
4075
|
"type": "object",
|
|
@@ -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.17",
|
|
4
4
|
"title": "Bestiary Schema",
|
|
5
5
|
"$id": "bestiary.json",
|
|
6
6
|
"type": "object",
|
|
@@ -1111,6 +1111,15 @@
|
|
|
1111
1111
|
]
|
|
1112
1112
|
}
|
|
1113
1113
|
},
|
|
1114
|
+
"attachedItems": {
|
|
1115
|
+
"type": "array",
|
|
1116
|
+
"minItems": 1,
|
|
1117
|
+
"uniqueItems": true,
|
|
1118
|
+
"items": {
|
|
1119
|
+
"description": "A UID, e.g. \"longsword|phb\"",
|
|
1120
|
+
"type": "string"
|
|
1121
|
+
}
|
|
1122
|
+
},
|
|
1114
1123
|
"conditionInflict": {
|
|
1115
1124
|
"$ref": "../util.json#/$defs/tagsConditions"
|
|
1116
1125
|
},
|
|
@@ -2170,6 +2179,15 @@
|
|
|
2170
2179
|
]
|
|
2171
2180
|
}
|
|
2172
2181
|
},
|
|
2182
|
+
"attachedItems": {
|
|
2183
|
+
"type": "array",
|
|
2184
|
+
"minItems": 1,
|
|
2185
|
+
"uniqueItems": true,
|
|
2186
|
+
"items": {
|
|
2187
|
+
"description": "A UID, e.g. \"longsword|phb\"",
|
|
2188
|
+
"type": "string"
|
|
2189
|
+
}
|
|
2190
|
+
},
|
|
2173
2191
|
"conditionInflict": {
|
|
2174
2192
|
"$ref": "../util.json#/$defs/tagsConditions"
|
|
2175
2193
|
},
|
|
@@ -3243,6 +3261,15 @@
|
|
|
3243
3261
|
]
|
|
3244
3262
|
}
|
|
3245
3263
|
},
|
|
3264
|
+
"attachedItems": {
|
|
3265
|
+
"type": "array",
|
|
3266
|
+
"minItems": 1,
|
|
3267
|
+
"uniqueItems": true,
|
|
3268
|
+
"items": {
|
|
3269
|
+
"description": "A UID, e.g. \"longsword|phb\"",
|
|
3270
|
+
"type": "string"
|
|
3271
|
+
}
|
|
3272
|
+
},
|
|
3246
3273
|
"conditionInflict": {
|
|
3247
3274
|
"$ref": "../util.json#/$defs/tagsConditions"
|
|
3248
3275
|
},
|
|
@@ -251,6 +251,8 @@
|
|
|
251
251
|
},
|
|
252
252
|
"attachedSpells": {
|
|
253
253
|
"type": "array",
|
|
254
|
+
"minItems": 1,
|
|
255
|
+
"uniqueItems": true,
|
|
254
256
|
"items": {
|
|
255
257
|
"type": "string"
|
|
256
258
|
}
|
|
@@ -802,6 +804,8 @@
|
|
|
802
804
|
},
|
|
803
805
|
"attachedSpells": {
|
|
804
806
|
"type": "array",
|
|
807
|
+
"minItems": 1,
|
|
808
|
+
"uniqueItems": true,
|
|
805
809
|
"items": {
|
|
806
810
|
"type": "string"
|
|
807
811
|
}
|
|
@@ -1356,6 +1360,8 @@
|
|
|
1356
1360
|
},
|
|
1357
1361
|
"attachedSpells": {
|
|
1358
1362
|
"type": "array",
|
|
1363
|
+
"minItems": 1,
|
|
1364
|
+
"uniqueItems": true,
|
|
1359
1365
|
"items": {
|
|
1360
1366
|
"type": "string"
|
|
1361
1367
|
}
|
|
@@ -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.
|
|
4
|
+
"version": "1.9.6",
|
|
5
5
|
"title": "Spells",
|
|
6
6
|
"type": "object",
|
|
7
7
|
"$defs": {
|
|
@@ -15,18 +15,7 @@
|
|
|
15
15
|
"type": "integer"
|
|
16
16
|
},
|
|
17
17
|
"school": {
|
|
18
|
-
"
|
|
19
|
-
"enum": [
|
|
20
|
-
"A",
|
|
21
|
-
"V",
|
|
22
|
-
"E",
|
|
23
|
-
"I",
|
|
24
|
-
"D",
|
|
25
|
-
"N",
|
|
26
|
-
"T",
|
|
27
|
-
"C",
|
|
28
|
-
"P"
|
|
29
|
-
]
|
|
18
|
+
"$ref": "../util.json#/$defs/spellSchool"
|
|
30
19
|
},
|
|
31
20
|
"meta": {
|
|
32
21
|
"type": "object",
|
|
@@ -362,18 +351,7 @@
|
|
|
362
351
|
"type": "integer"
|
|
363
352
|
},
|
|
364
353
|
"school": {
|
|
365
|
-
"
|
|
366
|
-
"enum": [
|
|
367
|
-
"A",
|
|
368
|
-
"V",
|
|
369
|
-
"E",
|
|
370
|
-
"I",
|
|
371
|
-
"D",
|
|
372
|
-
"N",
|
|
373
|
-
"T",
|
|
374
|
-
"C",
|
|
375
|
-
"P"
|
|
376
|
-
]
|
|
354
|
+
"$ref": "../util.json#/$defs/spellSchool"
|
|
377
355
|
},
|
|
378
356
|
"meta": {
|
|
379
357
|
"type": "object",
|
|
@@ -717,18 +695,7 @@
|
|
|
717
695
|
"type": "integer"
|
|
718
696
|
},
|
|
719
697
|
"school": {
|
|
720
|
-
"
|
|
721
|
-
"enum": [
|
|
722
|
-
"A",
|
|
723
|
-
"V",
|
|
724
|
-
"E",
|
|
725
|
-
"I",
|
|
726
|
-
"D",
|
|
727
|
-
"N",
|
|
728
|
-
"T",
|
|
729
|
-
"C",
|
|
730
|
-
"P"
|
|
731
|
-
]
|
|
698
|
+
"$ref": "../util.json#/$defs/spellSchool"
|
|
732
699
|
},
|
|
733
700
|
"meta": {
|
|
734
701
|
"type": "object",
|
|
@@ -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.13.
|
|
6
|
+
"version": "1.13.20",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaBlock": {
|
|
9
9
|
"type": "object",
|
|
@@ -2507,6 +2507,20 @@
|
|
|
2507
2507
|
"T"
|
|
2508
2508
|
]
|
|
2509
2509
|
},
|
|
2510
|
+
"spellSchool": {
|
|
2511
|
+
"type": "string",
|
|
2512
|
+
"enum": [
|
|
2513
|
+
"A",
|
|
2514
|
+
"V",
|
|
2515
|
+
"E",
|
|
2516
|
+
"I",
|
|
2517
|
+
"D",
|
|
2518
|
+
"N",
|
|
2519
|
+
"T",
|
|
2520
|
+
"C",
|
|
2521
|
+
"P"
|
|
2522
|
+
]
|
|
2523
|
+
},
|
|
2510
2524
|
"genericFluffArrayItemData": {
|
|
2511
2525
|
"type": "object",
|
|
2512
2526
|
"properties": {
|
|
@@ -4031,6 +4045,31 @@
|
|
|
4031
4045
|
"spellListSpellRef": {
|
|
4032
4046
|
"description": "A reference to a spell or an existing spell list, linked by name and source. Assumes PHB as the source, if none is provided.",
|
|
4033
4047
|
"oneOf": [
|
|
4048
|
+
{
|
|
4049
|
+
"description": "A group spell list",
|
|
4050
|
+
"type": "object",
|
|
4051
|
+
"properties": {
|
|
4052
|
+
"groupName": {
|
|
4053
|
+
"type": "string"
|
|
4054
|
+
},
|
|
4055
|
+
"groupSource": {
|
|
4056
|
+
"type": "string"
|
|
4057
|
+
},
|
|
4058
|
+
"spellSchools": {
|
|
4059
|
+
"type": "array",
|
|
4060
|
+
"items": {
|
|
4061
|
+
"$ref": "#/$defs/spellSchool"
|
|
4062
|
+
},
|
|
4063
|
+
"minItems": 1,
|
|
4064
|
+
"uniqueItems": true
|
|
4065
|
+
}
|
|
4066
|
+
},
|
|
4067
|
+
"required": [
|
|
4068
|
+
"groupName",
|
|
4069
|
+
"groupSource"
|
|
4070
|
+
],
|
|
4071
|
+
"additionalProperties": false
|
|
4072
|
+
},
|
|
4034
4073
|
{
|
|
4035
4074
|
"description": "Another class's spell list",
|
|
4036
4075
|
"type": "object",
|