5etools-utils 0.12.70 → 0.12.71
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/items-base.json +10 -1
- package/schema/brew/items-shared.json +26 -1
- package/schema/brew/items.json +19 -1
- package/schema/brew/magicvariants.json +10 -1
- package/schema/brew-fast/items-base.json +10 -1
- package/schema/brew-fast/items-shared.json +26 -1
- package/schema/brew-fast/items.json +19 -1
- package/schema/brew-fast/magicvariants.json +10 -1
- package/schema/site/items-base.json +10 -1
- package/schema/site/items-shared.json +26 -1
- package/schema/site/items.json +19 -1
- package/schema/site/magicvariants.json +10 -1
- package/schema/site-fast/items-base.json +10 -1
- package/schema/site-fast/items-shared.json +26 -1
- package/schema/site-fast/items.json +19 -1
- package/schema/site-fast/magicvariants.json +10 -1
- package/schema/ua/items-base.json +10 -1
- package/schema/ua/items-shared.json +26 -1
- package/schema/ua/items.json +19 -1
- package/schema/ua/magicvariants.json +10 -1
- package/schema/ua-fast/items-base.json +10 -1
- package/schema/ua-fast/items-shared.json +26 -1
- package/schema/ua-fast/items.json +19 -1
- package/schema/ua-fast/magicvariants.json +10 -1
package/package.json
CHANGED
|
@@ -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.6.
|
|
4
|
+
"version": "1.6.9",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"itemLookupBase": {
|
|
@@ -435,6 +435,9 @@
|
|
|
435
435
|
"reach": {
|
|
436
436
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
437
437
|
},
|
|
438
|
+
"light": {
|
|
439
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
440
|
+
},
|
|
438
441
|
"hasFluff": {
|
|
439
442
|
"type": "boolean"
|
|
440
443
|
},
|
|
@@ -788,6 +791,9 @@
|
|
|
788
791
|
"reach": {
|
|
789
792
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
790
793
|
},
|
|
794
|
+
"light": {
|
|
795
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
796
|
+
},
|
|
791
797
|
"hasFluff": {
|
|
792
798
|
"type": "boolean"
|
|
793
799
|
},
|
|
@@ -1145,6 +1151,9 @@
|
|
|
1145
1151
|
"reach": {
|
|
1146
1152
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1147
1153
|
},
|
|
1154
|
+
"light": {
|
|
1155
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
1156
|
+
},
|
|
1148
1157
|
"hasFluff": {
|
|
1149
1158
|
"type": "boolean"
|
|
1150
1159
|
},
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "items-shared.json",
|
|
4
4
|
"title": "Shared Item Schema",
|
|
5
5
|
"description": "Shared item definitions to be used in item schemas.",
|
|
6
|
-
"version": "1.1.
|
|
6
|
+
"version": "1.1.7",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_itemModifySpeedEqual": {
|
|
9
9
|
"type": "string",
|
|
@@ -525,6 +525,31 @@
|
|
|
525
525
|
}
|
|
526
526
|
}
|
|
527
527
|
},
|
|
528
|
+
"itemLight": {
|
|
529
|
+
"type": "array",
|
|
530
|
+
"items": {
|
|
531
|
+
"type": "object",
|
|
532
|
+
"properties": {
|
|
533
|
+
"dim": {
|
|
534
|
+
"type": "number"
|
|
535
|
+
},
|
|
536
|
+
"bright": {
|
|
537
|
+
"type": "number"
|
|
538
|
+
},
|
|
539
|
+
"shape": {
|
|
540
|
+
"type": "string",
|
|
541
|
+
"enum": [
|
|
542
|
+
"radius",
|
|
543
|
+
"cone"
|
|
544
|
+
]
|
|
545
|
+
}
|
|
546
|
+
},
|
|
547
|
+
"minProperties": 1,
|
|
548
|
+
"additionalProperties": false
|
|
549
|
+
},
|
|
550
|
+
"minItems": 1,
|
|
551
|
+
"uniqueItems": true
|
|
552
|
+
},
|
|
528
553
|
"customProperties": {
|
|
529
554
|
"description": "An unrestricted area for custom properties to be stored.",
|
|
530
555
|
"type": "object",
|
package/schema/brew/items.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "items.json",
|
|
4
|
-
"version": "1.14.
|
|
4
|
+
"version": "1.14.19",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"itemData": {
|
|
@@ -434,6 +434,9 @@
|
|
|
434
434
|
"reach": {
|
|
435
435
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
436
436
|
},
|
|
437
|
+
"light": {
|
|
438
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
439
|
+
},
|
|
437
440
|
"barDimensions": {
|
|
438
441
|
"type": "object",
|
|
439
442
|
"description": "Values given in inches.",
|
|
@@ -951,6 +954,9 @@
|
|
|
951
954
|
"reach": {
|
|
952
955
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
953
956
|
},
|
|
957
|
+
"light": {
|
|
958
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
959
|
+
},
|
|
954
960
|
"barDimensions": {
|
|
955
961
|
"type": "object",
|
|
956
962
|
"description": "Values given in inches.",
|
|
@@ -1470,6 +1476,9 @@
|
|
|
1470
1476
|
"reach": {
|
|
1471
1477
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1472
1478
|
},
|
|
1479
|
+
"light": {
|
|
1480
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
1481
|
+
},
|
|
1473
1482
|
"barDimensions": {
|
|
1474
1483
|
"type": "object",
|
|
1475
1484
|
"description": "Values given in inches.",
|
|
@@ -1987,6 +1996,9 @@
|
|
|
1987
1996
|
"reach": {
|
|
1988
1997
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1989
1998
|
},
|
|
1999
|
+
"light": {
|
|
2000
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
2001
|
+
},
|
|
1990
2002
|
"barDimensions": {
|
|
1991
2003
|
"type": "object",
|
|
1992
2004
|
"description": "Values given in inches.",
|
|
@@ -2511,6 +2523,9 @@
|
|
|
2511
2523
|
"reach": {
|
|
2512
2524
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
2513
2525
|
},
|
|
2526
|
+
"light": {
|
|
2527
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
2528
|
+
},
|
|
2514
2529
|
"barDimensions": {
|
|
2515
2530
|
"type": "object",
|
|
2516
2531
|
"description": "Values given in inches.",
|
|
@@ -3032,6 +3047,9 @@
|
|
|
3032
3047
|
"reach": {
|
|
3033
3048
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
3034
3049
|
},
|
|
3050
|
+
"light": {
|
|
3051
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
3052
|
+
},
|
|
3035
3053
|
"barDimensions": {
|
|
3036
3054
|
"type": "object",
|
|
3037
3055
|
"description": "Values given in inches.",
|
|
@@ -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.9.
|
|
4
|
+
"version": "1.9.9",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"_magicvariantItemBase": {
|
|
@@ -405,6 +405,9 @@
|
|
|
405
405
|
"reach": {
|
|
406
406
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
407
407
|
},
|
|
408
|
+
"light": {
|
|
409
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
410
|
+
},
|
|
408
411
|
"hasRefs": {
|
|
409
412
|
"type": "boolean",
|
|
410
413
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|
|
@@ -1014,6 +1017,9 @@
|
|
|
1014
1017
|
"reach": {
|
|
1015
1018
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1016
1019
|
},
|
|
1020
|
+
"light": {
|
|
1021
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
1022
|
+
},
|
|
1017
1023
|
"hasRefs": {
|
|
1018
1024
|
"type": "boolean",
|
|
1019
1025
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|
|
@@ -1632,6 +1638,9 @@
|
|
|
1632
1638
|
"reach": {
|
|
1633
1639
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1634
1640
|
},
|
|
1641
|
+
"light": {
|
|
1642
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
1643
|
+
},
|
|
1635
1644
|
"hasRefs": {
|
|
1636
1645
|
"type": "boolean",
|
|
1637
1646
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|
|
@@ -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.6.
|
|
4
|
+
"version": "1.6.9",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"itemLookupBase": {
|
|
@@ -435,6 +435,9 @@
|
|
|
435
435
|
"reach": {
|
|
436
436
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
437
437
|
},
|
|
438
|
+
"light": {
|
|
439
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
440
|
+
},
|
|
438
441
|
"hasFluff": {
|
|
439
442
|
"type": "boolean"
|
|
440
443
|
},
|
|
@@ -788,6 +791,9 @@
|
|
|
788
791
|
"reach": {
|
|
789
792
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
790
793
|
},
|
|
794
|
+
"light": {
|
|
795
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
796
|
+
},
|
|
791
797
|
"hasFluff": {
|
|
792
798
|
"type": "boolean"
|
|
793
799
|
},
|
|
@@ -1145,6 +1151,9 @@
|
|
|
1145
1151
|
"reach": {
|
|
1146
1152
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1147
1153
|
},
|
|
1154
|
+
"light": {
|
|
1155
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
1156
|
+
},
|
|
1148
1157
|
"hasFluff": {
|
|
1149
1158
|
"type": "boolean"
|
|
1150
1159
|
},
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "items-shared.json",
|
|
4
4
|
"title": "Shared Item Schema",
|
|
5
5
|
"description": "Shared item definitions to be used in item schemas.",
|
|
6
|
-
"version": "1.1.
|
|
6
|
+
"version": "1.1.7",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_itemModifySpeedEqual": {
|
|
9
9
|
"type": "string",
|
|
@@ -525,6 +525,31 @@
|
|
|
525
525
|
}
|
|
526
526
|
}
|
|
527
527
|
},
|
|
528
|
+
"itemLight": {
|
|
529
|
+
"type": "array",
|
|
530
|
+
"items": {
|
|
531
|
+
"type": "object",
|
|
532
|
+
"properties": {
|
|
533
|
+
"dim": {
|
|
534
|
+
"type": "number"
|
|
535
|
+
},
|
|
536
|
+
"bright": {
|
|
537
|
+
"type": "number"
|
|
538
|
+
},
|
|
539
|
+
"shape": {
|
|
540
|
+
"type": "string",
|
|
541
|
+
"enum": [
|
|
542
|
+
"radius",
|
|
543
|
+
"cone"
|
|
544
|
+
]
|
|
545
|
+
}
|
|
546
|
+
},
|
|
547
|
+
"minProperties": 1,
|
|
548
|
+
"additionalProperties": false
|
|
549
|
+
},
|
|
550
|
+
"minItems": 1,
|
|
551
|
+
"uniqueItems": true
|
|
552
|
+
},
|
|
528
553
|
"customProperties": {
|
|
529
554
|
"description": "An unrestricted area for custom properties to be stored.",
|
|
530
555
|
"type": "object",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "items.json",
|
|
4
|
-
"version": "1.14.
|
|
4
|
+
"version": "1.14.19",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"itemData": {
|
|
@@ -434,6 +434,9 @@
|
|
|
434
434
|
"reach": {
|
|
435
435
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
436
436
|
},
|
|
437
|
+
"light": {
|
|
438
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
439
|
+
},
|
|
437
440
|
"barDimensions": {
|
|
438
441
|
"type": "object",
|
|
439
442
|
"description": "Values given in inches.",
|
|
@@ -951,6 +954,9 @@
|
|
|
951
954
|
"reach": {
|
|
952
955
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
953
956
|
},
|
|
957
|
+
"light": {
|
|
958
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
959
|
+
},
|
|
954
960
|
"barDimensions": {
|
|
955
961
|
"type": "object",
|
|
956
962
|
"description": "Values given in inches.",
|
|
@@ -1470,6 +1476,9 @@
|
|
|
1470
1476
|
"reach": {
|
|
1471
1477
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1472
1478
|
},
|
|
1479
|
+
"light": {
|
|
1480
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
1481
|
+
},
|
|
1473
1482
|
"barDimensions": {
|
|
1474
1483
|
"type": "object",
|
|
1475
1484
|
"description": "Values given in inches.",
|
|
@@ -1987,6 +1996,9 @@
|
|
|
1987
1996
|
"reach": {
|
|
1988
1997
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1989
1998
|
},
|
|
1999
|
+
"light": {
|
|
2000
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
2001
|
+
},
|
|
1990
2002
|
"barDimensions": {
|
|
1991
2003
|
"type": "object",
|
|
1992
2004
|
"description": "Values given in inches.",
|
|
@@ -2511,6 +2523,9 @@
|
|
|
2511
2523
|
"reach": {
|
|
2512
2524
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
2513
2525
|
},
|
|
2526
|
+
"light": {
|
|
2527
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
2528
|
+
},
|
|
2514
2529
|
"barDimensions": {
|
|
2515
2530
|
"type": "object",
|
|
2516
2531
|
"description": "Values given in inches.",
|
|
@@ -3032,6 +3047,9 @@
|
|
|
3032
3047
|
"reach": {
|
|
3033
3048
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
3034
3049
|
},
|
|
3050
|
+
"light": {
|
|
3051
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
3052
|
+
},
|
|
3035
3053
|
"barDimensions": {
|
|
3036
3054
|
"type": "object",
|
|
3037
3055
|
"description": "Values given in inches.",
|
|
@@ -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.9.
|
|
4
|
+
"version": "1.9.9",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"_magicvariantItemBase": {
|
|
@@ -405,6 +405,9 @@
|
|
|
405
405
|
"reach": {
|
|
406
406
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
407
407
|
},
|
|
408
|
+
"light": {
|
|
409
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
410
|
+
},
|
|
408
411
|
"hasRefs": {
|
|
409
412
|
"type": "boolean",
|
|
410
413
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|
|
@@ -1014,6 +1017,9 @@
|
|
|
1014
1017
|
"reach": {
|
|
1015
1018
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1016
1019
|
},
|
|
1020
|
+
"light": {
|
|
1021
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
1022
|
+
},
|
|
1017
1023
|
"hasRefs": {
|
|
1018
1024
|
"type": "boolean",
|
|
1019
1025
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|
|
@@ -1632,6 +1638,9 @@
|
|
|
1632
1638
|
"reach": {
|
|
1633
1639
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1634
1640
|
},
|
|
1641
|
+
"light": {
|
|
1642
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
1643
|
+
},
|
|
1635
1644
|
"hasRefs": {
|
|
1636
1645
|
"type": "boolean",
|
|
1637
1646
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|
|
@@ -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.6.
|
|
4
|
+
"version": "1.6.9",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"itemLookupBase": {
|
|
@@ -437,6 +437,9 @@
|
|
|
437
437
|
"reach": {
|
|
438
438
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
439
439
|
},
|
|
440
|
+
"light": {
|
|
441
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
442
|
+
},
|
|
440
443
|
"hasFluff": {
|
|
441
444
|
"type": "boolean"
|
|
442
445
|
},
|
|
@@ -750,6 +753,9 @@
|
|
|
750
753
|
"reach": {
|
|
751
754
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
752
755
|
},
|
|
756
|
+
"light": {
|
|
757
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
758
|
+
},
|
|
753
759
|
"hasFluff": {
|
|
754
760
|
"type": "boolean"
|
|
755
761
|
},
|
|
@@ -1067,6 +1073,9 @@
|
|
|
1067
1073
|
"reach": {
|
|
1068
1074
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1069
1075
|
},
|
|
1076
|
+
"light": {
|
|
1077
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
1078
|
+
},
|
|
1070
1079
|
"hasFluff": {
|
|
1071
1080
|
"type": "boolean"
|
|
1072
1081
|
},
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "items-shared.json",
|
|
4
4
|
"title": "Shared Item Schema",
|
|
5
5
|
"description": "Shared item definitions to be used in item schemas.",
|
|
6
|
-
"version": "1.1.
|
|
6
|
+
"version": "1.1.7",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_itemModifySpeedEqual": {
|
|
9
9
|
"type": "string",
|
|
@@ -524,6 +524,31 @@
|
|
|
524
524
|
"type": "integer"
|
|
525
525
|
}
|
|
526
526
|
}
|
|
527
|
+
},
|
|
528
|
+
"itemLight": {
|
|
529
|
+
"type": "array",
|
|
530
|
+
"items": {
|
|
531
|
+
"type": "object",
|
|
532
|
+
"properties": {
|
|
533
|
+
"dim": {
|
|
534
|
+
"type": "number"
|
|
535
|
+
},
|
|
536
|
+
"bright": {
|
|
537
|
+
"type": "number"
|
|
538
|
+
},
|
|
539
|
+
"shape": {
|
|
540
|
+
"type": "string",
|
|
541
|
+
"enum": [
|
|
542
|
+
"radius",
|
|
543
|
+
"cone"
|
|
544
|
+
]
|
|
545
|
+
}
|
|
546
|
+
},
|
|
547
|
+
"minProperties": 1,
|
|
548
|
+
"additionalProperties": false
|
|
549
|
+
},
|
|
550
|
+
"minItems": 1,
|
|
551
|
+
"uniqueItems": true
|
|
527
552
|
}
|
|
528
553
|
}
|
|
529
554
|
}
|
package/schema/site/items.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "items.json",
|
|
4
|
-
"version": "1.14.
|
|
4
|
+
"version": "1.14.19",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"itemData": {
|
|
@@ -434,6 +434,9 @@
|
|
|
434
434
|
"reach": {
|
|
435
435
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
436
436
|
},
|
|
437
|
+
"light": {
|
|
438
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
439
|
+
},
|
|
437
440
|
"barDimensions": {
|
|
438
441
|
"type": "object",
|
|
439
442
|
"description": "Values given in inches.",
|
|
@@ -907,6 +910,9 @@
|
|
|
907
910
|
"reach": {
|
|
908
911
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
909
912
|
},
|
|
913
|
+
"light": {
|
|
914
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
915
|
+
},
|
|
910
916
|
"barDimensions": {
|
|
911
917
|
"type": "object",
|
|
912
918
|
"description": "Values given in inches.",
|
|
@@ -1382,6 +1388,9 @@
|
|
|
1382
1388
|
"reach": {
|
|
1383
1389
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1384
1390
|
},
|
|
1391
|
+
"light": {
|
|
1392
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
1393
|
+
},
|
|
1385
1394
|
"barDimensions": {
|
|
1386
1395
|
"type": "object",
|
|
1387
1396
|
"description": "Values given in inches.",
|
|
@@ -1855,6 +1864,9 @@
|
|
|
1855
1864
|
"reach": {
|
|
1856
1865
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1857
1866
|
},
|
|
1867
|
+
"light": {
|
|
1868
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
1869
|
+
},
|
|
1858
1870
|
"barDimensions": {
|
|
1859
1871
|
"type": "object",
|
|
1860
1872
|
"description": "Values given in inches.",
|
|
@@ -2338,6 +2350,9 @@
|
|
|
2338
2350
|
"reach": {
|
|
2339
2351
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
2340
2352
|
},
|
|
2353
|
+
"light": {
|
|
2354
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
2355
|
+
},
|
|
2341
2356
|
"barDimensions": {
|
|
2342
2357
|
"type": "object",
|
|
2343
2358
|
"description": "Values given in inches.",
|
|
@@ -2815,6 +2830,9 @@
|
|
|
2815
2830
|
"reach": {
|
|
2816
2831
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
2817
2832
|
},
|
|
2833
|
+
"light": {
|
|
2834
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
2835
|
+
},
|
|
2818
2836
|
"barDimensions": {
|
|
2819
2837
|
"type": "object",
|
|
2820
2838
|
"description": "Values given in inches.",
|
|
@@ -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.9.
|
|
4
|
+
"version": "1.9.9",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"_magicvariantItemBase": {
|
|
@@ -396,6 +396,9 @@
|
|
|
396
396
|
"reach": {
|
|
397
397
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
398
398
|
},
|
|
399
|
+
"light": {
|
|
400
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
401
|
+
},
|
|
399
402
|
"hasRefs": {
|
|
400
403
|
"type": "boolean",
|
|
401
404
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|
|
@@ -961,6 +964,9 @@
|
|
|
961
964
|
"reach": {
|
|
962
965
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
963
966
|
},
|
|
967
|
+
"light": {
|
|
968
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
969
|
+
},
|
|
964
970
|
"hasRefs": {
|
|
965
971
|
"type": "boolean",
|
|
966
972
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|
|
@@ -1535,6 +1541,9 @@
|
|
|
1535
1541
|
"reach": {
|
|
1536
1542
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1537
1543
|
},
|
|
1544
|
+
"light": {
|
|
1545
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
1546
|
+
},
|
|
1538
1547
|
"hasRefs": {
|
|
1539
1548
|
"type": "boolean",
|
|
1540
1549
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|
|
@@ -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.6.
|
|
4
|
+
"version": "1.6.9",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"itemLookupBase": {
|
|
@@ -437,6 +437,9 @@
|
|
|
437
437
|
"reach": {
|
|
438
438
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
439
439
|
},
|
|
440
|
+
"light": {
|
|
441
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
442
|
+
},
|
|
440
443
|
"hasFluff": {
|
|
441
444
|
"type": "boolean"
|
|
442
445
|
},
|
|
@@ -750,6 +753,9 @@
|
|
|
750
753
|
"reach": {
|
|
751
754
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
752
755
|
},
|
|
756
|
+
"light": {
|
|
757
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
758
|
+
},
|
|
753
759
|
"hasFluff": {
|
|
754
760
|
"type": "boolean"
|
|
755
761
|
},
|
|
@@ -1067,6 +1073,9 @@
|
|
|
1067
1073
|
"reach": {
|
|
1068
1074
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1069
1075
|
},
|
|
1076
|
+
"light": {
|
|
1077
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
1078
|
+
},
|
|
1070
1079
|
"hasFluff": {
|
|
1071
1080
|
"type": "boolean"
|
|
1072
1081
|
},
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "items-shared.json",
|
|
4
4
|
"title": "Shared Item Schema",
|
|
5
5
|
"description": "Shared item definitions to be used in item schemas.",
|
|
6
|
-
"version": "1.1.
|
|
6
|
+
"version": "1.1.7",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_itemModifySpeedEqual": {
|
|
9
9
|
"type": "string",
|
|
@@ -524,6 +524,31 @@
|
|
|
524
524
|
"type": "integer"
|
|
525
525
|
}
|
|
526
526
|
}
|
|
527
|
+
},
|
|
528
|
+
"itemLight": {
|
|
529
|
+
"type": "array",
|
|
530
|
+
"items": {
|
|
531
|
+
"type": "object",
|
|
532
|
+
"properties": {
|
|
533
|
+
"dim": {
|
|
534
|
+
"type": "number"
|
|
535
|
+
},
|
|
536
|
+
"bright": {
|
|
537
|
+
"type": "number"
|
|
538
|
+
},
|
|
539
|
+
"shape": {
|
|
540
|
+
"type": "string",
|
|
541
|
+
"enum": [
|
|
542
|
+
"radius",
|
|
543
|
+
"cone"
|
|
544
|
+
]
|
|
545
|
+
}
|
|
546
|
+
},
|
|
547
|
+
"minProperties": 1,
|
|
548
|
+
"additionalProperties": false
|
|
549
|
+
},
|
|
550
|
+
"minItems": 1,
|
|
551
|
+
"uniqueItems": true
|
|
527
552
|
}
|
|
528
553
|
}
|
|
529
554
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "items.json",
|
|
4
|
-
"version": "1.14.
|
|
4
|
+
"version": "1.14.19",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"itemData": {
|
|
@@ -434,6 +434,9 @@
|
|
|
434
434
|
"reach": {
|
|
435
435
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
436
436
|
},
|
|
437
|
+
"light": {
|
|
438
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
439
|
+
},
|
|
437
440
|
"barDimensions": {
|
|
438
441
|
"type": "object",
|
|
439
442
|
"description": "Values given in inches.",
|
|
@@ -907,6 +910,9 @@
|
|
|
907
910
|
"reach": {
|
|
908
911
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
909
912
|
},
|
|
913
|
+
"light": {
|
|
914
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
915
|
+
},
|
|
910
916
|
"barDimensions": {
|
|
911
917
|
"type": "object",
|
|
912
918
|
"description": "Values given in inches.",
|
|
@@ -1382,6 +1388,9 @@
|
|
|
1382
1388
|
"reach": {
|
|
1383
1389
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1384
1390
|
},
|
|
1391
|
+
"light": {
|
|
1392
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
1393
|
+
},
|
|
1385
1394
|
"barDimensions": {
|
|
1386
1395
|
"type": "object",
|
|
1387
1396
|
"description": "Values given in inches.",
|
|
@@ -1855,6 +1864,9 @@
|
|
|
1855
1864
|
"reach": {
|
|
1856
1865
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1857
1866
|
},
|
|
1867
|
+
"light": {
|
|
1868
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
1869
|
+
},
|
|
1858
1870
|
"barDimensions": {
|
|
1859
1871
|
"type": "object",
|
|
1860
1872
|
"description": "Values given in inches.",
|
|
@@ -2338,6 +2350,9 @@
|
|
|
2338
2350
|
"reach": {
|
|
2339
2351
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
2340
2352
|
},
|
|
2353
|
+
"light": {
|
|
2354
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
2355
|
+
},
|
|
2341
2356
|
"barDimensions": {
|
|
2342
2357
|
"type": "object",
|
|
2343
2358
|
"description": "Values given in inches.",
|
|
@@ -2815,6 +2830,9 @@
|
|
|
2815
2830
|
"reach": {
|
|
2816
2831
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
2817
2832
|
},
|
|
2833
|
+
"light": {
|
|
2834
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
2835
|
+
},
|
|
2818
2836
|
"barDimensions": {
|
|
2819
2837
|
"type": "object",
|
|
2820
2838
|
"description": "Values given in inches.",
|
|
@@ -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.9.
|
|
4
|
+
"version": "1.9.9",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"_magicvariantItemBase": {
|
|
@@ -396,6 +396,9 @@
|
|
|
396
396
|
"reach": {
|
|
397
397
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
398
398
|
},
|
|
399
|
+
"light": {
|
|
400
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
401
|
+
},
|
|
399
402
|
"hasRefs": {
|
|
400
403
|
"type": "boolean",
|
|
401
404
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|
|
@@ -961,6 +964,9 @@
|
|
|
961
964
|
"reach": {
|
|
962
965
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
963
966
|
},
|
|
967
|
+
"light": {
|
|
968
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
969
|
+
},
|
|
964
970
|
"hasRefs": {
|
|
965
971
|
"type": "boolean",
|
|
966
972
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|
|
@@ -1535,6 +1541,9 @@
|
|
|
1535
1541
|
"reach": {
|
|
1536
1542
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1537
1543
|
},
|
|
1544
|
+
"light": {
|
|
1545
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
1546
|
+
},
|
|
1538
1547
|
"hasRefs": {
|
|
1539
1548
|
"type": "boolean",
|
|
1540
1549
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|
|
@@ -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.6.
|
|
4
|
+
"version": "1.6.9",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"itemLookupBase": {
|
|
@@ -437,6 +437,9 @@
|
|
|
437
437
|
"reach": {
|
|
438
438
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
439
439
|
},
|
|
440
|
+
"light": {
|
|
441
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
442
|
+
},
|
|
440
443
|
"hasFluff": {
|
|
441
444
|
"type": "boolean"
|
|
442
445
|
},
|
|
@@ -753,6 +756,9 @@
|
|
|
753
756
|
"reach": {
|
|
754
757
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
755
758
|
},
|
|
759
|
+
"light": {
|
|
760
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
761
|
+
},
|
|
756
762
|
"hasFluff": {
|
|
757
763
|
"type": "boolean"
|
|
758
764
|
},
|
|
@@ -1073,6 +1079,9 @@
|
|
|
1073
1079
|
"reach": {
|
|
1074
1080
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1075
1081
|
},
|
|
1082
|
+
"light": {
|
|
1083
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
1084
|
+
},
|
|
1076
1085
|
"hasFluff": {
|
|
1077
1086
|
"type": "boolean"
|
|
1078
1087
|
},
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "items-shared.json",
|
|
4
4
|
"title": "Shared Item Schema",
|
|
5
5
|
"description": "Shared item definitions to be used in item schemas.",
|
|
6
|
-
"version": "1.1.
|
|
6
|
+
"version": "1.1.7",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_itemModifySpeedEqual": {
|
|
9
9
|
"type": "string",
|
|
@@ -525,6 +525,31 @@
|
|
|
525
525
|
}
|
|
526
526
|
}
|
|
527
527
|
},
|
|
528
|
+
"itemLight": {
|
|
529
|
+
"type": "array",
|
|
530
|
+
"items": {
|
|
531
|
+
"type": "object",
|
|
532
|
+
"properties": {
|
|
533
|
+
"dim": {
|
|
534
|
+
"type": "number"
|
|
535
|
+
},
|
|
536
|
+
"bright": {
|
|
537
|
+
"type": "number"
|
|
538
|
+
},
|
|
539
|
+
"shape": {
|
|
540
|
+
"type": "string",
|
|
541
|
+
"enum": [
|
|
542
|
+
"radius",
|
|
543
|
+
"cone"
|
|
544
|
+
]
|
|
545
|
+
}
|
|
546
|
+
},
|
|
547
|
+
"minProperties": 1,
|
|
548
|
+
"additionalProperties": false
|
|
549
|
+
},
|
|
550
|
+
"minItems": 1,
|
|
551
|
+
"uniqueItems": true
|
|
552
|
+
},
|
|
528
553
|
"customProperties": {
|
|
529
554
|
"description": "An unrestricted area for custom properties to be stored.",
|
|
530
555
|
"type": "object",
|
package/schema/ua/items.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "items.json",
|
|
4
|
-
"version": "1.14.
|
|
4
|
+
"version": "1.14.19",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"itemData": {
|
|
@@ -434,6 +434,9 @@
|
|
|
434
434
|
"reach": {
|
|
435
435
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
436
436
|
},
|
|
437
|
+
"light": {
|
|
438
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
439
|
+
},
|
|
437
440
|
"barDimensions": {
|
|
438
441
|
"type": "object",
|
|
439
442
|
"description": "Values given in inches.",
|
|
@@ -910,6 +913,9 @@
|
|
|
910
913
|
"reach": {
|
|
911
914
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
912
915
|
},
|
|
916
|
+
"light": {
|
|
917
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
918
|
+
},
|
|
913
919
|
"barDimensions": {
|
|
914
920
|
"type": "object",
|
|
915
921
|
"description": "Values given in inches.",
|
|
@@ -1388,6 +1394,9 @@
|
|
|
1388
1394
|
"reach": {
|
|
1389
1395
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1390
1396
|
},
|
|
1397
|
+
"light": {
|
|
1398
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
1399
|
+
},
|
|
1391
1400
|
"barDimensions": {
|
|
1392
1401
|
"type": "object",
|
|
1393
1402
|
"description": "Values given in inches.",
|
|
@@ -1864,6 +1873,9 @@
|
|
|
1864
1873
|
"reach": {
|
|
1865
1874
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1866
1875
|
},
|
|
1876
|
+
"light": {
|
|
1877
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
1878
|
+
},
|
|
1867
1879
|
"barDimensions": {
|
|
1868
1880
|
"type": "object",
|
|
1869
1881
|
"description": "Values given in inches.",
|
|
@@ -2350,6 +2362,9 @@
|
|
|
2350
2362
|
"reach": {
|
|
2351
2363
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
2352
2364
|
},
|
|
2365
|
+
"light": {
|
|
2366
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
2367
|
+
},
|
|
2353
2368
|
"barDimensions": {
|
|
2354
2369
|
"type": "object",
|
|
2355
2370
|
"description": "Values given in inches.",
|
|
@@ -2830,6 +2845,9 @@
|
|
|
2830
2845
|
"reach": {
|
|
2831
2846
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
2832
2847
|
},
|
|
2848
|
+
"light": {
|
|
2849
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
2850
|
+
},
|
|
2833
2851
|
"barDimensions": {
|
|
2834
2852
|
"type": "object",
|
|
2835
2853
|
"description": "Values given in inches.",
|
|
@@ -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.9.
|
|
4
|
+
"version": "1.9.9",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"_magicvariantItemBase": {
|
|
@@ -405,6 +405,9 @@
|
|
|
405
405
|
"reach": {
|
|
406
406
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
407
407
|
},
|
|
408
|
+
"light": {
|
|
409
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
410
|
+
},
|
|
408
411
|
"hasRefs": {
|
|
409
412
|
"type": "boolean",
|
|
410
413
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|
|
@@ -989,6 +992,9 @@
|
|
|
989
992
|
"reach": {
|
|
990
993
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
991
994
|
},
|
|
995
|
+
"light": {
|
|
996
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
997
|
+
},
|
|
992
998
|
"hasRefs": {
|
|
993
999
|
"type": "boolean",
|
|
994
1000
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|
|
@@ -1582,6 +1588,9 @@
|
|
|
1582
1588
|
"reach": {
|
|
1583
1589
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1584
1590
|
},
|
|
1591
|
+
"light": {
|
|
1592
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
1593
|
+
},
|
|
1585
1594
|
"hasRefs": {
|
|
1586
1595
|
"type": "boolean",
|
|
1587
1596
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|
|
@@ -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.6.
|
|
4
|
+
"version": "1.6.9",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"itemLookupBase": {
|
|
@@ -437,6 +437,9 @@
|
|
|
437
437
|
"reach": {
|
|
438
438
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
439
439
|
},
|
|
440
|
+
"light": {
|
|
441
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
442
|
+
},
|
|
440
443
|
"hasFluff": {
|
|
441
444
|
"type": "boolean"
|
|
442
445
|
},
|
|
@@ -753,6 +756,9 @@
|
|
|
753
756
|
"reach": {
|
|
754
757
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
755
758
|
},
|
|
759
|
+
"light": {
|
|
760
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
761
|
+
},
|
|
756
762
|
"hasFluff": {
|
|
757
763
|
"type": "boolean"
|
|
758
764
|
},
|
|
@@ -1073,6 +1079,9 @@
|
|
|
1073
1079
|
"reach": {
|
|
1074
1080
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1075
1081
|
},
|
|
1082
|
+
"light": {
|
|
1083
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
1084
|
+
},
|
|
1076
1085
|
"hasFluff": {
|
|
1077
1086
|
"type": "boolean"
|
|
1078
1087
|
},
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"$id": "items-shared.json",
|
|
4
4
|
"title": "Shared Item Schema",
|
|
5
5
|
"description": "Shared item definitions to be used in item schemas.",
|
|
6
|
-
"version": "1.1.
|
|
6
|
+
"version": "1.1.7",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_itemModifySpeedEqual": {
|
|
9
9
|
"type": "string",
|
|
@@ -525,6 +525,31 @@
|
|
|
525
525
|
}
|
|
526
526
|
}
|
|
527
527
|
},
|
|
528
|
+
"itemLight": {
|
|
529
|
+
"type": "array",
|
|
530
|
+
"items": {
|
|
531
|
+
"type": "object",
|
|
532
|
+
"properties": {
|
|
533
|
+
"dim": {
|
|
534
|
+
"type": "number"
|
|
535
|
+
},
|
|
536
|
+
"bright": {
|
|
537
|
+
"type": "number"
|
|
538
|
+
},
|
|
539
|
+
"shape": {
|
|
540
|
+
"type": "string",
|
|
541
|
+
"enum": [
|
|
542
|
+
"radius",
|
|
543
|
+
"cone"
|
|
544
|
+
]
|
|
545
|
+
}
|
|
546
|
+
},
|
|
547
|
+
"minProperties": 1,
|
|
548
|
+
"additionalProperties": false
|
|
549
|
+
},
|
|
550
|
+
"minItems": 1,
|
|
551
|
+
"uniqueItems": true
|
|
552
|
+
},
|
|
528
553
|
"customProperties": {
|
|
529
554
|
"description": "An unrestricted area for custom properties to be stored.",
|
|
530
555
|
"type": "object",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "items.json",
|
|
4
|
-
"version": "1.14.
|
|
4
|
+
"version": "1.14.19",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"itemData": {
|
|
@@ -434,6 +434,9 @@
|
|
|
434
434
|
"reach": {
|
|
435
435
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
436
436
|
},
|
|
437
|
+
"light": {
|
|
438
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
439
|
+
},
|
|
437
440
|
"barDimensions": {
|
|
438
441
|
"type": "object",
|
|
439
442
|
"description": "Values given in inches.",
|
|
@@ -910,6 +913,9 @@
|
|
|
910
913
|
"reach": {
|
|
911
914
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
912
915
|
},
|
|
916
|
+
"light": {
|
|
917
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
918
|
+
},
|
|
913
919
|
"barDimensions": {
|
|
914
920
|
"type": "object",
|
|
915
921
|
"description": "Values given in inches.",
|
|
@@ -1388,6 +1394,9 @@
|
|
|
1388
1394
|
"reach": {
|
|
1389
1395
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1390
1396
|
},
|
|
1397
|
+
"light": {
|
|
1398
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
1399
|
+
},
|
|
1391
1400
|
"barDimensions": {
|
|
1392
1401
|
"type": "object",
|
|
1393
1402
|
"description": "Values given in inches.",
|
|
@@ -1864,6 +1873,9 @@
|
|
|
1864
1873
|
"reach": {
|
|
1865
1874
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1866
1875
|
},
|
|
1876
|
+
"light": {
|
|
1877
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
1878
|
+
},
|
|
1867
1879
|
"barDimensions": {
|
|
1868
1880
|
"type": "object",
|
|
1869
1881
|
"description": "Values given in inches.",
|
|
@@ -2350,6 +2362,9 @@
|
|
|
2350
2362
|
"reach": {
|
|
2351
2363
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
2352
2364
|
},
|
|
2365
|
+
"light": {
|
|
2366
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
2367
|
+
},
|
|
2353
2368
|
"barDimensions": {
|
|
2354
2369
|
"type": "object",
|
|
2355
2370
|
"description": "Values given in inches.",
|
|
@@ -2830,6 +2845,9 @@
|
|
|
2830
2845
|
"reach": {
|
|
2831
2846
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
2832
2847
|
},
|
|
2848
|
+
"light": {
|
|
2849
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
2850
|
+
},
|
|
2833
2851
|
"barDimensions": {
|
|
2834
2852
|
"type": "object",
|
|
2835
2853
|
"description": "Values given in inches.",
|
|
@@ -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.9.
|
|
4
|
+
"version": "1.9.9",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"_magicvariantItemBase": {
|
|
@@ -405,6 +405,9 @@
|
|
|
405
405
|
"reach": {
|
|
406
406
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
407
407
|
},
|
|
408
|
+
"light": {
|
|
409
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
410
|
+
},
|
|
408
411
|
"hasRefs": {
|
|
409
412
|
"type": "boolean",
|
|
410
413
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|
|
@@ -989,6 +992,9 @@
|
|
|
989
992
|
"reach": {
|
|
990
993
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
991
994
|
},
|
|
995
|
+
"light": {
|
|
996
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
997
|
+
},
|
|
992
998
|
"hasRefs": {
|
|
993
999
|
"type": "boolean",
|
|
994
1000
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|
|
@@ -1582,6 +1588,9 @@
|
|
|
1582
1588
|
"reach": {
|
|
1583
1589
|
"$ref": "items-shared.json#/$defs/itemReach"
|
|
1584
1590
|
},
|
|
1591
|
+
"light": {
|
|
1592
|
+
"$ref": "items-shared.json#/$defs/itemLight"
|
|
1593
|
+
},
|
|
1585
1594
|
"hasRefs": {
|
|
1586
1595
|
"type": "boolean",
|
|
1587
1596
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|