5etools-utils 0.13.29 → 0.13.31
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/adventures.json +2 -4
- package/schema/brew/homebrew.json +7 -1
- package/schema/brew/util-foundry.json +81 -1
- package/schema/brew-fast/adventures.json +2 -4
- package/schema/brew-fast/homebrew.json +7 -1
- package/schema/brew-fast/util-foundry.json +81 -1
- package/schema/site/adventures.json +2 -4
- package/schema/site/homebrew.json +7 -1
- package/schema/site/util-foundry.json +81 -1
- package/schema/site-fast/adventures.json +2 -4
- package/schema/site-fast/homebrew.json +7 -1
- package/schema/site-fast/util-foundry.json +81 -1
- package/schema/ua/adventures.json +2 -4
- package/schema/ua/homebrew.json +7 -1
- package/schema/ua/util-foundry.json +81 -1
- package/schema/ua-fast/adventures.json +2 -4
- package/schema/ua-fast/homebrew.json +7 -1
- package/schema/ua-fast/util-foundry.json +81 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "adventures.json",
|
|
4
|
-
"version": "1.10.
|
|
4
|
+
"version": "1.10.30",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
7
7
|
"adventure": {
|
|
@@ -211,14 +211,12 @@
|
|
|
211
211
|
"Adventure Atlas",
|
|
212
212
|
"Heroes' Feast",
|
|
213
213
|
"Family Friendly",
|
|
214
|
-
"Grim Hollow",
|
|
215
|
-
"Drakkenheim",
|
|
216
|
-
"Humblewood",
|
|
217
214
|
"Vecna",
|
|
218
215
|
"Quests from the Infinite Staircase",
|
|
219
216
|
"LEGO",
|
|
220
217
|
"Shadow Realm",
|
|
221
218
|
"Animated Series",
|
|
219
|
+
"Dragon Delves",
|
|
222
220
|
"Miscellaneous"
|
|
223
221
|
]
|
|
224
222
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.2",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"description": "Homebrew for 5etools. Should include arrays titled similarly to the main site data, e.g. `spell` or `class`",
|
|
6
6
|
"$defs": {
|
|
@@ -53,6 +53,12 @@
|
|
|
53
53
|
"pattern": "^([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$",
|
|
54
54
|
"markdownDescription": "HTML hex color code this source should use when displayed in lists, e.g. 'ff00ff'"
|
|
55
55
|
},
|
|
56
|
+
"colorNight": {
|
|
57
|
+
"type": "string",
|
|
58
|
+
"description": "As \"color\", but for night mode themes",
|
|
59
|
+
"pattern": "^([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$",
|
|
60
|
+
"markdownDescription": "As "color", but for night mode themes"
|
|
61
|
+
},
|
|
56
62
|
"full": {
|
|
57
63
|
"type": "string",
|
|
58
64
|
"description": "Full title of the source, to display on the site.",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "util-foundry.json",
|
|
4
4
|
"title": "Util: Foundry",
|
|
5
|
-
"version": "1.1.
|
|
5
|
+
"version": "1.1.1",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"entryDataObject": {
|
|
8
8
|
"description": "Additional \"5etools-type\" data to be stored on the entry.",
|
|
@@ -204,6 +204,14 @@
|
|
|
204
204
|
"description": {
|
|
205
205
|
"type": "object"
|
|
206
206
|
},
|
|
207
|
+
"descriptionEntries": {
|
|
208
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
209
|
+
"type": "array",
|
|
210
|
+
"items": {
|
|
211
|
+
"$ref": "entry.json"
|
|
212
|
+
},
|
|
213
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
214
|
+
},
|
|
207
215
|
"consumption": {
|
|
208
216
|
"type": "object",
|
|
209
217
|
"properties": {
|
|
@@ -290,6 +298,14 @@
|
|
|
290
298
|
"description": {
|
|
291
299
|
"type": "object"
|
|
292
300
|
},
|
|
301
|
+
"descriptionEntries": {
|
|
302
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
303
|
+
"type": "array",
|
|
304
|
+
"items": {
|
|
305
|
+
"$ref": "entry.json"
|
|
306
|
+
},
|
|
307
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
308
|
+
},
|
|
293
309
|
"consumption": {
|
|
294
310
|
"type": "object",
|
|
295
311
|
"properties": {
|
|
@@ -379,6 +395,14 @@
|
|
|
379
395
|
"description": {
|
|
380
396
|
"type": "object"
|
|
381
397
|
},
|
|
398
|
+
"descriptionEntries": {
|
|
399
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
400
|
+
"type": "array",
|
|
401
|
+
"items": {
|
|
402
|
+
"$ref": "entry.json"
|
|
403
|
+
},
|
|
404
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
405
|
+
},
|
|
382
406
|
"consumption": {
|
|
383
407
|
"type": "object",
|
|
384
408
|
"properties": {
|
|
@@ -468,6 +492,14 @@
|
|
|
468
492
|
"description": {
|
|
469
493
|
"type": "object"
|
|
470
494
|
},
|
|
495
|
+
"descriptionEntries": {
|
|
496
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
497
|
+
"type": "array",
|
|
498
|
+
"items": {
|
|
499
|
+
"$ref": "entry.json"
|
|
500
|
+
},
|
|
501
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
502
|
+
},
|
|
471
503
|
"consumption": {
|
|
472
504
|
"type": "object",
|
|
473
505
|
"properties": {
|
|
@@ -557,6 +589,14 @@
|
|
|
557
589
|
"description": {
|
|
558
590
|
"type": "object"
|
|
559
591
|
},
|
|
592
|
+
"descriptionEntries": {
|
|
593
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
594
|
+
"type": "array",
|
|
595
|
+
"items": {
|
|
596
|
+
"$ref": "entry.json"
|
|
597
|
+
},
|
|
598
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
599
|
+
},
|
|
560
600
|
"consumption": {
|
|
561
601
|
"type": "object",
|
|
562
602
|
"properties": {
|
|
@@ -667,6 +707,14 @@
|
|
|
667
707
|
"description": {
|
|
668
708
|
"type": "object"
|
|
669
709
|
},
|
|
710
|
+
"descriptionEntries": {
|
|
711
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
712
|
+
"type": "array",
|
|
713
|
+
"items": {
|
|
714
|
+
"$ref": "entry.json"
|
|
715
|
+
},
|
|
716
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
717
|
+
},
|
|
670
718
|
"consumption": {
|
|
671
719
|
"type": "object",
|
|
672
720
|
"properties": {
|
|
@@ -756,6 +804,14 @@
|
|
|
756
804
|
"description": {
|
|
757
805
|
"type": "object"
|
|
758
806
|
},
|
|
807
|
+
"descriptionEntries": {
|
|
808
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
809
|
+
"type": "array",
|
|
810
|
+
"items": {
|
|
811
|
+
"$ref": "entry.json"
|
|
812
|
+
},
|
|
813
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
814
|
+
},
|
|
759
815
|
"consumption": {
|
|
760
816
|
"type": "object",
|
|
761
817
|
"properties": {
|
|
@@ -853,6 +909,14 @@
|
|
|
853
909
|
"description": {
|
|
854
910
|
"type": "object"
|
|
855
911
|
},
|
|
912
|
+
"descriptionEntries": {
|
|
913
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
914
|
+
"type": "array",
|
|
915
|
+
"items": {
|
|
916
|
+
"$ref": "entry.json"
|
|
917
|
+
},
|
|
918
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
919
|
+
},
|
|
856
920
|
"consumption": {
|
|
857
921
|
"type": "object",
|
|
858
922
|
"properties": {
|
|
@@ -942,6 +1006,14 @@
|
|
|
942
1006
|
"description": {
|
|
943
1007
|
"type": "object"
|
|
944
1008
|
},
|
|
1009
|
+
"descriptionEntries": {
|
|
1010
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
1011
|
+
"type": "array",
|
|
1012
|
+
"items": {
|
|
1013
|
+
"$ref": "entry.json"
|
|
1014
|
+
},
|
|
1015
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
1016
|
+
},
|
|
945
1017
|
"consumption": {
|
|
946
1018
|
"type": "object",
|
|
947
1019
|
"properties": {
|
|
@@ -1098,6 +1170,14 @@
|
|
|
1098
1170
|
"description": {
|
|
1099
1171
|
"type": "object"
|
|
1100
1172
|
},
|
|
1173
|
+
"descriptionEntries": {
|
|
1174
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
1175
|
+
"type": "array",
|
|
1176
|
+
"items": {
|
|
1177
|
+
"$ref": "entry.json"
|
|
1178
|
+
},
|
|
1179
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
1180
|
+
},
|
|
1101
1181
|
"consumption": {
|
|
1102
1182
|
"type": "object",
|
|
1103
1183
|
"properties": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "adventures.json",
|
|
4
|
-
"version": "1.10.
|
|
4
|
+
"version": "1.10.30",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
7
7
|
"adventure": {
|
|
@@ -211,14 +211,12 @@
|
|
|
211
211
|
"Adventure Atlas",
|
|
212
212
|
"Heroes' Feast",
|
|
213
213
|
"Family Friendly",
|
|
214
|
-
"Grim Hollow",
|
|
215
|
-
"Drakkenheim",
|
|
216
|
-
"Humblewood",
|
|
217
214
|
"Vecna",
|
|
218
215
|
"Quests from the Infinite Staircase",
|
|
219
216
|
"LEGO",
|
|
220
217
|
"Shadow Realm",
|
|
221
218
|
"Animated Series",
|
|
219
|
+
"Dragon Delves",
|
|
222
220
|
"Miscellaneous"
|
|
223
221
|
]
|
|
224
222
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.2",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"description": "Homebrew for 5etools. Should include arrays titled similarly to the main site data, e.g. `spell` or `class`",
|
|
6
6
|
"$defs": {
|
|
@@ -51,6 +51,12 @@
|
|
|
51
51
|
"pattern": "^([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$",
|
|
52
52
|
"markdownDescription": "HTML hex color code this source should use when displayed in lists, e.g. 'ff00ff'"
|
|
53
53
|
},
|
|
54
|
+
"colorNight": {
|
|
55
|
+
"type": "string",
|
|
56
|
+
"description": "As \"color\", but for night mode themes",
|
|
57
|
+
"pattern": "^([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$",
|
|
58
|
+
"markdownDescription": "As "color", but for night mode themes"
|
|
59
|
+
},
|
|
54
60
|
"full": {
|
|
55
61
|
"type": "string",
|
|
56
62
|
"description": "Full title of the source, to display on the site.",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "util-foundry.json",
|
|
4
4
|
"title": "Util: Foundry",
|
|
5
|
-
"version": "1.1.
|
|
5
|
+
"version": "1.1.1",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"entryDataObject": {
|
|
8
8
|
"description": "Additional \"5etools-type\" data to be stored on the entry.",
|
|
@@ -204,6 +204,14 @@
|
|
|
204
204
|
"description": {
|
|
205
205
|
"type": "object"
|
|
206
206
|
},
|
|
207
|
+
"descriptionEntries": {
|
|
208
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
209
|
+
"type": "array",
|
|
210
|
+
"items": {
|
|
211
|
+
"$ref": "entry.json"
|
|
212
|
+
},
|
|
213
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
214
|
+
},
|
|
207
215
|
"consumption": {
|
|
208
216
|
"type": "object",
|
|
209
217
|
"properties": {
|
|
@@ -290,6 +298,14 @@
|
|
|
290
298
|
"description": {
|
|
291
299
|
"type": "object"
|
|
292
300
|
},
|
|
301
|
+
"descriptionEntries": {
|
|
302
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
303
|
+
"type": "array",
|
|
304
|
+
"items": {
|
|
305
|
+
"$ref": "entry.json"
|
|
306
|
+
},
|
|
307
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
308
|
+
},
|
|
293
309
|
"consumption": {
|
|
294
310
|
"type": "object",
|
|
295
311
|
"properties": {
|
|
@@ -379,6 +395,14 @@
|
|
|
379
395
|
"description": {
|
|
380
396
|
"type": "object"
|
|
381
397
|
},
|
|
398
|
+
"descriptionEntries": {
|
|
399
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
400
|
+
"type": "array",
|
|
401
|
+
"items": {
|
|
402
|
+
"$ref": "entry.json"
|
|
403
|
+
},
|
|
404
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
405
|
+
},
|
|
382
406
|
"consumption": {
|
|
383
407
|
"type": "object",
|
|
384
408
|
"properties": {
|
|
@@ -468,6 +492,14 @@
|
|
|
468
492
|
"description": {
|
|
469
493
|
"type": "object"
|
|
470
494
|
},
|
|
495
|
+
"descriptionEntries": {
|
|
496
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
497
|
+
"type": "array",
|
|
498
|
+
"items": {
|
|
499
|
+
"$ref": "entry.json"
|
|
500
|
+
},
|
|
501
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
502
|
+
},
|
|
471
503
|
"consumption": {
|
|
472
504
|
"type": "object",
|
|
473
505
|
"properties": {
|
|
@@ -557,6 +589,14 @@
|
|
|
557
589
|
"description": {
|
|
558
590
|
"type": "object"
|
|
559
591
|
},
|
|
592
|
+
"descriptionEntries": {
|
|
593
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
594
|
+
"type": "array",
|
|
595
|
+
"items": {
|
|
596
|
+
"$ref": "entry.json"
|
|
597
|
+
},
|
|
598
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
599
|
+
},
|
|
560
600
|
"consumption": {
|
|
561
601
|
"type": "object",
|
|
562
602
|
"properties": {
|
|
@@ -667,6 +707,14 @@
|
|
|
667
707
|
"description": {
|
|
668
708
|
"type": "object"
|
|
669
709
|
},
|
|
710
|
+
"descriptionEntries": {
|
|
711
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
712
|
+
"type": "array",
|
|
713
|
+
"items": {
|
|
714
|
+
"$ref": "entry.json"
|
|
715
|
+
},
|
|
716
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
717
|
+
},
|
|
670
718
|
"consumption": {
|
|
671
719
|
"type": "object",
|
|
672
720
|
"properties": {
|
|
@@ -756,6 +804,14 @@
|
|
|
756
804
|
"description": {
|
|
757
805
|
"type": "object"
|
|
758
806
|
},
|
|
807
|
+
"descriptionEntries": {
|
|
808
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
809
|
+
"type": "array",
|
|
810
|
+
"items": {
|
|
811
|
+
"$ref": "entry.json"
|
|
812
|
+
},
|
|
813
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
814
|
+
},
|
|
759
815
|
"consumption": {
|
|
760
816
|
"type": "object",
|
|
761
817
|
"properties": {
|
|
@@ -853,6 +909,14 @@
|
|
|
853
909
|
"description": {
|
|
854
910
|
"type": "object"
|
|
855
911
|
},
|
|
912
|
+
"descriptionEntries": {
|
|
913
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
914
|
+
"type": "array",
|
|
915
|
+
"items": {
|
|
916
|
+
"$ref": "entry.json"
|
|
917
|
+
},
|
|
918
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
919
|
+
},
|
|
856
920
|
"consumption": {
|
|
857
921
|
"type": "object",
|
|
858
922
|
"properties": {
|
|
@@ -942,6 +1006,14 @@
|
|
|
942
1006
|
"description": {
|
|
943
1007
|
"type": "object"
|
|
944
1008
|
},
|
|
1009
|
+
"descriptionEntries": {
|
|
1010
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
1011
|
+
"type": "array",
|
|
1012
|
+
"items": {
|
|
1013
|
+
"$ref": "entry.json"
|
|
1014
|
+
},
|
|
1015
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
1016
|
+
},
|
|
945
1017
|
"consumption": {
|
|
946
1018
|
"type": "object",
|
|
947
1019
|
"properties": {
|
|
@@ -1098,6 +1170,14 @@
|
|
|
1098
1170
|
"description": {
|
|
1099
1171
|
"type": "object"
|
|
1100
1172
|
},
|
|
1173
|
+
"descriptionEntries": {
|
|
1174
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
1175
|
+
"type": "array",
|
|
1176
|
+
"items": {
|
|
1177
|
+
"$ref": "entry.json"
|
|
1178
|
+
},
|
|
1179
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
1180
|
+
},
|
|
1101
1181
|
"consumption": {
|
|
1102
1182
|
"type": "object",
|
|
1103
1183
|
"properties": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "adventures.json",
|
|
4
|
-
"version": "1.10.
|
|
4
|
+
"version": "1.10.30",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
7
7
|
"adventure": {
|
|
@@ -211,14 +211,12 @@
|
|
|
211
211
|
"Adventure Atlas",
|
|
212
212
|
"Heroes' Feast",
|
|
213
213
|
"Family Friendly",
|
|
214
|
-
"Grim Hollow",
|
|
215
|
-
"Drakkenheim",
|
|
216
|
-
"Humblewood",
|
|
217
214
|
"Vecna",
|
|
218
215
|
"Quests from the Infinite Staircase",
|
|
219
216
|
"LEGO",
|
|
220
217
|
"Shadow Realm",
|
|
221
218
|
"Animated Series",
|
|
219
|
+
"Dragon Delves",
|
|
222
220
|
"Miscellaneous"
|
|
223
221
|
]
|
|
224
222
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.2",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"description": "Homebrew for 5etools. Should include arrays titled similarly to the main site data, e.g. `spell` or `class`",
|
|
6
6
|
"$defs": {
|
|
@@ -53,6 +53,12 @@
|
|
|
53
53
|
"pattern": "^([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$",
|
|
54
54
|
"markdownDescription": "HTML hex color code this source should use when displayed in lists, e.g. 'ff00ff'"
|
|
55
55
|
},
|
|
56
|
+
"colorNight": {
|
|
57
|
+
"type": "string",
|
|
58
|
+
"description": "As \"color\", but for night mode themes",
|
|
59
|
+
"pattern": "^([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$",
|
|
60
|
+
"markdownDescription": "As "color", but for night mode themes"
|
|
61
|
+
},
|
|
56
62
|
"full": {
|
|
57
63
|
"type": "string",
|
|
58
64
|
"description": "Full title of the source, to display on the site.",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "util-foundry.json",
|
|
4
4
|
"title": "Util: Foundry",
|
|
5
|
-
"version": "1.1.
|
|
5
|
+
"version": "1.1.1",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"entryDataObject": {
|
|
8
8
|
"description": "Additional \"5etools-type\" data to be stored on the entry.",
|
|
@@ -204,6 +204,14 @@
|
|
|
204
204
|
"description": {
|
|
205
205
|
"type": "object"
|
|
206
206
|
},
|
|
207
|
+
"descriptionEntries": {
|
|
208
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
209
|
+
"type": "array",
|
|
210
|
+
"items": {
|
|
211
|
+
"$ref": "entry.json"
|
|
212
|
+
},
|
|
213
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
214
|
+
},
|
|
207
215
|
"consumption": {
|
|
208
216
|
"type": "object",
|
|
209
217
|
"properties": {
|
|
@@ -290,6 +298,14 @@
|
|
|
290
298
|
"description": {
|
|
291
299
|
"type": "object"
|
|
292
300
|
},
|
|
301
|
+
"descriptionEntries": {
|
|
302
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
303
|
+
"type": "array",
|
|
304
|
+
"items": {
|
|
305
|
+
"$ref": "entry.json"
|
|
306
|
+
},
|
|
307
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
308
|
+
},
|
|
293
309
|
"consumption": {
|
|
294
310
|
"type": "object",
|
|
295
311
|
"properties": {
|
|
@@ -379,6 +395,14 @@
|
|
|
379
395
|
"description": {
|
|
380
396
|
"type": "object"
|
|
381
397
|
},
|
|
398
|
+
"descriptionEntries": {
|
|
399
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
400
|
+
"type": "array",
|
|
401
|
+
"items": {
|
|
402
|
+
"$ref": "entry.json"
|
|
403
|
+
},
|
|
404
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
405
|
+
},
|
|
382
406
|
"consumption": {
|
|
383
407
|
"type": "object",
|
|
384
408
|
"properties": {
|
|
@@ -468,6 +492,14 @@
|
|
|
468
492
|
"description": {
|
|
469
493
|
"type": "object"
|
|
470
494
|
},
|
|
495
|
+
"descriptionEntries": {
|
|
496
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
497
|
+
"type": "array",
|
|
498
|
+
"items": {
|
|
499
|
+
"$ref": "entry.json"
|
|
500
|
+
},
|
|
501
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
502
|
+
},
|
|
471
503
|
"consumption": {
|
|
472
504
|
"type": "object",
|
|
473
505
|
"properties": {
|
|
@@ -557,6 +589,14 @@
|
|
|
557
589
|
"description": {
|
|
558
590
|
"type": "object"
|
|
559
591
|
},
|
|
592
|
+
"descriptionEntries": {
|
|
593
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
594
|
+
"type": "array",
|
|
595
|
+
"items": {
|
|
596
|
+
"$ref": "entry.json"
|
|
597
|
+
},
|
|
598
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
599
|
+
},
|
|
560
600
|
"consumption": {
|
|
561
601
|
"type": "object",
|
|
562
602
|
"properties": {
|
|
@@ -667,6 +707,14 @@
|
|
|
667
707
|
"description": {
|
|
668
708
|
"type": "object"
|
|
669
709
|
},
|
|
710
|
+
"descriptionEntries": {
|
|
711
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
712
|
+
"type": "array",
|
|
713
|
+
"items": {
|
|
714
|
+
"$ref": "entry.json"
|
|
715
|
+
},
|
|
716
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
717
|
+
},
|
|
670
718
|
"consumption": {
|
|
671
719
|
"type": "object",
|
|
672
720
|
"properties": {
|
|
@@ -756,6 +804,14 @@
|
|
|
756
804
|
"description": {
|
|
757
805
|
"type": "object"
|
|
758
806
|
},
|
|
807
|
+
"descriptionEntries": {
|
|
808
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
809
|
+
"type": "array",
|
|
810
|
+
"items": {
|
|
811
|
+
"$ref": "entry.json"
|
|
812
|
+
},
|
|
813
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
814
|
+
},
|
|
759
815
|
"consumption": {
|
|
760
816
|
"type": "object",
|
|
761
817
|
"properties": {
|
|
@@ -853,6 +909,14 @@
|
|
|
853
909
|
"description": {
|
|
854
910
|
"type": "object"
|
|
855
911
|
},
|
|
912
|
+
"descriptionEntries": {
|
|
913
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
914
|
+
"type": "array",
|
|
915
|
+
"items": {
|
|
916
|
+
"$ref": "entry.json"
|
|
917
|
+
},
|
|
918
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
919
|
+
},
|
|
856
920
|
"consumption": {
|
|
857
921
|
"type": "object",
|
|
858
922
|
"properties": {
|
|
@@ -942,6 +1006,14 @@
|
|
|
942
1006
|
"description": {
|
|
943
1007
|
"type": "object"
|
|
944
1008
|
},
|
|
1009
|
+
"descriptionEntries": {
|
|
1010
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
1011
|
+
"type": "array",
|
|
1012
|
+
"items": {
|
|
1013
|
+
"$ref": "entry.json"
|
|
1014
|
+
},
|
|
1015
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
1016
|
+
},
|
|
945
1017
|
"consumption": {
|
|
946
1018
|
"type": "object",
|
|
947
1019
|
"properties": {
|
|
@@ -1098,6 +1170,14 @@
|
|
|
1098
1170
|
"description": {
|
|
1099
1171
|
"type": "object"
|
|
1100
1172
|
},
|
|
1173
|
+
"descriptionEntries": {
|
|
1174
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
1175
|
+
"type": "array",
|
|
1176
|
+
"items": {
|
|
1177
|
+
"$ref": "entry.json"
|
|
1178
|
+
},
|
|
1179
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
1180
|
+
},
|
|
1101
1181
|
"consumption": {
|
|
1102
1182
|
"type": "object",
|
|
1103
1183
|
"properties": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "adventures.json",
|
|
4
|
-
"version": "1.10.
|
|
4
|
+
"version": "1.10.30",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
7
7
|
"adventure": {
|
|
@@ -211,14 +211,12 @@
|
|
|
211
211
|
"Adventure Atlas",
|
|
212
212
|
"Heroes' Feast",
|
|
213
213
|
"Family Friendly",
|
|
214
|
-
"Grim Hollow",
|
|
215
|
-
"Drakkenheim",
|
|
216
|
-
"Humblewood",
|
|
217
214
|
"Vecna",
|
|
218
215
|
"Quests from the Infinite Staircase",
|
|
219
216
|
"LEGO",
|
|
220
217
|
"Shadow Realm",
|
|
221
218
|
"Animated Series",
|
|
219
|
+
"Dragon Delves",
|
|
222
220
|
"Miscellaneous"
|
|
223
221
|
]
|
|
224
222
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.2",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"description": "Homebrew for 5etools. Should include arrays titled similarly to the main site data, e.g. `spell` or `class`",
|
|
6
6
|
"$defs": {
|
|
@@ -51,6 +51,12 @@
|
|
|
51
51
|
"pattern": "^([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$",
|
|
52
52
|
"markdownDescription": "HTML hex color code this source should use when displayed in lists, e.g. 'ff00ff'"
|
|
53
53
|
},
|
|
54
|
+
"colorNight": {
|
|
55
|
+
"type": "string",
|
|
56
|
+
"description": "As \"color\", but for night mode themes",
|
|
57
|
+
"pattern": "^([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$",
|
|
58
|
+
"markdownDescription": "As "color", but for night mode themes"
|
|
59
|
+
},
|
|
54
60
|
"full": {
|
|
55
61
|
"type": "string",
|
|
56
62
|
"description": "Full title of the source, to display on the site.",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "util-foundry.json",
|
|
4
4
|
"title": "Util: Foundry",
|
|
5
|
-
"version": "1.1.
|
|
5
|
+
"version": "1.1.1",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"entryDataObject": {
|
|
8
8
|
"description": "Additional \"5etools-type\" data to be stored on the entry.",
|
|
@@ -204,6 +204,14 @@
|
|
|
204
204
|
"description": {
|
|
205
205
|
"type": "object"
|
|
206
206
|
},
|
|
207
|
+
"descriptionEntries": {
|
|
208
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
209
|
+
"type": "array",
|
|
210
|
+
"items": {
|
|
211
|
+
"$ref": "entry.json"
|
|
212
|
+
},
|
|
213
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
214
|
+
},
|
|
207
215
|
"consumption": {
|
|
208
216
|
"type": "object",
|
|
209
217
|
"properties": {
|
|
@@ -290,6 +298,14 @@
|
|
|
290
298
|
"description": {
|
|
291
299
|
"type": "object"
|
|
292
300
|
},
|
|
301
|
+
"descriptionEntries": {
|
|
302
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
303
|
+
"type": "array",
|
|
304
|
+
"items": {
|
|
305
|
+
"$ref": "entry.json"
|
|
306
|
+
},
|
|
307
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
308
|
+
},
|
|
293
309
|
"consumption": {
|
|
294
310
|
"type": "object",
|
|
295
311
|
"properties": {
|
|
@@ -379,6 +395,14 @@
|
|
|
379
395
|
"description": {
|
|
380
396
|
"type": "object"
|
|
381
397
|
},
|
|
398
|
+
"descriptionEntries": {
|
|
399
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
400
|
+
"type": "array",
|
|
401
|
+
"items": {
|
|
402
|
+
"$ref": "entry.json"
|
|
403
|
+
},
|
|
404
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
405
|
+
},
|
|
382
406
|
"consumption": {
|
|
383
407
|
"type": "object",
|
|
384
408
|
"properties": {
|
|
@@ -468,6 +492,14 @@
|
|
|
468
492
|
"description": {
|
|
469
493
|
"type": "object"
|
|
470
494
|
},
|
|
495
|
+
"descriptionEntries": {
|
|
496
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
497
|
+
"type": "array",
|
|
498
|
+
"items": {
|
|
499
|
+
"$ref": "entry.json"
|
|
500
|
+
},
|
|
501
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
502
|
+
},
|
|
471
503
|
"consumption": {
|
|
472
504
|
"type": "object",
|
|
473
505
|
"properties": {
|
|
@@ -557,6 +589,14 @@
|
|
|
557
589
|
"description": {
|
|
558
590
|
"type": "object"
|
|
559
591
|
},
|
|
592
|
+
"descriptionEntries": {
|
|
593
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
594
|
+
"type": "array",
|
|
595
|
+
"items": {
|
|
596
|
+
"$ref": "entry.json"
|
|
597
|
+
},
|
|
598
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
599
|
+
},
|
|
560
600
|
"consumption": {
|
|
561
601
|
"type": "object",
|
|
562
602
|
"properties": {
|
|
@@ -667,6 +707,14 @@
|
|
|
667
707
|
"description": {
|
|
668
708
|
"type": "object"
|
|
669
709
|
},
|
|
710
|
+
"descriptionEntries": {
|
|
711
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
712
|
+
"type": "array",
|
|
713
|
+
"items": {
|
|
714
|
+
"$ref": "entry.json"
|
|
715
|
+
},
|
|
716
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
717
|
+
},
|
|
670
718
|
"consumption": {
|
|
671
719
|
"type": "object",
|
|
672
720
|
"properties": {
|
|
@@ -756,6 +804,14 @@
|
|
|
756
804
|
"description": {
|
|
757
805
|
"type": "object"
|
|
758
806
|
},
|
|
807
|
+
"descriptionEntries": {
|
|
808
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
809
|
+
"type": "array",
|
|
810
|
+
"items": {
|
|
811
|
+
"$ref": "entry.json"
|
|
812
|
+
},
|
|
813
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
814
|
+
},
|
|
759
815
|
"consumption": {
|
|
760
816
|
"type": "object",
|
|
761
817
|
"properties": {
|
|
@@ -853,6 +909,14 @@
|
|
|
853
909
|
"description": {
|
|
854
910
|
"type": "object"
|
|
855
911
|
},
|
|
912
|
+
"descriptionEntries": {
|
|
913
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
914
|
+
"type": "array",
|
|
915
|
+
"items": {
|
|
916
|
+
"$ref": "entry.json"
|
|
917
|
+
},
|
|
918
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
919
|
+
},
|
|
856
920
|
"consumption": {
|
|
857
921
|
"type": "object",
|
|
858
922
|
"properties": {
|
|
@@ -942,6 +1006,14 @@
|
|
|
942
1006
|
"description": {
|
|
943
1007
|
"type": "object"
|
|
944
1008
|
},
|
|
1009
|
+
"descriptionEntries": {
|
|
1010
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
1011
|
+
"type": "array",
|
|
1012
|
+
"items": {
|
|
1013
|
+
"$ref": "entry.json"
|
|
1014
|
+
},
|
|
1015
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
1016
|
+
},
|
|
945
1017
|
"consumption": {
|
|
946
1018
|
"type": "object",
|
|
947
1019
|
"properties": {
|
|
@@ -1098,6 +1170,14 @@
|
|
|
1098
1170
|
"description": {
|
|
1099
1171
|
"type": "object"
|
|
1100
1172
|
},
|
|
1173
|
+
"descriptionEntries": {
|
|
1174
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
1175
|
+
"type": "array",
|
|
1176
|
+
"items": {
|
|
1177
|
+
"$ref": "entry.json"
|
|
1178
|
+
},
|
|
1179
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
1180
|
+
},
|
|
1101
1181
|
"consumption": {
|
|
1102
1182
|
"type": "object",
|
|
1103
1183
|
"properties": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "adventures.json",
|
|
4
|
-
"version": "1.10.
|
|
4
|
+
"version": "1.10.30",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
7
7
|
"adventure": {
|
|
@@ -211,14 +211,12 @@
|
|
|
211
211
|
"Adventure Atlas",
|
|
212
212
|
"Heroes' Feast",
|
|
213
213
|
"Family Friendly",
|
|
214
|
-
"Grim Hollow",
|
|
215
|
-
"Drakkenheim",
|
|
216
|
-
"Humblewood",
|
|
217
214
|
"Vecna",
|
|
218
215
|
"Quests from the Infinite Staircase",
|
|
219
216
|
"LEGO",
|
|
220
217
|
"Shadow Realm",
|
|
221
218
|
"Animated Series",
|
|
219
|
+
"Dragon Delves",
|
|
222
220
|
"Miscellaneous"
|
|
223
221
|
]
|
|
224
222
|
}
|
package/schema/ua/homebrew.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.2",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"description": "Homebrew for 5etools. Should include arrays titled similarly to the main site data, e.g. `spell` or `class`",
|
|
6
6
|
"$defs": {
|
|
@@ -53,6 +53,12 @@
|
|
|
53
53
|
"pattern": "^([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$",
|
|
54
54
|
"markdownDescription": "HTML hex color code this source should use when displayed in lists, e.g. 'ff00ff'"
|
|
55
55
|
},
|
|
56
|
+
"colorNight": {
|
|
57
|
+
"type": "string",
|
|
58
|
+
"description": "As \"color\", but for night mode themes",
|
|
59
|
+
"pattern": "^([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$",
|
|
60
|
+
"markdownDescription": "As "color", but for night mode themes"
|
|
61
|
+
},
|
|
56
62
|
"full": {
|
|
57
63
|
"type": "string",
|
|
58
64
|
"description": "Full title of the source, to display on the site.",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "util-foundry.json",
|
|
4
4
|
"title": "Util: Foundry",
|
|
5
|
-
"version": "1.1.
|
|
5
|
+
"version": "1.1.1",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"entryDataObject": {
|
|
8
8
|
"description": "Additional \"5etools-type\" data to be stored on the entry.",
|
|
@@ -204,6 +204,14 @@
|
|
|
204
204
|
"description": {
|
|
205
205
|
"type": "object"
|
|
206
206
|
},
|
|
207
|
+
"descriptionEntries": {
|
|
208
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
209
|
+
"type": "array",
|
|
210
|
+
"items": {
|
|
211
|
+
"$ref": "entry.json"
|
|
212
|
+
},
|
|
213
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
214
|
+
},
|
|
207
215
|
"consumption": {
|
|
208
216
|
"type": "object",
|
|
209
217
|
"properties": {
|
|
@@ -290,6 +298,14 @@
|
|
|
290
298
|
"description": {
|
|
291
299
|
"type": "object"
|
|
292
300
|
},
|
|
301
|
+
"descriptionEntries": {
|
|
302
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
303
|
+
"type": "array",
|
|
304
|
+
"items": {
|
|
305
|
+
"$ref": "entry.json"
|
|
306
|
+
},
|
|
307
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
308
|
+
},
|
|
293
309
|
"consumption": {
|
|
294
310
|
"type": "object",
|
|
295
311
|
"properties": {
|
|
@@ -379,6 +395,14 @@
|
|
|
379
395
|
"description": {
|
|
380
396
|
"type": "object"
|
|
381
397
|
},
|
|
398
|
+
"descriptionEntries": {
|
|
399
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
400
|
+
"type": "array",
|
|
401
|
+
"items": {
|
|
402
|
+
"$ref": "entry.json"
|
|
403
|
+
},
|
|
404
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
405
|
+
},
|
|
382
406
|
"consumption": {
|
|
383
407
|
"type": "object",
|
|
384
408
|
"properties": {
|
|
@@ -468,6 +492,14 @@
|
|
|
468
492
|
"description": {
|
|
469
493
|
"type": "object"
|
|
470
494
|
},
|
|
495
|
+
"descriptionEntries": {
|
|
496
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
497
|
+
"type": "array",
|
|
498
|
+
"items": {
|
|
499
|
+
"$ref": "entry.json"
|
|
500
|
+
},
|
|
501
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
502
|
+
},
|
|
471
503
|
"consumption": {
|
|
472
504
|
"type": "object",
|
|
473
505
|
"properties": {
|
|
@@ -557,6 +589,14 @@
|
|
|
557
589
|
"description": {
|
|
558
590
|
"type": "object"
|
|
559
591
|
},
|
|
592
|
+
"descriptionEntries": {
|
|
593
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
594
|
+
"type": "array",
|
|
595
|
+
"items": {
|
|
596
|
+
"$ref": "entry.json"
|
|
597
|
+
},
|
|
598
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
599
|
+
},
|
|
560
600
|
"consumption": {
|
|
561
601
|
"type": "object",
|
|
562
602
|
"properties": {
|
|
@@ -667,6 +707,14 @@
|
|
|
667
707
|
"description": {
|
|
668
708
|
"type": "object"
|
|
669
709
|
},
|
|
710
|
+
"descriptionEntries": {
|
|
711
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
712
|
+
"type": "array",
|
|
713
|
+
"items": {
|
|
714
|
+
"$ref": "entry.json"
|
|
715
|
+
},
|
|
716
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
717
|
+
},
|
|
670
718
|
"consumption": {
|
|
671
719
|
"type": "object",
|
|
672
720
|
"properties": {
|
|
@@ -756,6 +804,14 @@
|
|
|
756
804
|
"description": {
|
|
757
805
|
"type": "object"
|
|
758
806
|
},
|
|
807
|
+
"descriptionEntries": {
|
|
808
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
809
|
+
"type": "array",
|
|
810
|
+
"items": {
|
|
811
|
+
"$ref": "entry.json"
|
|
812
|
+
},
|
|
813
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
814
|
+
},
|
|
759
815
|
"consumption": {
|
|
760
816
|
"type": "object",
|
|
761
817
|
"properties": {
|
|
@@ -853,6 +909,14 @@
|
|
|
853
909
|
"description": {
|
|
854
910
|
"type": "object"
|
|
855
911
|
},
|
|
912
|
+
"descriptionEntries": {
|
|
913
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
914
|
+
"type": "array",
|
|
915
|
+
"items": {
|
|
916
|
+
"$ref": "entry.json"
|
|
917
|
+
},
|
|
918
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
919
|
+
},
|
|
856
920
|
"consumption": {
|
|
857
921
|
"type": "object",
|
|
858
922
|
"properties": {
|
|
@@ -942,6 +1006,14 @@
|
|
|
942
1006
|
"description": {
|
|
943
1007
|
"type": "object"
|
|
944
1008
|
},
|
|
1009
|
+
"descriptionEntries": {
|
|
1010
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
1011
|
+
"type": "array",
|
|
1012
|
+
"items": {
|
|
1013
|
+
"$ref": "entry.json"
|
|
1014
|
+
},
|
|
1015
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
1016
|
+
},
|
|
945
1017
|
"consumption": {
|
|
946
1018
|
"type": "object",
|
|
947
1019
|
"properties": {
|
|
@@ -1098,6 +1170,14 @@
|
|
|
1098
1170
|
"description": {
|
|
1099
1171
|
"type": "object"
|
|
1100
1172
|
},
|
|
1173
|
+
"descriptionEntries": {
|
|
1174
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
1175
|
+
"type": "array",
|
|
1176
|
+
"items": {
|
|
1177
|
+
"$ref": "entry.json"
|
|
1178
|
+
},
|
|
1179
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
1180
|
+
},
|
|
1101
1181
|
"consumption": {
|
|
1102
1182
|
"type": "object",
|
|
1103
1183
|
"properties": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "adventures.json",
|
|
4
|
-
"version": "1.10.
|
|
4
|
+
"version": "1.10.30",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
7
7
|
"adventure": {
|
|
@@ -211,14 +211,12 @@
|
|
|
211
211
|
"Adventure Atlas",
|
|
212
212
|
"Heroes' Feast",
|
|
213
213
|
"Family Friendly",
|
|
214
|
-
"Grim Hollow",
|
|
215
|
-
"Drakkenheim",
|
|
216
|
-
"Humblewood",
|
|
217
214
|
"Vecna",
|
|
218
215
|
"Quests from the Infinite Staircase",
|
|
219
216
|
"LEGO",
|
|
220
217
|
"Shadow Realm",
|
|
221
218
|
"Animated Series",
|
|
219
|
+
"Dragon Delves",
|
|
222
220
|
"Miscellaneous"
|
|
223
221
|
]
|
|
224
222
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.2",
|
|
4
4
|
"type": "object",
|
|
5
5
|
"description": "Homebrew for 5etools. Should include arrays titled similarly to the main site data, e.g. `spell` or `class`",
|
|
6
6
|
"$defs": {
|
|
@@ -51,6 +51,12 @@
|
|
|
51
51
|
"pattern": "^([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$",
|
|
52
52
|
"markdownDescription": "HTML hex color code this source should use when displayed in lists, e.g. 'ff00ff'"
|
|
53
53
|
},
|
|
54
|
+
"colorNight": {
|
|
55
|
+
"type": "string",
|
|
56
|
+
"description": "As \"color\", but for night mode themes",
|
|
57
|
+
"pattern": "^([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$",
|
|
58
|
+
"markdownDescription": "As "color", but for night mode themes"
|
|
59
|
+
},
|
|
54
60
|
"full": {
|
|
55
61
|
"type": "string",
|
|
56
62
|
"description": "Full title of the source, to display on the site.",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "util-foundry.json",
|
|
4
4
|
"title": "Util: Foundry",
|
|
5
|
-
"version": "1.1.
|
|
5
|
+
"version": "1.1.1",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"entryDataObject": {
|
|
8
8
|
"description": "Additional \"5etools-type\" data to be stored on the entry.",
|
|
@@ -204,6 +204,14 @@
|
|
|
204
204
|
"description": {
|
|
205
205
|
"type": "object"
|
|
206
206
|
},
|
|
207
|
+
"descriptionEntries": {
|
|
208
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
209
|
+
"type": "array",
|
|
210
|
+
"items": {
|
|
211
|
+
"$ref": "entry.json"
|
|
212
|
+
},
|
|
213
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
214
|
+
},
|
|
207
215
|
"consumption": {
|
|
208
216
|
"type": "object",
|
|
209
217
|
"properties": {
|
|
@@ -290,6 +298,14 @@
|
|
|
290
298
|
"description": {
|
|
291
299
|
"type": "object"
|
|
292
300
|
},
|
|
301
|
+
"descriptionEntries": {
|
|
302
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
303
|
+
"type": "array",
|
|
304
|
+
"items": {
|
|
305
|
+
"$ref": "entry.json"
|
|
306
|
+
},
|
|
307
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
308
|
+
},
|
|
293
309
|
"consumption": {
|
|
294
310
|
"type": "object",
|
|
295
311
|
"properties": {
|
|
@@ -379,6 +395,14 @@
|
|
|
379
395
|
"description": {
|
|
380
396
|
"type": "object"
|
|
381
397
|
},
|
|
398
|
+
"descriptionEntries": {
|
|
399
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
400
|
+
"type": "array",
|
|
401
|
+
"items": {
|
|
402
|
+
"$ref": "entry.json"
|
|
403
|
+
},
|
|
404
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
405
|
+
},
|
|
382
406
|
"consumption": {
|
|
383
407
|
"type": "object",
|
|
384
408
|
"properties": {
|
|
@@ -468,6 +492,14 @@
|
|
|
468
492
|
"description": {
|
|
469
493
|
"type": "object"
|
|
470
494
|
},
|
|
495
|
+
"descriptionEntries": {
|
|
496
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
497
|
+
"type": "array",
|
|
498
|
+
"items": {
|
|
499
|
+
"$ref": "entry.json"
|
|
500
|
+
},
|
|
501
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
502
|
+
},
|
|
471
503
|
"consumption": {
|
|
472
504
|
"type": "object",
|
|
473
505
|
"properties": {
|
|
@@ -557,6 +589,14 @@
|
|
|
557
589
|
"description": {
|
|
558
590
|
"type": "object"
|
|
559
591
|
},
|
|
592
|
+
"descriptionEntries": {
|
|
593
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
594
|
+
"type": "array",
|
|
595
|
+
"items": {
|
|
596
|
+
"$ref": "entry.json"
|
|
597
|
+
},
|
|
598
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
599
|
+
},
|
|
560
600
|
"consumption": {
|
|
561
601
|
"type": "object",
|
|
562
602
|
"properties": {
|
|
@@ -667,6 +707,14 @@
|
|
|
667
707
|
"description": {
|
|
668
708
|
"type": "object"
|
|
669
709
|
},
|
|
710
|
+
"descriptionEntries": {
|
|
711
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
712
|
+
"type": "array",
|
|
713
|
+
"items": {
|
|
714
|
+
"$ref": "entry.json"
|
|
715
|
+
},
|
|
716
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
717
|
+
},
|
|
670
718
|
"consumption": {
|
|
671
719
|
"type": "object",
|
|
672
720
|
"properties": {
|
|
@@ -756,6 +804,14 @@
|
|
|
756
804
|
"description": {
|
|
757
805
|
"type": "object"
|
|
758
806
|
},
|
|
807
|
+
"descriptionEntries": {
|
|
808
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
809
|
+
"type": "array",
|
|
810
|
+
"items": {
|
|
811
|
+
"$ref": "entry.json"
|
|
812
|
+
},
|
|
813
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
814
|
+
},
|
|
759
815
|
"consumption": {
|
|
760
816
|
"type": "object",
|
|
761
817
|
"properties": {
|
|
@@ -853,6 +909,14 @@
|
|
|
853
909
|
"description": {
|
|
854
910
|
"type": "object"
|
|
855
911
|
},
|
|
912
|
+
"descriptionEntries": {
|
|
913
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
914
|
+
"type": "array",
|
|
915
|
+
"items": {
|
|
916
|
+
"$ref": "entry.json"
|
|
917
|
+
},
|
|
918
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
919
|
+
},
|
|
856
920
|
"consumption": {
|
|
857
921
|
"type": "object",
|
|
858
922
|
"properties": {
|
|
@@ -942,6 +1006,14 @@
|
|
|
942
1006
|
"description": {
|
|
943
1007
|
"type": "object"
|
|
944
1008
|
},
|
|
1009
|
+
"descriptionEntries": {
|
|
1010
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
1011
|
+
"type": "array",
|
|
1012
|
+
"items": {
|
|
1013
|
+
"$ref": "entry.json"
|
|
1014
|
+
},
|
|
1015
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
1016
|
+
},
|
|
945
1017
|
"consumption": {
|
|
946
1018
|
"type": "object",
|
|
947
1019
|
"properties": {
|
|
@@ -1098,6 +1170,14 @@
|
|
|
1098
1170
|
"description": {
|
|
1099
1171
|
"type": "object"
|
|
1100
1172
|
},
|
|
1173
|
+
"descriptionEntries": {
|
|
1174
|
+
"description": "If supplied, will be used to populate \"description.chatFlavor\".",
|
|
1175
|
+
"type": "array",
|
|
1176
|
+
"items": {
|
|
1177
|
+
"$ref": "entry.json"
|
|
1178
|
+
},
|
|
1179
|
+
"markdownDescription": "If supplied, will be used to populate "description.chatFlavor"."
|
|
1180
|
+
},
|
|
1101
1181
|
"consumption": {
|
|
1102
1182
|
"type": "object",
|
|
1103
1183
|
"properties": {
|