5etools-utils 0.9.18 → 0.9.19
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 +67 -22
- package/schema/brew/items-shared.json +13 -1
- package/schema/brew/items.json +13 -22
- package/schema/brew/magicvariants.json +104 -18
- package/schema/brew/makebrew-creature.json +5 -3
- package/schema/brew-fast/items-base.json +67 -22
- package/schema/brew-fast/items-shared.json +13 -1
- package/schema/brew-fast/items.json +13 -22
- package/schema/brew-fast/magicvariants.json +104 -18
- package/schema/brew-fast/makebrew-creature.json +5 -3
- package/schema/site/items-base.json +55 -1
- package/schema/site/items-shared.json +1 -1
- package/schema/site/items.json +1 -1
- package/schema/site/magicvariants.json +78 -1
- package/schema/site/makebrew-creature.json +5 -3
- package/schema/site-fast/items-base.json +55 -1
- package/schema/site-fast/items-shared.json +1 -1
- package/schema/site-fast/items.json +1 -1
- package/schema/site-fast/magicvariants.json +78 -1
- package/schema/site-fast/makebrew-creature.json +5 -3
- package/schema/ua/items-base.json +64 -1
- package/schema/ua/items-shared.json +13 -1
- package/schema/ua/items.json +10 -1
- package/schema/ua/magicvariants.json +97 -1
- package/schema/ua/makebrew-creature.json +5 -3
- package/schema/ua-fast/items-base.json +64 -1
- package/schema/ua-fast/items-shared.json +13 -1
- package/schema/ua-fast/items.json +10 -1
- package/schema/ua-fast/magicvariants.json +97 -1
- package/schema/ua-fast/makebrew-creature.json +5 -3
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.5.
|
|
4
|
+
"version": "1.5.12",
|
|
5
5
|
"$defs": {
|
|
6
6
|
"itemPropertyLookupArray": {
|
|
7
7
|
"type": "array",
|
|
@@ -176,6 +176,9 @@
|
|
|
176
176
|
"type": {
|
|
177
177
|
"$ref": "items-shared.json#/$defs/itemType"
|
|
178
178
|
},
|
|
179
|
+
"typeAlt": {
|
|
180
|
+
"$ref": "items-shared.json#/$defs/itemType"
|
|
181
|
+
},
|
|
179
182
|
"rarity": {
|
|
180
183
|
"$ref": "items-shared.json#/$defs/itemRarity"
|
|
181
184
|
},
|
|
@@ -191,6 +194,9 @@
|
|
|
191
194
|
"age": {
|
|
192
195
|
"$ref": "items-shared.json#/$defs/itemAge"
|
|
193
196
|
},
|
|
197
|
+
"bonusWeapon": {
|
|
198
|
+
"type": "string"
|
|
199
|
+
},
|
|
194
200
|
"dmg1": {
|
|
195
201
|
"type": "string"
|
|
196
202
|
},
|
|
@@ -301,6 +307,18 @@
|
|
|
301
307
|
"speed": {
|
|
302
308
|
"$ref": "items-shared.json#/$defs/itemSpeed"
|
|
303
309
|
},
|
|
310
|
+
"charges": {
|
|
311
|
+
"type": [
|
|
312
|
+
"string",
|
|
313
|
+
"integer"
|
|
314
|
+
]
|
|
315
|
+
},
|
|
316
|
+
"recharge": {
|
|
317
|
+
"$ref": "items-shared.json#/$defs/itemRecharge"
|
|
318
|
+
},
|
|
319
|
+
"rechargeAmount": {
|
|
320
|
+
"$ref": "items-shared.json#/$defs/itemRechargeAmount"
|
|
321
|
+
},
|
|
304
322
|
"valueMult": {
|
|
305
323
|
"type": "number"
|
|
306
324
|
},
|
|
@@ -390,6 +408,9 @@
|
|
|
390
408
|
"hasFluffImages": {
|
|
391
409
|
"type": "boolean"
|
|
392
410
|
},
|
|
411
|
+
"customProperties": {
|
|
412
|
+
"$ref": "items-shared.json#/$defs/customProperties"
|
|
413
|
+
},
|
|
393
414
|
"currencyConversion": {
|
|
394
415
|
"description": "ID of a value conversion table. Homebrew only.",
|
|
395
416
|
"type": "string"
|
|
@@ -425,13 +446,7 @@
|
|
|
425
446
|
"$ref": "items-shared.json#/$defs/fluff"
|
|
426
447
|
}
|
|
427
448
|
},
|
|
428
|
-
"additionalProperties":
|
|
429
|
-
"type": [
|
|
430
|
-
"boolean",
|
|
431
|
-
"integer",
|
|
432
|
-
"string"
|
|
433
|
-
]
|
|
434
|
-
}
|
|
449
|
+
"additionalProperties": false
|
|
435
450
|
},
|
|
436
451
|
"baseitem": {
|
|
437
452
|
"anyOf": [
|
|
@@ -444,6 +459,9 @@
|
|
|
444
459
|
"type": {
|
|
445
460
|
"$ref": "items-shared.json#/$defs/itemType"
|
|
446
461
|
},
|
|
462
|
+
"typeAlt": {
|
|
463
|
+
"$ref": "items-shared.json#/$defs/itemType"
|
|
464
|
+
},
|
|
447
465
|
"rarity": {
|
|
448
466
|
"$ref": "items-shared.json#/$defs/itemRarity"
|
|
449
467
|
},
|
|
@@ -459,6 +477,9 @@
|
|
|
459
477
|
"age": {
|
|
460
478
|
"$ref": "items-shared.json#/$defs/itemAge"
|
|
461
479
|
},
|
|
480
|
+
"bonusWeapon": {
|
|
481
|
+
"type": "string"
|
|
482
|
+
},
|
|
462
483
|
"dmg1": {
|
|
463
484
|
"type": "string"
|
|
464
485
|
},
|
|
@@ -569,6 +590,18 @@
|
|
|
569
590
|
"speed": {
|
|
570
591
|
"$ref": "items-shared.json#/$defs/itemSpeed"
|
|
571
592
|
},
|
|
593
|
+
"charges": {
|
|
594
|
+
"type": [
|
|
595
|
+
"string",
|
|
596
|
+
"integer"
|
|
597
|
+
]
|
|
598
|
+
},
|
|
599
|
+
"recharge": {
|
|
600
|
+
"$ref": "items-shared.json#/$defs/itemRecharge"
|
|
601
|
+
},
|
|
602
|
+
"rechargeAmount": {
|
|
603
|
+
"$ref": "items-shared.json#/$defs/itemRechargeAmount"
|
|
604
|
+
},
|
|
572
605
|
"valueMult": {
|
|
573
606
|
"type": "number"
|
|
574
607
|
},
|
|
@@ -658,6 +691,9 @@
|
|
|
658
691
|
"hasFluffImages": {
|
|
659
692
|
"type": "boolean"
|
|
660
693
|
},
|
|
694
|
+
"customProperties": {
|
|
695
|
+
"$ref": "items-shared.json#/$defs/customProperties"
|
|
696
|
+
},
|
|
661
697
|
"currencyConversion": {
|
|
662
698
|
"description": "ID of a value conversion table. Homebrew only.",
|
|
663
699
|
"type": "string"
|
|
@@ -693,13 +729,7 @@
|
|
|
693
729
|
"$ref": "items-shared.json#/$defs/fluff"
|
|
694
730
|
}
|
|
695
731
|
},
|
|
696
|
-
"additionalProperties":
|
|
697
|
-
"type": [
|
|
698
|
-
"boolean",
|
|
699
|
-
"integer",
|
|
700
|
-
"string"
|
|
701
|
-
]
|
|
702
|
-
},
|
|
732
|
+
"additionalProperties": false,
|
|
703
733
|
"required": [
|
|
704
734
|
"name",
|
|
705
735
|
"type",
|
|
@@ -716,6 +746,9 @@
|
|
|
716
746
|
"type": {
|
|
717
747
|
"$ref": "items-shared.json#/$defs/itemType"
|
|
718
748
|
},
|
|
749
|
+
"typeAlt": {
|
|
750
|
+
"$ref": "items-shared.json#/$defs/itemType"
|
|
751
|
+
},
|
|
719
752
|
"rarity": {
|
|
720
753
|
"$ref": "items-shared.json#/$defs/itemRarity"
|
|
721
754
|
},
|
|
@@ -731,6 +764,9 @@
|
|
|
731
764
|
"age": {
|
|
732
765
|
"$ref": "items-shared.json#/$defs/itemAge"
|
|
733
766
|
},
|
|
767
|
+
"bonusWeapon": {
|
|
768
|
+
"type": "string"
|
|
769
|
+
},
|
|
734
770
|
"dmg1": {
|
|
735
771
|
"type": "string"
|
|
736
772
|
},
|
|
@@ -841,6 +877,18 @@
|
|
|
841
877
|
"speed": {
|
|
842
878
|
"$ref": "items-shared.json#/$defs/itemSpeed"
|
|
843
879
|
},
|
|
880
|
+
"charges": {
|
|
881
|
+
"type": [
|
|
882
|
+
"string",
|
|
883
|
+
"integer"
|
|
884
|
+
]
|
|
885
|
+
},
|
|
886
|
+
"recharge": {
|
|
887
|
+
"$ref": "items-shared.json#/$defs/itemRecharge"
|
|
888
|
+
},
|
|
889
|
+
"rechargeAmount": {
|
|
890
|
+
"$ref": "items-shared.json#/$defs/itemRechargeAmount"
|
|
891
|
+
},
|
|
844
892
|
"valueMult": {
|
|
845
893
|
"type": "number"
|
|
846
894
|
},
|
|
@@ -930,6 +978,9 @@
|
|
|
930
978
|
"hasFluffImages": {
|
|
931
979
|
"type": "boolean"
|
|
932
980
|
},
|
|
981
|
+
"customProperties": {
|
|
982
|
+
"$ref": "items-shared.json#/$defs/customProperties"
|
|
983
|
+
},
|
|
933
984
|
"currencyConversion": {
|
|
934
985
|
"description": "ID of a value conversion table. Homebrew only.",
|
|
935
986
|
"type": "string"
|
|
@@ -1031,13 +1082,7 @@
|
|
|
1031
1082
|
"additionalProperties": false
|
|
1032
1083
|
}
|
|
1033
1084
|
},
|
|
1034
|
-
"additionalProperties":
|
|
1035
|
-
"type": [
|
|
1036
|
-
"boolean",
|
|
1037
|
-
"integer",
|
|
1038
|
-
"string"
|
|
1039
|
-
]
|
|
1040
|
-
},
|
|
1085
|
+
"additionalProperties": false,
|
|
1041
1086
|
"required": [
|
|
1042
1087
|
"_copy"
|
|
1043
1088
|
]
|
|
@@ -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.0.
|
|
6
|
+
"version": "1.0.5",
|
|
7
7
|
"$defs": {
|
|
8
8
|
"_itemModifySpeedEqual": {
|
|
9
9
|
"type": "string",
|
|
@@ -276,6 +276,18 @@
|
|
|
276
276
|
"itemReach": {
|
|
277
277
|
"type": "integer"
|
|
278
278
|
},
|
|
279
|
+
"customProperties": {
|
|
280
|
+
"description": "An unrestricted area for custom properties to be stored.",
|
|
281
|
+
"type": "object",
|
|
282
|
+
"additionalProperties": {
|
|
283
|
+
"type": [
|
|
284
|
+
"boolean",
|
|
285
|
+
"string",
|
|
286
|
+
"number",
|
|
287
|
+
"integer"
|
|
288
|
+
]
|
|
289
|
+
}
|
|
290
|
+
},
|
|
279
291
|
"fluff": {
|
|
280
292
|
"description": "This is intended to be used for Homebrew only - site data should include a fluff file per source.",
|
|
281
293
|
"anyOf": [
|
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.3",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"itemData": {
|
|
@@ -546,6 +546,9 @@
|
|
|
546
546
|
"type": "boolean",
|
|
547
547
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|
|
548
548
|
},
|
|
549
|
+
"customProperties": {
|
|
550
|
+
"$ref": "items-shared.json#/$defs/customProperties"
|
|
551
|
+
},
|
|
549
552
|
"acSpecial": {
|
|
550
553
|
"description": "Free text field for homebrew use.",
|
|
551
554
|
"type": "string"
|
|
@@ -589,13 +592,7 @@
|
|
|
589
592
|
"$ref": "items-shared.json#/$defs/fluff"
|
|
590
593
|
}
|
|
591
594
|
},
|
|
592
|
-
"additionalProperties":
|
|
593
|
-
"type": [
|
|
594
|
-
"boolean",
|
|
595
|
-
"integer",
|
|
596
|
-
"string"
|
|
597
|
-
]
|
|
598
|
-
}
|
|
595
|
+
"additionalProperties": false
|
|
599
596
|
},
|
|
600
597
|
"item": {
|
|
601
598
|
"anyOf": [
|
|
@@ -1141,6 +1138,9 @@
|
|
|
1141
1138
|
"type": "boolean",
|
|
1142
1139
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|
|
1143
1140
|
},
|
|
1141
|
+
"customProperties": {
|
|
1142
|
+
"$ref": "items-shared.json#/$defs/customProperties"
|
|
1143
|
+
},
|
|
1144
1144
|
"acSpecial": {
|
|
1145
1145
|
"description": "Free text field for homebrew use.",
|
|
1146
1146
|
"type": "string"
|
|
@@ -1184,13 +1184,7 @@
|
|
|
1184
1184
|
"$ref": "items-shared.json#/$defs/fluff"
|
|
1185
1185
|
}
|
|
1186
1186
|
},
|
|
1187
|
-
"additionalProperties":
|
|
1188
|
-
"type": [
|
|
1189
|
-
"boolean",
|
|
1190
|
-
"integer",
|
|
1191
|
-
"string"
|
|
1192
|
-
]
|
|
1193
|
-
},
|
|
1187
|
+
"additionalProperties": false,
|
|
1194
1188
|
"required": [
|
|
1195
1189
|
"name",
|
|
1196
1190
|
"rarity",
|
|
@@ -1739,6 +1733,9 @@
|
|
|
1739
1733
|
"type": "boolean",
|
|
1740
1734
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|
|
1741
1735
|
},
|
|
1736
|
+
"customProperties": {
|
|
1737
|
+
"$ref": "items-shared.json#/$defs/customProperties"
|
|
1738
|
+
},
|
|
1742
1739
|
"acSpecial": {
|
|
1743
1740
|
"description": "Free text field for homebrew use.",
|
|
1744
1741
|
"type": "string"
|
|
@@ -1848,13 +1845,7 @@
|
|
|
1848
1845
|
"additionalProperties": false
|
|
1849
1846
|
}
|
|
1850
1847
|
},
|
|
1851
|
-
"additionalProperties":
|
|
1852
|
-
"type": [
|
|
1853
|
-
"boolean",
|
|
1854
|
-
"integer",
|
|
1855
|
-
"string"
|
|
1856
|
-
]
|
|
1857
|
-
},
|
|
1848
|
+
"additionalProperties": false,
|
|
1858
1849
|
"required": [
|
|
1859
1850
|
"_copy"
|
|
1860
1851
|
]
|
|
@@ -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.6",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
7
7
|
"magicvariant": {
|
|
@@ -46,6 +46,24 @@
|
|
|
46
46
|
"weapon": {
|
|
47
47
|
"type": "boolean"
|
|
48
48
|
},
|
|
49
|
+
"firearm": {
|
|
50
|
+
"type": "boolean"
|
|
51
|
+
},
|
|
52
|
+
"mace": {
|
|
53
|
+
"type": "boolean"
|
|
54
|
+
},
|
|
55
|
+
"spear": {
|
|
56
|
+
"type": "boolean"
|
|
57
|
+
},
|
|
58
|
+
"hammer": {
|
|
59
|
+
"type": "boolean"
|
|
60
|
+
},
|
|
61
|
+
"club": {
|
|
62
|
+
"type": "boolean"
|
|
63
|
+
},
|
|
64
|
+
"dagger": {
|
|
65
|
+
"type": "boolean"
|
|
66
|
+
},
|
|
49
67
|
"dmgType": {
|
|
50
68
|
"$ref": "util.json#/$defs/dataDamageTags"
|
|
51
69
|
},
|
|
@@ -69,11 +87,18 @@
|
|
|
69
87
|
},
|
|
70
88
|
"property": {
|
|
71
89
|
"type": "string"
|
|
90
|
+
},
|
|
91
|
+
"customProperties": {
|
|
92
|
+
"description": "A more restrictive area for custom boolean-only properties to be stored.",
|
|
93
|
+
"type": "object",
|
|
94
|
+
"additionalProperties": {
|
|
95
|
+
"type": [
|
|
96
|
+
"boolean"
|
|
97
|
+
]
|
|
98
|
+
}
|
|
72
99
|
}
|
|
73
100
|
},
|
|
74
|
-
"additionalProperties":
|
|
75
|
-
"type": "boolean"
|
|
76
|
-
}
|
|
101
|
+
"additionalProperties": false
|
|
77
102
|
}
|
|
78
103
|
},
|
|
79
104
|
"inherits": {
|
|
@@ -95,6 +120,12 @@
|
|
|
95
120
|
"description": "Properties to remove from the specific variant, if present on the base item.",
|
|
96
121
|
"$ref": "items-shared.json#/$defs/itemProperty"
|
|
97
122
|
},
|
|
123
|
+
"ac": {
|
|
124
|
+
"type": "integer"
|
|
125
|
+
},
|
|
126
|
+
"age": {
|
|
127
|
+
"$ref": "items-shared.json#/$defs/itemAge"
|
|
128
|
+
},
|
|
98
129
|
"bonusAc": {
|
|
99
130
|
"type": "string"
|
|
100
131
|
},
|
|
@@ -119,6 +150,16 @@
|
|
|
119
150
|
"bonusAbilityCheck": {
|
|
120
151
|
"type": "string"
|
|
121
152
|
},
|
|
153
|
+
"dmg1": {
|
|
154
|
+
"type": "string"
|
|
155
|
+
},
|
|
156
|
+
"dmg2": {
|
|
157
|
+
"type": "string",
|
|
158
|
+
"description": "The versatile or alternative damage dice of the weapon, e.g. \"1d10\""
|
|
159
|
+
},
|
|
160
|
+
"dmgType": {
|
|
161
|
+
"$ref": "util.json#/$defs/dataDamageTags"
|
|
162
|
+
},
|
|
122
163
|
"modifySpeed": {
|
|
123
164
|
"$ref": "items-shared.json#/$defs/itemModifySpeed"
|
|
124
165
|
},
|
|
@@ -143,6 +184,9 @@
|
|
|
143
184
|
"nameRemove": {
|
|
144
185
|
"type": "string"
|
|
145
186
|
},
|
|
187
|
+
"grantsProficiency": {
|
|
188
|
+
"type": "boolean"
|
|
189
|
+
},
|
|
146
190
|
"reqAttune": {
|
|
147
191
|
"type": [
|
|
148
192
|
"string",
|
|
@@ -240,6 +284,9 @@
|
|
|
240
284
|
"description": "Expression used to calculate each specific variant's value.",
|
|
241
285
|
"type": "string"
|
|
242
286
|
},
|
|
287
|
+
"weaponCategory": {
|
|
288
|
+
"$ref": "items-shared.json#/$defs/itemWeaponCategory"
|
|
289
|
+
},
|
|
243
290
|
"weightMult": {
|
|
244
291
|
"type": "number"
|
|
245
292
|
},
|
|
@@ -266,6 +313,14 @@
|
|
|
266
313
|
"type": "boolean",
|
|
267
314
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|
|
268
315
|
},
|
|
316
|
+
"customProperties": {
|
|
317
|
+
"description": "An unrestricted area for custom properties to be stored.",
|
|
318
|
+
"type": "object"
|
|
319
|
+
},
|
|
320
|
+
"currencyConversion": {
|
|
321
|
+
"description": "ID of a value conversion table. Homebrew only.",
|
|
322
|
+
"type": "string"
|
|
323
|
+
},
|
|
269
324
|
"fluff": {
|
|
270
325
|
"$ref": "items-shared.json#/$defs/fluff"
|
|
271
326
|
}
|
|
@@ -275,13 +330,7 @@
|
|
|
275
330
|
"source",
|
|
276
331
|
"page"
|
|
277
332
|
],
|
|
278
|
-
"additionalProperties":
|
|
279
|
-
"type": [
|
|
280
|
-
"boolean",
|
|
281
|
-
"integer",
|
|
282
|
-
"string"
|
|
283
|
-
]
|
|
284
|
-
}
|
|
333
|
+
"additionalProperties": false
|
|
285
334
|
},
|
|
286
335
|
"excludes": {
|
|
287
336
|
"type": "object",
|
|
@@ -317,15 +366,48 @@
|
|
|
317
366
|
},
|
|
318
367
|
"net": {
|
|
319
368
|
"type": "boolean"
|
|
369
|
+
},
|
|
370
|
+
"armor": {
|
|
371
|
+
"type": "boolean"
|
|
372
|
+
},
|
|
373
|
+
"axe": {
|
|
374
|
+
"type": "boolean"
|
|
375
|
+
},
|
|
376
|
+
"bow": {
|
|
377
|
+
"type": "boolean"
|
|
378
|
+
},
|
|
379
|
+
"crossbow": {
|
|
380
|
+
"type": "boolean"
|
|
381
|
+
},
|
|
382
|
+
"sword": {
|
|
383
|
+
"type": "boolean"
|
|
384
|
+
},
|
|
385
|
+
"weapon": {
|
|
386
|
+
"type": "boolean"
|
|
387
|
+
},
|
|
388
|
+
"firearm": {
|
|
389
|
+
"type": "boolean"
|
|
390
|
+
},
|
|
391
|
+
"mace": {
|
|
392
|
+
"type": "boolean"
|
|
393
|
+
},
|
|
394
|
+
"spear": {
|
|
395
|
+
"type": "boolean"
|
|
396
|
+
},
|
|
397
|
+
"hammer": {
|
|
398
|
+
"type": "boolean"
|
|
399
|
+
},
|
|
400
|
+
"club": {
|
|
401
|
+
"type": "boolean"
|
|
402
|
+
},
|
|
403
|
+
"dagger": {
|
|
404
|
+
"type": "boolean"
|
|
405
|
+
},
|
|
406
|
+
"customProperties": {
|
|
407
|
+
"$ref": "items-shared.json#/$defs/customProperties"
|
|
320
408
|
}
|
|
321
409
|
},
|
|
322
|
-
"additionalProperties":
|
|
323
|
-
"type": [
|
|
324
|
-
"boolean",
|
|
325
|
-
"integer",
|
|
326
|
-
"string"
|
|
327
|
-
]
|
|
328
|
-
}
|
|
410
|
+
"additionalProperties": false
|
|
329
411
|
},
|
|
330
412
|
"noDisplay": {
|
|
331
413
|
"type": "boolean"
|
|
@@ -343,6 +425,7 @@
|
|
|
343
425
|
}
|
|
344
426
|
},
|
|
345
427
|
"ammo": {
|
|
428
|
+
"description": "Adds ammunition text to the header of the generic variant.",
|
|
346
429
|
"type": "boolean"
|
|
347
430
|
},
|
|
348
431
|
"reqAttuneTags": {
|
|
@@ -360,6 +443,9 @@
|
|
|
360
443
|
"hasFluffImages": {
|
|
361
444
|
"type": "boolean"
|
|
362
445
|
},
|
|
446
|
+
"customProperties": {
|
|
447
|
+
"$ref": "items-shared.json#/$defs/customProperties"
|
|
448
|
+
},
|
|
363
449
|
"fluff": {
|
|
364
450
|
"$ref": "items-shared.json#/$defs/fluff"
|
|
365
451
|
},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"$id": "makebrew-creature.json",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.4",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"properties": {
|
|
7
7
|
"#makebrewCreatureTrait": {
|
|
@@ -32,7 +32,8 @@
|
|
|
32
32
|
"name",
|
|
33
33
|
"source",
|
|
34
34
|
"entries"
|
|
35
|
-
]
|
|
35
|
+
],
|
|
36
|
+
"additionalProperties": false
|
|
36
37
|
}
|
|
37
38
|
},
|
|
38
39
|
"makebrewCreatureAction": {
|
|
@@ -60,7 +61,8 @@
|
|
|
60
61
|
"name",
|
|
61
62
|
"source",
|
|
62
63
|
"entries"
|
|
63
|
-
]
|
|
64
|
+
],
|
|
65
|
+
"additionalProperties": false
|
|
64
66
|
}
|
|
65
67
|
}
|
|
66
68
|
},
|