5etools-utils 0.9.18 → 0.9.20
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 +76 -22
- package/schema/brew/items-shared.json +13 -1
- package/schema/brew/items.json +22 -22
- package/schema/brew/magicvariants.json +107 -18
- package/schema/brew/makebrew-creature.json +5 -3
- package/schema/brew-fast/items-base.json +76 -22
- package/schema/brew-fast/items-shared.json +13 -1
- package/schema/brew-fast/items.json +22 -22
- package/schema/brew-fast/magicvariants.json +107 -18
- package/schema/brew-fast/makebrew-creature.json +5 -3
- package/schema/site/items-base.json +64 -1
- package/schema/site/items-shared.json +1 -1
- package/schema/site/items.json +10 -1
- package/schema/site/magicvariants.json +81 -1
- package/schema/site/makebrew-creature.json +5 -3
- package/schema/site-fast/items-base.json +64 -1
- package/schema/site-fast/items-shared.json +1 -1
- package/schema/site-fast/items.json +10 -1
- package/schema/site-fast/magicvariants.json +81 -1
- package/schema/site-fast/makebrew-creature.json +5 -3
- package/schema/ua/items-base.json +73 -1
- package/schema/ua/items-shared.json +13 -1
- package/schema/ua/items.json +19 -1
- package/schema/ua/magicvariants.json +100 -1
- package/schema/ua/makebrew-creature.json +5 -3
- package/schema/ua-fast/items-base.json +73 -1
- package/schema/ua-fast/items-shared.json +13 -1
- package/schema/ua-fast/items.json +19 -1
- package/schema/ua-fast/magicvariants.json +100 -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.13",
|
|
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
|
},
|
|
@@ -185,12 +188,18 @@
|
|
|
185
188
|
"page": {
|
|
186
189
|
"$ref": "util.json#/$defs/page"
|
|
187
190
|
},
|
|
191
|
+
"reprintedAs": {
|
|
192
|
+
"$ref": "util.json#/$defs/reprintedAs"
|
|
193
|
+
},
|
|
188
194
|
"ac": {
|
|
189
195
|
"type": "integer"
|
|
190
196
|
},
|
|
191
197
|
"age": {
|
|
192
198
|
"$ref": "items-shared.json#/$defs/itemAge"
|
|
193
199
|
},
|
|
200
|
+
"bonusWeapon": {
|
|
201
|
+
"type": "string"
|
|
202
|
+
},
|
|
194
203
|
"dmg1": {
|
|
195
204
|
"type": "string"
|
|
196
205
|
},
|
|
@@ -301,6 +310,18 @@
|
|
|
301
310
|
"speed": {
|
|
302
311
|
"$ref": "items-shared.json#/$defs/itemSpeed"
|
|
303
312
|
},
|
|
313
|
+
"charges": {
|
|
314
|
+
"type": [
|
|
315
|
+
"string",
|
|
316
|
+
"integer"
|
|
317
|
+
]
|
|
318
|
+
},
|
|
319
|
+
"recharge": {
|
|
320
|
+
"$ref": "items-shared.json#/$defs/itemRecharge"
|
|
321
|
+
},
|
|
322
|
+
"rechargeAmount": {
|
|
323
|
+
"$ref": "items-shared.json#/$defs/itemRechargeAmount"
|
|
324
|
+
},
|
|
304
325
|
"valueMult": {
|
|
305
326
|
"type": "number"
|
|
306
327
|
},
|
|
@@ -390,6 +411,9 @@
|
|
|
390
411
|
"hasFluffImages": {
|
|
391
412
|
"type": "boolean"
|
|
392
413
|
},
|
|
414
|
+
"customProperties": {
|
|
415
|
+
"$ref": "items-shared.json#/$defs/customProperties"
|
|
416
|
+
},
|
|
393
417
|
"currencyConversion": {
|
|
394
418
|
"description": "ID of a value conversion table. Homebrew only.",
|
|
395
419
|
"type": "string"
|
|
@@ -425,13 +449,7 @@
|
|
|
425
449
|
"$ref": "items-shared.json#/$defs/fluff"
|
|
426
450
|
}
|
|
427
451
|
},
|
|
428
|
-
"additionalProperties":
|
|
429
|
-
"type": [
|
|
430
|
-
"boolean",
|
|
431
|
-
"integer",
|
|
432
|
-
"string"
|
|
433
|
-
]
|
|
434
|
-
}
|
|
452
|
+
"additionalProperties": false
|
|
435
453
|
},
|
|
436
454
|
"baseitem": {
|
|
437
455
|
"anyOf": [
|
|
@@ -444,6 +462,9 @@
|
|
|
444
462
|
"type": {
|
|
445
463
|
"$ref": "items-shared.json#/$defs/itemType"
|
|
446
464
|
},
|
|
465
|
+
"typeAlt": {
|
|
466
|
+
"$ref": "items-shared.json#/$defs/itemType"
|
|
467
|
+
},
|
|
447
468
|
"rarity": {
|
|
448
469
|
"$ref": "items-shared.json#/$defs/itemRarity"
|
|
449
470
|
},
|
|
@@ -453,12 +474,18 @@
|
|
|
453
474
|
"page": {
|
|
454
475
|
"$ref": "util.json#/$defs/page"
|
|
455
476
|
},
|
|
477
|
+
"reprintedAs": {
|
|
478
|
+
"$ref": "util.json#/$defs/reprintedAs"
|
|
479
|
+
},
|
|
456
480
|
"ac": {
|
|
457
481
|
"type": "integer"
|
|
458
482
|
},
|
|
459
483
|
"age": {
|
|
460
484
|
"$ref": "items-shared.json#/$defs/itemAge"
|
|
461
485
|
},
|
|
486
|
+
"bonusWeapon": {
|
|
487
|
+
"type": "string"
|
|
488
|
+
},
|
|
462
489
|
"dmg1": {
|
|
463
490
|
"type": "string"
|
|
464
491
|
},
|
|
@@ -569,6 +596,18 @@
|
|
|
569
596
|
"speed": {
|
|
570
597
|
"$ref": "items-shared.json#/$defs/itemSpeed"
|
|
571
598
|
},
|
|
599
|
+
"charges": {
|
|
600
|
+
"type": [
|
|
601
|
+
"string",
|
|
602
|
+
"integer"
|
|
603
|
+
]
|
|
604
|
+
},
|
|
605
|
+
"recharge": {
|
|
606
|
+
"$ref": "items-shared.json#/$defs/itemRecharge"
|
|
607
|
+
},
|
|
608
|
+
"rechargeAmount": {
|
|
609
|
+
"$ref": "items-shared.json#/$defs/itemRechargeAmount"
|
|
610
|
+
},
|
|
572
611
|
"valueMult": {
|
|
573
612
|
"type": "number"
|
|
574
613
|
},
|
|
@@ -658,6 +697,9 @@
|
|
|
658
697
|
"hasFluffImages": {
|
|
659
698
|
"type": "boolean"
|
|
660
699
|
},
|
|
700
|
+
"customProperties": {
|
|
701
|
+
"$ref": "items-shared.json#/$defs/customProperties"
|
|
702
|
+
},
|
|
661
703
|
"currencyConversion": {
|
|
662
704
|
"description": "ID of a value conversion table. Homebrew only.",
|
|
663
705
|
"type": "string"
|
|
@@ -693,13 +735,7 @@
|
|
|
693
735
|
"$ref": "items-shared.json#/$defs/fluff"
|
|
694
736
|
}
|
|
695
737
|
},
|
|
696
|
-
"additionalProperties":
|
|
697
|
-
"type": [
|
|
698
|
-
"boolean",
|
|
699
|
-
"integer",
|
|
700
|
-
"string"
|
|
701
|
-
]
|
|
702
|
-
},
|
|
738
|
+
"additionalProperties": false,
|
|
703
739
|
"required": [
|
|
704
740
|
"name",
|
|
705
741
|
"type",
|
|
@@ -716,6 +752,9 @@
|
|
|
716
752
|
"type": {
|
|
717
753
|
"$ref": "items-shared.json#/$defs/itemType"
|
|
718
754
|
},
|
|
755
|
+
"typeAlt": {
|
|
756
|
+
"$ref": "items-shared.json#/$defs/itemType"
|
|
757
|
+
},
|
|
719
758
|
"rarity": {
|
|
720
759
|
"$ref": "items-shared.json#/$defs/itemRarity"
|
|
721
760
|
},
|
|
@@ -725,12 +764,18 @@
|
|
|
725
764
|
"page": {
|
|
726
765
|
"$ref": "util.json#/$defs/page"
|
|
727
766
|
},
|
|
767
|
+
"reprintedAs": {
|
|
768
|
+
"$ref": "util.json#/$defs/reprintedAs"
|
|
769
|
+
},
|
|
728
770
|
"ac": {
|
|
729
771
|
"type": "integer"
|
|
730
772
|
},
|
|
731
773
|
"age": {
|
|
732
774
|
"$ref": "items-shared.json#/$defs/itemAge"
|
|
733
775
|
},
|
|
776
|
+
"bonusWeapon": {
|
|
777
|
+
"type": "string"
|
|
778
|
+
},
|
|
734
779
|
"dmg1": {
|
|
735
780
|
"type": "string"
|
|
736
781
|
},
|
|
@@ -841,6 +886,18 @@
|
|
|
841
886
|
"speed": {
|
|
842
887
|
"$ref": "items-shared.json#/$defs/itemSpeed"
|
|
843
888
|
},
|
|
889
|
+
"charges": {
|
|
890
|
+
"type": [
|
|
891
|
+
"string",
|
|
892
|
+
"integer"
|
|
893
|
+
]
|
|
894
|
+
},
|
|
895
|
+
"recharge": {
|
|
896
|
+
"$ref": "items-shared.json#/$defs/itemRecharge"
|
|
897
|
+
},
|
|
898
|
+
"rechargeAmount": {
|
|
899
|
+
"$ref": "items-shared.json#/$defs/itemRechargeAmount"
|
|
900
|
+
},
|
|
844
901
|
"valueMult": {
|
|
845
902
|
"type": "number"
|
|
846
903
|
},
|
|
@@ -930,6 +987,9 @@
|
|
|
930
987
|
"hasFluffImages": {
|
|
931
988
|
"type": "boolean"
|
|
932
989
|
},
|
|
990
|
+
"customProperties": {
|
|
991
|
+
"$ref": "items-shared.json#/$defs/customProperties"
|
|
992
|
+
},
|
|
933
993
|
"currencyConversion": {
|
|
934
994
|
"description": "ID of a value conversion table. Homebrew only.",
|
|
935
995
|
"type": "string"
|
|
@@ -1031,13 +1091,7 @@
|
|
|
1031
1091
|
"additionalProperties": false
|
|
1032
1092
|
}
|
|
1033
1093
|
},
|
|
1034
|
-
"additionalProperties":
|
|
1035
|
-
"type": [
|
|
1036
|
-
"boolean",
|
|
1037
|
-
"integer",
|
|
1038
|
-
"string"
|
|
1039
|
-
]
|
|
1040
|
-
},
|
|
1094
|
+
"additionalProperties": false,
|
|
1041
1095
|
"required": [
|
|
1042
1096
|
"_copy"
|
|
1043
1097
|
]
|
|
@@ -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.4",
|
|
5
5
|
"type": "object",
|
|
6
6
|
"$defs": {
|
|
7
7
|
"itemData": {
|
|
@@ -28,6 +28,9 @@
|
|
|
28
28
|
"additionalSources": {
|
|
29
29
|
"$ref": "util.json#/$defs/additionalSources"
|
|
30
30
|
},
|
|
31
|
+
"reprintedAs": {
|
|
32
|
+
"$ref": "util.json#/$defs/reprintedAs"
|
|
33
|
+
},
|
|
31
34
|
"baseItem": {
|
|
32
35
|
"type": "string"
|
|
33
36
|
},
|
|
@@ -546,6 +549,9 @@
|
|
|
546
549
|
"type": "boolean",
|
|
547
550
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|
|
548
551
|
},
|
|
552
|
+
"customProperties": {
|
|
553
|
+
"$ref": "items-shared.json#/$defs/customProperties"
|
|
554
|
+
},
|
|
549
555
|
"acSpecial": {
|
|
550
556
|
"description": "Free text field for homebrew use.",
|
|
551
557
|
"type": "string"
|
|
@@ -589,13 +595,7 @@
|
|
|
589
595
|
"$ref": "items-shared.json#/$defs/fluff"
|
|
590
596
|
}
|
|
591
597
|
},
|
|
592
|
-
"additionalProperties":
|
|
593
|
-
"type": [
|
|
594
|
-
"boolean",
|
|
595
|
-
"integer",
|
|
596
|
-
"string"
|
|
597
|
-
]
|
|
598
|
-
}
|
|
598
|
+
"additionalProperties": false
|
|
599
599
|
},
|
|
600
600
|
"item": {
|
|
601
601
|
"anyOf": [
|
|
@@ -623,6 +623,9 @@
|
|
|
623
623
|
"additionalSources": {
|
|
624
624
|
"$ref": "util.json#/$defs/additionalSources"
|
|
625
625
|
},
|
|
626
|
+
"reprintedAs": {
|
|
627
|
+
"$ref": "util.json#/$defs/reprintedAs"
|
|
628
|
+
},
|
|
626
629
|
"baseItem": {
|
|
627
630
|
"type": "string"
|
|
628
631
|
},
|
|
@@ -1141,6 +1144,9 @@
|
|
|
1141
1144
|
"type": "boolean",
|
|
1142
1145
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|
|
1143
1146
|
},
|
|
1147
|
+
"customProperties": {
|
|
1148
|
+
"$ref": "items-shared.json#/$defs/customProperties"
|
|
1149
|
+
},
|
|
1144
1150
|
"acSpecial": {
|
|
1145
1151
|
"description": "Free text field for homebrew use.",
|
|
1146
1152
|
"type": "string"
|
|
@@ -1184,13 +1190,7 @@
|
|
|
1184
1190
|
"$ref": "items-shared.json#/$defs/fluff"
|
|
1185
1191
|
}
|
|
1186
1192
|
},
|
|
1187
|
-
"additionalProperties":
|
|
1188
|
-
"type": [
|
|
1189
|
-
"boolean",
|
|
1190
|
-
"integer",
|
|
1191
|
-
"string"
|
|
1192
|
-
]
|
|
1193
|
-
},
|
|
1193
|
+
"additionalProperties": false,
|
|
1194
1194
|
"required": [
|
|
1195
1195
|
"name",
|
|
1196
1196
|
"rarity",
|
|
@@ -1221,6 +1221,9 @@
|
|
|
1221
1221
|
"additionalSources": {
|
|
1222
1222
|
"$ref": "util.json#/$defs/additionalSources"
|
|
1223
1223
|
},
|
|
1224
|
+
"reprintedAs": {
|
|
1225
|
+
"$ref": "util.json#/$defs/reprintedAs"
|
|
1226
|
+
},
|
|
1224
1227
|
"baseItem": {
|
|
1225
1228
|
"type": "string"
|
|
1226
1229
|
},
|
|
@@ -1739,6 +1742,9 @@
|
|
|
1739
1742
|
"type": "boolean",
|
|
1740
1743
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|
|
1741
1744
|
},
|
|
1745
|
+
"customProperties": {
|
|
1746
|
+
"$ref": "items-shared.json#/$defs/customProperties"
|
|
1747
|
+
},
|
|
1742
1748
|
"acSpecial": {
|
|
1743
1749
|
"description": "Free text field for homebrew use.",
|
|
1744
1750
|
"type": "string"
|
|
@@ -1848,13 +1854,7 @@
|
|
|
1848
1854
|
"additionalProperties": false
|
|
1849
1855
|
}
|
|
1850
1856
|
},
|
|
1851
|
-
"additionalProperties":
|
|
1852
|
-
"type": [
|
|
1853
|
-
"boolean",
|
|
1854
|
-
"integer",
|
|
1855
|
-
"string"
|
|
1856
|
-
]
|
|
1857
|
-
},
|
|
1857
|
+
"additionalProperties": false,
|
|
1858
1858
|
"required": [
|
|
1859
1859
|
"_copy"
|
|
1860
1860
|
]
|
|
@@ -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.7",
|
|
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
|
},
|
|
@@ -134,6 +175,9 @@
|
|
|
134
175
|
"page": {
|
|
135
176
|
"$ref": "util.json#/$defs/page"
|
|
136
177
|
},
|
|
178
|
+
"reprintedAs": {
|
|
179
|
+
"$ref": "util.json#/$defs/reprintedAs"
|
|
180
|
+
},
|
|
137
181
|
"namePrefix": {
|
|
138
182
|
"type": "string"
|
|
139
183
|
},
|
|
@@ -143,6 +187,9 @@
|
|
|
143
187
|
"nameRemove": {
|
|
144
188
|
"type": "string"
|
|
145
189
|
},
|
|
190
|
+
"grantsProficiency": {
|
|
191
|
+
"type": "boolean"
|
|
192
|
+
},
|
|
146
193
|
"reqAttune": {
|
|
147
194
|
"type": [
|
|
148
195
|
"string",
|
|
@@ -240,6 +287,9 @@
|
|
|
240
287
|
"description": "Expression used to calculate each specific variant's value.",
|
|
241
288
|
"type": "string"
|
|
242
289
|
},
|
|
290
|
+
"weaponCategory": {
|
|
291
|
+
"$ref": "items-shared.json#/$defs/itemWeaponCategory"
|
|
292
|
+
},
|
|
243
293
|
"weightMult": {
|
|
244
294
|
"type": "number"
|
|
245
295
|
},
|
|
@@ -266,6 +316,14 @@
|
|
|
266
316
|
"type": "boolean",
|
|
267
317
|
"description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
|
|
268
318
|
},
|
|
319
|
+
"customProperties": {
|
|
320
|
+
"description": "An unrestricted area for custom properties to be stored.",
|
|
321
|
+
"type": "object"
|
|
322
|
+
},
|
|
323
|
+
"currencyConversion": {
|
|
324
|
+
"description": "ID of a value conversion table. Homebrew only.",
|
|
325
|
+
"type": "string"
|
|
326
|
+
},
|
|
269
327
|
"fluff": {
|
|
270
328
|
"$ref": "items-shared.json#/$defs/fluff"
|
|
271
329
|
}
|
|
@@ -275,13 +333,7 @@
|
|
|
275
333
|
"source",
|
|
276
334
|
"page"
|
|
277
335
|
],
|
|
278
|
-
"additionalProperties":
|
|
279
|
-
"type": [
|
|
280
|
-
"boolean",
|
|
281
|
-
"integer",
|
|
282
|
-
"string"
|
|
283
|
-
]
|
|
284
|
-
}
|
|
336
|
+
"additionalProperties": false
|
|
285
337
|
},
|
|
286
338
|
"excludes": {
|
|
287
339
|
"type": "object",
|
|
@@ -317,15 +369,48 @@
|
|
|
317
369
|
},
|
|
318
370
|
"net": {
|
|
319
371
|
"type": "boolean"
|
|
372
|
+
},
|
|
373
|
+
"armor": {
|
|
374
|
+
"type": "boolean"
|
|
375
|
+
},
|
|
376
|
+
"axe": {
|
|
377
|
+
"type": "boolean"
|
|
378
|
+
},
|
|
379
|
+
"bow": {
|
|
380
|
+
"type": "boolean"
|
|
381
|
+
},
|
|
382
|
+
"crossbow": {
|
|
383
|
+
"type": "boolean"
|
|
384
|
+
},
|
|
385
|
+
"sword": {
|
|
386
|
+
"type": "boolean"
|
|
387
|
+
},
|
|
388
|
+
"weapon": {
|
|
389
|
+
"type": "boolean"
|
|
390
|
+
},
|
|
391
|
+
"firearm": {
|
|
392
|
+
"type": "boolean"
|
|
393
|
+
},
|
|
394
|
+
"mace": {
|
|
395
|
+
"type": "boolean"
|
|
396
|
+
},
|
|
397
|
+
"spear": {
|
|
398
|
+
"type": "boolean"
|
|
399
|
+
},
|
|
400
|
+
"hammer": {
|
|
401
|
+
"type": "boolean"
|
|
402
|
+
},
|
|
403
|
+
"club": {
|
|
404
|
+
"type": "boolean"
|
|
405
|
+
},
|
|
406
|
+
"dagger": {
|
|
407
|
+
"type": "boolean"
|
|
408
|
+
},
|
|
409
|
+
"customProperties": {
|
|
410
|
+
"$ref": "items-shared.json#/$defs/customProperties"
|
|
320
411
|
}
|
|
321
412
|
},
|
|
322
|
-
"additionalProperties":
|
|
323
|
-
"type": [
|
|
324
|
-
"boolean",
|
|
325
|
-
"integer",
|
|
326
|
-
"string"
|
|
327
|
-
]
|
|
328
|
-
}
|
|
413
|
+
"additionalProperties": false
|
|
329
414
|
},
|
|
330
415
|
"noDisplay": {
|
|
331
416
|
"type": "boolean"
|
|
@@ -343,6 +428,7 @@
|
|
|
343
428
|
}
|
|
344
429
|
},
|
|
345
430
|
"ammo": {
|
|
431
|
+
"description": "Adds ammunition text to the header of the generic variant.",
|
|
346
432
|
"type": "boolean"
|
|
347
433
|
},
|
|
348
434
|
"reqAttuneTags": {
|
|
@@ -360,6 +446,9 @@
|
|
|
360
446
|
"hasFluffImages": {
|
|
361
447
|
"type": "boolean"
|
|
362
448
|
},
|
|
449
|
+
"customProperties": {
|
|
450
|
+
"$ref": "items-shared.json#/$defs/customProperties"
|
|
451
|
+
},
|
|
363
452
|
"fluff": {
|
|
364
453
|
"$ref": "items-shared.json#/$defs/fluff"
|
|
365
454
|
},
|
|
@@ -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
|
},
|