5etools-utils 0.12.52 → 0.12.54
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/entry.json +120 -9
- package/schema/brew/homebrew.json +10 -1
- package/schema/brew/items-shared.json +22 -2
- package/schema/brew/util-copy.json +3 -1
- package/schema/brew/util.json +10 -2
- package/schema/brew-fast/bestiary/bestiary.json +28 -1
- package/schema/brew-fast/entry.json +120 -9
- package/schema/brew-fast/homebrew.json +10 -1
- package/schema/brew-fast/items-shared.json +22 -2
- package/schema/brew-fast/util-copy.json +3 -1
- package/schema/brew-fast/util.json +10 -2
- package/schema/site/bestiary/bestiary.json +418 -1
- package/schema/site/entry.json +120 -9
- package/schema/site/homebrew.json +10 -1
- package/schema/site/items-shared.json +22 -2
- package/schema/site/util-copy.json +3 -1
- package/schema/site/util.json +10 -2
- package/schema/site-fast/bestiary/bestiary.json +418 -1
- package/schema/site-fast/entry.json +120 -9
- package/schema/site-fast/homebrew.json +10 -1
- package/schema/site-fast/items-shared.json +22 -2
- package/schema/site-fast/util-copy.json +3 -1
- package/schema/site-fast/util.json +10 -2
- package/schema/ua/bestiary/bestiary.json +418 -1
- package/schema/ua/entry.json +120 -9
- package/schema/ua/homebrew.json +10 -1
- package/schema/ua/items-shared.json +22 -2
- package/schema/ua/util-copy.json +3 -1
- package/schema/ua/util.json +10 -2
- package/schema/ua-fast/bestiary/bestiary.json +418 -1
- package/schema/ua-fast/entry.json +120 -9
- package/schema/ua-fast/homebrew.json +10 -1
- package/schema/ua-fast/items-shared.json +22 -2
- package/schema/ua-fast/util-copy.json +3 -1
- package/schema/ua-fast/util.json +10 -2
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.42",
|
|
4
4
|
"title": "Bestiary Schema",
|
|
5
5
|
"$id": "bestiary.json",
|
|
6
6
|
"type": "object",
|
|
@@ -529,6 +529,15 @@
|
|
|
529
529
|
"additionalProperties": false,
|
|
530
530
|
"minProperties": 1
|
|
531
531
|
},
|
|
532
|
+
"tool": {
|
|
533
|
+
"type": "object",
|
|
534
|
+
"minProperties": 1,
|
|
535
|
+
"patternProperties": {
|
|
536
|
+
".*": {
|
|
537
|
+
"type": "string"
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
},
|
|
532
541
|
"gear": {
|
|
533
542
|
"type": "array",
|
|
534
543
|
"items": {
|
|
@@ -1791,6 +1800,15 @@
|
|
|
1791
1800
|
"additionalProperties": false,
|
|
1792
1801
|
"minProperties": 1
|
|
1793
1802
|
},
|
|
1803
|
+
"tool": {
|
|
1804
|
+
"type": "object",
|
|
1805
|
+
"minProperties": 1,
|
|
1806
|
+
"patternProperties": {
|
|
1807
|
+
".*": {
|
|
1808
|
+
"type": "string"
|
|
1809
|
+
}
|
|
1810
|
+
}
|
|
1811
|
+
},
|
|
1794
1812
|
"gear": {
|
|
1795
1813
|
"type": "array",
|
|
1796
1814
|
"items": {
|
|
@@ -3058,6 +3076,15 @@
|
|
|
3058
3076
|
"additionalProperties": false,
|
|
3059
3077
|
"minProperties": 1
|
|
3060
3078
|
},
|
|
3079
|
+
"tool": {
|
|
3080
|
+
"type": "object",
|
|
3081
|
+
"minProperties": 1,
|
|
3082
|
+
"patternProperties": {
|
|
3083
|
+
".*": {
|
|
3084
|
+
"type": "string"
|
|
3085
|
+
}
|
|
3086
|
+
}
|
|
3087
|
+
},
|
|
3061
3088
|
"gear": {
|
|
3062
3089
|
"type": "array",
|
|
3063
3090
|
"items": {
|
package/schema/brew/entry.json
CHANGED
|
@@ -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.2",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_arrayOfSpell": {
|
|
9
9
|
"type": "array",
|
|
@@ -51,6 +51,57 @@
|
|
|
51
51
|
}
|
|
52
52
|
]
|
|
53
53
|
},
|
|
54
|
+
"_entryStatblockBase": {
|
|
55
|
+
"type": "object",
|
|
56
|
+
"properties": {
|
|
57
|
+
"name": {
|
|
58
|
+
"type": "string"
|
|
59
|
+
},
|
|
60
|
+
"type": {
|
|
61
|
+
"type": "string",
|
|
62
|
+
"const": "statblock"
|
|
63
|
+
},
|
|
64
|
+
"source": {
|
|
65
|
+
"$ref": "util.json#/$defs/source"
|
|
66
|
+
},
|
|
67
|
+
"page": {
|
|
68
|
+
"$ref": "util.json#/$defs/page"
|
|
69
|
+
},
|
|
70
|
+
"srd": {
|
|
71
|
+
"$ref": "util.json#/$defs/srd"
|
|
72
|
+
},
|
|
73
|
+
"srd52": {
|
|
74
|
+
"$ref": "util.json#/$defs/srd"
|
|
75
|
+
},
|
|
76
|
+
"basicRules": {
|
|
77
|
+
"$ref": "util.json#/$defs/basicRules"
|
|
78
|
+
},
|
|
79
|
+
"freeRules2024": {
|
|
80
|
+
"$ref": "util.json#/$defs/basicRules"
|
|
81
|
+
},
|
|
82
|
+
"data": {
|
|
83
|
+
"$ref": "#/$defs/_entryDataData"
|
|
84
|
+
},
|
|
85
|
+
"id": {
|
|
86
|
+
"type": "string"
|
|
87
|
+
},
|
|
88
|
+
"displayName": {
|
|
89
|
+
"type": "string"
|
|
90
|
+
},
|
|
91
|
+
"hash": {
|
|
92
|
+
"type": "string"
|
|
93
|
+
},
|
|
94
|
+
"style": {
|
|
95
|
+
"$ref": "#/$defs/_entryDataStyle"
|
|
96
|
+
},
|
|
97
|
+
"collapsed": {
|
|
98
|
+
"const": true
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
"required": [
|
|
102
|
+
"type"
|
|
103
|
+
]
|
|
104
|
+
},
|
|
54
105
|
"mediaHrefInternal": {
|
|
55
106
|
"type": "object",
|
|
56
107
|
"properties": {
|
|
@@ -3384,9 +3435,6 @@
|
|
|
3384
3435
|
"id": {
|
|
3385
3436
|
"type": "string"
|
|
3386
3437
|
},
|
|
3387
|
-
"tag": {
|
|
3388
|
-
"$ref": "util.json#/$defs/tagNameStats"
|
|
3389
|
-
},
|
|
3390
3438
|
"displayName": {
|
|
3391
3439
|
"type": "string"
|
|
3392
3440
|
},
|
|
@@ -3398,6 +3446,9 @@
|
|
|
3398
3446
|
},
|
|
3399
3447
|
"collapsed": {
|
|
3400
3448
|
"const": true
|
|
3449
|
+
},
|
|
3450
|
+
"tag": {
|
|
3451
|
+
"$ref": "util.json#/$defs/tagNameStats"
|
|
3401
3452
|
}
|
|
3402
3453
|
},
|
|
3403
3454
|
"required": [
|
|
@@ -3441,10 +3492,64 @@
|
|
|
3441
3492
|
"id": {
|
|
3442
3493
|
"type": "string"
|
|
3443
3494
|
},
|
|
3495
|
+
"displayName": {
|
|
3496
|
+
"type": "string"
|
|
3497
|
+
},
|
|
3498
|
+
"hash": {
|
|
3499
|
+
"type": "string"
|
|
3500
|
+
},
|
|
3501
|
+
"style": {
|
|
3502
|
+
"$ref": "#/$defs/_entryDataStyle"
|
|
3503
|
+
},
|
|
3504
|
+
"collapsed": {
|
|
3505
|
+
"const": true
|
|
3506
|
+
},
|
|
3444
3507
|
"tag": {
|
|
3445
|
-
"
|
|
3508
|
+
"const": "deity"
|
|
3446
3509
|
},
|
|
3447
|
-
"
|
|
3510
|
+
"pantheon": {
|
|
3511
|
+
"type": "string"
|
|
3512
|
+
}
|
|
3513
|
+
},
|
|
3514
|
+
"required": [
|
|
3515
|
+
"type",
|
|
3516
|
+
"tag",
|
|
3517
|
+
"name"
|
|
3518
|
+
],
|
|
3519
|
+
"additionalProperties": false
|
|
3520
|
+
},
|
|
3521
|
+
{
|
|
3522
|
+
"type": "object",
|
|
3523
|
+
"properties": {
|
|
3524
|
+
"name": {
|
|
3525
|
+
"type": "string"
|
|
3526
|
+
},
|
|
3527
|
+
"type": {
|
|
3528
|
+
"type": "string",
|
|
3529
|
+
"const": "statblock"
|
|
3530
|
+
},
|
|
3531
|
+
"source": {
|
|
3532
|
+
"$ref": "util.json#/$defs/source"
|
|
3533
|
+
},
|
|
3534
|
+
"page": {
|
|
3535
|
+
"$ref": "util.json#/$defs/page"
|
|
3536
|
+
},
|
|
3537
|
+
"srd": {
|
|
3538
|
+
"$ref": "util.json#/$defs/srd"
|
|
3539
|
+
},
|
|
3540
|
+
"srd52": {
|
|
3541
|
+
"$ref": "util.json#/$defs/srd"
|
|
3542
|
+
},
|
|
3543
|
+
"basicRules": {
|
|
3544
|
+
"$ref": "util.json#/$defs/basicRules"
|
|
3545
|
+
},
|
|
3546
|
+
"freeRules2024": {
|
|
3547
|
+
"$ref": "util.json#/$defs/basicRules"
|
|
3548
|
+
},
|
|
3549
|
+
"data": {
|
|
3550
|
+
"$ref": "#/$defs/_entryDataData"
|
|
3551
|
+
},
|
|
3552
|
+
"id": {
|
|
3448
3553
|
"type": "string"
|
|
3449
3554
|
},
|
|
3450
3555
|
"displayName": {
|
|
@@ -3458,6 +3563,12 @@
|
|
|
3458
3563
|
},
|
|
3459
3564
|
"collapsed": {
|
|
3460
3565
|
"const": true
|
|
3566
|
+
},
|
|
3567
|
+
"tag": {
|
|
3568
|
+
"$ref": "util.json#/$defs/tagNameStatsAbbreviation"
|
|
3569
|
+
},
|
|
3570
|
+
"abbreviation": {
|
|
3571
|
+
"type": "string"
|
|
3461
3572
|
}
|
|
3462
3573
|
},
|
|
3463
3574
|
"required": [
|
|
@@ -3501,9 +3612,6 @@
|
|
|
3501
3612
|
"id": {
|
|
3502
3613
|
"type": "string"
|
|
3503
3614
|
},
|
|
3504
|
-
"prop": {
|
|
3505
|
-
"$ref": "util.json#/$defs/propNameStats"
|
|
3506
|
-
},
|
|
3507
3615
|
"displayName": {
|
|
3508
3616
|
"type": "string"
|
|
3509
3617
|
},
|
|
@@ -3515,6 +3623,9 @@
|
|
|
3515
3623
|
},
|
|
3516
3624
|
"collapsed": {
|
|
3517
3625
|
"const": true
|
|
3626
|
+
},
|
|
3627
|
+
"prop": {
|
|
3628
|
+
"$ref": "util.json#/$defs/propNameStats"
|
|
3518
3629
|
}
|
|
3519
3630
|
},
|
|
3520
3631
|
"required": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.29",
|
|
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": {
|
|
@@ -161,6 +161,15 @@
|
|
|
161
161
|
}
|
|
162
162
|
}
|
|
163
163
|
},
|
|
164
|
+
"featCategories": {
|
|
165
|
+
"type": "object",
|
|
166
|
+
"description": "Object names are feat \"category\" shorthands (e.g. \"O\" for \"Origin\" which will be displayed in the list view as a sortable column",
|
|
167
|
+
"patternProperties": {
|
|
168
|
+
".*": {
|
|
169
|
+
"type": "string"
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
},
|
|
164
173
|
"psionicTypes": {
|
|
165
174
|
"type": "object",
|
|
166
175
|
"description": "Object names are psionic type abbreviations (e.g. `\"X\"`); values should be objects with `\"full\"`` (used in the main entry, e.g. \"Greater Discipline\") and `\"short\"` (used in the list view, e.g. `\"G. Discipline\"`) key/values.",
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "items-shared.json",
|
|
4
4
|
"title": "Shared Item Schema",
|
|
5
5
|
"description": "Shared item definitions to be used in item schemas.",
|
|
6
|
-
"version": "1.1.
|
|
6
|
+
"version": "1.1.5",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_itemModifySpeedEqual": {
|
|
9
9
|
"type": "string",
|
|
@@ -315,7 +315,27 @@
|
|
|
315
315
|
"itemMastery": {
|
|
316
316
|
"type": "array",
|
|
317
317
|
"items": {
|
|
318
|
-
"
|
|
318
|
+
"oneOf": [
|
|
319
|
+
{
|
|
320
|
+
"type": "string"
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"type": "object",
|
|
324
|
+
"properties": {
|
|
325
|
+
"uid": {
|
|
326
|
+
"type": "string"
|
|
327
|
+
},
|
|
328
|
+
"note": {
|
|
329
|
+
"type": "string"
|
|
330
|
+
}
|
|
331
|
+
},
|
|
332
|
+
"additionalProperties": false,
|
|
333
|
+
"required": [
|
|
334
|
+
"uid",
|
|
335
|
+
"note"
|
|
336
|
+
]
|
|
337
|
+
}
|
|
338
|
+
]
|
|
319
339
|
},
|
|
320
340
|
"minItems": 1,
|
|
321
341
|
"uniqueItems": true
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "util-copy.json",
|
|
4
4
|
"title": "Util: Copy",
|
|
5
|
-
"version": "1.0.
|
|
5
|
+
"version": "1.0.5",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"_mod_renameArr_rename": {
|
|
8
8
|
"type": "object",
|
|
@@ -82,6 +82,7 @@
|
|
|
82
82
|
"uniqueItems": true
|
|
83
83
|
}
|
|
84
84
|
},
|
|
85
|
+
"minProperties": 1,
|
|
85
86
|
"additionalProperties": false
|
|
86
87
|
},
|
|
87
88
|
"_mod_additionalSpellAddRemoveObject": {
|
|
@@ -96,6 +97,7 @@
|
|
|
96
97
|
"uniqueItems": true
|
|
97
98
|
}
|
|
98
99
|
},
|
|
100
|
+
"minProperties": 1,
|
|
99
101
|
"additionalProperties": false
|
|
100
102
|
},
|
|
101
103
|
"copyModifier": {
|
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.17.
|
|
6
|
+
"version": "1.17.15",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaDependenciesArray": {
|
|
9
9
|
"type": "array",
|
|
@@ -193,7 +193,6 @@
|
|
|
193
193
|
"boon",
|
|
194
194
|
"trap",
|
|
195
195
|
"hazard",
|
|
196
|
-
"deity",
|
|
197
196
|
"variantrule",
|
|
198
197
|
"charoption",
|
|
199
198
|
"vehicle",
|
|
@@ -2126,6 +2125,15 @@
|
|
|
2126
2125
|
]
|
|
2127
2126
|
}
|
|
2128
2127
|
},
|
|
2128
|
+
"culture": {
|
|
2129
|
+
"type": "array",
|
|
2130
|
+
"items": {
|
|
2131
|
+
"type": "string",
|
|
2132
|
+
"examples": [
|
|
2133
|
+
"Elven"
|
|
2134
|
+
]
|
|
2135
|
+
}
|
|
2136
|
+
},
|
|
2129
2137
|
"group": {
|
|
2130
2138
|
"type": "array",
|
|
2131
2139
|
"items": {
|
|
@@ -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.42",
|
|
4
4
|
"title": "Bestiary Schema",
|
|
5
5
|
"$id": "bestiary.json",
|
|
6
6
|
"type": "object",
|
|
@@ -529,6 +529,15 @@
|
|
|
529
529
|
"additionalProperties": false,
|
|
530
530
|
"minProperties": 1
|
|
531
531
|
},
|
|
532
|
+
"tool": {
|
|
533
|
+
"type": "object",
|
|
534
|
+
"minProperties": 1,
|
|
535
|
+
"patternProperties": {
|
|
536
|
+
".*": {
|
|
537
|
+
"type": "string"
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
},
|
|
532
541
|
"gear": {
|
|
533
542
|
"type": "array",
|
|
534
543
|
"items": {
|
|
@@ -1791,6 +1800,15 @@
|
|
|
1791
1800
|
"additionalProperties": false,
|
|
1792
1801
|
"minProperties": 1
|
|
1793
1802
|
},
|
|
1803
|
+
"tool": {
|
|
1804
|
+
"type": "object",
|
|
1805
|
+
"minProperties": 1,
|
|
1806
|
+
"patternProperties": {
|
|
1807
|
+
".*": {
|
|
1808
|
+
"type": "string"
|
|
1809
|
+
}
|
|
1810
|
+
}
|
|
1811
|
+
},
|
|
1794
1812
|
"gear": {
|
|
1795
1813
|
"type": "array",
|
|
1796
1814
|
"items": {
|
|
@@ -3058,6 +3076,15 @@
|
|
|
3058
3076
|
"additionalProperties": false,
|
|
3059
3077
|
"minProperties": 1
|
|
3060
3078
|
},
|
|
3079
|
+
"tool": {
|
|
3080
|
+
"type": "object",
|
|
3081
|
+
"minProperties": 1,
|
|
3082
|
+
"patternProperties": {
|
|
3083
|
+
".*": {
|
|
3084
|
+
"type": "string"
|
|
3085
|
+
}
|
|
3086
|
+
}
|
|
3087
|
+
},
|
|
3061
3088
|
"gear": {
|
|
3062
3089
|
"type": "array",
|
|
3063
3090
|
"items": {
|
|
@@ -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.2",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_arrayOfSpell": {
|
|
9
9
|
"type": "array",
|
|
@@ -51,6 +51,57 @@
|
|
|
51
51
|
}
|
|
52
52
|
]
|
|
53
53
|
},
|
|
54
|
+
"_entryStatblockBase": {
|
|
55
|
+
"type": "object",
|
|
56
|
+
"properties": {
|
|
57
|
+
"name": {
|
|
58
|
+
"type": "string"
|
|
59
|
+
},
|
|
60
|
+
"type": {
|
|
61
|
+
"type": "string",
|
|
62
|
+
"const": "statblock"
|
|
63
|
+
},
|
|
64
|
+
"source": {
|
|
65
|
+
"$ref": "util.json#/$defs/source"
|
|
66
|
+
},
|
|
67
|
+
"page": {
|
|
68
|
+
"$ref": "util.json#/$defs/page"
|
|
69
|
+
},
|
|
70
|
+
"srd": {
|
|
71
|
+
"$ref": "util.json#/$defs/srd"
|
|
72
|
+
},
|
|
73
|
+
"srd52": {
|
|
74
|
+
"$ref": "util.json#/$defs/srd"
|
|
75
|
+
},
|
|
76
|
+
"basicRules": {
|
|
77
|
+
"$ref": "util.json#/$defs/basicRules"
|
|
78
|
+
},
|
|
79
|
+
"freeRules2024": {
|
|
80
|
+
"$ref": "util.json#/$defs/basicRules"
|
|
81
|
+
},
|
|
82
|
+
"data": {
|
|
83
|
+
"$ref": "#/$defs/_entryDataData"
|
|
84
|
+
},
|
|
85
|
+
"id": {
|
|
86
|
+
"type": "string"
|
|
87
|
+
},
|
|
88
|
+
"displayName": {
|
|
89
|
+
"type": "string"
|
|
90
|
+
},
|
|
91
|
+
"hash": {
|
|
92
|
+
"type": "string"
|
|
93
|
+
},
|
|
94
|
+
"style": {
|
|
95
|
+
"$ref": "#/$defs/_entryDataStyle"
|
|
96
|
+
},
|
|
97
|
+
"collapsed": {
|
|
98
|
+
"const": true
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
"required": [
|
|
102
|
+
"type"
|
|
103
|
+
]
|
|
104
|
+
},
|
|
54
105
|
"mediaHrefInternal": {
|
|
55
106
|
"type": "object",
|
|
56
107
|
"properties": {
|
|
@@ -3384,9 +3435,6 @@
|
|
|
3384
3435
|
"id": {
|
|
3385
3436
|
"type": "string"
|
|
3386
3437
|
},
|
|
3387
|
-
"tag": {
|
|
3388
|
-
"$ref": "util.json#/$defs/tagNameStats"
|
|
3389
|
-
},
|
|
3390
3438
|
"displayName": {
|
|
3391
3439
|
"type": "string"
|
|
3392
3440
|
},
|
|
@@ -3398,6 +3446,9 @@
|
|
|
3398
3446
|
},
|
|
3399
3447
|
"collapsed": {
|
|
3400
3448
|
"const": true
|
|
3449
|
+
},
|
|
3450
|
+
"tag": {
|
|
3451
|
+
"$ref": "util.json#/$defs/tagNameStats"
|
|
3401
3452
|
}
|
|
3402
3453
|
},
|
|
3403
3454
|
"required": [
|
|
@@ -3441,10 +3492,64 @@
|
|
|
3441
3492
|
"id": {
|
|
3442
3493
|
"type": "string"
|
|
3443
3494
|
},
|
|
3495
|
+
"displayName": {
|
|
3496
|
+
"type": "string"
|
|
3497
|
+
},
|
|
3498
|
+
"hash": {
|
|
3499
|
+
"type": "string"
|
|
3500
|
+
},
|
|
3501
|
+
"style": {
|
|
3502
|
+
"$ref": "#/$defs/_entryDataStyle"
|
|
3503
|
+
},
|
|
3504
|
+
"collapsed": {
|
|
3505
|
+
"const": true
|
|
3506
|
+
},
|
|
3444
3507
|
"tag": {
|
|
3445
|
-
"
|
|
3508
|
+
"const": "deity"
|
|
3446
3509
|
},
|
|
3447
|
-
"
|
|
3510
|
+
"pantheon": {
|
|
3511
|
+
"type": "string"
|
|
3512
|
+
}
|
|
3513
|
+
},
|
|
3514
|
+
"required": [
|
|
3515
|
+
"type",
|
|
3516
|
+
"tag",
|
|
3517
|
+
"name"
|
|
3518
|
+
],
|
|
3519
|
+
"additionalProperties": false
|
|
3520
|
+
},
|
|
3521
|
+
{
|
|
3522
|
+
"type": "object",
|
|
3523
|
+
"properties": {
|
|
3524
|
+
"name": {
|
|
3525
|
+
"type": "string"
|
|
3526
|
+
},
|
|
3527
|
+
"type": {
|
|
3528
|
+
"type": "string",
|
|
3529
|
+
"const": "statblock"
|
|
3530
|
+
},
|
|
3531
|
+
"source": {
|
|
3532
|
+
"$ref": "util.json#/$defs/source"
|
|
3533
|
+
},
|
|
3534
|
+
"page": {
|
|
3535
|
+
"$ref": "util.json#/$defs/page"
|
|
3536
|
+
},
|
|
3537
|
+
"srd": {
|
|
3538
|
+
"$ref": "util.json#/$defs/srd"
|
|
3539
|
+
},
|
|
3540
|
+
"srd52": {
|
|
3541
|
+
"$ref": "util.json#/$defs/srd"
|
|
3542
|
+
},
|
|
3543
|
+
"basicRules": {
|
|
3544
|
+
"$ref": "util.json#/$defs/basicRules"
|
|
3545
|
+
},
|
|
3546
|
+
"freeRules2024": {
|
|
3547
|
+
"$ref": "util.json#/$defs/basicRules"
|
|
3548
|
+
},
|
|
3549
|
+
"data": {
|
|
3550
|
+
"$ref": "#/$defs/_entryDataData"
|
|
3551
|
+
},
|
|
3552
|
+
"id": {
|
|
3448
3553
|
"type": "string"
|
|
3449
3554
|
},
|
|
3450
3555
|
"displayName": {
|
|
@@ -3458,6 +3563,12 @@
|
|
|
3458
3563
|
},
|
|
3459
3564
|
"collapsed": {
|
|
3460
3565
|
"const": true
|
|
3566
|
+
},
|
|
3567
|
+
"tag": {
|
|
3568
|
+
"$ref": "util.json#/$defs/tagNameStatsAbbreviation"
|
|
3569
|
+
},
|
|
3570
|
+
"abbreviation": {
|
|
3571
|
+
"type": "string"
|
|
3461
3572
|
}
|
|
3462
3573
|
},
|
|
3463
3574
|
"required": [
|
|
@@ -3501,9 +3612,6 @@
|
|
|
3501
3612
|
"id": {
|
|
3502
3613
|
"type": "string"
|
|
3503
3614
|
},
|
|
3504
|
-
"prop": {
|
|
3505
|
-
"$ref": "util.json#/$defs/propNameStats"
|
|
3506
|
-
},
|
|
3507
3615
|
"displayName": {
|
|
3508
3616
|
"type": "string"
|
|
3509
3617
|
},
|
|
@@ -3515,6 +3623,9 @@
|
|
|
3515
3623
|
},
|
|
3516
3624
|
"collapsed": {
|
|
3517
3625
|
"const": true
|
|
3626
|
+
},
|
|
3627
|
+
"prop": {
|
|
3628
|
+
"$ref": "util.json#/$defs/propNameStats"
|
|
3518
3629
|
}
|
|
3519
3630
|
},
|
|
3520
3631
|
"required": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.29",
|
|
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": {
|
|
@@ -159,6 +159,15 @@
|
|
|
159
159
|
}
|
|
160
160
|
}
|
|
161
161
|
},
|
|
162
|
+
"featCategories": {
|
|
163
|
+
"type": "object",
|
|
164
|
+
"description": "Object names are feat \"category\" shorthands (e.g. \"O\" for \"Origin\" which will be displayed in the list view as a sortable column",
|
|
165
|
+
"patternProperties": {
|
|
166
|
+
".*": {
|
|
167
|
+
"type": "string"
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
},
|
|
162
171
|
"psionicTypes": {
|
|
163
172
|
"type": "object",
|
|
164
173
|
"description": "Object names are psionic type abbreviations (e.g. `\"X\"`); values should be objects with `\"full\"`` (used in the main entry, e.g. \"Greater Discipline\") and `\"short\"` (used in the list view, e.g. `\"G. Discipline\"`) key/values.",
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "items-shared.json",
|
|
4
4
|
"title": "Shared Item Schema",
|
|
5
5
|
"description": "Shared item definitions to be used in item schemas.",
|
|
6
|
-
"version": "1.1.
|
|
6
|
+
"version": "1.1.5",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_itemModifySpeedEqual": {
|
|
9
9
|
"type": "string",
|
|
@@ -315,7 +315,27 @@
|
|
|
315
315
|
"itemMastery": {
|
|
316
316
|
"type": "array",
|
|
317
317
|
"items": {
|
|
318
|
-
"
|
|
318
|
+
"oneOf": [
|
|
319
|
+
{
|
|
320
|
+
"type": "string"
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"type": "object",
|
|
324
|
+
"properties": {
|
|
325
|
+
"uid": {
|
|
326
|
+
"type": "string"
|
|
327
|
+
},
|
|
328
|
+
"note": {
|
|
329
|
+
"type": "string"
|
|
330
|
+
}
|
|
331
|
+
},
|
|
332
|
+
"additionalProperties": false,
|
|
333
|
+
"required": [
|
|
334
|
+
"uid",
|
|
335
|
+
"note"
|
|
336
|
+
]
|
|
337
|
+
}
|
|
338
|
+
]
|
|
319
339
|
},
|
|
320
340
|
"minItems": 1,
|
|
321
341
|
"uniqueItems": true
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "util-copy.json",
|
|
4
4
|
"title": "Util: Copy",
|
|
5
|
-
"version": "1.0.
|
|
5
|
+
"version": "1.0.5",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"_mod_renameArr_rename": {
|
|
8
8
|
"type": "object",
|
|
@@ -82,6 +82,7 @@
|
|
|
82
82
|
"uniqueItems": true
|
|
83
83
|
}
|
|
84
84
|
},
|
|
85
|
+
"minProperties": 1,
|
|
85
86
|
"additionalProperties": false
|
|
86
87
|
},
|
|
87
88
|
"_mod_additionalSpellAddRemoveObject": {
|
|
@@ -96,6 +97,7 @@
|
|
|
96
97
|
"uniqueItems": true
|
|
97
98
|
}
|
|
98
99
|
},
|
|
100
|
+
"minProperties": 1,
|
|
99
101
|
"additionalProperties": false
|
|
100
102
|
},
|
|
101
103
|
"copyModifier": {
|