5etools-utils 0.16.42 → 0.17.0
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/bin/lint-js.js +26 -0
- package/lib/eslint/eslint-config-rules.js +401 -0
- package/lib/eslint/eslint-config.js +67 -0
- package/lib/eslint/eslint-globals.js +242 -0
- package/package.json +6 -5
- package/schema/brew/corpus-shared.json +22 -3
- package/schema/brew/entry.json +62 -1
- package/schema/brew/sources-5etools.json +14 -2
- package/schema/brew-fast/corpus-shared.json +22 -3
- package/schema/brew-fast/entry.json +62 -1
- package/schema/brew-fast/sources-5etools.json +14 -2
- package/schema/site/corpus-shared.json +22 -3
- package/schema/site/entry.json +74 -1
- package/schema/site/sources-5etools.json +14 -2
- package/schema/site-fast/corpus-shared.json +22 -3
- package/schema/site-fast/entry.json +74 -1
- package/schema/site-fast/sources-5etools.json +14 -2
- package/schema/ua/corpus-shared.json +22 -3
- package/schema/ua/entry.json +62 -1
- package/schema/ua/sources-5etools.json +14 -2
- package/schema/ua-fast/corpus-shared.json +22 -3
- package/schema/ua-fast/entry.json +62 -1
- package/schema/ua-fast/sources-5etools.json +14 -2
package/schema/site/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.10.
|
|
6
|
+
"version": "1.10.2",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_arrayOfSpell": {
|
|
9
9
|
"type": "array",
|
|
@@ -3747,6 +3747,79 @@
|
|
|
3747
3747
|
],
|
|
3748
3748
|
"additionalProperties": false
|
|
3749
3749
|
},
|
|
3750
|
+
{
|
|
3751
|
+
"type": "object",
|
|
3752
|
+
"properties": {
|
|
3753
|
+
"name": {
|
|
3754
|
+
"type": "string"
|
|
3755
|
+
},
|
|
3756
|
+
"type": {
|
|
3757
|
+
"type": "string",
|
|
3758
|
+
"const": "statblock"
|
|
3759
|
+
},
|
|
3760
|
+
"source": {
|
|
3761
|
+
"$ref": "util.json#/$defs/source"
|
|
3762
|
+
},
|
|
3763
|
+
"page": {
|
|
3764
|
+
"$ref": "util.json#/$defs/page"
|
|
3765
|
+
},
|
|
3766
|
+
"data": {
|
|
3767
|
+
"$ref": "#/$defs/_entryDataData"
|
|
3768
|
+
},
|
|
3769
|
+
"id": {
|
|
3770
|
+
"type": "string"
|
|
3771
|
+
},
|
|
3772
|
+
"srd": {
|
|
3773
|
+
"$ref": "util.json#/$defs/srd"
|
|
3774
|
+
},
|
|
3775
|
+
"srd52": {
|
|
3776
|
+
"$ref": "util.json#/$defs/srd"
|
|
3777
|
+
},
|
|
3778
|
+
"basicRules": {
|
|
3779
|
+
"$ref": "util.json#/$defs/basicRules"
|
|
3780
|
+
},
|
|
3781
|
+
"basicRules2024": {
|
|
3782
|
+
"$ref": "util.json#/$defs/basicRules"
|
|
3783
|
+
},
|
|
3784
|
+
"displayName": {
|
|
3785
|
+
"type": "string"
|
|
3786
|
+
},
|
|
3787
|
+
"hash": {
|
|
3788
|
+
"type": "string"
|
|
3789
|
+
},
|
|
3790
|
+
"style": {
|
|
3791
|
+
"$ref": "#/$defs/_entryDataStyle"
|
|
3792
|
+
},
|
|
3793
|
+
"slotSize": {
|
|
3794
|
+
"$ref": "#/$defs/_entryStatblockSlotSize"
|
|
3795
|
+
},
|
|
3796
|
+
"collapsed": {
|
|
3797
|
+
"const": true
|
|
3798
|
+
},
|
|
3799
|
+
"tag": {
|
|
3800
|
+
"const": "subclass"
|
|
3801
|
+
},
|
|
3802
|
+
"shortName": {
|
|
3803
|
+
"type": "string"
|
|
3804
|
+
},
|
|
3805
|
+
"className": {
|
|
3806
|
+
"type": "string"
|
|
3807
|
+
},
|
|
3808
|
+
"classSource": {
|
|
3809
|
+
"$ref": "util.json#/$defs/source"
|
|
3810
|
+
}
|
|
3811
|
+
},
|
|
3812
|
+
"required": [
|
|
3813
|
+
"type",
|
|
3814
|
+
"tag",
|
|
3815
|
+
"name",
|
|
3816
|
+
"shortName",
|
|
3817
|
+
"source",
|
|
3818
|
+
"className",
|
|
3819
|
+
"classSource"
|
|
3820
|
+
],
|
|
3821
|
+
"additionalProperties": false
|
|
3822
|
+
},
|
|
3750
3823
|
{
|
|
3751
3824
|
"type": "object",
|
|
3752
3825
|
"properties": {
|
|
@@ -135,12 +135,16 @@
|
|
|
135
135
|
"LFL",
|
|
136
136
|
"EFA",
|
|
137
137
|
"FFotR",
|
|
138
|
+
"RHW",
|
|
139
|
+
"AU",
|
|
140
|
+
"AUD",
|
|
138
141
|
"TD",
|
|
139
142
|
"Screen",
|
|
140
143
|
"ScreenWildernessKit",
|
|
141
144
|
"ScreenDungeonKit",
|
|
142
145
|
"ScreenSpelljammer",
|
|
143
146
|
"XScreen",
|
|
147
|
+
"XScreenRHW",
|
|
144
148
|
"HF",
|
|
145
149
|
"HFFotM",
|
|
146
150
|
"HFStCM",
|
|
@@ -184,7 +188,9 @@
|
|
|
184
188
|
"MCV3MC",
|
|
185
189
|
"MCV4EC",
|
|
186
190
|
"MisMV1",
|
|
187
|
-
"AATM"
|
|
191
|
+
"AATM",
|
|
192
|
+
"CaBoMP",
|
|
193
|
+
"BQDD"
|
|
188
194
|
]
|
|
189
195
|
},
|
|
190
196
|
"sourcesLegacy": {
|
|
@@ -378,12 +384,18 @@
|
|
|
378
384
|
"LFL",
|
|
379
385
|
"EFA",
|
|
380
386
|
"FFotR",
|
|
387
|
+
"RHW",
|
|
388
|
+
"AU",
|
|
389
|
+
"AUD",
|
|
381
390
|
"XScreen",
|
|
391
|
+
"XScreenRHW",
|
|
382
392
|
"HFDoMM",
|
|
383
393
|
"UtHftLH",
|
|
384
394
|
"ScoEE",
|
|
385
395
|
"HBTD",
|
|
386
|
-
"BQGT"
|
|
396
|
+
"BQGT",
|
|
397
|
+
"CaBoMP",
|
|
398
|
+
"BQDD"
|
|
387
399
|
]
|
|
388
400
|
}
|
|
389
401
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "corpus-shared.json",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.4",
|
|
5
5
|
"$defs": {
|
|
6
6
|
"corpusCover": {
|
|
7
7
|
"description": "A link to an image. Preferred sizes are 300 x 300px or 600 x 600px.",
|
|
@@ -44,16 +44,35 @@
|
|
|
44
44
|
"statblock": {
|
|
45
45
|
"const": true
|
|
46
46
|
},
|
|
47
|
+
"tag": {
|
|
48
|
+
"type": "string"
|
|
49
|
+
},
|
|
50
|
+
"uid": {
|
|
51
|
+
"type": "string"
|
|
52
|
+
},
|
|
47
53
|
"index": {
|
|
48
54
|
"description": "The relative index of this header in the current chapter, i.e. if \"Treasure\" appears twice and you wish the contents entry to link to the second instance, set the \"index\" to 1.",
|
|
49
55
|
"type": "integer",
|
|
50
56
|
"markdownDescription": "The relative index of this header in the current chapter, i.e. if "Treasure" appears twice and you wish the contents entry to link to the second instance, set the "index" to 1."
|
|
51
57
|
}
|
|
52
58
|
},
|
|
53
|
-
"additionalProperties": false,
|
|
54
59
|
"required": [
|
|
55
60
|
"header"
|
|
56
|
-
]
|
|
61
|
+
],
|
|
62
|
+
"dependentRequired": {
|
|
63
|
+
"source": [
|
|
64
|
+
"statblock"
|
|
65
|
+
],
|
|
66
|
+
"tag": [
|
|
67
|
+
"statblock",
|
|
68
|
+
"uid"
|
|
69
|
+
],
|
|
70
|
+
"uid": [
|
|
71
|
+
"statblock",
|
|
72
|
+
"tag"
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
"additionalProperties": false
|
|
57
76
|
}
|
|
58
77
|
]
|
|
59
78
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "entry.json",
|
|
4
4
|
"title": "Entry",
|
|
5
5
|
"description": "A recursively renderable object.",
|
|
6
|
-
"version": "1.10.
|
|
6
|
+
"version": "1.10.2",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_arrayOfSpell": {
|
|
9
9
|
"type": "array",
|
|
@@ -3747,6 +3747,79 @@
|
|
|
3747
3747
|
],
|
|
3748
3748
|
"additionalProperties": false
|
|
3749
3749
|
},
|
|
3750
|
+
{
|
|
3751
|
+
"type": "object",
|
|
3752
|
+
"properties": {
|
|
3753
|
+
"name": {
|
|
3754
|
+
"type": "string"
|
|
3755
|
+
},
|
|
3756
|
+
"type": {
|
|
3757
|
+
"type": "string",
|
|
3758
|
+
"const": "statblock"
|
|
3759
|
+
},
|
|
3760
|
+
"source": {
|
|
3761
|
+
"$ref": "util.json#/$defs/source"
|
|
3762
|
+
},
|
|
3763
|
+
"page": {
|
|
3764
|
+
"$ref": "util.json#/$defs/page"
|
|
3765
|
+
},
|
|
3766
|
+
"data": {
|
|
3767
|
+
"$ref": "#/$defs/_entryDataData"
|
|
3768
|
+
},
|
|
3769
|
+
"id": {
|
|
3770
|
+
"type": "string"
|
|
3771
|
+
},
|
|
3772
|
+
"srd": {
|
|
3773
|
+
"$ref": "util.json#/$defs/srd"
|
|
3774
|
+
},
|
|
3775
|
+
"srd52": {
|
|
3776
|
+
"$ref": "util.json#/$defs/srd"
|
|
3777
|
+
},
|
|
3778
|
+
"basicRules": {
|
|
3779
|
+
"$ref": "util.json#/$defs/basicRules"
|
|
3780
|
+
},
|
|
3781
|
+
"basicRules2024": {
|
|
3782
|
+
"$ref": "util.json#/$defs/basicRules"
|
|
3783
|
+
},
|
|
3784
|
+
"displayName": {
|
|
3785
|
+
"type": "string"
|
|
3786
|
+
},
|
|
3787
|
+
"hash": {
|
|
3788
|
+
"type": "string"
|
|
3789
|
+
},
|
|
3790
|
+
"style": {
|
|
3791
|
+
"$ref": "#/$defs/_entryDataStyle"
|
|
3792
|
+
},
|
|
3793
|
+
"slotSize": {
|
|
3794
|
+
"$ref": "#/$defs/_entryStatblockSlotSize"
|
|
3795
|
+
},
|
|
3796
|
+
"collapsed": {
|
|
3797
|
+
"const": true
|
|
3798
|
+
},
|
|
3799
|
+
"tag": {
|
|
3800
|
+
"const": "subclass"
|
|
3801
|
+
},
|
|
3802
|
+
"shortName": {
|
|
3803
|
+
"type": "string"
|
|
3804
|
+
},
|
|
3805
|
+
"className": {
|
|
3806
|
+
"type": "string"
|
|
3807
|
+
},
|
|
3808
|
+
"classSource": {
|
|
3809
|
+
"$ref": "util.json#/$defs/source"
|
|
3810
|
+
}
|
|
3811
|
+
},
|
|
3812
|
+
"required": [
|
|
3813
|
+
"type",
|
|
3814
|
+
"tag",
|
|
3815
|
+
"name",
|
|
3816
|
+
"shortName",
|
|
3817
|
+
"source",
|
|
3818
|
+
"className",
|
|
3819
|
+
"classSource"
|
|
3820
|
+
],
|
|
3821
|
+
"additionalProperties": false
|
|
3822
|
+
},
|
|
3750
3823
|
{
|
|
3751
3824
|
"type": "object",
|
|
3752
3825
|
"properties": {
|
|
@@ -135,12 +135,16 @@
|
|
|
135
135
|
"LFL",
|
|
136
136
|
"EFA",
|
|
137
137
|
"FFotR",
|
|
138
|
+
"RHW",
|
|
139
|
+
"AU",
|
|
140
|
+
"AUD",
|
|
138
141
|
"TD",
|
|
139
142
|
"Screen",
|
|
140
143
|
"ScreenWildernessKit",
|
|
141
144
|
"ScreenDungeonKit",
|
|
142
145
|
"ScreenSpelljammer",
|
|
143
146
|
"XScreen",
|
|
147
|
+
"XScreenRHW",
|
|
144
148
|
"HF",
|
|
145
149
|
"HFFotM",
|
|
146
150
|
"HFStCM",
|
|
@@ -184,7 +188,9 @@
|
|
|
184
188
|
"MCV3MC",
|
|
185
189
|
"MCV4EC",
|
|
186
190
|
"MisMV1",
|
|
187
|
-
"AATM"
|
|
191
|
+
"AATM",
|
|
192
|
+
"CaBoMP",
|
|
193
|
+
"BQDD"
|
|
188
194
|
]
|
|
189
195
|
},
|
|
190
196
|
"sourcesLegacy": {
|
|
@@ -378,12 +384,18 @@
|
|
|
378
384
|
"LFL",
|
|
379
385
|
"EFA",
|
|
380
386
|
"FFotR",
|
|
387
|
+
"RHW",
|
|
388
|
+
"AU",
|
|
389
|
+
"AUD",
|
|
381
390
|
"XScreen",
|
|
391
|
+
"XScreenRHW",
|
|
382
392
|
"HFDoMM",
|
|
383
393
|
"UtHftLH",
|
|
384
394
|
"ScoEE",
|
|
385
395
|
"HBTD",
|
|
386
|
-
"BQGT"
|
|
396
|
+
"BQGT",
|
|
397
|
+
"CaBoMP",
|
|
398
|
+
"BQDD"
|
|
387
399
|
]
|
|
388
400
|
}
|
|
389
401
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "corpus-shared.json",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.4",
|
|
5
5
|
"$defs": {
|
|
6
6
|
"corpusCover": {
|
|
7
7
|
"description": "A link to an image. Preferred sizes are 300 x 300px or 600 x 600px.",
|
|
@@ -44,16 +44,35 @@
|
|
|
44
44
|
"statblock": {
|
|
45
45
|
"const": true
|
|
46
46
|
},
|
|
47
|
+
"tag": {
|
|
48
|
+
"type": "string"
|
|
49
|
+
},
|
|
50
|
+
"uid": {
|
|
51
|
+
"type": "string"
|
|
52
|
+
},
|
|
47
53
|
"index": {
|
|
48
54
|
"description": "The relative index of this header in the current chapter, i.e. if \"Treasure\" appears twice and you wish the contents entry to link to the second instance, set the \"index\" to 1.",
|
|
49
55
|
"type": "integer",
|
|
50
56
|
"markdownDescription": "The relative index of this header in the current chapter, i.e. if "Treasure" appears twice and you wish the contents entry to link to the second instance, set the "index" to 1."
|
|
51
57
|
}
|
|
52
58
|
},
|
|
53
|
-
"additionalProperties": false,
|
|
54
59
|
"required": [
|
|
55
60
|
"header"
|
|
56
|
-
]
|
|
61
|
+
],
|
|
62
|
+
"dependentRequired": {
|
|
63
|
+
"source": [
|
|
64
|
+
"statblock"
|
|
65
|
+
],
|
|
66
|
+
"tag": [
|
|
67
|
+
"statblock",
|
|
68
|
+
"uid"
|
|
69
|
+
],
|
|
70
|
+
"uid": [
|
|
71
|
+
"statblock",
|
|
72
|
+
"tag"
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
"additionalProperties": false
|
|
57
76
|
}
|
|
58
77
|
]
|
|
59
78
|
}
|
package/schema/ua/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.10.
|
|
6
|
+
"version": "1.10.2",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_arrayOfSpell": {
|
|
9
9
|
"type": "array",
|
|
@@ -3230,6 +3230,67 @@
|
|
|
3230
3230
|
],
|
|
3231
3231
|
"additionalProperties": false
|
|
3232
3232
|
},
|
|
3233
|
+
{
|
|
3234
|
+
"type": "object",
|
|
3235
|
+
"properties": {
|
|
3236
|
+
"name": {
|
|
3237
|
+
"type": "string"
|
|
3238
|
+
},
|
|
3239
|
+
"type": {
|
|
3240
|
+
"type": "string",
|
|
3241
|
+
"const": "statblock"
|
|
3242
|
+
},
|
|
3243
|
+
"source": {
|
|
3244
|
+
"$ref": "util.json#/$defs/source"
|
|
3245
|
+
},
|
|
3246
|
+
"page": {
|
|
3247
|
+
"$ref": "util.json#/$defs/page"
|
|
3248
|
+
},
|
|
3249
|
+
"data": {
|
|
3250
|
+
"$ref": "#/$defs/_entryDataData"
|
|
3251
|
+
},
|
|
3252
|
+
"id": {
|
|
3253
|
+
"type": "string"
|
|
3254
|
+
},
|
|
3255
|
+
"displayName": {
|
|
3256
|
+
"type": "string"
|
|
3257
|
+
},
|
|
3258
|
+
"hash": {
|
|
3259
|
+
"type": "string"
|
|
3260
|
+
},
|
|
3261
|
+
"style": {
|
|
3262
|
+
"$ref": "#/$defs/_entryDataStyle"
|
|
3263
|
+
},
|
|
3264
|
+
"slotSize": {
|
|
3265
|
+
"$ref": "#/$defs/_entryStatblockSlotSize"
|
|
3266
|
+
},
|
|
3267
|
+
"collapsed": {
|
|
3268
|
+
"const": true
|
|
3269
|
+
},
|
|
3270
|
+
"tag": {
|
|
3271
|
+
"const": "subclass"
|
|
3272
|
+
},
|
|
3273
|
+
"shortName": {
|
|
3274
|
+
"type": "string"
|
|
3275
|
+
},
|
|
3276
|
+
"className": {
|
|
3277
|
+
"type": "string"
|
|
3278
|
+
},
|
|
3279
|
+
"classSource": {
|
|
3280
|
+
"$ref": "util.json#/$defs/source"
|
|
3281
|
+
}
|
|
3282
|
+
},
|
|
3283
|
+
"required": [
|
|
3284
|
+
"type",
|
|
3285
|
+
"tag",
|
|
3286
|
+
"name",
|
|
3287
|
+
"shortName",
|
|
3288
|
+
"source",
|
|
3289
|
+
"className",
|
|
3290
|
+
"classSource"
|
|
3291
|
+
],
|
|
3292
|
+
"additionalProperties": false
|
|
3293
|
+
},
|
|
3233
3294
|
{
|
|
3234
3295
|
"type": "object",
|
|
3235
3296
|
"properties": {
|
|
@@ -135,12 +135,16 @@
|
|
|
135
135
|
"LFL",
|
|
136
136
|
"EFA",
|
|
137
137
|
"FFotR",
|
|
138
|
+
"RHW",
|
|
139
|
+
"AU",
|
|
140
|
+
"AUD",
|
|
138
141
|
"TD",
|
|
139
142
|
"Screen",
|
|
140
143
|
"ScreenWildernessKit",
|
|
141
144
|
"ScreenDungeonKit",
|
|
142
145
|
"ScreenSpelljammer",
|
|
143
146
|
"XScreen",
|
|
147
|
+
"XScreenRHW",
|
|
144
148
|
"HF",
|
|
145
149
|
"HFFotM",
|
|
146
150
|
"HFStCM",
|
|
@@ -184,7 +188,9 @@
|
|
|
184
188
|
"MCV3MC",
|
|
185
189
|
"MCV4EC",
|
|
186
190
|
"MisMV1",
|
|
187
|
-
"AATM"
|
|
191
|
+
"AATM",
|
|
192
|
+
"CaBoMP",
|
|
193
|
+
"BQDD"
|
|
188
194
|
]
|
|
189
195
|
},
|
|
190
196
|
"sourcesLegacy": {
|
|
@@ -378,12 +384,18 @@
|
|
|
378
384
|
"LFL",
|
|
379
385
|
"EFA",
|
|
380
386
|
"FFotR",
|
|
387
|
+
"RHW",
|
|
388
|
+
"AU",
|
|
389
|
+
"AUD",
|
|
381
390
|
"XScreen",
|
|
391
|
+
"XScreenRHW",
|
|
382
392
|
"HFDoMM",
|
|
383
393
|
"UtHftLH",
|
|
384
394
|
"ScoEE",
|
|
385
395
|
"HBTD",
|
|
386
|
-
"BQGT"
|
|
396
|
+
"BQGT",
|
|
397
|
+
"CaBoMP",
|
|
398
|
+
"BQDD"
|
|
387
399
|
]
|
|
388
400
|
}
|
|
389
401
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "corpus-shared.json",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.4",
|
|
5
5
|
"$defs": {
|
|
6
6
|
"corpusCover": {
|
|
7
7
|
"description": "A link to an image. Preferred sizes are 300 x 300px or 600 x 600px.",
|
|
@@ -44,16 +44,35 @@
|
|
|
44
44
|
"statblock": {
|
|
45
45
|
"const": true
|
|
46
46
|
},
|
|
47
|
+
"tag": {
|
|
48
|
+
"type": "string"
|
|
49
|
+
},
|
|
50
|
+
"uid": {
|
|
51
|
+
"type": "string"
|
|
52
|
+
},
|
|
47
53
|
"index": {
|
|
48
54
|
"description": "The relative index of this header in the current chapter, i.e. if \"Treasure\" appears twice and you wish the contents entry to link to the second instance, set the \"index\" to 1.",
|
|
49
55
|
"type": "integer",
|
|
50
56
|
"markdownDescription": "The relative index of this header in the current chapter, i.e. if "Treasure" appears twice and you wish the contents entry to link to the second instance, set the "index" to 1."
|
|
51
57
|
}
|
|
52
58
|
},
|
|
53
|
-
"additionalProperties": false,
|
|
54
59
|
"required": [
|
|
55
60
|
"header"
|
|
56
|
-
]
|
|
61
|
+
],
|
|
62
|
+
"dependentRequired": {
|
|
63
|
+
"source": [
|
|
64
|
+
"statblock"
|
|
65
|
+
],
|
|
66
|
+
"tag": [
|
|
67
|
+
"statblock",
|
|
68
|
+
"uid"
|
|
69
|
+
],
|
|
70
|
+
"uid": [
|
|
71
|
+
"statblock",
|
|
72
|
+
"tag"
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
"additionalProperties": false
|
|
57
76
|
}
|
|
58
77
|
]
|
|
59
78
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "entry.json",
|
|
4
4
|
"title": "Entry",
|
|
5
5
|
"description": "A recursively renderable object.",
|
|
6
|
-
"version": "1.10.
|
|
6
|
+
"version": "1.10.2",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_arrayOfSpell": {
|
|
9
9
|
"type": "array",
|
|
@@ -3230,6 +3230,67 @@
|
|
|
3230
3230
|
],
|
|
3231
3231
|
"additionalProperties": false
|
|
3232
3232
|
},
|
|
3233
|
+
{
|
|
3234
|
+
"type": "object",
|
|
3235
|
+
"properties": {
|
|
3236
|
+
"name": {
|
|
3237
|
+
"type": "string"
|
|
3238
|
+
},
|
|
3239
|
+
"type": {
|
|
3240
|
+
"type": "string",
|
|
3241
|
+
"const": "statblock"
|
|
3242
|
+
},
|
|
3243
|
+
"source": {
|
|
3244
|
+
"$ref": "util.json#/$defs/source"
|
|
3245
|
+
},
|
|
3246
|
+
"page": {
|
|
3247
|
+
"$ref": "util.json#/$defs/page"
|
|
3248
|
+
},
|
|
3249
|
+
"data": {
|
|
3250
|
+
"$ref": "#/$defs/_entryDataData"
|
|
3251
|
+
},
|
|
3252
|
+
"id": {
|
|
3253
|
+
"type": "string"
|
|
3254
|
+
},
|
|
3255
|
+
"displayName": {
|
|
3256
|
+
"type": "string"
|
|
3257
|
+
},
|
|
3258
|
+
"hash": {
|
|
3259
|
+
"type": "string"
|
|
3260
|
+
},
|
|
3261
|
+
"style": {
|
|
3262
|
+
"$ref": "#/$defs/_entryDataStyle"
|
|
3263
|
+
},
|
|
3264
|
+
"slotSize": {
|
|
3265
|
+
"$ref": "#/$defs/_entryStatblockSlotSize"
|
|
3266
|
+
},
|
|
3267
|
+
"collapsed": {
|
|
3268
|
+
"const": true
|
|
3269
|
+
},
|
|
3270
|
+
"tag": {
|
|
3271
|
+
"const": "subclass"
|
|
3272
|
+
},
|
|
3273
|
+
"shortName": {
|
|
3274
|
+
"type": "string"
|
|
3275
|
+
},
|
|
3276
|
+
"className": {
|
|
3277
|
+
"type": "string"
|
|
3278
|
+
},
|
|
3279
|
+
"classSource": {
|
|
3280
|
+
"$ref": "util.json#/$defs/source"
|
|
3281
|
+
}
|
|
3282
|
+
},
|
|
3283
|
+
"required": [
|
|
3284
|
+
"type",
|
|
3285
|
+
"tag",
|
|
3286
|
+
"name",
|
|
3287
|
+
"shortName",
|
|
3288
|
+
"source",
|
|
3289
|
+
"className",
|
|
3290
|
+
"classSource"
|
|
3291
|
+
],
|
|
3292
|
+
"additionalProperties": false
|
|
3293
|
+
},
|
|
3233
3294
|
{
|
|
3234
3295
|
"type": "object",
|
|
3235
3296
|
"properties": {
|
|
@@ -135,12 +135,16 @@
|
|
|
135
135
|
"LFL",
|
|
136
136
|
"EFA",
|
|
137
137
|
"FFotR",
|
|
138
|
+
"RHW",
|
|
139
|
+
"AU",
|
|
140
|
+
"AUD",
|
|
138
141
|
"TD",
|
|
139
142
|
"Screen",
|
|
140
143
|
"ScreenWildernessKit",
|
|
141
144
|
"ScreenDungeonKit",
|
|
142
145
|
"ScreenSpelljammer",
|
|
143
146
|
"XScreen",
|
|
147
|
+
"XScreenRHW",
|
|
144
148
|
"HF",
|
|
145
149
|
"HFFotM",
|
|
146
150
|
"HFStCM",
|
|
@@ -184,7 +188,9 @@
|
|
|
184
188
|
"MCV3MC",
|
|
185
189
|
"MCV4EC",
|
|
186
190
|
"MisMV1",
|
|
187
|
-
"AATM"
|
|
191
|
+
"AATM",
|
|
192
|
+
"CaBoMP",
|
|
193
|
+
"BQDD"
|
|
188
194
|
]
|
|
189
195
|
},
|
|
190
196
|
"sourcesLegacy": {
|
|
@@ -378,12 +384,18 @@
|
|
|
378
384
|
"LFL",
|
|
379
385
|
"EFA",
|
|
380
386
|
"FFotR",
|
|
387
|
+
"RHW",
|
|
388
|
+
"AU",
|
|
389
|
+
"AUD",
|
|
381
390
|
"XScreen",
|
|
391
|
+
"XScreenRHW",
|
|
382
392
|
"HFDoMM",
|
|
383
393
|
"UtHftLH",
|
|
384
394
|
"ScoEE",
|
|
385
395
|
"HBTD",
|
|
386
|
-
"BQGT"
|
|
396
|
+
"BQGT",
|
|
397
|
+
"CaBoMP",
|
|
398
|
+
"BQDD"
|
|
387
399
|
]
|
|
388
400
|
}
|
|
389
401
|
},
|