5etools-utils 0.8.19 → 0.8.21
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/class/class.json +5 -1
- package/schema/brew/entry.json +3 -2
- package/schema/brew/util.json +160 -2
- package/schema/brew-fast/class/class.json +5 -1
- package/schema/brew-fast/entry.json +3 -2
- package/schema/brew-fast/util.json +160 -2
- package/schema/site/class/class.json +5 -1
- package/schema/site/entry.json +3 -2
- package/schema/site/util.json +160 -2
- package/schema/site-fast/class/class.json +5 -1
- package/schema/site-fast/entry.json +3 -2
- package/schema/site-fast/util.json +160 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.4",
|
|
4
4
|
"$id": "class.json",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
@@ -394,6 +394,10 @@
|
|
|
394
394
|
"type": "string"
|
|
395
395
|
}
|
|
396
396
|
},
|
|
397
|
+
"toolProficiencies": {
|
|
398
|
+
"description": "Well-structured tool proficiency data, used by e.g. Plutonium.",
|
|
399
|
+
"$ref": "../util.json#/$defs/toolProficiencies"
|
|
400
|
+
},
|
|
397
401
|
"skills": {
|
|
398
402
|
"$ref": "../util.json#/$defs/skillProficiencies"
|
|
399
403
|
}
|
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.8.
|
|
6
|
+
"version": "1.8.14",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_arrayOfSpell": {
|
|
9
9
|
"type": "array",
|
|
@@ -3323,7 +3323,8 @@
|
|
|
3323
3323
|
"enum": [
|
|
3324
3324
|
"trait",
|
|
3325
3325
|
"action",
|
|
3326
|
-
"bonus"
|
|
3326
|
+
"bonus",
|
|
3327
|
+
"reaction"
|
|
3327
3328
|
]
|
|
3328
3329
|
},
|
|
3329
3330
|
"chargesItem": {
|
package/schema/brew/util.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "util.json",
|
|
4
4
|
"title": "Util",
|
|
5
5
|
"description": "Utility definitions to be used in other schemas.",
|
|
6
|
-
"version": "1.13.
|
|
6
|
+
"version": "1.13.19",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaBlock": {
|
|
9
9
|
"type": "object",
|
|
@@ -292,11 +292,26 @@
|
|
|
292
292
|
"disguise kit",
|
|
293
293
|
"forgery kit",
|
|
294
294
|
"gaming set",
|
|
295
|
+
"dragonchess set",
|
|
296
|
+
"dice set",
|
|
297
|
+
"three-dragon ante set",
|
|
295
298
|
"herbalism kit",
|
|
296
299
|
"musical instrument",
|
|
300
|
+
"bagpipes",
|
|
301
|
+
"drum",
|
|
302
|
+
"dulcimer",
|
|
303
|
+
"flute",
|
|
304
|
+
"horn",
|
|
305
|
+
"lute",
|
|
306
|
+
"lyre",
|
|
307
|
+
"pan flute",
|
|
308
|
+
"shawm",
|
|
309
|
+
"viol",
|
|
297
310
|
"navigator's tools",
|
|
298
311
|
"thieves' tools",
|
|
299
312
|
"poisoner's kit",
|
|
313
|
+
"vehicles",
|
|
314
|
+
"vehicles (air)",
|
|
300
315
|
"vehicles (land)",
|
|
301
316
|
"vehicles (water)",
|
|
302
317
|
"vehicles (space)"
|
|
@@ -376,12 +391,54 @@
|
|
|
376
391
|
"gaming set": {
|
|
377
392
|
"const": true
|
|
378
393
|
},
|
|
394
|
+
"dragonchess set": {
|
|
395
|
+
"const": true
|
|
396
|
+
},
|
|
397
|
+
"dice set": {
|
|
398
|
+
"const": true
|
|
399
|
+
},
|
|
400
|
+
"three-dragon ante set": {
|
|
401
|
+
"const": true
|
|
402
|
+
},
|
|
379
403
|
"herbalism kit": {
|
|
380
404
|
"const": true
|
|
381
405
|
},
|
|
406
|
+
"anyMusicalInstrument": {
|
|
407
|
+
"type": "integer"
|
|
408
|
+
},
|
|
382
409
|
"musical instrument": {
|
|
383
410
|
"const": true
|
|
384
411
|
},
|
|
412
|
+
"bagpipes": {
|
|
413
|
+
"const": true
|
|
414
|
+
},
|
|
415
|
+
"drum": {
|
|
416
|
+
"const": true
|
|
417
|
+
},
|
|
418
|
+
"dulcimer": {
|
|
419
|
+
"const": true
|
|
420
|
+
},
|
|
421
|
+
"flute": {
|
|
422
|
+
"const": true
|
|
423
|
+
},
|
|
424
|
+
"horn": {
|
|
425
|
+
"const": true
|
|
426
|
+
},
|
|
427
|
+
"lute": {
|
|
428
|
+
"const": true
|
|
429
|
+
},
|
|
430
|
+
"lyre": {
|
|
431
|
+
"const": true
|
|
432
|
+
},
|
|
433
|
+
"pan flute": {
|
|
434
|
+
"const": true
|
|
435
|
+
},
|
|
436
|
+
"shawm": {
|
|
437
|
+
"const": true
|
|
438
|
+
},
|
|
439
|
+
"viol": {
|
|
440
|
+
"const": true
|
|
441
|
+
},
|
|
385
442
|
"navigator's tools": {
|
|
386
443
|
"const": true
|
|
387
444
|
},
|
|
@@ -391,6 +448,12 @@
|
|
|
391
448
|
"poisoner's kit": {
|
|
392
449
|
"const": true
|
|
393
450
|
},
|
|
451
|
+
"vehicles": {
|
|
452
|
+
"const": true
|
|
453
|
+
},
|
|
454
|
+
"vehicles (air)": {
|
|
455
|
+
"const": true
|
|
456
|
+
},
|
|
394
457
|
"vehicles (land)": {
|
|
395
458
|
"const": true
|
|
396
459
|
},
|
|
@@ -413,7 +476,8 @@
|
|
|
413
476
|
{
|
|
414
477
|
"type": "string",
|
|
415
478
|
"enum": [
|
|
416
|
-
"anyArtisansTool"
|
|
479
|
+
"anyArtisansTool",
|
|
480
|
+
"anyMusicalInstrument"
|
|
417
481
|
]
|
|
418
482
|
}
|
|
419
483
|
]
|
|
@@ -659,12 +723,54 @@
|
|
|
659
723
|
"gaming set": {
|
|
660
724
|
"const": true
|
|
661
725
|
},
|
|
726
|
+
"dragonchess set": {
|
|
727
|
+
"const": true
|
|
728
|
+
},
|
|
729
|
+
"dice set": {
|
|
730
|
+
"const": true
|
|
731
|
+
},
|
|
732
|
+
"three-dragon ante set": {
|
|
733
|
+
"const": true
|
|
734
|
+
},
|
|
662
735
|
"herbalism kit": {
|
|
663
736
|
"const": true
|
|
664
737
|
},
|
|
738
|
+
"anyMusicalInstrument": {
|
|
739
|
+
"type": "integer"
|
|
740
|
+
},
|
|
665
741
|
"musical instrument": {
|
|
666
742
|
"const": true
|
|
667
743
|
},
|
|
744
|
+
"bagpipes": {
|
|
745
|
+
"const": true
|
|
746
|
+
},
|
|
747
|
+
"drum": {
|
|
748
|
+
"const": true
|
|
749
|
+
},
|
|
750
|
+
"dulcimer": {
|
|
751
|
+
"const": true
|
|
752
|
+
},
|
|
753
|
+
"flute": {
|
|
754
|
+
"const": true
|
|
755
|
+
},
|
|
756
|
+
"horn": {
|
|
757
|
+
"const": true
|
|
758
|
+
},
|
|
759
|
+
"lute": {
|
|
760
|
+
"const": true
|
|
761
|
+
},
|
|
762
|
+
"lyre": {
|
|
763
|
+
"const": true
|
|
764
|
+
},
|
|
765
|
+
"pan flute": {
|
|
766
|
+
"const": true
|
|
767
|
+
},
|
|
768
|
+
"shawm": {
|
|
769
|
+
"const": true
|
|
770
|
+
},
|
|
771
|
+
"viol": {
|
|
772
|
+
"const": true
|
|
773
|
+
},
|
|
668
774
|
"navigator's tools": {
|
|
669
775
|
"const": true
|
|
670
776
|
},
|
|
@@ -674,6 +780,12 @@
|
|
|
674
780
|
"poisoner's kit": {
|
|
675
781
|
"const": true
|
|
676
782
|
},
|
|
783
|
+
"vehicles": {
|
|
784
|
+
"const": true
|
|
785
|
+
},
|
|
786
|
+
"vehicles (air)": {
|
|
787
|
+
"const": true
|
|
788
|
+
},
|
|
677
789
|
"vehicles (land)": {
|
|
678
790
|
"const": true
|
|
679
791
|
},
|
|
@@ -766,6 +878,7 @@
|
|
|
766
878
|
"anySkill",
|
|
767
879
|
"anyTool",
|
|
768
880
|
"anyArtisansTool",
|
|
881
|
+
"anyMusicalInstrument",
|
|
769
882
|
"anyLanguage",
|
|
770
883
|
"anyStandardLanguage"
|
|
771
884
|
]
|
|
@@ -1183,18 +1296,63 @@
|
|
|
1183
1296
|
"gaming set": {
|
|
1184
1297
|
"const": true
|
|
1185
1298
|
},
|
|
1299
|
+
"dragonchess set": {
|
|
1300
|
+
"const": true
|
|
1301
|
+
},
|
|
1302
|
+
"dice set": {
|
|
1303
|
+
"const": true
|
|
1304
|
+
},
|
|
1305
|
+
"three-dragon ante set": {
|
|
1306
|
+
"const": true
|
|
1307
|
+
},
|
|
1186
1308
|
"herbalism kit": {
|
|
1187
1309
|
"const": true
|
|
1188
1310
|
},
|
|
1189
1311
|
"musical instrument": {
|
|
1190
1312
|
"const": true
|
|
1191
1313
|
},
|
|
1314
|
+
"bagpipes": {
|
|
1315
|
+
"const": true
|
|
1316
|
+
},
|
|
1317
|
+
"drum": {
|
|
1318
|
+
"const": true
|
|
1319
|
+
},
|
|
1320
|
+
"dulcimer": {
|
|
1321
|
+
"const": true
|
|
1322
|
+
},
|
|
1323
|
+
"flute": {
|
|
1324
|
+
"const": true
|
|
1325
|
+
},
|
|
1326
|
+
"horn": {
|
|
1327
|
+
"const": true
|
|
1328
|
+
},
|
|
1329
|
+
"lute": {
|
|
1330
|
+
"const": true
|
|
1331
|
+
},
|
|
1332
|
+
"lyre": {
|
|
1333
|
+
"const": true
|
|
1334
|
+
},
|
|
1335
|
+
"pan flute": {
|
|
1336
|
+
"const": true
|
|
1337
|
+
},
|
|
1338
|
+
"shawm": {
|
|
1339
|
+
"const": true
|
|
1340
|
+
},
|
|
1341
|
+
"viol": {
|
|
1342
|
+
"const": true
|
|
1343
|
+
},
|
|
1192
1344
|
"navigator's tools": {
|
|
1193
1345
|
"const": true
|
|
1194
1346
|
},
|
|
1195
1347
|
"thieves' tools": {
|
|
1196
1348
|
"const": true
|
|
1197
1349
|
},
|
|
1350
|
+
"vehicles": {
|
|
1351
|
+
"const": true
|
|
1352
|
+
},
|
|
1353
|
+
"vehicles (air)": {
|
|
1354
|
+
"const": true
|
|
1355
|
+
},
|
|
1198
1356
|
"vehicles (land)": {
|
|
1199
1357
|
"const": true
|
|
1200
1358
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.4",
|
|
4
4
|
"$id": "class.json",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
@@ -394,6 +394,10 @@
|
|
|
394
394
|
"type": "string"
|
|
395
395
|
}
|
|
396
396
|
},
|
|
397
|
+
"toolProficiencies": {
|
|
398
|
+
"description": "Well-structured tool proficiency data, used by e.g. Plutonium.",
|
|
399
|
+
"$ref": "../util.json#/$defs/toolProficiencies"
|
|
400
|
+
},
|
|
397
401
|
"skills": {
|
|
398
402
|
"$ref": "../util.json#/$defs/skillProficiencies"
|
|
399
403
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "entry.json",
|
|
4
4
|
"title": "Entry",
|
|
5
5
|
"description": "A recursively renderable object.",
|
|
6
|
-
"version": "1.8.
|
|
6
|
+
"version": "1.8.14",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_arrayOfSpell": {
|
|
9
9
|
"type": "array",
|
|
@@ -3323,7 +3323,8 @@
|
|
|
3323
3323
|
"enum": [
|
|
3324
3324
|
"trait",
|
|
3325
3325
|
"action",
|
|
3326
|
-
"bonus"
|
|
3326
|
+
"bonus",
|
|
3327
|
+
"reaction"
|
|
3327
3328
|
]
|
|
3328
3329
|
},
|
|
3329
3330
|
"chargesItem": {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "util.json",
|
|
4
4
|
"title": "Util",
|
|
5
5
|
"description": "Utility definitions to be used in other schemas.",
|
|
6
|
-
"version": "1.13.
|
|
6
|
+
"version": "1.13.19",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaBlock": {
|
|
9
9
|
"type": "object",
|
|
@@ -292,11 +292,26 @@
|
|
|
292
292
|
"disguise kit",
|
|
293
293
|
"forgery kit",
|
|
294
294
|
"gaming set",
|
|
295
|
+
"dragonchess set",
|
|
296
|
+
"dice set",
|
|
297
|
+
"three-dragon ante set",
|
|
295
298
|
"herbalism kit",
|
|
296
299
|
"musical instrument",
|
|
300
|
+
"bagpipes",
|
|
301
|
+
"drum",
|
|
302
|
+
"dulcimer",
|
|
303
|
+
"flute",
|
|
304
|
+
"horn",
|
|
305
|
+
"lute",
|
|
306
|
+
"lyre",
|
|
307
|
+
"pan flute",
|
|
308
|
+
"shawm",
|
|
309
|
+
"viol",
|
|
297
310
|
"navigator's tools",
|
|
298
311
|
"thieves' tools",
|
|
299
312
|
"poisoner's kit",
|
|
313
|
+
"vehicles",
|
|
314
|
+
"vehicles (air)",
|
|
300
315
|
"vehicles (land)",
|
|
301
316
|
"vehicles (water)",
|
|
302
317
|
"vehicles (space)"
|
|
@@ -376,12 +391,54 @@
|
|
|
376
391
|
"gaming set": {
|
|
377
392
|
"const": true
|
|
378
393
|
},
|
|
394
|
+
"dragonchess set": {
|
|
395
|
+
"const": true
|
|
396
|
+
},
|
|
397
|
+
"dice set": {
|
|
398
|
+
"const": true
|
|
399
|
+
},
|
|
400
|
+
"three-dragon ante set": {
|
|
401
|
+
"const": true
|
|
402
|
+
},
|
|
379
403
|
"herbalism kit": {
|
|
380
404
|
"const": true
|
|
381
405
|
},
|
|
406
|
+
"anyMusicalInstrument": {
|
|
407
|
+
"type": "integer"
|
|
408
|
+
},
|
|
382
409
|
"musical instrument": {
|
|
383
410
|
"const": true
|
|
384
411
|
},
|
|
412
|
+
"bagpipes": {
|
|
413
|
+
"const": true
|
|
414
|
+
},
|
|
415
|
+
"drum": {
|
|
416
|
+
"const": true
|
|
417
|
+
},
|
|
418
|
+
"dulcimer": {
|
|
419
|
+
"const": true
|
|
420
|
+
},
|
|
421
|
+
"flute": {
|
|
422
|
+
"const": true
|
|
423
|
+
},
|
|
424
|
+
"horn": {
|
|
425
|
+
"const": true
|
|
426
|
+
},
|
|
427
|
+
"lute": {
|
|
428
|
+
"const": true
|
|
429
|
+
},
|
|
430
|
+
"lyre": {
|
|
431
|
+
"const": true
|
|
432
|
+
},
|
|
433
|
+
"pan flute": {
|
|
434
|
+
"const": true
|
|
435
|
+
},
|
|
436
|
+
"shawm": {
|
|
437
|
+
"const": true
|
|
438
|
+
},
|
|
439
|
+
"viol": {
|
|
440
|
+
"const": true
|
|
441
|
+
},
|
|
385
442
|
"navigator's tools": {
|
|
386
443
|
"const": true
|
|
387
444
|
},
|
|
@@ -391,6 +448,12 @@
|
|
|
391
448
|
"poisoner's kit": {
|
|
392
449
|
"const": true
|
|
393
450
|
},
|
|
451
|
+
"vehicles": {
|
|
452
|
+
"const": true
|
|
453
|
+
},
|
|
454
|
+
"vehicles (air)": {
|
|
455
|
+
"const": true
|
|
456
|
+
},
|
|
394
457
|
"vehicles (land)": {
|
|
395
458
|
"const": true
|
|
396
459
|
},
|
|
@@ -413,7 +476,8 @@
|
|
|
413
476
|
{
|
|
414
477
|
"type": "string",
|
|
415
478
|
"enum": [
|
|
416
|
-
"anyArtisansTool"
|
|
479
|
+
"anyArtisansTool",
|
|
480
|
+
"anyMusicalInstrument"
|
|
417
481
|
]
|
|
418
482
|
}
|
|
419
483
|
]
|
|
@@ -659,12 +723,54 @@
|
|
|
659
723
|
"gaming set": {
|
|
660
724
|
"const": true
|
|
661
725
|
},
|
|
726
|
+
"dragonchess set": {
|
|
727
|
+
"const": true
|
|
728
|
+
},
|
|
729
|
+
"dice set": {
|
|
730
|
+
"const": true
|
|
731
|
+
},
|
|
732
|
+
"three-dragon ante set": {
|
|
733
|
+
"const": true
|
|
734
|
+
},
|
|
662
735
|
"herbalism kit": {
|
|
663
736
|
"const": true
|
|
664
737
|
},
|
|
738
|
+
"anyMusicalInstrument": {
|
|
739
|
+
"type": "integer"
|
|
740
|
+
},
|
|
665
741
|
"musical instrument": {
|
|
666
742
|
"const": true
|
|
667
743
|
},
|
|
744
|
+
"bagpipes": {
|
|
745
|
+
"const": true
|
|
746
|
+
},
|
|
747
|
+
"drum": {
|
|
748
|
+
"const": true
|
|
749
|
+
},
|
|
750
|
+
"dulcimer": {
|
|
751
|
+
"const": true
|
|
752
|
+
},
|
|
753
|
+
"flute": {
|
|
754
|
+
"const": true
|
|
755
|
+
},
|
|
756
|
+
"horn": {
|
|
757
|
+
"const": true
|
|
758
|
+
},
|
|
759
|
+
"lute": {
|
|
760
|
+
"const": true
|
|
761
|
+
},
|
|
762
|
+
"lyre": {
|
|
763
|
+
"const": true
|
|
764
|
+
},
|
|
765
|
+
"pan flute": {
|
|
766
|
+
"const": true
|
|
767
|
+
},
|
|
768
|
+
"shawm": {
|
|
769
|
+
"const": true
|
|
770
|
+
},
|
|
771
|
+
"viol": {
|
|
772
|
+
"const": true
|
|
773
|
+
},
|
|
668
774
|
"navigator's tools": {
|
|
669
775
|
"const": true
|
|
670
776
|
},
|
|
@@ -674,6 +780,12 @@
|
|
|
674
780
|
"poisoner's kit": {
|
|
675
781
|
"const": true
|
|
676
782
|
},
|
|
783
|
+
"vehicles": {
|
|
784
|
+
"const": true
|
|
785
|
+
},
|
|
786
|
+
"vehicles (air)": {
|
|
787
|
+
"const": true
|
|
788
|
+
},
|
|
677
789
|
"vehicles (land)": {
|
|
678
790
|
"const": true
|
|
679
791
|
},
|
|
@@ -766,6 +878,7 @@
|
|
|
766
878
|
"anySkill",
|
|
767
879
|
"anyTool",
|
|
768
880
|
"anyArtisansTool",
|
|
881
|
+
"anyMusicalInstrument",
|
|
769
882
|
"anyLanguage",
|
|
770
883
|
"anyStandardLanguage"
|
|
771
884
|
]
|
|
@@ -1183,18 +1296,63 @@
|
|
|
1183
1296
|
"gaming set": {
|
|
1184
1297
|
"const": true
|
|
1185
1298
|
},
|
|
1299
|
+
"dragonchess set": {
|
|
1300
|
+
"const": true
|
|
1301
|
+
},
|
|
1302
|
+
"dice set": {
|
|
1303
|
+
"const": true
|
|
1304
|
+
},
|
|
1305
|
+
"three-dragon ante set": {
|
|
1306
|
+
"const": true
|
|
1307
|
+
},
|
|
1186
1308
|
"herbalism kit": {
|
|
1187
1309
|
"const": true
|
|
1188
1310
|
},
|
|
1189
1311
|
"musical instrument": {
|
|
1190
1312
|
"const": true
|
|
1191
1313
|
},
|
|
1314
|
+
"bagpipes": {
|
|
1315
|
+
"const": true
|
|
1316
|
+
},
|
|
1317
|
+
"drum": {
|
|
1318
|
+
"const": true
|
|
1319
|
+
},
|
|
1320
|
+
"dulcimer": {
|
|
1321
|
+
"const": true
|
|
1322
|
+
},
|
|
1323
|
+
"flute": {
|
|
1324
|
+
"const": true
|
|
1325
|
+
},
|
|
1326
|
+
"horn": {
|
|
1327
|
+
"const": true
|
|
1328
|
+
},
|
|
1329
|
+
"lute": {
|
|
1330
|
+
"const": true
|
|
1331
|
+
},
|
|
1332
|
+
"lyre": {
|
|
1333
|
+
"const": true
|
|
1334
|
+
},
|
|
1335
|
+
"pan flute": {
|
|
1336
|
+
"const": true
|
|
1337
|
+
},
|
|
1338
|
+
"shawm": {
|
|
1339
|
+
"const": true
|
|
1340
|
+
},
|
|
1341
|
+
"viol": {
|
|
1342
|
+
"const": true
|
|
1343
|
+
},
|
|
1192
1344
|
"navigator's tools": {
|
|
1193
1345
|
"const": true
|
|
1194
1346
|
},
|
|
1195
1347
|
"thieves' tools": {
|
|
1196
1348
|
"const": true
|
|
1197
1349
|
},
|
|
1350
|
+
"vehicles": {
|
|
1351
|
+
"const": true
|
|
1352
|
+
},
|
|
1353
|
+
"vehicles (air)": {
|
|
1354
|
+
"const": true
|
|
1355
|
+
},
|
|
1198
1356
|
"vehicles (land)": {
|
|
1199
1357
|
"const": true
|
|
1200
1358
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.4",
|
|
4
4
|
"$id": "class.json",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
@@ -304,6 +304,10 @@
|
|
|
304
304
|
"type": "string"
|
|
305
305
|
}
|
|
306
306
|
},
|
|
307
|
+
"toolProficiencies": {
|
|
308
|
+
"description": "Well-structured tool proficiency data, used by e.g. Plutonium.",
|
|
309
|
+
"$ref": "../util.json#/$defs/toolProficiencies"
|
|
310
|
+
},
|
|
307
311
|
"skills": {
|
|
308
312
|
"$ref": "../util.json#/$defs/skillProficiencies"
|
|
309
313
|
}
|
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.8.
|
|
6
|
+
"version": "1.8.14",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_arrayOfSpell": {
|
|
9
9
|
"type": "array",
|
|
@@ -3280,7 +3280,8 @@
|
|
|
3280
3280
|
"enum": [
|
|
3281
3281
|
"trait",
|
|
3282
3282
|
"action",
|
|
3283
|
-
"bonus"
|
|
3283
|
+
"bonus",
|
|
3284
|
+
"reaction"
|
|
3284
3285
|
]
|
|
3285
3286
|
},
|
|
3286
3287
|
"chargesItem": {
|
package/schema/site/util.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "util.json",
|
|
4
4
|
"title": "Util",
|
|
5
5
|
"description": "Utility definitions to be used in other schemas.",
|
|
6
|
-
"version": "1.13.
|
|
6
|
+
"version": "1.13.19",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaBlock": {
|
|
9
9
|
"type": "object",
|
|
@@ -282,11 +282,26 @@
|
|
|
282
282
|
"disguise kit",
|
|
283
283
|
"forgery kit",
|
|
284
284
|
"gaming set",
|
|
285
|
+
"dragonchess set",
|
|
286
|
+
"dice set",
|
|
287
|
+
"three-dragon ante set",
|
|
285
288
|
"herbalism kit",
|
|
286
289
|
"musical instrument",
|
|
290
|
+
"bagpipes",
|
|
291
|
+
"drum",
|
|
292
|
+
"dulcimer",
|
|
293
|
+
"flute",
|
|
294
|
+
"horn",
|
|
295
|
+
"lute",
|
|
296
|
+
"lyre",
|
|
297
|
+
"pan flute",
|
|
298
|
+
"shawm",
|
|
299
|
+
"viol",
|
|
287
300
|
"navigator's tools",
|
|
288
301
|
"thieves' tools",
|
|
289
302
|
"poisoner's kit",
|
|
303
|
+
"vehicles",
|
|
304
|
+
"vehicles (air)",
|
|
290
305
|
"vehicles (land)",
|
|
291
306
|
"vehicles (water)",
|
|
292
307
|
"vehicles (space)"
|
|
@@ -366,12 +381,54 @@
|
|
|
366
381
|
"gaming set": {
|
|
367
382
|
"const": true
|
|
368
383
|
},
|
|
384
|
+
"dragonchess set": {
|
|
385
|
+
"const": true
|
|
386
|
+
},
|
|
387
|
+
"dice set": {
|
|
388
|
+
"const": true
|
|
389
|
+
},
|
|
390
|
+
"three-dragon ante set": {
|
|
391
|
+
"const": true
|
|
392
|
+
},
|
|
369
393
|
"herbalism kit": {
|
|
370
394
|
"const": true
|
|
371
395
|
},
|
|
396
|
+
"anyMusicalInstrument": {
|
|
397
|
+
"type": "integer"
|
|
398
|
+
},
|
|
372
399
|
"musical instrument": {
|
|
373
400
|
"const": true
|
|
374
401
|
},
|
|
402
|
+
"bagpipes": {
|
|
403
|
+
"const": true
|
|
404
|
+
},
|
|
405
|
+
"drum": {
|
|
406
|
+
"const": true
|
|
407
|
+
},
|
|
408
|
+
"dulcimer": {
|
|
409
|
+
"const": true
|
|
410
|
+
},
|
|
411
|
+
"flute": {
|
|
412
|
+
"const": true
|
|
413
|
+
},
|
|
414
|
+
"horn": {
|
|
415
|
+
"const": true
|
|
416
|
+
},
|
|
417
|
+
"lute": {
|
|
418
|
+
"const": true
|
|
419
|
+
},
|
|
420
|
+
"lyre": {
|
|
421
|
+
"const": true
|
|
422
|
+
},
|
|
423
|
+
"pan flute": {
|
|
424
|
+
"const": true
|
|
425
|
+
},
|
|
426
|
+
"shawm": {
|
|
427
|
+
"const": true
|
|
428
|
+
},
|
|
429
|
+
"viol": {
|
|
430
|
+
"const": true
|
|
431
|
+
},
|
|
375
432
|
"navigator's tools": {
|
|
376
433
|
"const": true
|
|
377
434
|
},
|
|
@@ -381,6 +438,12 @@
|
|
|
381
438
|
"poisoner's kit": {
|
|
382
439
|
"const": true
|
|
383
440
|
},
|
|
441
|
+
"vehicles": {
|
|
442
|
+
"const": true
|
|
443
|
+
},
|
|
444
|
+
"vehicles (air)": {
|
|
445
|
+
"const": true
|
|
446
|
+
},
|
|
384
447
|
"vehicles (land)": {
|
|
385
448
|
"const": true
|
|
386
449
|
},
|
|
@@ -403,7 +466,8 @@
|
|
|
403
466
|
{
|
|
404
467
|
"type": "string",
|
|
405
468
|
"enum": [
|
|
406
|
-
"anyArtisansTool"
|
|
469
|
+
"anyArtisansTool",
|
|
470
|
+
"anyMusicalInstrument"
|
|
407
471
|
]
|
|
408
472
|
}
|
|
409
473
|
]
|
|
@@ -644,12 +708,54 @@
|
|
|
644
708
|
"gaming set": {
|
|
645
709
|
"const": true
|
|
646
710
|
},
|
|
711
|
+
"dragonchess set": {
|
|
712
|
+
"const": true
|
|
713
|
+
},
|
|
714
|
+
"dice set": {
|
|
715
|
+
"const": true
|
|
716
|
+
},
|
|
717
|
+
"three-dragon ante set": {
|
|
718
|
+
"const": true
|
|
719
|
+
},
|
|
647
720
|
"herbalism kit": {
|
|
648
721
|
"const": true
|
|
649
722
|
},
|
|
723
|
+
"anyMusicalInstrument": {
|
|
724
|
+
"type": "integer"
|
|
725
|
+
},
|
|
650
726
|
"musical instrument": {
|
|
651
727
|
"const": true
|
|
652
728
|
},
|
|
729
|
+
"bagpipes": {
|
|
730
|
+
"const": true
|
|
731
|
+
},
|
|
732
|
+
"drum": {
|
|
733
|
+
"const": true
|
|
734
|
+
},
|
|
735
|
+
"dulcimer": {
|
|
736
|
+
"const": true
|
|
737
|
+
},
|
|
738
|
+
"flute": {
|
|
739
|
+
"const": true
|
|
740
|
+
},
|
|
741
|
+
"horn": {
|
|
742
|
+
"const": true
|
|
743
|
+
},
|
|
744
|
+
"lute": {
|
|
745
|
+
"const": true
|
|
746
|
+
},
|
|
747
|
+
"lyre": {
|
|
748
|
+
"const": true
|
|
749
|
+
},
|
|
750
|
+
"pan flute": {
|
|
751
|
+
"const": true
|
|
752
|
+
},
|
|
753
|
+
"shawm": {
|
|
754
|
+
"const": true
|
|
755
|
+
},
|
|
756
|
+
"viol": {
|
|
757
|
+
"const": true
|
|
758
|
+
},
|
|
653
759
|
"navigator's tools": {
|
|
654
760
|
"const": true
|
|
655
761
|
},
|
|
@@ -659,6 +765,12 @@
|
|
|
659
765
|
"poisoner's kit": {
|
|
660
766
|
"const": true
|
|
661
767
|
},
|
|
768
|
+
"vehicles": {
|
|
769
|
+
"const": true
|
|
770
|
+
},
|
|
771
|
+
"vehicles (air)": {
|
|
772
|
+
"const": true
|
|
773
|
+
},
|
|
662
774
|
"vehicles (land)": {
|
|
663
775
|
"const": true
|
|
664
776
|
},
|
|
@@ -751,6 +863,7 @@
|
|
|
751
863
|
"anySkill",
|
|
752
864
|
"anyTool",
|
|
753
865
|
"anyArtisansTool",
|
|
866
|
+
"anyMusicalInstrument",
|
|
754
867
|
"anyLanguage",
|
|
755
868
|
"anyStandardLanguage"
|
|
756
869
|
]
|
|
@@ -1166,18 +1279,63 @@
|
|
|
1166
1279
|
"gaming set": {
|
|
1167
1280
|
"const": true
|
|
1168
1281
|
},
|
|
1282
|
+
"dragonchess set": {
|
|
1283
|
+
"const": true
|
|
1284
|
+
},
|
|
1285
|
+
"dice set": {
|
|
1286
|
+
"const": true
|
|
1287
|
+
},
|
|
1288
|
+
"three-dragon ante set": {
|
|
1289
|
+
"const": true
|
|
1290
|
+
},
|
|
1169
1291
|
"herbalism kit": {
|
|
1170
1292
|
"const": true
|
|
1171
1293
|
},
|
|
1172
1294
|
"musical instrument": {
|
|
1173
1295
|
"const": true
|
|
1174
1296
|
},
|
|
1297
|
+
"bagpipes": {
|
|
1298
|
+
"const": true
|
|
1299
|
+
},
|
|
1300
|
+
"drum": {
|
|
1301
|
+
"const": true
|
|
1302
|
+
},
|
|
1303
|
+
"dulcimer": {
|
|
1304
|
+
"const": true
|
|
1305
|
+
},
|
|
1306
|
+
"flute": {
|
|
1307
|
+
"const": true
|
|
1308
|
+
},
|
|
1309
|
+
"horn": {
|
|
1310
|
+
"const": true
|
|
1311
|
+
},
|
|
1312
|
+
"lute": {
|
|
1313
|
+
"const": true
|
|
1314
|
+
},
|
|
1315
|
+
"lyre": {
|
|
1316
|
+
"const": true
|
|
1317
|
+
},
|
|
1318
|
+
"pan flute": {
|
|
1319
|
+
"const": true
|
|
1320
|
+
},
|
|
1321
|
+
"shawm": {
|
|
1322
|
+
"const": true
|
|
1323
|
+
},
|
|
1324
|
+
"viol": {
|
|
1325
|
+
"const": true
|
|
1326
|
+
},
|
|
1175
1327
|
"navigator's tools": {
|
|
1176
1328
|
"const": true
|
|
1177
1329
|
},
|
|
1178
1330
|
"thieves' tools": {
|
|
1179
1331
|
"const": true
|
|
1180
1332
|
},
|
|
1333
|
+
"vehicles": {
|
|
1334
|
+
"const": true
|
|
1335
|
+
},
|
|
1336
|
+
"vehicles (air)": {
|
|
1337
|
+
"const": true
|
|
1338
|
+
},
|
|
1181
1339
|
"vehicles (land)": {
|
|
1182
1340
|
"const": true
|
|
1183
1341
|
},
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
-
"version": "2.11.
|
|
3
|
+
"version": "2.11.4",
|
|
4
4
|
"$id": "class.json",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
@@ -304,6 +304,10 @@
|
|
|
304
304
|
"type": "string"
|
|
305
305
|
}
|
|
306
306
|
},
|
|
307
|
+
"toolProficiencies": {
|
|
308
|
+
"description": "Well-structured tool proficiency data, used by e.g. Plutonium.",
|
|
309
|
+
"$ref": "../util.json#/$defs/toolProficiencies"
|
|
310
|
+
},
|
|
307
311
|
"skills": {
|
|
308
312
|
"$ref": "../util.json#/$defs/skillProficiencies"
|
|
309
313
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "entry.json",
|
|
4
4
|
"title": "Entry",
|
|
5
5
|
"description": "A recursively renderable object.",
|
|
6
|
-
"version": "1.8.
|
|
6
|
+
"version": "1.8.14",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_arrayOfSpell": {
|
|
9
9
|
"type": "array",
|
|
@@ -3280,7 +3280,8 @@
|
|
|
3280
3280
|
"enum": [
|
|
3281
3281
|
"trait",
|
|
3282
3282
|
"action",
|
|
3283
|
-
"bonus"
|
|
3283
|
+
"bonus",
|
|
3284
|
+
"reaction"
|
|
3284
3285
|
]
|
|
3285
3286
|
},
|
|
3286
3287
|
"chargesItem": {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "util.json",
|
|
4
4
|
"title": "Util",
|
|
5
5
|
"description": "Utility definitions to be used in other schemas.",
|
|
6
|
-
"version": "1.13.
|
|
6
|
+
"version": "1.13.19",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"metaBlock": {
|
|
9
9
|
"type": "object",
|
|
@@ -282,11 +282,26 @@
|
|
|
282
282
|
"disguise kit",
|
|
283
283
|
"forgery kit",
|
|
284
284
|
"gaming set",
|
|
285
|
+
"dragonchess set",
|
|
286
|
+
"dice set",
|
|
287
|
+
"three-dragon ante set",
|
|
285
288
|
"herbalism kit",
|
|
286
289
|
"musical instrument",
|
|
290
|
+
"bagpipes",
|
|
291
|
+
"drum",
|
|
292
|
+
"dulcimer",
|
|
293
|
+
"flute",
|
|
294
|
+
"horn",
|
|
295
|
+
"lute",
|
|
296
|
+
"lyre",
|
|
297
|
+
"pan flute",
|
|
298
|
+
"shawm",
|
|
299
|
+
"viol",
|
|
287
300
|
"navigator's tools",
|
|
288
301
|
"thieves' tools",
|
|
289
302
|
"poisoner's kit",
|
|
303
|
+
"vehicles",
|
|
304
|
+
"vehicles (air)",
|
|
290
305
|
"vehicles (land)",
|
|
291
306
|
"vehicles (water)",
|
|
292
307
|
"vehicles (space)"
|
|
@@ -366,12 +381,54 @@
|
|
|
366
381
|
"gaming set": {
|
|
367
382
|
"const": true
|
|
368
383
|
},
|
|
384
|
+
"dragonchess set": {
|
|
385
|
+
"const": true
|
|
386
|
+
},
|
|
387
|
+
"dice set": {
|
|
388
|
+
"const": true
|
|
389
|
+
},
|
|
390
|
+
"three-dragon ante set": {
|
|
391
|
+
"const": true
|
|
392
|
+
},
|
|
369
393
|
"herbalism kit": {
|
|
370
394
|
"const": true
|
|
371
395
|
},
|
|
396
|
+
"anyMusicalInstrument": {
|
|
397
|
+
"type": "integer"
|
|
398
|
+
},
|
|
372
399
|
"musical instrument": {
|
|
373
400
|
"const": true
|
|
374
401
|
},
|
|
402
|
+
"bagpipes": {
|
|
403
|
+
"const": true
|
|
404
|
+
},
|
|
405
|
+
"drum": {
|
|
406
|
+
"const": true
|
|
407
|
+
},
|
|
408
|
+
"dulcimer": {
|
|
409
|
+
"const": true
|
|
410
|
+
},
|
|
411
|
+
"flute": {
|
|
412
|
+
"const": true
|
|
413
|
+
},
|
|
414
|
+
"horn": {
|
|
415
|
+
"const": true
|
|
416
|
+
},
|
|
417
|
+
"lute": {
|
|
418
|
+
"const": true
|
|
419
|
+
},
|
|
420
|
+
"lyre": {
|
|
421
|
+
"const": true
|
|
422
|
+
},
|
|
423
|
+
"pan flute": {
|
|
424
|
+
"const": true
|
|
425
|
+
},
|
|
426
|
+
"shawm": {
|
|
427
|
+
"const": true
|
|
428
|
+
},
|
|
429
|
+
"viol": {
|
|
430
|
+
"const": true
|
|
431
|
+
},
|
|
375
432
|
"navigator's tools": {
|
|
376
433
|
"const": true
|
|
377
434
|
},
|
|
@@ -381,6 +438,12 @@
|
|
|
381
438
|
"poisoner's kit": {
|
|
382
439
|
"const": true
|
|
383
440
|
},
|
|
441
|
+
"vehicles": {
|
|
442
|
+
"const": true
|
|
443
|
+
},
|
|
444
|
+
"vehicles (air)": {
|
|
445
|
+
"const": true
|
|
446
|
+
},
|
|
384
447
|
"vehicles (land)": {
|
|
385
448
|
"const": true
|
|
386
449
|
},
|
|
@@ -403,7 +466,8 @@
|
|
|
403
466
|
{
|
|
404
467
|
"type": "string",
|
|
405
468
|
"enum": [
|
|
406
|
-
"anyArtisansTool"
|
|
469
|
+
"anyArtisansTool",
|
|
470
|
+
"anyMusicalInstrument"
|
|
407
471
|
]
|
|
408
472
|
}
|
|
409
473
|
]
|
|
@@ -644,12 +708,54 @@
|
|
|
644
708
|
"gaming set": {
|
|
645
709
|
"const": true
|
|
646
710
|
},
|
|
711
|
+
"dragonchess set": {
|
|
712
|
+
"const": true
|
|
713
|
+
},
|
|
714
|
+
"dice set": {
|
|
715
|
+
"const": true
|
|
716
|
+
},
|
|
717
|
+
"three-dragon ante set": {
|
|
718
|
+
"const": true
|
|
719
|
+
},
|
|
647
720
|
"herbalism kit": {
|
|
648
721
|
"const": true
|
|
649
722
|
},
|
|
723
|
+
"anyMusicalInstrument": {
|
|
724
|
+
"type": "integer"
|
|
725
|
+
},
|
|
650
726
|
"musical instrument": {
|
|
651
727
|
"const": true
|
|
652
728
|
},
|
|
729
|
+
"bagpipes": {
|
|
730
|
+
"const": true
|
|
731
|
+
},
|
|
732
|
+
"drum": {
|
|
733
|
+
"const": true
|
|
734
|
+
},
|
|
735
|
+
"dulcimer": {
|
|
736
|
+
"const": true
|
|
737
|
+
},
|
|
738
|
+
"flute": {
|
|
739
|
+
"const": true
|
|
740
|
+
},
|
|
741
|
+
"horn": {
|
|
742
|
+
"const": true
|
|
743
|
+
},
|
|
744
|
+
"lute": {
|
|
745
|
+
"const": true
|
|
746
|
+
},
|
|
747
|
+
"lyre": {
|
|
748
|
+
"const": true
|
|
749
|
+
},
|
|
750
|
+
"pan flute": {
|
|
751
|
+
"const": true
|
|
752
|
+
},
|
|
753
|
+
"shawm": {
|
|
754
|
+
"const": true
|
|
755
|
+
},
|
|
756
|
+
"viol": {
|
|
757
|
+
"const": true
|
|
758
|
+
},
|
|
653
759
|
"navigator's tools": {
|
|
654
760
|
"const": true
|
|
655
761
|
},
|
|
@@ -659,6 +765,12 @@
|
|
|
659
765
|
"poisoner's kit": {
|
|
660
766
|
"const": true
|
|
661
767
|
},
|
|
768
|
+
"vehicles": {
|
|
769
|
+
"const": true
|
|
770
|
+
},
|
|
771
|
+
"vehicles (air)": {
|
|
772
|
+
"const": true
|
|
773
|
+
},
|
|
662
774
|
"vehicles (land)": {
|
|
663
775
|
"const": true
|
|
664
776
|
},
|
|
@@ -751,6 +863,7 @@
|
|
|
751
863
|
"anySkill",
|
|
752
864
|
"anyTool",
|
|
753
865
|
"anyArtisansTool",
|
|
866
|
+
"anyMusicalInstrument",
|
|
754
867
|
"anyLanguage",
|
|
755
868
|
"anyStandardLanguage"
|
|
756
869
|
]
|
|
@@ -1166,18 +1279,63 @@
|
|
|
1166
1279
|
"gaming set": {
|
|
1167
1280
|
"const": true
|
|
1168
1281
|
},
|
|
1282
|
+
"dragonchess set": {
|
|
1283
|
+
"const": true
|
|
1284
|
+
},
|
|
1285
|
+
"dice set": {
|
|
1286
|
+
"const": true
|
|
1287
|
+
},
|
|
1288
|
+
"three-dragon ante set": {
|
|
1289
|
+
"const": true
|
|
1290
|
+
},
|
|
1169
1291
|
"herbalism kit": {
|
|
1170
1292
|
"const": true
|
|
1171
1293
|
},
|
|
1172
1294
|
"musical instrument": {
|
|
1173
1295
|
"const": true
|
|
1174
1296
|
},
|
|
1297
|
+
"bagpipes": {
|
|
1298
|
+
"const": true
|
|
1299
|
+
},
|
|
1300
|
+
"drum": {
|
|
1301
|
+
"const": true
|
|
1302
|
+
},
|
|
1303
|
+
"dulcimer": {
|
|
1304
|
+
"const": true
|
|
1305
|
+
},
|
|
1306
|
+
"flute": {
|
|
1307
|
+
"const": true
|
|
1308
|
+
},
|
|
1309
|
+
"horn": {
|
|
1310
|
+
"const": true
|
|
1311
|
+
},
|
|
1312
|
+
"lute": {
|
|
1313
|
+
"const": true
|
|
1314
|
+
},
|
|
1315
|
+
"lyre": {
|
|
1316
|
+
"const": true
|
|
1317
|
+
},
|
|
1318
|
+
"pan flute": {
|
|
1319
|
+
"const": true
|
|
1320
|
+
},
|
|
1321
|
+
"shawm": {
|
|
1322
|
+
"const": true
|
|
1323
|
+
},
|
|
1324
|
+
"viol": {
|
|
1325
|
+
"const": true
|
|
1326
|
+
},
|
|
1175
1327
|
"navigator's tools": {
|
|
1176
1328
|
"const": true
|
|
1177
1329
|
},
|
|
1178
1330
|
"thieves' tools": {
|
|
1179
1331
|
"const": true
|
|
1180
1332
|
},
|
|
1333
|
+
"vehicles": {
|
|
1334
|
+
"const": true
|
|
1335
|
+
},
|
|
1336
|
+
"vehicles (air)": {
|
|
1337
|
+
"const": true
|
|
1338
|
+
},
|
|
1181
1339
|
"vehicles (land)": {
|
|
1182
1340
|
"const": true
|
|
1183
1341
|
},
|