5etools-utils 0.9.66 → 0.10.1
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/lib/TestJson.js +0 -16
- package/package.json +1 -1
- package/schema/brew/bestiary/bestiary.json +34 -13
- package/schema/brew/items-base.json +25 -1
- package/schema/brew/magicvariants.json +37 -1
- package/schema/brew-fast/bestiary/bestiary.json +34 -13
- package/schema/brew-fast/items-base.json +25 -1
- package/schema/brew-fast/magicvariants.json +37 -1
- package/schema/site/bestiary/bestiary.json +28 -10
- package/schema/site/items-base.json +25 -1
- package/schema/site/magicvariants.json +37 -1
- package/schema/site-fast/bestiary/bestiary.json +28 -10
- package/schema/site-fast/items-base.json +25 -1
- package/schema/site-fast/magicvariants.json +37 -1
- package/schema/ua/bestiary/bestiary.json +28 -10
- package/schema/ua/items-base.json +25 -1
- package/schema/ua/magicvariants.json +37 -1
- package/schema/ua-fast/bestiary/bestiary.json +28 -10
- package/schema/ua-fast/items-base.json +25 -1
- package/schema/ua-fast/magicvariants.json +37 -1
|
@@ -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.25",
|
|
4
4
|
"title": "Bestiary Schema",
|
|
5
5
|
"$id": "bestiary.json",
|
|
6
6
|
"type": "object",
|
|
@@ -313,6 +313,9 @@
|
|
|
313
313
|
"type": "string"
|
|
314
314
|
}
|
|
315
315
|
},
|
|
316
|
+
"required": [
|
|
317
|
+
"special"
|
|
318
|
+
],
|
|
316
319
|
"additionalProperties": false
|
|
317
320
|
}
|
|
318
321
|
]
|
|
@@ -360,7 +363,8 @@
|
|
|
360
363
|
"type": "string"
|
|
361
364
|
}
|
|
362
365
|
},
|
|
363
|
-
"additionalProperties": false
|
|
366
|
+
"additionalProperties": false,
|
|
367
|
+
"minProperties": 1
|
|
364
368
|
},
|
|
365
369
|
"skill": {
|
|
366
370
|
"type": "object",
|
|
@@ -487,7 +491,8 @@
|
|
|
487
491
|
}
|
|
488
492
|
}
|
|
489
493
|
},
|
|
490
|
-
"additionalProperties": false
|
|
494
|
+
"additionalProperties": false,
|
|
495
|
+
"minProperties": 1
|
|
491
496
|
},
|
|
492
497
|
"senses": {
|
|
493
498
|
"oneOf": [
|
|
@@ -495,7 +500,8 @@
|
|
|
495
500
|
"type": "array",
|
|
496
501
|
"items": {
|
|
497
502
|
"type": "string"
|
|
498
|
-
}
|
|
503
|
+
},
|
|
504
|
+
"minItems": 1
|
|
499
505
|
},
|
|
500
506
|
{
|
|
501
507
|
"type": "null"
|
|
@@ -1377,6 +1383,9 @@
|
|
|
1377
1383
|
"type": "string"
|
|
1378
1384
|
}
|
|
1379
1385
|
},
|
|
1386
|
+
"required": [
|
|
1387
|
+
"special"
|
|
1388
|
+
],
|
|
1380
1389
|
"additionalProperties": false
|
|
1381
1390
|
}
|
|
1382
1391
|
]
|
|
@@ -1424,7 +1433,8 @@
|
|
|
1424
1433
|
"type": "string"
|
|
1425
1434
|
}
|
|
1426
1435
|
},
|
|
1427
|
-
"additionalProperties": false
|
|
1436
|
+
"additionalProperties": false,
|
|
1437
|
+
"minProperties": 1
|
|
1428
1438
|
},
|
|
1429
1439
|
"skill": {
|
|
1430
1440
|
"type": "object",
|
|
@@ -1551,7 +1561,8 @@
|
|
|
1551
1561
|
}
|
|
1552
1562
|
}
|
|
1553
1563
|
},
|
|
1554
|
-
"additionalProperties": false
|
|
1564
|
+
"additionalProperties": false,
|
|
1565
|
+
"minProperties": 1
|
|
1555
1566
|
},
|
|
1556
1567
|
"senses": {
|
|
1557
1568
|
"oneOf": [
|
|
@@ -1559,7 +1570,8 @@
|
|
|
1559
1570
|
"type": "array",
|
|
1560
1571
|
"items": {
|
|
1561
1572
|
"type": "string"
|
|
1562
|
-
}
|
|
1573
|
+
},
|
|
1574
|
+
"minItems": 1
|
|
1563
1575
|
},
|
|
1564
1576
|
{
|
|
1565
1577
|
"type": "null"
|
|
@@ -2446,6 +2458,9 @@
|
|
|
2446
2458
|
"type": "string"
|
|
2447
2459
|
}
|
|
2448
2460
|
},
|
|
2461
|
+
"required": [
|
|
2462
|
+
"special"
|
|
2463
|
+
],
|
|
2449
2464
|
"additionalProperties": false
|
|
2450
2465
|
}
|
|
2451
2466
|
]
|
|
@@ -2493,7 +2508,8 @@
|
|
|
2493
2508
|
"type": "string"
|
|
2494
2509
|
}
|
|
2495
2510
|
},
|
|
2496
|
-
"additionalProperties": false
|
|
2511
|
+
"additionalProperties": false,
|
|
2512
|
+
"minProperties": 1
|
|
2497
2513
|
},
|
|
2498
2514
|
"skill": {
|
|
2499
2515
|
"type": "object",
|
|
@@ -2620,7 +2636,8 @@
|
|
|
2620
2636
|
}
|
|
2621
2637
|
}
|
|
2622
2638
|
},
|
|
2623
|
-
"additionalProperties": false
|
|
2639
|
+
"additionalProperties": false,
|
|
2640
|
+
"minProperties": 1
|
|
2624
2641
|
},
|
|
2625
2642
|
"senses": {
|
|
2626
2643
|
"oneOf": [
|
|
@@ -2628,7 +2645,8 @@
|
|
|
2628
2645
|
"type": "array",
|
|
2629
2646
|
"items": {
|
|
2630
2647
|
"type": "string"
|
|
2631
|
-
}
|
|
2648
|
+
},
|
|
2649
|
+
"minItems": 1
|
|
2632
2650
|
},
|
|
2633
2651
|
{
|
|
2634
2652
|
"type": "null"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "items-base.json",
|
|
4
|
-
"version": "1.5.
|
|
4
|
+
"version": "1.5.19",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"itemLookupBase": {
|
|
@@ -257,6 +257,14 @@
|
|
|
257
257
|
"description": "Flag used when merging generic variants",
|
|
258
258
|
"type": "boolean"
|
|
259
259
|
},
|
|
260
|
+
"bulletSling": {
|
|
261
|
+
"description": "Flag used when merging generic variants",
|
|
262
|
+
"type": "boolean"
|
|
263
|
+
},
|
|
264
|
+
"needleBlowgun": {
|
|
265
|
+
"description": "Flag used when merging generic variants",
|
|
266
|
+
"type": "boolean"
|
|
267
|
+
},
|
|
260
268
|
"weapon": {
|
|
261
269
|
"description": "Flag used when merging generic variants",
|
|
262
270
|
"type": "boolean"
|
|
@@ -551,6 +559,14 @@
|
|
|
551
559
|
"description": "Flag used when merging generic variants",
|
|
552
560
|
"type": "boolean"
|
|
553
561
|
},
|
|
562
|
+
"bulletSling": {
|
|
563
|
+
"description": "Flag used when merging generic variants",
|
|
564
|
+
"type": "boolean"
|
|
565
|
+
},
|
|
566
|
+
"needleBlowgun": {
|
|
567
|
+
"description": "Flag used when merging generic variants",
|
|
568
|
+
"type": "boolean"
|
|
569
|
+
},
|
|
554
570
|
"weapon": {
|
|
555
571
|
"description": "Flag used when merging generic variants",
|
|
556
572
|
"type": "boolean"
|
|
@@ -849,6 +865,14 @@
|
|
|
849
865
|
"description": "Flag used when merging generic variants",
|
|
850
866
|
"type": "boolean"
|
|
851
867
|
},
|
|
868
|
+
"bulletSling": {
|
|
869
|
+
"description": "Flag used when merging generic variants",
|
|
870
|
+
"type": "boolean"
|
|
871
|
+
},
|
|
872
|
+
"needleBlowgun": {
|
|
873
|
+
"description": "Flag used when merging generic variants",
|
|
874
|
+
"type": "boolean"
|
|
875
|
+
},
|
|
852
876
|
"weapon": {
|
|
853
877
|
"description": "Flag used when merging generic variants",
|
|
854
878
|
"type": "boolean"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "magicvariants.json",
|
|
4
|
-
"version": "1.8.
|
|
4
|
+
"version": "1.8.15",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"_magicvariantItemBase": {
|
|
@@ -90,6 +90,12 @@
|
|
|
90
90
|
"bolt": {
|
|
91
91
|
"type": "boolean"
|
|
92
92
|
},
|
|
93
|
+
"bulletSling": {
|
|
94
|
+
"type": "boolean"
|
|
95
|
+
},
|
|
96
|
+
"needleBlowgun": {
|
|
97
|
+
"type": "boolean"
|
|
98
|
+
},
|
|
93
99
|
"weaponCategory": {
|
|
94
100
|
"$ref": "items-shared.json#/$defs/itemWeaponCategory"
|
|
95
101
|
}
|
|
@@ -428,6 +434,12 @@
|
|
|
428
434
|
"bolt": {
|
|
429
435
|
"type": "boolean"
|
|
430
436
|
},
|
|
437
|
+
"bulletSling": {
|
|
438
|
+
"type": "boolean"
|
|
439
|
+
},
|
|
440
|
+
"needleBlowgun": {
|
|
441
|
+
"type": "boolean"
|
|
442
|
+
},
|
|
431
443
|
"weaponCategory": {
|
|
432
444
|
"$ref": "items-shared.json#/$defs/itemWeaponCategory"
|
|
433
445
|
}
|
|
@@ -557,6 +569,12 @@
|
|
|
557
569
|
"bolt": {
|
|
558
570
|
"type": "boolean"
|
|
559
571
|
},
|
|
572
|
+
"bulletSling": {
|
|
573
|
+
"type": "boolean"
|
|
574
|
+
},
|
|
575
|
+
"needleBlowgun": {
|
|
576
|
+
"type": "boolean"
|
|
577
|
+
},
|
|
560
578
|
"weaponCategory": {
|
|
561
579
|
"$ref": "items-shared.json#/$defs/itemWeaponCategory"
|
|
562
580
|
}
|
|
@@ -900,6 +918,12 @@
|
|
|
900
918
|
"bolt": {
|
|
901
919
|
"type": "boolean"
|
|
902
920
|
},
|
|
921
|
+
"bulletSling": {
|
|
922
|
+
"type": "boolean"
|
|
923
|
+
},
|
|
924
|
+
"needleBlowgun": {
|
|
925
|
+
"type": "boolean"
|
|
926
|
+
},
|
|
903
927
|
"weaponCategory": {
|
|
904
928
|
"$ref": "items-shared.json#/$defs/itemWeaponCategory"
|
|
905
929
|
}
|
|
@@ -1033,6 +1057,12 @@
|
|
|
1033
1057
|
"bolt": {
|
|
1034
1058
|
"type": "boolean"
|
|
1035
1059
|
},
|
|
1060
|
+
"bulletSling": {
|
|
1061
|
+
"type": "boolean"
|
|
1062
|
+
},
|
|
1063
|
+
"needleBlowgun": {
|
|
1064
|
+
"type": "boolean"
|
|
1065
|
+
},
|
|
1036
1066
|
"weaponCategory": {
|
|
1037
1067
|
"$ref": "items-shared.json#/$defs/itemWeaponCategory"
|
|
1038
1068
|
}
|
|
@@ -1375,6 +1405,12 @@
|
|
|
1375
1405
|
"bolt": {
|
|
1376
1406
|
"type": "boolean"
|
|
1377
1407
|
},
|
|
1408
|
+
"bulletSling": {
|
|
1409
|
+
"type": "boolean"
|
|
1410
|
+
},
|
|
1411
|
+
"needleBlowgun": {
|
|
1412
|
+
"type": "boolean"
|
|
1413
|
+
},
|
|
1378
1414
|
"weaponCategory": {
|
|
1379
1415
|
"$ref": "items-shared.json#/$defs/itemWeaponCategory"
|
|
1380
1416
|
}
|
|
@@ -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.25",
|
|
4
4
|
"title": "Bestiary Schema",
|
|
5
5
|
"$id": "bestiary.json",
|
|
6
6
|
"type": "object",
|
|
@@ -313,6 +313,9 @@
|
|
|
313
313
|
"type": "string"
|
|
314
314
|
}
|
|
315
315
|
},
|
|
316
|
+
"required": [
|
|
317
|
+
"special"
|
|
318
|
+
],
|
|
316
319
|
"additionalProperties": false
|
|
317
320
|
}
|
|
318
321
|
]
|
|
@@ -360,7 +363,8 @@
|
|
|
360
363
|
"type": "string"
|
|
361
364
|
}
|
|
362
365
|
},
|
|
363
|
-
"additionalProperties": false
|
|
366
|
+
"additionalProperties": false,
|
|
367
|
+
"minProperties": 1
|
|
364
368
|
},
|
|
365
369
|
"skill": {
|
|
366
370
|
"type": "object",
|
|
@@ -487,7 +491,8 @@
|
|
|
487
491
|
}
|
|
488
492
|
}
|
|
489
493
|
},
|
|
490
|
-
"additionalProperties": false
|
|
494
|
+
"additionalProperties": false,
|
|
495
|
+
"minProperties": 1
|
|
491
496
|
},
|
|
492
497
|
"senses": {
|
|
493
498
|
"oneOf": [
|
|
@@ -495,7 +500,8 @@
|
|
|
495
500
|
"type": "array",
|
|
496
501
|
"items": {
|
|
497
502
|
"type": "string"
|
|
498
|
-
}
|
|
503
|
+
},
|
|
504
|
+
"minItems": 1
|
|
499
505
|
},
|
|
500
506
|
{
|
|
501
507
|
"type": "null"
|
|
@@ -1377,6 +1383,9 @@
|
|
|
1377
1383
|
"type": "string"
|
|
1378
1384
|
}
|
|
1379
1385
|
},
|
|
1386
|
+
"required": [
|
|
1387
|
+
"special"
|
|
1388
|
+
],
|
|
1380
1389
|
"additionalProperties": false
|
|
1381
1390
|
}
|
|
1382
1391
|
]
|
|
@@ -1424,7 +1433,8 @@
|
|
|
1424
1433
|
"type": "string"
|
|
1425
1434
|
}
|
|
1426
1435
|
},
|
|
1427
|
-
"additionalProperties": false
|
|
1436
|
+
"additionalProperties": false,
|
|
1437
|
+
"minProperties": 1
|
|
1428
1438
|
},
|
|
1429
1439
|
"skill": {
|
|
1430
1440
|
"type": "object",
|
|
@@ -1551,7 +1561,8 @@
|
|
|
1551
1561
|
}
|
|
1552
1562
|
}
|
|
1553
1563
|
},
|
|
1554
|
-
"additionalProperties": false
|
|
1564
|
+
"additionalProperties": false,
|
|
1565
|
+
"minProperties": 1
|
|
1555
1566
|
},
|
|
1556
1567
|
"senses": {
|
|
1557
1568
|
"oneOf": [
|
|
@@ -1559,7 +1570,8 @@
|
|
|
1559
1570
|
"type": "array",
|
|
1560
1571
|
"items": {
|
|
1561
1572
|
"type": "string"
|
|
1562
|
-
}
|
|
1573
|
+
},
|
|
1574
|
+
"minItems": 1
|
|
1563
1575
|
},
|
|
1564
1576
|
{
|
|
1565
1577
|
"type": "null"
|
|
@@ -2446,6 +2458,9 @@
|
|
|
2446
2458
|
"type": "string"
|
|
2447
2459
|
}
|
|
2448
2460
|
},
|
|
2461
|
+
"required": [
|
|
2462
|
+
"special"
|
|
2463
|
+
],
|
|
2449
2464
|
"additionalProperties": false
|
|
2450
2465
|
}
|
|
2451
2466
|
]
|
|
@@ -2493,7 +2508,8 @@
|
|
|
2493
2508
|
"type": "string"
|
|
2494
2509
|
}
|
|
2495
2510
|
},
|
|
2496
|
-
"additionalProperties": false
|
|
2511
|
+
"additionalProperties": false,
|
|
2512
|
+
"minProperties": 1
|
|
2497
2513
|
},
|
|
2498
2514
|
"skill": {
|
|
2499
2515
|
"type": "object",
|
|
@@ -2620,7 +2636,8 @@
|
|
|
2620
2636
|
}
|
|
2621
2637
|
}
|
|
2622
2638
|
},
|
|
2623
|
-
"additionalProperties": false
|
|
2639
|
+
"additionalProperties": false,
|
|
2640
|
+
"minProperties": 1
|
|
2624
2641
|
},
|
|
2625
2642
|
"senses": {
|
|
2626
2643
|
"oneOf": [
|
|
@@ -2628,7 +2645,8 @@
|
|
|
2628
2645
|
"type": "array",
|
|
2629
2646
|
"items": {
|
|
2630
2647
|
"type": "string"
|
|
2631
|
-
}
|
|
2648
|
+
},
|
|
2649
|
+
"minItems": 1
|
|
2632
2650
|
},
|
|
2633
2651
|
{
|
|
2634
2652
|
"type": "null"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "items-base.json",
|
|
4
|
-
"version": "1.5.
|
|
4
|
+
"version": "1.5.19",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"itemLookupBase": {
|
|
@@ -257,6 +257,14 @@
|
|
|
257
257
|
"description": "Flag used when merging generic variants",
|
|
258
258
|
"type": "boolean"
|
|
259
259
|
},
|
|
260
|
+
"bulletSling": {
|
|
261
|
+
"description": "Flag used when merging generic variants",
|
|
262
|
+
"type": "boolean"
|
|
263
|
+
},
|
|
264
|
+
"needleBlowgun": {
|
|
265
|
+
"description": "Flag used when merging generic variants",
|
|
266
|
+
"type": "boolean"
|
|
267
|
+
},
|
|
260
268
|
"weapon": {
|
|
261
269
|
"description": "Flag used when merging generic variants",
|
|
262
270
|
"type": "boolean"
|
|
@@ -551,6 +559,14 @@
|
|
|
551
559
|
"description": "Flag used when merging generic variants",
|
|
552
560
|
"type": "boolean"
|
|
553
561
|
},
|
|
562
|
+
"bulletSling": {
|
|
563
|
+
"description": "Flag used when merging generic variants",
|
|
564
|
+
"type": "boolean"
|
|
565
|
+
},
|
|
566
|
+
"needleBlowgun": {
|
|
567
|
+
"description": "Flag used when merging generic variants",
|
|
568
|
+
"type": "boolean"
|
|
569
|
+
},
|
|
554
570
|
"weapon": {
|
|
555
571
|
"description": "Flag used when merging generic variants",
|
|
556
572
|
"type": "boolean"
|
|
@@ -849,6 +865,14 @@
|
|
|
849
865
|
"description": "Flag used when merging generic variants",
|
|
850
866
|
"type": "boolean"
|
|
851
867
|
},
|
|
868
|
+
"bulletSling": {
|
|
869
|
+
"description": "Flag used when merging generic variants",
|
|
870
|
+
"type": "boolean"
|
|
871
|
+
},
|
|
872
|
+
"needleBlowgun": {
|
|
873
|
+
"description": "Flag used when merging generic variants",
|
|
874
|
+
"type": "boolean"
|
|
875
|
+
},
|
|
852
876
|
"weapon": {
|
|
853
877
|
"description": "Flag used when merging generic variants",
|
|
854
878
|
"type": "boolean"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "magicvariants.json",
|
|
4
|
-
"version": "1.8.
|
|
4
|
+
"version": "1.8.15",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"_magicvariantItemBase": {
|
|
@@ -90,6 +90,12 @@
|
|
|
90
90
|
"bolt": {
|
|
91
91
|
"type": "boolean"
|
|
92
92
|
},
|
|
93
|
+
"bulletSling": {
|
|
94
|
+
"type": "boolean"
|
|
95
|
+
},
|
|
96
|
+
"needleBlowgun": {
|
|
97
|
+
"type": "boolean"
|
|
98
|
+
},
|
|
93
99
|
"weaponCategory": {
|
|
94
100
|
"$ref": "items-shared.json#/$defs/itemWeaponCategory"
|
|
95
101
|
}
|
|
@@ -428,6 +434,12 @@
|
|
|
428
434
|
"bolt": {
|
|
429
435
|
"type": "boolean"
|
|
430
436
|
},
|
|
437
|
+
"bulletSling": {
|
|
438
|
+
"type": "boolean"
|
|
439
|
+
},
|
|
440
|
+
"needleBlowgun": {
|
|
441
|
+
"type": "boolean"
|
|
442
|
+
},
|
|
431
443
|
"weaponCategory": {
|
|
432
444
|
"$ref": "items-shared.json#/$defs/itemWeaponCategory"
|
|
433
445
|
}
|
|
@@ -557,6 +569,12 @@
|
|
|
557
569
|
"bolt": {
|
|
558
570
|
"type": "boolean"
|
|
559
571
|
},
|
|
572
|
+
"bulletSling": {
|
|
573
|
+
"type": "boolean"
|
|
574
|
+
},
|
|
575
|
+
"needleBlowgun": {
|
|
576
|
+
"type": "boolean"
|
|
577
|
+
},
|
|
560
578
|
"weaponCategory": {
|
|
561
579
|
"$ref": "items-shared.json#/$defs/itemWeaponCategory"
|
|
562
580
|
}
|
|
@@ -900,6 +918,12 @@
|
|
|
900
918
|
"bolt": {
|
|
901
919
|
"type": "boolean"
|
|
902
920
|
},
|
|
921
|
+
"bulletSling": {
|
|
922
|
+
"type": "boolean"
|
|
923
|
+
},
|
|
924
|
+
"needleBlowgun": {
|
|
925
|
+
"type": "boolean"
|
|
926
|
+
},
|
|
903
927
|
"weaponCategory": {
|
|
904
928
|
"$ref": "items-shared.json#/$defs/itemWeaponCategory"
|
|
905
929
|
}
|
|
@@ -1033,6 +1057,12 @@
|
|
|
1033
1057
|
"bolt": {
|
|
1034
1058
|
"type": "boolean"
|
|
1035
1059
|
},
|
|
1060
|
+
"bulletSling": {
|
|
1061
|
+
"type": "boolean"
|
|
1062
|
+
},
|
|
1063
|
+
"needleBlowgun": {
|
|
1064
|
+
"type": "boolean"
|
|
1065
|
+
},
|
|
1036
1066
|
"weaponCategory": {
|
|
1037
1067
|
"$ref": "items-shared.json#/$defs/itemWeaponCategory"
|
|
1038
1068
|
}
|
|
@@ -1375,6 +1405,12 @@
|
|
|
1375
1405
|
"bolt": {
|
|
1376
1406
|
"type": "boolean"
|
|
1377
1407
|
},
|
|
1408
|
+
"bulletSling": {
|
|
1409
|
+
"type": "boolean"
|
|
1410
|
+
},
|
|
1411
|
+
"needleBlowgun": {
|
|
1412
|
+
"type": "boolean"
|
|
1413
|
+
},
|
|
1378
1414
|
"weaponCategory": {
|
|
1379
1415
|
"$ref": "items-shared.json#/$defs/itemWeaponCategory"
|
|
1380
1416
|
}
|
|
@@ -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.25",
|
|
4
4
|
"title": "Bestiary Schema",
|
|
5
5
|
"$id": "bestiary.json",
|
|
6
6
|
"type": "object",
|
|
@@ -313,6 +313,9 @@
|
|
|
313
313
|
"type": "string"
|
|
314
314
|
}
|
|
315
315
|
},
|
|
316
|
+
"required": [
|
|
317
|
+
"special"
|
|
318
|
+
],
|
|
316
319
|
"additionalProperties": false
|
|
317
320
|
}
|
|
318
321
|
]
|
|
@@ -360,7 +363,8 @@
|
|
|
360
363
|
"type": "string"
|
|
361
364
|
}
|
|
362
365
|
},
|
|
363
|
-
"additionalProperties": false
|
|
366
|
+
"additionalProperties": false,
|
|
367
|
+
"minProperties": 1
|
|
364
368
|
},
|
|
365
369
|
"skill": {
|
|
366
370
|
"type": "object",
|
|
@@ -487,7 +491,8 @@
|
|
|
487
491
|
}
|
|
488
492
|
}
|
|
489
493
|
},
|
|
490
|
-
"additionalProperties": false
|
|
494
|
+
"additionalProperties": false,
|
|
495
|
+
"minProperties": 1
|
|
491
496
|
},
|
|
492
497
|
"senses": {
|
|
493
498
|
"oneOf": [
|
|
@@ -495,7 +500,8 @@
|
|
|
495
500
|
"type": "array",
|
|
496
501
|
"items": {
|
|
497
502
|
"type": "string"
|
|
498
|
-
}
|
|
503
|
+
},
|
|
504
|
+
"minItems": 1
|
|
499
505
|
},
|
|
500
506
|
{
|
|
501
507
|
"type": "null"
|
|
@@ -1386,6 +1392,9 @@
|
|
|
1386
1392
|
"type": "string"
|
|
1387
1393
|
}
|
|
1388
1394
|
},
|
|
1395
|
+
"required": [
|
|
1396
|
+
"special"
|
|
1397
|
+
],
|
|
1389
1398
|
"additionalProperties": false
|
|
1390
1399
|
}
|
|
1391
1400
|
]
|
|
@@ -1433,7 +1442,8 @@
|
|
|
1433
1442
|
"type": "string"
|
|
1434
1443
|
}
|
|
1435
1444
|
},
|
|
1436
|
-
"additionalProperties": false
|
|
1445
|
+
"additionalProperties": false,
|
|
1446
|
+
"minProperties": 1
|
|
1437
1447
|
},
|
|
1438
1448
|
"skill": {
|
|
1439
1449
|
"type": "object",
|
|
@@ -1560,7 +1570,8 @@
|
|
|
1560
1570
|
}
|
|
1561
1571
|
}
|
|
1562
1572
|
},
|
|
1563
|
-
"additionalProperties": false
|
|
1573
|
+
"additionalProperties": false,
|
|
1574
|
+
"minProperties": 1
|
|
1564
1575
|
},
|
|
1565
1576
|
"senses": {
|
|
1566
1577
|
"oneOf": [
|
|
@@ -1568,7 +1579,8 @@
|
|
|
1568
1579
|
"type": "array",
|
|
1569
1580
|
"items": {
|
|
1570
1581
|
"type": "string"
|
|
1571
|
-
}
|
|
1582
|
+
},
|
|
1583
|
+
"minItems": 1
|
|
1572
1584
|
},
|
|
1573
1585
|
{
|
|
1574
1586
|
"type": "null"
|
|
@@ -2464,6 +2476,9 @@
|
|
|
2464
2476
|
"type": "string"
|
|
2465
2477
|
}
|
|
2466
2478
|
},
|
|
2479
|
+
"required": [
|
|
2480
|
+
"special"
|
|
2481
|
+
],
|
|
2467
2482
|
"additionalProperties": false
|
|
2468
2483
|
}
|
|
2469
2484
|
]
|
|
@@ -2511,7 +2526,8 @@
|
|
|
2511
2526
|
"type": "string"
|
|
2512
2527
|
}
|
|
2513
2528
|
},
|
|
2514
|
-
"additionalProperties": false
|
|
2529
|
+
"additionalProperties": false,
|
|
2530
|
+
"minProperties": 1
|
|
2515
2531
|
},
|
|
2516
2532
|
"skill": {
|
|
2517
2533
|
"type": "object",
|
|
@@ -2638,7 +2654,8 @@
|
|
|
2638
2654
|
}
|
|
2639
2655
|
}
|
|
2640
2656
|
},
|
|
2641
|
-
"additionalProperties": false
|
|
2657
|
+
"additionalProperties": false,
|
|
2658
|
+
"minProperties": 1
|
|
2642
2659
|
},
|
|
2643
2660
|
"senses": {
|
|
2644
2661
|
"oneOf": [
|
|
@@ -2646,7 +2663,8 @@
|
|
|
2646
2663
|
"type": "array",
|
|
2647
2664
|
"items": {
|
|
2648
2665
|
"type": "string"
|
|
2649
|
-
}
|
|
2666
|
+
},
|
|
2667
|
+
"minItems": 1
|
|
2650
2668
|
},
|
|
2651
2669
|
{
|
|
2652
2670
|
"type": "null"
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "items-base.json",
|
|
4
|
-
"version": "1.5.
|
|
4
|
+
"version": "1.5.19",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"itemLookupBase": {
|
|
@@ -257,6 +257,14 @@
|
|
|
257
257
|
"description": "Flag used when merging generic variants",
|
|
258
258
|
"type": "boolean"
|
|
259
259
|
},
|
|
260
|
+
"bulletSling": {
|
|
261
|
+
"description": "Flag used when merging generic variants",
|
|
262
|
+
"type": "boolean"
|
|
263
|
+
},
|
|
264
|
+
"needleBlowgun": {
|
|
265
|
+
"description": "Flag used when merging generic variants",
|
|
266
|
+
"type": "boolean"
|
|
267
|
+
},
|
|
260
268
|
"weapon": {
|
|
261
269
|
"description": "Flag used when merging generic variants",
|
|
262
270
|
"type": "boolean"
|
|
@@ -554,6 +562,14 @@
|
|
|
554
562
|
"description": "Flag used when merging generic variants",
|
|
555
563
|
"type": "boolean"
|
|
556
564
|
},
|
|
565
|
+
"bulletSling": {
|
|
566
|
+
"description": "Flag used when merging generic variants",
|
|
567
|
+
"type": "boolean"
|
|
568
|
+
},
|
|
569
|
+
"needleBlowgun": {
|
|
570
|
+
"description": "Flag used when merging generic variants",
|
|
571
|
+
"type": "boolean"
|
|
572
|
+
},
|
|
557
573
|
"weapon": {
|
|
558
574
|
"description": "Flag used when merging generic variants",
|
|
559
575
|
"type": "boolean"
|
|
@@ -855,6 +871,14 @@
|
|
|
855
871
|
"description": "Flag used when merging generic variants",
|
|
856
872
|
"type": "boolean"
|
|
857
873
|
},
|
|
874
|
+
"bulletSling": {
|
|
875
|
+
"description": "Flag used when merging generic variants",
|
|
876
|
+
"type": "boolean"
|
|
877
|
+
},
|
|
878
|
+
"needleBlowgun": {
|
|
879
|
+
"description": "Flag used when merging generic variants",
|
|
880
|
+
"type": "boolean"
|
|
881
|
+
},
|
|
858
882
|
"weapon": {
|
|
859
883
|
"description": "Flag used when merging generic variants",
|
|
860
884
|
"type": "boolean"
|