5etools-utils 0.9.22 → 0.9.23

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.
Files changed (43) hide show
  1. package/package.json +1 -1
  2. package/schema/brew/bestiary/bestiary.json +19 -1
  3. package/schema/brew/foundry-shared.json +6 -0
  4. package/schema/brew/items.json +1 -1
  5. package/schema/brew/magicvariants.json +1 -1
  6. package/schema/brew/objects.json +4 -1
  7. package/schema/brew/util.json +2 -1
  8. package/schema/brew/vehicles.json +10 -1
  9. package/schema/brew-fast/bestiary/bestiary.json +19 -1
  10. package/schema/brew-fast/foundry-shared.json +6 -0
  11. package/schema/brew-fast/items.json +1 -1
  12. package/schema/brew-fast/magicvariants.json +1 -1
  13. package/schema/brew-fast/objects.json +4 -1
  14. package/schema/brew-fast/util.json +2 -1
  15. package/schema/brew-fast/vehicles.json +10 -1
  16. package/schema/site/bestiary/bestiary.json +10 -1
  17. package/schema/site/foundry-shared.json +6 -0
  18. package/schema/site/items.json +1 -1
  19. package/schema/site/magicvariants.json +1 -1
  20. package/schema/site/objects.json +4 -1
  21. package/schema/site/util.json +2 -1
  22. package/schema/site/vehicles.json +1 -1
  23. package/schema/site-fast/bestiary/bestiary.json +10 -1
  24. package/schema/site-fast/foundry-shared.json +6 -0
  25. package/schema/site-fast/items.json +1 -1
  26. package/schema/site-fast/magicvariants.json +1 -1
  27. package/schema/site-fast/objects.json +4 -1
  28. package/schema/site-fast/util.json +2 -1
  29. package/schema/site-fast/vehicles.json +1 -1
  30. package/schema/ua/bestiary/bestiary.json +10 -1
  31. package/schema/ua/foundry-shared.json +6 -0
  32. package/schema/ua/items.json +1 -1
  33. package/schema/ua/magicvariants.json +1 -1
  34. package/schema/ua/objects.json +4 -1
  35. package/schema/ua/util.json +2 -1
  36. package/schema/ua/vehicles.json +1 -1
  37. package/schema/ua-fast/bestiary/bestiary.json +10 -1
  38. package/schema/ua-fast/foundry-shared.json +6 -0
  39. package/schema/ua-fast/items.json +1 -1
  40. package/schema/ua-fast/magicvariants.json +1 -1
  41. package/schema/ua-fast/objects.json +4 -1
  42. package/schema/ua-fast/util.json +2 -1
  43. package/schema/ua-fast/vehicles.json +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "5etools-utils",
3
- "version": "0.9.22",
3
+ "version": "0.9.23",
4
4
  "description": "Shared utilities for the 5etools ecosystem.",
5
5
  "type": "module",
6
6
  "main": "lib/Api.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.21.20",
3
+ "version": "1.21.21",
4
4
  "title": "Bestiary Schema",
5
5
  "$id": "bestiary.json",
6
6
  "type": "object",
@@ -867,6 +867,9 @@
867
867
  "tokenUrl": {
868
868
  "type": "string"
869
869
  },
870
+ "foundryTokenScale": {
871
+ "$ref": "../foundry-shared.json#/$defs/foundryTokenScale"
872
+ },
870
873
  "altArt": {
871
874
  "type": "array",
872
875
  "items": {
@@ -895,6 +898,9 @@
895
898
  "properties": {
896
899
  "tokenUrl": {
897
900
  "type": "string"
901
+ },
902
+ "foundryTokenScale": {
903
+ "$ref": "../foundry-shared.json#/$defs/foundryTokenScale"
898
904
  }
899
905
  },
900
906
  "required": [
@@ -2049,6 +2055,9 @@
2049
2055
  "tokenUrl": {
2050
2056
  "type": "string"
2051
2057
  },
2058
+ "foundryTokenScale": {
2059
+ "$ref": "../foundry-shared.json#/$defs/foundryTokenScale"
2060
+ },
2052
2061
  "altArt": {
2053
2062
  "type": "array",
2054
2063
  "items": {
@@ -2077,6 +2086,9 @@
2077
2086
  "properties": {
2078
2087
  "tokenUrl": {
2079
2088
  "type": "string"
2089
+ },
2090
+ "foundryTokenScale": {
2091
+ "$ref": "../foundry-shared.json#/$defs/foundryTokenScale"
2080
2092
  }
2081
2093
  },
2082
2094
  "required": [
@@ -3245,6 +3257,9 @@
3245
3257
  "tokenUrl": {
3246
3258
  "type": "string"
3247
3259
  },
3260
+ "foundryTokenScale": {
3261
+ "$ref": "../foundry-shared.json#/$defs/foundryTokenScale"
3262
+ },
3248
3263
  "altArt": {
3249
3264
  "type": "array",
3250
3265
  "items": {
@@ -3273,6 +3288,9 @@
3273
3288
  "properties": {
3274
3289
  "tokenUrl": {
3275
3290
  "type": "string"
3291
+ },
3292
+ "foundryTokenScale": {
3293
+ "$ref": "../foundry-shared.json#/$defs/foundryTokenScale"
3276
3294
  }
3277
3295
  },
3278
3296
  "required": [
@@ -49,6 +49,12 @@
49
49
  }
50
50
  },
51
51
  "additionalProperties": false
52
+ },
53
+ "foundryTokenScale": {
54
+ "type": "number",
55
+ "minimum": 0.2,
56
+ "maximum": 3,
57
+ "multipleOf": 0.1
52
58
  }
53
59
  }
54
60
  }
@@ -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",
4
+ "version": "1.14.5",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "itemData": {
@@ -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.7",
4
+ "version": "1.8.8",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "magicvariant": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "objects.json",
4
- "version": "1.2.8",
4
+ "version": "1.2.9",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "object": {
@@ -124,6 +124,9 @@
124
124
  "tokenUrl": {
125
125
  "type": "string"
126
126
  },
127
+ "foundryTokenScale": {
128
+ "$ref": "foundry-shared.json#/$defs/foundryTokenScale"
129
+ },
127
130
  "srd": {
128
131
  "$ref": "util.json#/$defs/srd"
129
132
  },
@@ -4161,7 +4161,8 @@
4161
4161
  "const": true
4162
4162
  }
4163
4163
  }
4164
- }
4164
+ },
4165
+ "uniqueItems": true
4165
4166
  },
4166
4167
  "adventureBookData": {
4167
4168
  "type": "array",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "vehicles.json",
4
- "version": "1.7.2",
4
+ "version": "1.7.3",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "vehicleTerrain": {
@@ -454,6 +454,9 @@
454
454
  "tokenUrl": {
455
455
  "type": "string"
456
456
  },
457
+ "foundryTokenScale": {
458
+ "$ref": "foundry-shared.json#/$defs/foundryTokenScale"
459
+ },
457
460
  "foundrySystem": {
458
461
  "$ref": "util.json#/$defs/foundrySystemObject"
459
462
  },
@@ -630,6 +633,9 @@
630
633
  "tokenUrl": {
631
634
  "type": "string"
632
635
  },
636
+ "foundryTokenScale": {
637
+ "$ref": "foundry-shared.json#/$defs/foundryTokenScale"
638
+ },
633
639
  "foundrySystem": {
634
640
  "$ref": "util.json#/$defs/foundrySystemObject"
635
641
  },
@@ -806,6 +812,9 @@
806
812
  "tokenUrl": {
807
813
  "type": "string"
808
814
  },
815
+ "foundryTokenScale": {
816
+ "$ref": "foundry-shared.json#/$defs/foundryTokenScale"
817
+ },
809
818
  "foundrySystem": {
810
819
  "$ref": "util.json#/$defs/foundrySystemObject"
811
820
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.21.20",
3
+ "version": "1.21.21",
4
4
  "title": "Bestiary Schema",
5
5
  "$id": "bestiary.json",
6
6
  "type": "object",
@@ -867,6 +867,9 @@
867
867
  "tokenUrl": {
868
868
  "type": "string"
869
869
  },
870
+ "foundryTokenScale": {
871
+ "$ref": "../foundry-shared.json#/$defs/foundryTokenScale"
872
+ },
870
873
  "altArt": {
871
874
  "type": "array",
872
875
  "items": {
@@ -895,6 +898,9 @@
895
898
  "properties": {
896
899
  "tokenUrl": {
897
900
  "type": "string"
901
+ },
902
+ "foundryTokenScale": {
903
+ "$ref": "../foundry-shared.json#/$defs/foundryTokenScale"
898
904
  }
899
905
  },
900
906
  "required": [
@@ -2049,6 +2055,9 @@
2049
2055
  "tokenUrl": {
2050
2056
  "type": "string"
2051
2057
  },
2058
+ "foundryTokenScale": {
2059
+ "$ref": "../foundry-shared.json#/$defs/foundryTokenScale"
2060
+ },
2052
2061
  "altArt": {
2053
2062
  "type": "array",
2054
2063
  "items": {
@@ -2077,6 +2086,9 @@
2077
2086
  "properties": {
2078
2087
  "tokenUrl": {
2079
2088
  "type": "string"
2089
+ },
2090
+ "foundryTokenScale": {
2091
+ "$ref": "../foundry-shared.json#/$defs/foundryTokenScale"
2080
2092
  }
2081
2093
  },
2082
2094
  "required": [
@@ -3245,6 +3257,9 @@
3245
3257
  "tokenUrl": {
3246
3258
  "type": "string"
3247
3259
  },
3260
+ "foundryTokenScale": {
3261
+ "$ref": "../foundry-shared.json#/$defs/foundryTokenScale"
3262
+ },
3248
3263
  "altArt": {
3249
3264
  "type": "array",
3250
3265
  "items": {
@@ -3273,6 +3288,9 @@
3273
3288
  "properties": {
3274
3289
  "tokenUrl": {
3275
3290
  "type": "string"
3291
+ },
3292
+ "foundryTokenScale": {
3293
+ "$ref": "../foundry-shared.json#/$defs/foundryTokenScale"
3276
3294
  }
3277
3295
  },
3278
3296
  "required": [
@@ -49,6 +49,12 @@
49
49
  }
50
50
  },
51
51
  "additionalProperties": false
52
+ },
53
+ "foundryTokenScale": {
54
+ "type": "number",
55
+ "minimum": 0.2,
56
+ "maximum": 3,
57
+ "multipleOf": 0.1
52
58
  }
53
59
  }
54
60
  }
@@ -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",
4
+ "version": "1.14.5",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "itemData": {
@@ -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.7",
4
+ "version": "1.8.8",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "magicvariant": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "objects.json",
4
- "version": "1.2.8",
4
+ "version": "1.2.9",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "object": {
@@ -124,6 +124,9 @@
124
124
  "tokenUrl": {
125
125
  "type": "string"
126
126
  },
127
+ "foundryTokenScale": {
128
+ "$ref": "foundry-shared.json#/$defs/foundryTokenScale"
129
+ },
127
130
  "srd": {
128
131
  "$ref": "util.json#/$defs/srd"
129
132
  },
@@ -4161,7 +4161,8 @@
4161
4161
  "const": true
4162
4162
  }
4163
4163
  }
4164
- }
4164
+ },
4165
+ "uniqueItems": true
4165
4166
  },
4166
4167
  "adventureBookData": {
4167
4168
  "type": "array",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "vehicles.json",
4
- "version": "1.7.2",
4
+ "version": "1.7.3",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "vehicleTerrain": {
@@ -454,6 +454,9 @@
454
454
  "tokenUrl": {
455
455
  "type": "string"
456
456
  },
457
+ "foundryTokenScale": {
458
+ "$ref": "foundry-shared.json#/$defs/foundryTokenScale"
459
+ },
457
460
  "foundrySystem": {
458
461
  "$ref": "util.json#/$defs/foundrySystemObject"
459
462
  },
@@ -630,6 +633,9 @@
630
633
  "tokenUrl": {
631
634
  "type": "string"
632
635
  },
636
+ "foundryTokenScale": {
637
+ "$ref": "foundry-shared.json#/$defs/foundryTokenScale"
638
+ },
633
639
  "foundrySystem": {
634
640
  "$ref": "util.json#/$defs/foundrySystemObject"
635
641
  },
@@ -806,6 +812,9 @@
806
812
  "tokenUrl": {
807
813
  "type": "string"
808
814
  },
815
+ "foundryTokenScale": {
816
+ "$ref": "foundry-shared.json#/$defs/foundryTokenScale"
817
+ },
809
818
  "foundrySystem": {
810
819
  "$ref": "util.json#/$defs/foundrySystemObject"
811
820
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.21.20",
3
+ "version": "1.21.21",
4
4
  "title": "Bestiary Schema",
5
5
  "$id": "bestiary.json",
6
6
  "type": "object",
@@ -859,6 +859,9 @@
859
859
  "tokenUrl": {
860
860
  "type": "string"
861
861
  },
862
+ "foundryTokenScale": {
863
+ "$ref": "../foundry-shared.json#/$defs/foundryTokenScale"
864
+ },
862
865
  "altArt": {
863
866
  "type": "array",
864
867
  "items": {
@@ -1942,6 +1945,9 @@
1942
1945
  "tokenUrl": {
1943
1946
  "type": "string"
1944
1947
  },
1948
+ "foundryTokenScale": {
1949
+ "$ref": "../foundry-shared.json#/$defs/foundryTokenScale"
1950
+ },
1945
1951
  "altArt": {
1946
1952
  "type": "array",
1947
1953
  "items": {
@@ -3039,6 +3045,9 @@
3039
3045
  "tokenUrl": {
3040
3046
  "type": "string"
3041
3047
  },
3048
+ "foundryTokenScale": {
3049
+ "$ref": "../foundry-shared.json#/$defs/foundryTokenScale"
3050
+ },
3042
3051
  "altArt": {
3043
3052
  "type": "array",
3044
3053
  "items": {
@@ -49,6 +49,12 @@
49
49
  }
50
50
  },
51
51
  "additionalProperties": false
52
+ },
53
+ "foundryTokenScale": {
54
+ "type": "number",
55
+ "minimum": 0.2,
56
+ "maximum": 3,
57
+ "multipleOf": 0.1
52
58
  }
53
59
  }
54
60
  }
@@ -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",
4
+ "version": "1.14.5",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "itemData": {
@@ -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.7",
4
+ "version": "1.8.8",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "magicvariant": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "objects.json",
4
- "version": "1.2.8",
4
+ "version": "1.2.9",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "object": {
@@ -124,6 +124,9 @@
124
124
  "tokenUrl": {
125
125
  "type": "string"
126
126
  },
127
+ "foundryTokenScale": {
128
+ "$ref": "foundry-shared.json#/$defs/foundryTokenScale"
129
+ },
127
130
  "srd": {
128
131
  "$ref": "util.json#/$defs/srd"
129
132
  },
@@ -4140,7 +4140,8 @@
4140
4140
  "const": true
4141
4141
  }
4142
4142
  }
4143
- }
4143
+ },
4144
+ "uniqueItems": true
4144
4145
  },
4145
4146
  "adventureBookData": {
4146
4147
  "type": "array",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "vehicles.json",
4
- "version": "1.7.2",
4
+ "version": "1.7.3",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "vehicleTerrain": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.21.20",
3
+ "version": "1.21.21",
4
4
  "title": "Bestiary Schema",
5
5
  "$id": "bestiary.json",
6
6
  "type": "object",
@@ -859,6 +859,9 @@
859
859
  "tokenUrl": {
860
860
  "type": "string"
861
861
  },
862
+ "foundryTokenScale": {
863
+ "$ref": "../foundry-shared.json#/$defs/foundryTokenScale"
864
+ },
862
865
  "altArt": {
863
866
  "type": "array",
864
867
  "items": {
@@ -1942,6 +1945,9 @@
1942
1945
  "tokenUrl": {
1943
1946
  "type": "string"
1944
1947
  },
1948
+ "foundryTokenScale": {
1949
+ "$ref": "../foundry-shared.json#/$defs/foundryTokenScale"
1950
+ },
1945
1951
  "altArt": {
1946
1952
  "type": "array",
1947
1953
  "items": {
@@ -3039,6 +3045,9 @@
3039
3045
  "tokenUrl": {
3040
3046
  "type": "string"
3041
3047
  },
3048
+ "foundryTokenScale": {
3049
+ "$ref": "../foundry-shared.json#/$defs/foundryTokenScale"
3050
+ },
3042
3051
  "altArt": {
3043
3052
  "type": "array",
3044
3053
  "items": {
@@ -49,6 +49,12 @@
49
49
  }
50
50
  },
51
51
  "additionalProperties": false
52
+ },
53
+ "foundryTokenScale": {
54
+ "type": "number",
55
+ "minimum": 0.2,
56
+ "maximum": 3,
57
+ "multipleOf": 0.1
52
58
  }
53
59
  }
54
60
  }
@@ -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",
4
+ "version": "1.14.5",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "itemData": {
@@ -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.7",
4
+ "version": "1.8.8",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "magicvariant": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "objects.json",
4
- "version": "1.2.8",
4
+ "version": "1.2.9",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "object": {
@@ -124,6 +124,9 @@
124
124
  "tokenUrl": {
125
125
  "type": "string"
126
126
  },
127
+ "foundryTokenScale": {
128
+ "$ref": "foundry-shared.json#/$defs/foundryTokenScale"
129
+ },
127
130
  "srd": {
128
131
  "$ref": "util.json#/$defs/srd"
129
132
  },
@@ -4140,7 +4140,8 @@
4140
4140
  "const": true
4141
4141
  }
4142
4142
  }
4143
- }
4143
+ },
4144
+ "uniqueItems": true
4144
4145
  },
4145
4146
  "adventureBookData": {
4146
4147
  "type": "array",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "vehicles.json",
4
- "version": "1.7.2",
4
+ "version": "1.7.3",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "vehicleTerrain": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.21.20",
3
+ "version": "1.21.21",
4
4
  "title": "Bestiary Schema",
5
5
  "$id": "bestiary.json",
6
6
  "type": "object",
@@ -859,6 +859,9 @@
859
859
  "tokenUrl": {
860
860
  "type": "string"
861
861
  },
862
+ "foundryTokenScale": {
863
+ "$ref": "../foundry-shared.json#/$defs/foundryTokenScale"
864
+ },
862
865
  "altArt": {
863
866
  "type": "array",
864
867
  "items": {
@@ -1942,6 +1945,9 @@
1942
1945
  "tokenUrl": {
1943
1946
  "type": "string"
1944
1947
  },
1948
+ "foundryTokenScale": {
1949
+ "$ref": "../foundry-shared.json#/$defs/foundryTokenScale"
1950
+ },
1945
1951
  "altArt": {
1946
1952
  "type": "array",
1947
1953
  "items": {
@@ -3039,6 +3045,9 @@
3039
3045
  "tokenUrl": {
3040
3046
  "type": "string"
3041
3047
  },
3048
+ "foundryTokenScale": {
3049
+ "$ref": "../foundry-shared.json#/$defs/foundryTokenScale"
3050
+ },
3042
3051
  "altArt": {
3043
3052
  "type": "array",
3044
3053
  "items": {
@@ -49,6 +49,12 @@
49
49
  }
50
50
  },
51
51
  "additionalProperties": false
52
+ },
53
+ "foundryTokenScale": {
54
+ "type": "number",
55
+ "minimum": 0.2,
56
+ "maximum": 3,
57
+ "multipleOf": 0.1
52
58
  }
53
59
  }
54
60
  }
@@ -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",
4
+ "version": "1.14.5",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "itemData": {
@@ -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.7",
4
+ "version": "1.8.8",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "magicvariant": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "objects.json",
4
- "version": "1.2.8",
4
+ "version": "1.2.9",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "object": {
@@ -124,6 +124,9 @@
124
124
  "tokenUrl": {
125
125
  "type": "string"
126
126
  },
127
+ "foundryTokenScale": {
128
+ "$ref": "foundry-shared.json#/$defs/foundryTokenScale"
129
+ },
127
130
  "srd": {
128
131
  "$ref": "util.json#/$defs/srd"
129
132
  },
@@ -4140,7 +4140,8 @@
4140
4140
  "const": true
4141
4141
  }
4142
4142
  }
4143
- }
4143
+ },
4144
+ "uniqueItems": true
4144
4145
  },
4145
4146
  "adventureBookData": {
4146
4147
  "type": "array",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "vehicles.json",
4
- "version": "1.7.2",
4
+ "version": "1.7.3",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "vehicleTerrain": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.21.20",
3
+ "version": "1.21.21",
4
4
  "title": "Bestiary Schema",
5
5
  "$id": "bestiary.json",
6
6
  "type": "object",
@@ -859,6 +859,9 @@
859
859
  "tokenUrl": {
860
860
  "type": "string"
861
861
  },
862
+ "foundryTokenScale": {
863
+ "$ref": "../foundry-shared.json#/$defs/foundryTokenScale"
864
+ },
862
865
  "altArt": {
863
866
  "type": "array",
864
867
  "items": {
@@ -1942,6 +1945,9 @@
1942
1945
  "tokenUrl": {
1943
1946
  "type": "string"
1944
1947
  },
1948
+ "foundryTokenScale": {
1949
+ "$ref": "../foundry-shared.json#/$defs/foundryTokenScale"
1950
+ },
1945
1951
  "altArt": {
1946
1952
  "type": "array",
1947
1953
  "items": {
@@ -3039,6 +3045,9 @@
3039
3045
  "tokenUrl": {
3040
3046
  "type": "string"
3041
3047
  },
3048
+ "foundryTokenScale": {
3049
+ "$ref": "../foundry-shared.json#/$defs/foundryTokenScale"
3050
+ },
3042
3051
  "altArt": {
3043
3052
  "type": "array",
3044
3053
  "items": {
@@ -49,6 +49,12 @@
49
49
  }
50
50
  },
51
51
  "additionalProperties": false
52
+ },
53
+ "foundryTokenScale": {
54
+ "type": "number",
55
+ "minimum": 0.2,
56
+ "maximum": 3,
57
+ "multipleOf": 0.1
52
58
  }
53
59
  }
54
60
  }
@@ -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",
4
+ "version": "1.14.5",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "itemData": {
@@ -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.7",
4
+ "version": "1.8.8",
5
5
  "type": "object",
6
6
  "properties": {
7
7
  "magicvariant": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "objects.json",
4
- "version": "1.2.8",
4
+ "version": "1.2.9",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "object": {
@@ -124,6 +124,9 @@
124
124
  "tokenUrl": {
125
125
  "type": "string"
126
126
  },
127
+ "foundryTokenScale": {
128
+ "$ref": "foundry-shared.json#/$defs/foundryTokenScale"
129
+ },
127
130
  "srd": {
128
131
  "$ref": "util.json#/$defs/srd"
129
132
  },
@@ -4140,7 +4140,8 @@
4140
4140
  "const": true
4141
4141
  }
4142
4142
  }
4143
- }
4143
+ },
4144
+ "uniqueItems": true
4144
4145
  },
4145
4146
  "adventureBookData": {
4146
4147
  "type": "array",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "vehicles.json",
4
- "version": "1.7.2",
4
+ "version": "1.7.3",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "vehicleTerrain": {