5etools-utils 0.13.32 → 0.13.35
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/entry.json +49 -1
- package/schema/brew/loot.json +26 -1
- package/schema/brew/util-foundry.json +2 -1
- package/schema/brew/util.json +1 -2
- package/schema/brew-fast/entry.json +49 -1
- package/schema/brew-fast/loot.json +26 -1
- package/schema/brew-fast/util-foundry.json +2 -1
- package/schema/brew-fast/util.json +1 -2
- package/schema/site/entry.json +61 -1
- package/schema/site/loot.json +26 -1
- package/schema/site/util-foundry.json +2 -1
- package/schema/site/util.json +1 -2
- package/schema/site-fast/entry.json +61 -1
- package/schema/site-fast/loot.json +26 -1
- package/schema/site-fast/util-foundry.json +2 -1
- package/schema/site-fast/util.json +1 -2
- package/schema/ua/entry.json +49 -1
- package/schema/ua/loot.json +26 -1
- package/schema/ua/util-foundry.json +2 -1
- package/schema/ua/util.json +1 -2
- package/schema/ua-fast/entry.json +49 -1
- package/schema/ua-fast/loot.json +26 -1
- package/schema/ua-fast/util-foundry.json +2 -1
- package/schema/ua-fast/util.json +1 -2
package/package.json
CHANGED
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.13",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_arrayOfSpell": {
|
|
9
9
|
"type": "array",
|
|
@@ -3155,6 +3155,54 @@
|
|
|
3155
3155
|
],
|
|
3156
3156
|
"additionalProperties": false
|
|
3157
3157
|
},
|
|
3158
|
+
{
|
|
3159
|
+
"type": "object",
|
|
3160
|
+
"properties": {
|
|
3161
|
+
"name": {
|
|
3162
|
+
"type": "string"
|
|
3163
|
+
},
|
|
3164
|
+
"type": {
|
|
3165
|
+
"type": "string",
|
|
3166
|
+
"const": "statblock"
|
|
3167
|
+
},
|
|
3168
|
+
"source": {
|
|
3169
|
+
"$ref": "util.json#/$defs/source"
|
|
3170
|
+
},
|
|
3171
|
+
"page": {
|
|
3172
|
+
"$ref": "util.json#/$defs/page"
|
|
3173
|
+
},
|
|
3174
|
+
"data": {
|
|
3175
|
+
"$ref": "#/$defs/_entryDataData"
|
|
3176
|
+
},
|
|
3177
|
+
"id": {
|
|
3178
|
+
"type": "string"
|
|
3179
|
+
},
|
|
3180
|
+
"displayName": {
|
|
3181
|
+
"type": "string"
|
|
3182
|
+
},
|
|
3183
|
+
"hash": {
|
|
3184
|
+
"type": "string"
|
|
3185
|
+
},
|
|
3186
|
+
"style": {
|
|
3187
|
+
"$ref": "#/$defs/_entryDataStyle"
|
|
3188
|
+
},
|
|
3189
|
+
"collapsed": {
|
|
3190
|
+
"const": true
|
|
3191
|
+
},
|
|
3192
|
+
"tag": {
|
|
3193
|
+
"const": "card"
|
|
3194
|
+
},
|
|
3195
|
+
"set": {
|
|
3196
|
+
"type": "string"
|
|
3197
|
+
}
|
|
3198
|
+
},
|
|
3199
|
+
"required": [
|
|
3200
|
+
"type",
|
|
3201
|
+
"tag",
|
|
3202
|
+
"name"
|
|
3203
|
+
],
|
|
3204
|
+
"additionalProperties": false
|
|
3205
|
+
},
|
|
3158
3206
|
{
|
|
3159
3207
|
"type": "object",
|
|
3160
3208
|
"properties": {
|
package/schema/brew/loot.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "loot.json",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.3",
|
|
5
5
|
"$defs": {
|
|
6
6
|
"cr": {
|
|
7
7
|
"type": "integer",
|
|
@@ -182,6 +182,9 @@
|
|
|
182
182
|
"page": {
|
|
183
183
|
"$ref": "util.json#/$defs/page"
|
|
184
184
|
},
|
|
185
|
+
"reprintedAs": {
|
|
186
|
+
"$ref": "util.json#/$defs/reprintedAs"
|
|
187
|
+
},
|
|
185
188
|
"type": {
|
|
186
189
|
"type": "integer"
|
|
187
190
|
},
|
|
@@ -270,6 +273,28 @@
|
|
|
270
273
|
"fromItems"
|
|
271
274
|
],
|
|
272
275
|
"additionalProperties": false
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"type": "object",
|
|
279
|
+
"properties": {
|
|
280
|
+
"fromMatching": {
|
|
281
|
+
"type": "object",
|
|
282
|
+
"properties": {
|
|
283
|
+
"rarity": {
|
|
284
|
+
"type": "string"
|
|
285
|
+
},
|
|
286
|
+
"tier": {
|
|
287
|
+
"type": "string"
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
"minProperties": 1,
|
|
291
|
+
"additionalProperties": false
|
|
292
|
+
}
|
|
293
|
+
},
|
|
294
|
+
"required": [
|
|
295
|
+
"fromMatching"
|
|
296
|
+
],
|
|
297
|
+
"additionalProperties": false
|
|
273
298
|
}
|
|
274
299
|
]
|
|
275
300
|
}
|
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.28",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaDependenciesArray": {
|
|
9
9
|
"type": "array",
|
|
@@ -238,7 +238,6 @@
|
|
|
238
238
|
"sense",
|
|
239
239
|
"legroup",
|
|
240
240
|
"deck",
|
|
241
|
-
"card",
|
|
242
241
|
"facility"
|
|
243
242
|
]
|
|
244
243
|
},
|
|
@@ -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.13",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_arrayOfSpell": {
|
|
9
9
|
"type": "array",
|
|
@@ -3155,6 +3155,54 @@
|
|
|
3155
3155
|
],
|
|
3156
3156
|
"additionalProperties": false
|
|
3157
3157
|
},
|
|
3158
|
+
{
|
|
3159
|
+
"type": "object",
|
|
3160
|
+
"properties": {
|
|
3161
|
+
"name": {
|
|
3162
|
+
"type": "string"
|
|
3163
|
+
},
|
|
3164
|
+
"type": {
|
|
3165
|
+
"type": "string",
|
|
3166
|
+
"const": "statblock"
|
|
3167
|
+
},
|
|
3168
|
+
"source": {
|
|
3169
|
+
"$ref": "util.json#/$defs/source"
|
|
3170
|
+
},
|
|
3171
|
+
"page": {
|
|
3172
|
+
"$ref": "util.json#/$defs/page"
|
|
3173
|
+
},
|
|
3174
|
+
"data": {
|
|
3175
|
+
"$ref": "#/$defs/_entryDataData"
|
|
3176
|
+
},
|
|
3177
|
+
"id": {
|
|
3178
|
+
"type": "string"
|
|
3179
|
+
},
|
|
3180
|
+
"displayName": {
|
|
3181
|
+
"type": "string"
|
|
3182
|
+
},
|
|
3183
|
+
"hash": {
|
|
3184
|
+
"type": "string"
|
|
3185
|
+
},
|
|
3186
|
+
"style": {
|
|
3187
|
+
"$ref": "#/$defs/_entryDataStyle"
|
|
3188
|
+
},
|
|
3189
|
+
"collapsed": {
|
|
3190
|
+
"const": true
|
|
3191
|
+
},
|
|
3192
|
+
"tag": {
|
|
3193
|
+
"const": "card"
|
|
3194
|
+
},
|
|
3195
|
+
"set": {
|
|
3196
|
+
"type": "string"
|
|
3197
|
+
}
|
|
3198
|
+
},
|
|
3199
|
+
"required": [
|
|
3200
|
+
"type",
|
|
3201
|
+
"tag",
|
|
3202
|
+
"name"
|
|
3203
|
+
],
|
|
3204
|
+
"additionalProperties": false
|
|
3205
|
+
},
|
|
3158
3206
|
{
|
|
3159
3207
|
"type": "object",
|
|
3160
3208
|
"properties": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "loot.json",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.3",
|
|
5
5
|
"$defs": {
|
|
6
6
|
"cr": {
|
|
7
7
|
"type": "integer",
|
|
@@ -182,6 +182,9 @@
|
|
|
182
182
|
"page": {
|
|
183
183
|
"$ref": "util.json#/$defs/page"
|
|
184
184
|
},
|
|
185
|
+
"reprintedAs": {
|
|
186
|
+
"$ref": "util.json#/$defs/reprintedAs"
|
|
187
|
+
},
|
|
185
188
|
"type": {
|
|
186
189
|
"type": "integer"
|
|
187
190
|
},
|
|
@@ -270,6 +273,28 @@
|
|
|
270
273
|
"fromItems"
|
|
271
274
|
],
|
|
272
275
|
"additionalProperties": false
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"type": "object",
|
|
279
|
+
"properties": {
|
|
280
|
+
"fromMatching": {
|
|
281
|
+
"type": "object",
|
|
282
|
+
"properties": {
|
|
283
|
+
"rarity": {
|
|
284
|
+
"type": "string"
|
|
285
|
+
},
|
|
286
|
+
"tier": {
|
|
287
|
+
"type": "string"
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
"minProperties": 1,
|
|
291
|
+
"additionalProperties": false
|
|
292
|
+
}
|
|
293
|
+
},
|
|
294
|
+
"required": [
|
|
295
|
+
"fromMatching"
|
|
296
|
+
],
|
|
297
|
+
"additionalProperties": false
|
|
273
298
|
}
|
|
274
299
|
]
|
|
275
300
|
}
|
|
@@ -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.28",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaDependenciesArray": {
|
|
9
9
|
"type": "array",
|
|
@@ -238,7 +238,6 @@
|
|
|
238
238
|
"sense",
|
|
239
239
|
"legroup",
|
|
240
240
|
"deck",
|
|
241
|
-
"card",
|
|
242
241
|
"facility"
|
|
243
242
|
]
|
|
244
243
|
},
|
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.9.
|
|
6
|
+
"version": "1.9.13",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_arrayOfSpell": {
|
|
9
9
|
"type": "array",
|
|
@@ -3593,6 +3593,66 @@
|
|
|
3593
3593
|
],
|
|
3594
3594
|
"additionalProperties": false
|
|
3595
3595
|
},
|
|
3596
|
+
{
|
|
3597
|
+
"type": "object",
|
|
3598
|
+
"properties": {
|
|
3599
|
+
"name": {
|
|
3600
|
+
"type": "string"
|
|
3601
|
+
},
|
|
3602
|
+
"type": {
|
|
3603
|
+
"type": "string",
|
|
3604
|
+
"const": "statblock"
|
|
3605
|
+
},
|
|
3606
|
+
"source": {
|
|
3607
|
+
"$ref": "util.json#/$defs/source"
|
|
3608
|
+
},
|
|
3609
|
+
"page": {
|
|
3610
|
+
"$ref": "util.json#/$defs/page"
|
|
3611
|
+
},
|
|
3612
|
+
"data": {
|
|
3613
|
+
"$ref": "#/$defs/_entryDataData"
|
|
3614
|
+
},
|
|
3615
|
+
"id": {
|
|
3616
|
+
"type": "string"
|
|
3617
|
+
},
|
|
3618
|
+
"srd": {
|
|
3619
|
+
"$ref": "util.json#/$defs/srd"
|
|
3620
|
+
},
|
|
3621
|
+
"srd52": {
|
|
3622
|
+
"$ref": "util.json#/$defs/srd"
|
|
3623
|
+
},
|
|
3624
|
+
"basicRules": {
|
|
3625
|
+
"$ref": "util.json#/$defs/basicRules"
|
|
3626
|
+
},
|
|
3627
|
+
"basicRules2024": {
|
|
3628
|
+
"$ref": "util.json#/$defs/basicRules"
|
|
3629
|
+
},
|
|
3630
|
+
"displayName": {
|
|
3631
|
+
"type": "string"
|
|
3632
|
+
},
|
|
3633
|
+
"hash": {
|
|
3634
|
+
"type": "string"
|
|
3635
|
+
},
|
|
3636
|
+
"style": {
|
|
3637
|
+
"$ref": "#/$defs/_entryDataStyle"
|
|
3638
|
+
},
|
|
3639
|
+
"collapsed": {
|
|
3640
|
+
"const": true
|
|
3641
|
+
},
|
|
3642
|
+
"tag": {
|
|
3643
|
+
"const": "card"
|
|
3644
|
+
},
|
|
3645
|
+
"set": {
|
|
3646
|
+
"type": "string"
|
|
3647
|
+
}
|
|
3648
|
+
},
|
|
3649
|
+
"required": [
|
|
3650
|
+
"type",
|
|
3651
|
+
"tag",
|
|
3652
|
+
"name"
|
|
3653
|
+
],
|
|
3654
|
+
"additionalProperties": false
|
|
3655
|
+
},
|
|
3596
3656
|
{
|
|
3597
3657
|
"type": "object",
|
|
3598
3658
|
"properties": {
|
package/schema/site/loot.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "loot.json",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.3",
|
|
5
5
|
"$defs": {
|
|
6
6
|
"cr": {
|
|
7
7
|
"type": "integer",
|
|
@@ -182,6 +182,9 @@
|
|
|
182
182
|
"page": {
|
|
183
183
|
"$ref": "util.json#/$defs/page"
|
|
184
184
|
},
|
|
185
|
+
"reprintedAs": {
|
|
186
|
+
"$ref": "util.json#/$defs/reprintedAs"
|
|
187
|
+
},
|
|
185
188
|
"type": {
|
|
186
189
|
"type": "integer"
|
|
187
190
|
},
|
|
@@ -270,6 +273,28 @@
|
|
|
270
273
|
"fromItems"
|
|
271
274
|
],
|
|
272
275
|
"additionalProperties": false
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"type": "object",
|
|
279
|
+
"properties": {
|
|
280
|
+
"fromMatching": {
|
|
281
|
+
"type": "object",
|
|
282
|
+
"properties": {
|
|
283
|
+
"rarity": {
|
|
284
|
+
"type": "string"
|
|
285
|
+
},
|
|
286
|
+
"tier": {
|
|
287
|
+
"type": "string"
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
"minProperties": 1,
|
|
291
|
+
"additionalProperties": false
|
|
292
|
+
}
|
|
293
|
+
},
|
|
294
|
+
"required": [
|
|
295
|
+
"fromMatching"
|
|
296
|
+
],
|
|
297
|
+
"additionalProperties": false
|
|
273
298
|
}
|
|
274
299
|
]
|
|
275
300
|
}
|
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.17.
|
|
6
|
+
"version": "1.17.28",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaDependenciesArray": {
|
|
9
9
|
"type": "array",
|
|
@@ -220,7 +220,6 @@
|
|
|
220
220
|
"sense",
|
|
221
221
|
"legroup",
|
|
222
222
|
"deck",
|
|
223
|
-
"card",
|
|
224
223
|
"facility"
|
|
225
224
|
]
|
|
226
225
|
},
|
|
@@ -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.13",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_arrayOfSpell": {
|
|
9
9
|
"type": "array",
|
|
@@ -3593,6 +3593,66 @@
|
|
|
3593
3593
|
],
|
|
3594
3594
|
"additionalProperties": false
|
|
3595
3595
|
},
|
|
3596
|
+
{
|
|
3597
|
+
"type": "object",
|
|
3598
|
+
"properties": {
|
|
3599
|
+
"name": {
|
|
3600
|
+
"type": "string"
|
|
3601
|
+
},
|
|
3602
|
+
"type": {
|
|
3603
|
+
"type": "string",
|
|
3604
|
+
"const": "statblock"
|
|
3605
|
+
},
|
|
3606
|
+
"source": {
|
|
3607
|
+
"$ref": "util.json#/$defs/source"
|
|
3608
|
+
},
|
|
3609
|
+
"page": {
|
|
3610
|
+
"$ref": "util.json#/$defs/page"
|
|
3611
|
+
},
|
|
3612
|
+
"data": {
|
|
3613
|
+
"$ref": "#/$defs/_entryDataData"
|
|
3614
|
+
},
|
|
3615
|
+
"id": {
|
|
3616
|
+
"type": "string"
|
|
3617
|
+
},
|
|
3618
|
+
"srd": {
|
|
3619
|
+
"$ref": "util.json#/$defs/srd"
|
|
3620
|
+
},
|
|
3621
|
+
"srd52": {
|
|
3622
|
+
"$ref": "util.json#/$defs/srd"
|
|
3623
|
+
},
|
|
3624
|
+
"basicRules": {
|
|
3625
|
+
"$ref": "util.json#/$defs/basicRules"
|
|
3626
|
+
},
|
|
3627
|
+
"basicRules2024": {
|
|
3628
|
+
"$ref": "util.json#/$defs/basicRules"
|
|
3629
|
+
},
|
|
3630
|
+
"displayName": {
|
|
3631
|
+
"type": "string"
|
|
3632
|
+
},
|
|
3633
|
+
"hash": {
|
|
3634
|
+
"type": "string"
|
|
3635
|
+
},
|
|
3636
|
+
"style": {
|
|
3637
|
+
"$ref": "#/$defs/_entryDataStyle"
|
|
3638
|
+
},
|
|
3639
|
+
"collapsed": {
|
|
3640
|
+
"const": true
|
|
3641
|
+
},
|
|
3642
|
+
"tag": {
|
|
3643
|
+
"const": "card"
|
|
3644
|
+
},
|
|
3645
|
+
"set": {
|
|
3646
|
+
"type": "string"
|
|
3647
|
+
}
|
|
3648
|
+
},
|
|
3649
|
+
"required": [
|
|
3650
|
+
"type",
|
|
3651
|
+
"tag",
|
|
3652
|
+
"name"
|
|
3653
|
+
],
|
|
3654
|
+
"additionalProperties": false
|
|
3655
|
+
},
|
|
3596
3656
|
{
|
|
3597
3657
|
"type": "object",
|
|
3598
3658
|
"properties": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "loot.json",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.3",
|
|
5
5
|
"$defs": {
|
|
6
6
|
"cr": {
|
|
7
7
|
"type": "integer",
|
|
@@ -182,6 +182,9 @@
|
|
|
182
182
|
"page": {
|
|
183
183
|
"$ref": "util.json#/$defs/page"
|
|
184
184
|
},
|
|
185
|
+
"reprintedAs": {
|
|
186
|
+
"$ref": "util.json#/$defs/reprintedAs"
|
|
187
|
+
},
|
|
185
188
|
"type": {
|
|
186
189
|
"type": "integer"
|
|
187
190
|
},
|
|
@@ -270,6 +273,28 @@
|
|
|
270
273
|
"fromItems"
|
|
271
274
|
],
|
|
272
275
|
"additionalProperties": false
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"type": "object",
|
|
279
|
+
"properties": {
|
|
280
|
+
"fromMatching": {
|
|
281
|
+
"type": "object",
|
|
282
|
+
"properties": {
|
|
283
|
+
"rarity": {
|
|
284
|
+
"type": "string"
|
|
285
|
+
},
|
|
286
|
+
"tier": {
|
|
287
|
+
"type": "string"
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
"minProperties": 1,
|
|
291
|
+
"additionalProperties": false
|
|
292
|
+
}
|
|
293
|
+
},
|
|
294
|
+
"required": [
|
|
295
|
+
"fromMatching"
|
|
296
|
+
],
|
|
297
|
+
"additionalProperties": false
|
|
273
298
|
}
|
|
274
299
|
]
|
|
275
300
|
}
|
|
@@ -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.28",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaDependenciesArray": {
|
|
9
9
|
"type": "array",
|
|
@@ -220,7 +220,6 @@
|
|
|
220
220
|
"sense",
|
|
221
221
|
"legroup",
|
|
222
222
|
"deck",
|
|
223
|
-
"card",
|
|
224
223
|
"facility"
|
|
225
224
|
]
|
|
226
225
|
},
|
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.9.
|
|
6
|
+
"version": "1.9.13",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_arrayOfSpell": {
|
|
9
9
|
"type": "array",
|
|
@@ -3100,6 +3100,54 @@
|
|
|
3100
3100
|
],
|
|
3101
3101
|
"additionalProperties": false
|
|
3102
3102
|
},
|
|
3103
|
+
{
|
|
3104
|
+
"type": "object",
|
|
3105
|
+
"properties": {
|
|
3106
|
+
"name": {
|
|
3107
|
+
"type": "string"
|
|
3108
|
+
},
|
|
3109
|
+
"type": {
|
|
3110
|
+
"type": "string",
|
|
3111
|
+
"const": "statblock"
|
|
3112
|
+
},
|
|
3113
|
+
"source": {
|
|
3114
|
+
"$ref": "util.json#/$defs/source"
|
|
3115
|
+
},
|
|
3116
|
+
"page": {
|
|
3117
|
+
"$ref": "util.json#/$defs/page"
|
|
3118
|
+
},
|
|
3119
|
+
"data": {
|
|
3120
|
+
"$ref": "#/$defs/_entryDataData"
|
|
3121
|
+
},
|
|
3122
|
+
"id": {
|
|
3123
|
+
"type": "string"
|
|
3124
|
+
},
|
|
3125
|
+
"displayName": {
|
|
3126
|
+
"type": "string"
|
|
3127
|
+
},
|
|
3128
|
+
"hash": {
|
|
3129
|
+
"type": "string"
|
|
3130
|
+
},
|
|
3131
|
+
"style": {
|
|
3132
|
+
"$ref": "#/$defs/_entryDataStyle"
|
|
3133
|
+
},
|
|
3134
|
+
"collapsed": {
|
|
3135
|
+
"const": true
|
|
3136
|
+
},
|
|
3137
|
+
"tag": {
|
|
3138
|
+
"const": "card"
|
|
3139
|
+
},
|
|
3140
|
+
"set": {
|
|
3141
|
+
"type": "string"
|
|
3142
|
+
}
|
|
3143
|
+
},
|
|
3144
|
+
"required": [
|
|
3145
|
+
"type",
|
|
3146
|
+
"tag",
|
|
3147
|
+
"name"
|
|
3148
|
+
],
|
|
3149
|
+
"additionalProperties": false
|
|
3150
|
+
},
|
|
3103
3151
|
{
|
|
3104
3152
|
"type": "object",
|
|
3105
3153
|
"properties": {
|
package/schema/ua/loot.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "loot.json",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.3",
|
|
5
5
|
"$defs": {
|
|
6
6
|
"cr": {
|
|
7
7
|
"type": "integer",
|
|
@@ -182,6 +182,9 @@
|
|
|
182
182
|
"page": {
|
|
183
183
|
"$ref": "util.json#/$defs/page"
|
|
184
184
|
},
|
|
185
|
+
"reprintedAs": {
|
|
186
|
+
"$ref": "util.json#/$defs/reprintedAs"
|
|
187
|
+
},
|
|
185
188
|
"type": {
|
|
186
189
|
"type": "integer"
|
|
187
190
|
},
|
|
@@ -270,6 +273,28 @@
|
|
|
270
273
|
"fromItems"
|
|
271
274
|
],
|
|
272
275
|
"additionalProperties": false
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"type": "object",
|
|
279
|
+
"properties": {
|
|
280
|
+
"fromMatching": {
|
|
281
|
+
"type": "object",
|
|
282
|
+
"properties": {
|
|
283
|
+
"rarity": {
|
|
284
|
+
"type": "string"
|
|
285
|
+
},
|
|
286
|
+
"tier": {
|
|
287
|
+
"type": "string"
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
"minProperties": 1,
|
|
291
|
+
"additionalProperties": false
|
|
292
|
+
}
|
|
293
|
+
},
|
|
294
|
+
"required": [
|
|
295
|
+
"fromMatching"
|
|
296
|
+
],
|
|
297
|
+
"additionalProperties": false
|
|
273
298
|
}
|
|
274
299
|
]
|
|
275
300
|
}
|
package/schema/ua/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.28",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaDependenciesArray": {
|
|
9
9
|
"type": "array",
|
|
@@ -231,7 +231,6 @@
|
|
|
231
231
|
"sense",
|
|
232
232
|
"legroup",
|
|
233
233
|
"deck",
|
|
234
|
-
"card",
|
|
235
234
|
"facility"
|
|
236
235
|
]
|
|
237
236
|
},
|
|
@@ -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.13",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_arrayOfSpell": {
|
|
9
9
|
"type": "array",
|
|
@@ -3100,6 +3100,54 @@
|
|
|
3100
3100
|
],
|
|
3101
3101
|
"additionalProperties": false
|
|
3102
3102
|
},
|
|
3103
|
+
{
|
|
3104
|
+
"type": "object",
|
|
3105
|
+
"properties": {
|
|
3106
|
+
"name": {
|
|
3107
|
+
"type": "string"
|
|
3108
|
+
},
|
|
3109
|
+
"type": {
|
|
3110
|
+
"type": "string",
|
|
3111
|
+
"const": "statblock"
|
|
3112
|
+
},
|
|
3113
|
+
"source": {
|
|
3114
|
+
"$ref": "util.json#/$defs/source"
|
|
3115
|
+
},
|
|
3116
|
+
"page": {
|
|
3117
|
+
"$ref": "util.json#/$defs/page"
|
|
3118
|
+
},
|
|
3119
|
+
"data": {
|
|
3120
|
+
"$ref": "#/$defs/_entryDataData"
|
|
3121
|
+
},
|
|
3122
|
+
"id": {
|
|
3123
|
+
"type": "string"
|
|
3124
|
+
},
|
|
3125
|
+
"displayName": {
|
|
3126
|
+
"type": "string"
|
|
3127
|
+
},
|
|
3128
|
+
"hash": {
|
|
3129
|
+
"type": "string"
|
|
3130
|
+
},
|
|
3131
|
+
"style": {
|
|
3132
|
+
"$ref": "#/$defs/_entryDataStyle"
|
|
3133
|
+
},
|
|
3134
|
+
"collapsed": {
|
|
3135
|
+
"const": true
|
|
3136
|
+
},
|
|
3137
|
+
"tag": {
|
|
3138
|
+
"const": "card"
|
|
3139
|
+
},
|
|
3140
|
+
"set": {
|
|
3141
|
+
"type": "string"
|
|
3142
|
+
}
|
|
3143
|
+
},
|
|
3144
|
+
"required": [
|
|
3145
|
+
"type",
|
|
3146
|
+
"tag",
|
|
3147
|
+
"name"
|
|
3148
|
+
],
|
|
3149
|
+
"additionalProperties": false
|
|
3150
|
+
},
|
|
3103
3151
|
{
|
|
3104
3152
|
"type": "object",
|
|
3105
3153
|
"properties": {
|
package/schema/ua-fast/loot.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "loot.json",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.3",
|
|
5
5
|
"$defs": {
|
|
6
6
|
"cr": {
|
|
7
7
|
"type": "integer",
|
|
@@ -182,6 +182,9 @@
|
|
|
182
182
|
"page": {
|
|
183
183
|
"$ref": "util.json#/$defs/page"
|
|
184
184
|
},
|
|
185
|
+
"reprintedAs": {
|
|
186
|
+
"$ref": "util.json#/$defs/reprintedAs"
|
|
187
|
+
},
|
|
185
188
|
"type": {
|
|
186
189
|
"type": "integer"
|
|
187
190
|
},
|
|
@@ -270,6 +273,28 @@
|
|
|
270
273
|
"fromItems"
|
|
271
274
|
],
|
|
272
275
|
"additionalProperties": false
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"type": "object",
|
|
279
|
+
"properties": {
|
|
280
|
+
"fromMatching": {
|
|
281
|
+
"type": "object",
|
|
282
|
+
"properties": {
|
|
283
|
+
"rarity": {
|
|
284
|
+
"type": "string"
|
|
285
|
+
},
|
|
286
|
+
"tier": {
|
|
287
|
+
"type": "string"
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
"minProperties": 1,
|
|
291
|
+
"additionalProperties": false
|
|
292
|
+
}
|
|
293
|
+
},
|
|
294
|
+
"required": [
|
|
295
|
+
"fromMatching"
|
|
296
|
+
],
|
|
297
|
+
"additionalProperties": false
|
|
273
298
|
}
|
|
274
299
|
]
|
|
275
300
|
}
|
package/schema/ua-fast/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.28",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaDependenciesArray": {
|
|
9
9
|
"type": "array",
|
|
@@ -231,7 +231,6 @@
|
|
|
231
231
|
"sense",
|
|
232
232
|
"legroup",
|
|
233
233
|
"deck",
|
|
234
|
-
"card",
|
|
235
234
|
"facility"
|
|
236
235
|
]
|
|
237
236
|
},
|