5etools-utils 0.12.75 → 0.12.77

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.
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "magicvariants.json",
4
- "version": "1.9.9",
4
+ "version": "1.9.10",
5
5
  "type": "object",
6
6
  "$defs": {
7
- "_magicvariantItemBase": {
7
+ "_magicvariantDataBase": {
8
8
  "type": "object",
9
9
  "properties": {
10
10
  "name": {
@@ -616,7 +616,1870 @@
616
616
  },
617
617
  "additionalProperties": false
618
618
  },
619
- "_magicvariantItemSite": {
619
+ "_magicvariantDataSite": {
620
+ "$ref": "#/$defs/_magicvariantDataBase"
621
+ },
622
+ "_magicvariantDataBrewRootRarity": {
623
+ "type": "object",
624
+ "properties": {
625
+ "name": {
626
+ "type": "string"
627
+ },
628
+ "alias": {
629
+ "$ref": "util.json#/$defs/alias"
630
+ },
631
+ "edition": {
632
+ "$ref": "util-edition.json#/$defs/edition"
633
+ },
634
+ "type": {
635
+ "$ref": "items-shared.json#/$defs/itemType"
636
+ },
637
+ "entries": {
638
+ "type": "array",
639
+ "items": {
640
+ "$ref": "entry.json"
641
+ }
642
+ },
643
+ "requires": {
644
+ "type": "array",
645
+ "items": {
646
+ "type": "object",
647
+ "properties": {
648
+ "name": {
649
+ "type": "string"
650
+ },
651
+ "property": {
652
+ "type": "string"
653
+ },
654
+ "armor": {
655
+ "type": "boolean"
656
+ },
657
+ "axe": {
658
+ "type": "boolean"
659
+ },
660
+ "bow": {
661
+ "type": "boolean"
662
+ },
663
+ "crossbow": {
664
+ "type": "boolean"
665
+ },
666
+ "sword": {
667
+ "type": "boolean"
668
+ },
669
+ "weapon": {
670
+ "type": "boolean"
671
+ },
672
+ "firearm": {
673
+ "type": "boolean"
674
+ },
675
+ "mace": {
676
+ "type": "boolean"
677
+ },
678
+ "spear": {
679
+ "type": "boolean"
680
+ },
681
+ "hammer": {
682
+ "type": "boolean"
683
+ },
684
+ "club": {
685
+ "type": "boolean"
686
+ },
687
+ "dagger": {
688
+ "type": "boolean"
689
+ },
690
+ "dmgType": {
691
+ "$ref": "util.json#/$defs/dataDamageTags"
692
+ },
693
+ "source": {
694
+ "$ref": "util.json#/$defs/source"
695
+ },
696
+ "type": {
697
+ "$ref": "items-shared.json#/$defs/itemType"
698
+ },
699
+ "scfType": {
700
+ "$ref": "items-shared.json#/$defs/itemScfType"
701
+ },
702
+ "net": {
703
+ "type": "boolean"
704
+ },
705
+ "polearm": {
706
+ "type": "boolean"
707
+ },
708
+ "lance": {
709
+ "type": "boolean"
710
+ },
711
+ "rapier": {
712
+ "type": "boolean"
713
+ },
714
+ "whip": {
715
+ "type": "boolean"
716
+ },
717
+ "halberd": {
718
+ "type": "boolean"
719
+ },
720
+ "glaive": {
721
+ "type": "boolean"
722
+ },
723
+ "arrow": {
724
+ "type": "boolean"
725
+ },
726
+ "bolt": {
727
+ "type": "boolean"
728
+ },
729
+ "bulletFirearm": {
730
+ "type": "boolean"
731
+ },
732
+ "bulletSling": {
733
+ "type": "boolean"
734
+ },
735
+ "cellEnergy": {
736
+ "type": "boolean"
737
+ },
738
+ "needleBlowgun": {
739
+ "type": "boolean"
740
+ },
741
+ "weaponCategory": {
742
+ "$ref": "items-shared.json#/$defs/itemWeaponCategory"
743
+ },
744
+ "staff": {
745
+ "type": "boolean"
746
+ },
747
+ "customProperties": {
748
+ "description": "A more restrictive area for custom boolean-only properties to be stored.",
749
+ "type": "object",
750
+ "additionalProperties": {
751
+ "type": [
752
+ "boolean"
753
+ ]
754
+ }
755
+ }
756
+ },
757
+ "minProperties": 1,
758
+ "additionalProperties": false
759
+ }
760
+ },
761
+ "inherits": {
762
+ "type": "object",
763
+ "properties": {
764
+ "type": {
765
+ "description": "Generally this should be omitted, as the type of the base item will be used.",
766
+ "$ref": "items-shared.json#/$defs/itemType"
767
+ },
768
+ "typeAlt": {
769
+ "$ref": "items-shared.json#/$defs/itemType"
770
+ },
771
+ "property": {
772
+ "description": "Generally this should be omitted, as the properties of the base item will be used.",
773
+ "$ref": "items-shared.json#/$defs/itemPropertyOrWrapperArray"
774
+ },
775
+ "propertyAdd": {
776
+ "description": "Additional properties to grant the specific variant, if not already present on the base item.",
777
+ "$ref": "items-shared.json#/$defs/itemPropertyOrWrapperArray"
778
+ },
779
+ "propertyRemove": {
780
+ "description": "Properties to remove from the specific variant, if present on the base item.",
781
+ "$ref": "items-shared.json#/$defs/itemPropertyOrWrapperArray"
782
+ },
783
+ "range": {
784
+ "type": "string"
785
+ },
786
+ "ac": {
787
+ "type": "integer"
788
+ },
789
+ "age": {
790
+ "$ref": "items-shared.json#/$defs/itemAge"
791
+ },
792
+ "critThreshold": {
793
+ "type": "integer"
794
+ },
795
+ "bonusAc": {
796
+ "type": "string"
797
+ },
798
+ "bonusWeapon": {
799
+ "type": "string"
800
+ },
801
+ "bonusWeaponAttack": {
802
+ "type": "string"
803
+ },
804
+ "bonusWeaponDamage": {
805
+ "type": "string"
806
+ },
807
+ "bonusWeaponCritDamage": {
808
+ "type": "string"
809
+ },
810
+ "bonusSpellAttack": {
811
+ "type": "string"
812
+ },
813
+ "bonusSpellDamage": {
814
+ "type": "string"
815
+ },
816
+ "bonusSpellSaveDc": {
817
+ "type": "string"
818
+ },
819
+ "bonusSavingThrow": {
820
+ "type": "string"
821
+ },
822
+ "bonusAbilityCheck": {
823
+ "type": "string"
824
+ },
825
+ "bonusProficiencyBonus": {
826
+ "type": "string"
827
+ },
828
+ "bonusSavingThrowConcentration": {
829
+ "type": "string"
830
+ },
831
+ "dmg1": {
832
+ "type": "string"
833
+ },
834
+ "dmg2": {
835
+ "type": "string",
836
+ "description": "The versatile or alternative damage dice of the weapon, e.g. \"1d10\""
837
+ },
838
+ "dmgType": {
839
+ "$ref": "util.json#/$defs/dataDamageTags"
840
+ },
841
+ "modifySpeed": {
842
+ "$ref": "items-shared.json#/$defs/itemModifySpeed"
843
+ },
844
+ "tier": {
845
+ "$ref": "items-shared.json#/$defs/itemTier"
846
+ },
847
+ "rarity": {
848
+ "$ref": "items-shared.json#/$defs/itemRarity"
849
+ },
850
+ "source": {
851
+ "$ref": "util.json#/$defs/source"
852
+ },
853
+ "page": {
854
+ "$ref": "util.json#/$defs/page"
855
+ },
856
+ "reprintedAs": {
857
+ "$ref": "util.json#/$defs/reprintedAs"
858
+ },
859
+ "namePrefix": {
860
+ "type": "string"
861
+ },
862
+ "nameSuffix": {
863
+ "type": "string"
864
+ },
865
+ "nameRemove": {
866
+ "type": "string"
867
+ },
868
+ "grantsProficiency": {
869
+ "type": "boolean"
870
+ },
871
+ "grantsLanguage": {
872
+ "type": "boolean"
873
+ },
874
+ "reqAttune": {
875
+ "type": [
876
+ "string",
877
+ "boolean"
878
+ ]
879
+ },
880
+ "curse": {
881
+ "type": "boolean"
882
+ },
883
+ "vulnerable": {
884
+ "$ref": "util.json#/$defs/damageVulnerabilityArray"
885
+ },
886
+ "resist": {
887
+ "$ref": "util.json#/$defs/damageResistArray"
888
+ },
889
+ "immune": {
890
+ "$ref": "util.json#/$defs/damageImmunityArray"
891
+ },
892
+ "conditionImmune": {
893
+ "$ref": "util.json#/$defs/conditionImmunityArray"
894
+ },
895
+ "stealth": {
896
+ "type": "boolean"
897
+ },
898
+ "strength": {
899
+ "type": [
900
+ "string",
901
+ "null"
902
+ ]
903
+ },
904
+ "dexterityMax": {
905
+ "$ref": "items-shared.json#/$defs/itemDexterityMax"
906
+ },
907
+ "wondrous": {
908
+ "type": "boolean"
909
+ },
910
+ "sentient": {
911
+ "const": true
912
+ },
913
+ "entries": {
914
+ "type": "array",
915
+ "items": {
916
+ "$ref": "entry.json"
917
+ }
918
+ },
919
+ "charges": {
920
+ "type": [
921
+ "string",
922
+ "integer"
923
+ ]
924
+ },
925
+ "recharge": {
926
+ "$ref": "items-shared.json#/$defs/itemRecharge"
927
+ },
928
+ "rechargeAmount": {
929
+ "$ref": "items-shared.json#/$defs/itemRechargeAmount"
930
+ },
931
+ "attachedSpells": {
932
+ "type": "array",
933
+ "items": {
934
+ "type": "string"
935
+ }
936
+ },
937
+ "ability": {
938
+ "$ref": "items-shared.json#/$defs/itemAbility"
939
+ },
940
+ "lootTables": {
941
+ "type": "array",
942
+ "items": {
943
+ "oneOf": [
944
+ {
945
+ "type": "string"
946
+ },
947
+ {
948
+ "type": "object",
949
+ "properties": {
950
+ "name": {
951
+ "type": "string"
952
+ },
953
+ "source": {
954
+ "$ref": "util.json#/$defs/source"
955
+ }
956
+ }
957
+ }
958
+ ]
959
+ }
960
+ },
961
+ "srd": {
962
+ "$ref": "util.json#/$defs/srd"
963
+ },
964
+ "srd52": {
965
+ "$ref": "util.json#/$defs/srd"
966
+ },
967
+ "basicRules": {
968
+ "$ref": "util.json#/$defs/basicRules"
969
+ },
970
+ "freeRules2024": {
971
+ "$ref": "util.json#/$defs/basicRules"
972
+ },
973
+ "legacy": {
974
+ "$ref": "util.json#/$defs/legacy"
975
+ },
976
+ "otherSources": {
977
+ "$ref": "util.json#/$defs/otherSources"
978
+ },
979
+ "valueMult": {
980
+ "type": "number"
981
+ },
982
+ "valueExpression": {
983
+ "description": "Expression used to calculate each specific variant's value.",
984
+ "type": "string"
985
+ },
986
+ "valueRarity": {
987
+ "$ref": "items-shared.json#/$defs/itemRarity"
988
+ },
989
+ "weaponCategory": {
990
+ "$ref": "items-shared.json#/$defs/itemWeaponCategory"
991
+ },
992
+ "weight": {
993
+ "type": "number"
994
+ },
995
+ "weightMult": {
996
+ "type": "number"
997
+ },
998
+ "weightExpression": {
999
+ "description": "Expression used to calculate each specific variant's weight.",
1000
+ "type": "string"
1001
+ },
1002
+ "barding": {
1003
+ "type": "boolean"
1004
+ },
1005
+ "spellScrollLevel": {
1006
+ "type": "integer"
1007
+ },
1008
+ "reqAttuneTags": {
1009
+ "$ref": "util.json#/$defs/reqAttuneTags"
1010
+ },
1011
+ "reqAttuneAltTags": {
1012
+ "$ref": "util.json#/$defs/reqAttuneTags"
1013
+ },
1014
+ "miscTags": {
1015
+ "$ref": "items-shared.json#/$defs/itemMiscTags"
1016
+ },
1017
+ "mastery": {
1018
+ "$ref": "items-shared.json#/$defs/itemMastery"
1019
+ },
1020
+ "reach": {
1021
+ "$ref": "items-shared.json#/$defs/itemReach"
1022
+ },
1023
+ "light": {
1024
+ "$ref": "items-shared.json#/$defs/itemLight"
1025
+ },
1026
+ "hasRefs": {
1027
+ "type": "boolean",
1028
+ "description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
1029
+ },
1030
+ "customProperties": {
1031
+ "description": "An unrestricted area for custom properties to be stored.",
1032
+ "type": "object"
1033
+ },
1034
+ "acSpecial": {
1035
+ "$ref": "items-shared.json#/$defs/itemAcSpecial"
1036
+ },
1037
+ "currencyConversion": {
1038
+ "description": "ID of a value conversion table. Homebrew only.",
1039
+ "type": "string"
1040
+ },
1041
+ "fluff": {
1042
+ "$ref": "items-shared.json#/$defs/fluff"
1043
+ }
1044
+ },
1045
+ "additionalProperties": false
1046
+ },
1047
+ "excludes": {
1048
+ "type": "object",
1049
+ "properties": {
1050
+ "name": {
1051
+ "oneOf": [
1052
+ {
1053
+ "type": "string"
1054
+ },
1055
+ {
1056
+ "type": "array",
1057
+ "items": {
1058
+ "type": "string"
1059
+ }
1060
+ }
1061
+ ]
1062
+ },
1063
+ "page": {
1064
+ "$ref": "util.json#/$defs/page"
1065
+ },
1066
+ "property": {
1067
+ "oneOf": [
1068
+ {
1069
+ "type": "string"
1070
+ },
1071
+ {
1072
+ "type": "array",
1073
+ "items": {
1074
+ "type": "string"
1075
+ }
1076
+ }
1077
+ ]
1078
+ },
1079
+ "armor": {
1080
+ "type": "boolean"
1081
+ },
1082
+ "axe": {
1083
+ "type": "boolean"
1084
+ },
1085
+ "bow": {
1086
+ "type": "boolean"
1087
+ },
1088
+ "crossbow": {
1089
+ "type": "boolean"
1090
+ },
1091
+ "sword": {
1092
+ "type": "boolean"
1093
+ },
1094
+ "weapon": {
1095
+ "type": "boolean"
1096
+ },
1097
+ "firearm": {
1098
+ "type": "boolean"
1099
+ },
1100
+ "mace": {
1101
+ "type": "boolean"
1102
+ },
1103
+ "spear": {
1104
+ "type": "boolean"
1105
+ },
1106
+ "hammer": {
1107
+ "type": "boolean"
1108
+ },
1109
+ "club": {
1110
+ "type": "boolean"
1111
+ },
1112
+ "dagger": {
1113
+ "type": "boolean"
1114
+ },
1115
+ "dmgType": {
1116
+ "$ref": "util.json#/$defs/dataDamageTags"
1117
+ },
1118
+ "source": {
1119
+ "$ref": "util.json#/$defs/source"
1120
+ },
1121
+ "type": {
1122
+ "$ref": "items-shared.json#/$defs/itemType"
1123
+ },
1124
+ "scfType": {
1125
+ "$ref": "items-shared.json#/$defs/itemScfType"
1126
+ },
1127
+ "net": {
1128
+ "type": "boolean"
1129
+ },
1130
+ "polearm": {
1131
+ "type": "boolean"
1132
+ },
1133
+ "lance": {
1134
+ "type": "boolean"
1135
+ },
1136
+ "rapier": {
1137
+ "type": "boolean"
1138
+ },
1139
+ "whip": {
1140
+ "type": "boolean"
1141
+ },
1142
+ "halberd": {
1143
+ "type": "boolean"
1144
+ },
1145
+ "glaive": {
1146
+ "type": "boolean"
1147
+ },
1148
+ "arrow": {
1149
+ "type": "boolean"
1150
+ },
1151
+ "bolt": {
1152
+ "type": "boolean"
1153
+ },
1154
+ "bulletFirearm": {
1155
+ "type": "boolean"
1156
+ },
1157
+ "bulletSling": {
1158
+ "type": "boolean"
1159
+ },
1160
+ "cellEnergy": {
1161
+ "type": "boolean"
1162
+ },
1163
+ "needleBlowgun": {
1164
+ "type": "boolean"
1165
+ },
1166
+ "weaponCategory": {
1167
+ "$ref": "items-shared.json#/$defs/itemWeaponCategory"
1168
+ },
1169
+ "staff": {
1170
+ "type": "boolean"
1171
+ },
1172
+ "customProperties": {
1173
+ "$ref": "items-shared.json#/$defs/customProperties"
1174
+ }
1175
+ },
1176
+ "minProperties": 1,
1177
+ "additionalProperties": false
1178
+ },
1179
+ "noDisplay": {
1180
+ "type": "boolean"
1181
+ },
1182
+ "charges": {
1183
+ "type": [
1184
+ "string",
1185
+ "integer"
1186
+ ]
1187
+ },
1188
+ "attachedSpells": {
1189
+ "type": "array",
1190
+ "items": {
1191
+ "type": "string"
1192
+ }
1193
+ },
1194
+ "ammo": {
1195
+ "description": "Adds ammunition text to the header of the generic variant.",
1196
+ "type": "boolean"
1197
+ },
1198
+ "reqAttuneTags": {
1199
+ "$ref": "util.json#/$defs/reqAttuneTags"
1200
+ },
1201
+ "reqAttuneAltTags": {
1202
+ "$ref": "util.json#/$defs/reqAttuneTags"
1203
+ },
1204
+ "weaponCategory": {
1205
+ "$ref": "items-shared.json#/$defs/itemWeaponCategory"
1206
+ },
1207
+ "hasFluff": {
1208
+ "type": "boolean"
1209
+ },
1210
+ "hasFluffImages": {
1211
+ "type": "boolean"
1212
+ },
1213
+ "customProperties": {
1214
+ "$ref": "items-shared.json#/$defs/customProperties"
1215
+ },
1216
+ "fluff": {
1217
+ "$ref": "items-shared.json#/$defs/fluff"
1218
+ },
1219
+ "foundrySystem": {
1220
+ "$ref": "util-foundry.json#/$defs/foundrySystemObject"
1221
+ },
1222
+ "foundryFlags": {
1223
+ "$ref": "util-foundry.json#/$defs/foundryFlagsObject"
1224
+ },
1225
+ "foundryEffects": {
1226
+ "$ref": "util-foundry.json#/$defs/foundryEffectsArray"
1227
+ },
1228
+ "foundryImg": {
1229
+ "$ref": "util-foundry.json#/$defs/foundryImg"
1230
+ },
1231
+ "rarity": {
1232
+ "$ref": "items-shared.json#/$defs/itemRarity"
1233
+ }
1234
+ },
1235
+ "additionalProperties": false
1236
+ },
1237
+ "_magicvariantSite": {
1238
+ "type": "object",
1239
+ "properties": {
1240
+ "name": {
1241
+ "type": "string"
1242
+ },
1243
+ "alias": {
1244
+ "$ref": "util.json#/$defs/alias"
1245
+ },
1246
+ "edition": {
1247
+ "$ref": "util-edition.json#/$defs/edition"
1248
+ },
1249
+ "type": {
1250
+ "$ref": "items-shared.json#/$defs/itemType"
1251
+ },
1252
+ "entries": {
1253
+ "type": "array",
1254
+ "items": {
1255
+ "$ref": "entry.json"
1256
+ }
1257
+ },
1258
+ "requires": {
1259
+ "type": "array",
1260
+ "items": {
1261
+ "type": "object",
1262
+ "properties": {
1263
+ "name": {
1264
+ "type": "string"
1265
+ },
1266
+ "property": {
1267
+ "type": "string"
1268
+ },
1269
+ "armor": {
1270
+ "type": "boolean"
1271
+ },
1272
+ "axe": {
1273
+ "type": "boolean"
1274
+ },
1275
+ "bow": {
1276
+ "type": "boolean"
1277
+ },
1278
+ "crossbow": {
1279
+ "type": "boolean"
1280
+ },
1281
+ "sword": {
1282
+ "type": "boolean"
1283
+ },
1284
+ "weapon": {
1285
+ "type": "boolean"
1286
+ },
1287
+ "firearm": {
1288
+ "type": "boolean"
1289
+ },
1290
+ "mace": {
1291
+ "type": "boolean"
1292
+ },
1293
+ "spear": {
1294
+ "type": "boolean"
1295
+ },
1296
+ "hammer": {
1297
+ "type": "boolean"
1298
+ },
1299
+ "club": {
1300
+ "type": "boolean"
1301
+ },
1302
+ "dagger": {
1303
+ "type": "boolean"
1304
+ },
1305
+ "dmgType": {
1306
+ "$ref": "util.json#/$defs/dataDamageTags"
1307
+ },
1308
+ "source": {
1309
+ "$ref": "util.json#/$defs/source"
1310
+ },
1311
+ "type": {
1312
+ "$ref": "items-shared.json#/$defs/itemType"
1313
+ },
1314
+ "scfType": {
1315
+ "$ref": "items-shared.json#/$defs/itemScfType"
1316
+ },
1317
+ "net": {
1318
+ "type": "boolean"
1319
+ },
1320
+ "polearm": {
1321
+ "type": "boolean"
1322
+ },
1323
+ "lance": {
1324
+ "type": "boolean"
1325
+ },
1326
+ "rapier": {
1327
+ "type": "boolean"
1328
+ },
1329
+ "whip": {
1330
+ "type": "boolean"
1331
+ },
1332
+ "halberd": {
1333
+ "type": "boolean"
1334
+ },
1335
+ "glaive": {
1336
+ "type": "boolean"
1337
+ },
1338
+ "arrow": {
1339
+ "type": "boolean"
1340
+ },
1341
+ "bolt": {
1342
+ "type": "boolean"
1343
+ },
1344
+ "bulletFirearm": {
1345
+ "type": "boolean"
1346
+ },
1347
+ "bulletSling": {
1348
+ "type": "boolean"
1349
+ },
1350
+ "cellEnergy": {
1351
+ "type": "boolean"
1352
+ },
1353
+ "needleBlowgun": {
1354
+ "type": "boolean"
1355
+ },
1356
+ "weaponCategory": {
1357
+ "$ref": "items-shared.json#/$defs/itemWeaponCategory"
1358
+ },
1359
+ "staff": {
1360
+ "type": "boolean"
1361
+ },
1362
+ "customProperties": {
1363
+ "description": "A more restrictive area for custom boolean-only properties to be stored.",
1364
+ "type": "object",
1365
+ "additionalProperties": {
1366
+ "type": [
1367
+ "boolean"
1368
+ ]
1369
+ }
1370
+ }
1371
+ },
1372
+ "minProperties": 1,
1373
+ "additionalProperties": false
1374
+ }
1375
+ },
1376
+ "inherits": {
1377
+ "type": "object",
1378
+ "properties": {
1379
+ "type": {
1380
+ "description": "Generally this should be omitted, as the type of the base item will be used.",
1381
+ "$ref": "items-shared.json#/$defs/itemType"
1382
+ },
1383
+ "typeAlt": {
1384
+ "$ref": "items-shared.json#/$defs/itemType"
1385
+ },
1386
+ "property": {
1387
+ "description": "Generally this should be omitted, as the properties of the base item will be used.",
1388
+ "$ref": "items-shared.json#/$defs/itemPropertyOrWrapperArray"
1389
+ },
1390
+ "propertyAdd": {
1391
+ "description": "Additional properties to grant the specific variant, if not already present on the base item.",
1392
+ "$ref": "items-shared.json#/$defs/itemPropertyOrWrapperArray"
1393
+ },
1394
+ "propertyRemove": {
1395
+ "description": "Properties to remove from the specific variant, if present on the base item.",
1396
+ "$ref": "items-shared.json#/$defs/itemPropertyOrWrapperArray"
1397
+ },
1398
+ "range": {
1399
+ "type": "string"
1400
+ },
1401
+ "ac": {
1402
+ "type": "integer"
1403
+ },
1404
+ "age": {
1405
+ "$ref": "items-shared.json#/$defs/itemAge"
1406
+ },
1407
+ "critThreshold": {
1408
+ "type": "integer"
1409
+ },
1410
+ "bonusAc": {
1411
+ "type": "string"
1412
+ },
1413
+ "bonusWeapon": {
1414
+ "type": "string"
1415
+ },
1416
+ "bonusWeaponAttack": {
1417
+ "type": "string"
1418
+ },
1419
+ "bonusWeaponDamage": {
1420
+ "type": "string"
1421
+ },
1422
+ "bonusWeaponCritDamage": {
1423
+ "type": "string"
1424
+ },
1425
+ "bonusSpellAttack": {
1426
+ "type": "string"
1427
+ },
1428
+ "bonusSpellDamage": {
1429
+ "type": "string"
1430
+ },
1431
+ "bonusSpellSaveDc": {
1432
+ "type": "string"
1433
+ },
1434
+ "bonusSavingThrow": {
1435
+ "type": "string"
1436
+ },
1437
+ "bonusAbilityCheck": {
1438
+ "type": "string"
1439
+ },
1440
+ "bonusProficiencyBonus": {
1441
+ "type": "string"
1442
+ },
1443
+ "bonusSavingThrowConcentration": {
1444
+ "type": "string"
1445
+ },
1446
+ "dmg1": {
1447
+ "type": "string"
1448
+ },
1449
+ "dmg2": {
1450
+ "type": "string",
1451
+ "description": "The versatile or alternative damage dice of the weapon, e.g. \"1d10\""
1452
+ },
1453
+ "dmgType": {
1454
+ "$ref": "util.json#/$defs/dataDamageTags"
1455
+ },
1456
+ "modifySpeed": {
1457
+ "$ref": "items-shared.json#/$defs/itemModifySpeed"
1458
+ },
1459
+ "tier": {
1460
+ "$ref": "items-shared.json#/$defs/itemTier"
1461
+ },
1462
+ "rarity": {
1463
+ "$ref": "items-shared.json#/$defs/itemRarity"
1464
+ },
1465
+ "source": {
1466
+ "$ref": "util.json#/$defs/source"
1467
+ },
1468
+ "page": {
1469
+ "$ref": "util.json#/$defs/page"
1470
+ },
1471
+ "reprintedAs": {
1472
+ "$ref": "util.json#/$defs/reprintedAs"
1473
+ },
1474
+ "namePrefix": {
1475
+ "type": "string"
1476
+ },
1477
+ "nameSuffix": {
1478
+ "type": "string"
1479
+ },
1480
+ "nameRemove": {
1481
+ "type": "string"
1482
+ },
1483
+ "grantsProficiency": {
1484
+ "type": "boolean"
1485
+ },
1486
+ "grantsLanguage": {
1487
+ "type": "boolean"
1488
+ },
1489
+ "reqAttune": {
1490
+ "type": [
1491
+ "string",
1492
+ "boolean"
1493
+ ]
1494
+ },
1495
+ "curse": {
1496
+ "type": "boolean"
1497
+ },
1498
+ "vulnerable": {
1499
+ "$ref": "util.json#/$defs/damageVulnerabilityArray"
1500
+ },
1501
+ "resist": {
1502
+ "$ref": "util.json#/$defs/damageResistArray"
1503
+ },
1504
+ "immune": {
1505
+ "$ref": "util.json#/$defs/damageImmunityArray"
1506
+ },
1507
+ "conditionImmune": {
1508
+ "$ref": "util.json#/$defs/conditionImmunityArray"
1509
+ },
1510
+ "stealth": {
1511
+ "type": "boolean"
1512
+ },
1513
+ "strength": {
1514
+ "type": [
1515
+ "string",
1516
+ "null"
1517
+ ]
1518
+ },
1519
+ "dexterityMax": {
1520
+ "$ref": "items-shared.json#/$defs/itemDexterityMax"
1521
+ },
1522
+ "wondrous": {
1523
+ "type": "boolean"
1524
+ },
1525
+ "sentient": {
1526
+ "const": true
1527
+ },
1528
+ "entries": {
1529
+ "type": "array",
1530
+ "items": {
1531
+ "$ref": "entry.json"
1532
+ }
1533
+ },
1534
+ "charges": {
1535
+ "type": [
1536
+ "string",
1537
+ "integer"
1538
+ ]
1539
+ },
1540
+ "recharge": {
1541
+ "$ref": "items-shared.json#/$defs/itemRecharge"
1542
+ },
1543
+ "rechargeAmount": {
1544
+ "$ref": "items-shared.json#/$defs/itemRechargeAmount"
1545
+ },
1546
+ "attachedSpells": {
1547
+ "type": "array",
1548
+ "items": {
1549
+ "type": "string"
1550
+ }
1551
+ },
1552
+ "ability": {
1553
+ "$ref": "items-shared.json#/$defs/itemAbility"
1554
+ },
1555
+ "lootTables": {
1556
+ "type": "array",
1557
+ "items": {
1558
+ "oneOf": [
1559
+ {
1560
+ "type": "string"
1561
+ },
1562
+ {
1563
+ "type": "object",
1564
+ "properties": {
1565
+ "name": {
1566
+ "type": "string"
1567
+ },
1568
+ "source": {
1569
+ "$ref": "util.json#/$defs/source"
1570
+ }
1571
+ }
1572
+ }
1573
+ ]
1574
+ }
1575
+ },
1576
+ "srd": {
1577
+ "$ref": "util.json#/$defs/srd"
1578
+ },
1579
+ "srd52": {
1580
+ "$ref": "util.json#/$defs/srd"
1581
+ },
1582
+ "basicRules": {
1583
+ "$ref": "util.json#/$defs/basicRules"
1584
+ },
1585
+ "freeRules2024": {
1586
+ "$ref": "util.json#/$defs/basicRules"
1587
+ },
1588
+ "legacy": {
1589
+ "$ref": "util.json#/$defs/legacy"
1590
+ },
1591
+ "otherSources": {
1592
+ "$ref": "util.json#/$defs/otherSources"
1593
+ },
1594
+ "valueMult": {
1595
+ "type": "number"
1596
+ },
1597
+ "valueExpression": {
1598
+ "description": "Expression used to calculate each specific variant's value.",
1599
+ "type": "string"
1600
+ },
1601
+ "valueRarity": {
1602
+ "$ref": "items-shared.json#/$defs/itemRarity"
1603
+ },
1604
+ "weaponCategory": {
1605
+ "$ref": "items-shared.json#/$defs/itemWeaponCategory"
1606
+ },
1607
+ "weight": {
1608
+ "type": "number"
1609
+ },
1610
+ "weightMult": {
1611
+ "type": "number"
1612
+ },
1613
+ "weightExpression": {
1614
+ "description": "Expression used to calculate each specific variant's weight.",
1615
+ "type": "string"
1616
+ },
1617
+ "barding": {
1618
+ "type": "boolean"
1619
+ },
1620
+ "spellScrollLevel": {
1621
+ "type": "integer"
1622
+ },
1623
+ "reqAttuneTags": {
1624
+ "$ref": "util.json#/$defs/reqAttuneTags"
1625
+ },
1626
+ "reqAttuneAltTags": {
1627
+ "$ref": "util.json#/$defs/reqAttuneTags"
1628
+ },
1629
+ "miscTags": {
1630
+ "$ref": "items-shared.json#/$defs/itemMiscTags"
1631
+ },
1632
+ "mastery": {
1633
+ "$ref": "items-shared.json#/$defs/itemMastery"
1634
+ },
1635
+ "reach": {
1636
+ "$ref": "items-shared.json#/$defs/itemReach"
1637
+ },
1638
+ "light": {
1639
+ "$ref": "items-shared.json#/$defs/itemLight"
1640
+ },
1641
+ "hasRefs": {
1642
+ "type": "boolean",
1643
+ "description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
1644
+ },
1645
+ "customProperties": {
1646
+ "description": "An unrestricted area for custom properties to be stored.",
1647
+ "type": "object"
1648
+ },
1649
+ "acSpecial": {
1650
+ "$ref": "items-shared.json#/$defs/itemAcSpecial"
1651
+ },
1652
+ "currencyConversion": {
1653
+ "description": "ID of a value conversion table. Homebrew only.",
1654
+ "type": "string"
1655
+ },
1656
+ "fluff": {
1657
+ "$ref": "items-shared.json#/$defs/fluff"
1658
+ }
1659
+ },
1660
+ "additionalProperties": false,
1661
+ "required": [
1662
+ "rarity",
1663
+ "source"
1664
+ ]
1665
+ },
1666
+ "excludes": {
1667
+ "type": "object",
1668
+ "properties": {
1669
+ "name": {
1670
+ "oneOf": [
1671
+ {
1672
+ "type": "string"
1673
+ },
1674
+ {
1675
+ "type": "array",
1676
+ "items": {
1677
+ "type": "string"
1678
+ }
1679
+ }
1680
+ ]
1681
+ },
1682
+ "page": {
1683
+ "$ref": "util.json#/$defs/page"
1684
+ },
1685
+ "property": {
1686
+ "oneOf": [
1687
+ {
1688
+ "type": "string"
1689
+ },
1690
+ {
1691
+ "type": "array",
1692
+ "items": {
1693
+ "type": "string"
1694
+ }
1695
+ }
1696
+ ]
1697
+ },
1698
+ "armor": {
1699
+ "type": "boolean"
1700
+ },
1701
+ "axe": {
1702
+ "type": "boolean"
1703
+ },
1704
+ "bow": {
1705
+ "type": "boolean"
1706
+ },
1707
+ "crossbow": {
1708
+ "type": "boolean"
1709
+ },
1710
+ "sword": {
1711
+ "type": "boolean"
1712
+ },
1713
+ "weapon": {
1714
+ "type": "boolean"
1715
+ },
1716
+ "firearm": {
1717
+ "type": "boolean"
1718
+ },
1719
+ "mace": {
1720
+ "type": "boolean"
1721
+ },
1722
+ "spear": {
1723
+ "type": "boolean"
1724
+ },
1725
+ "hammer": {
1726
+ "type": "boolean"
1727
+ },
1728
+ "club": {
1729
+ "type": "boolean"
1730
+ },
1731
+ "dagger": {
1732
+ "type": "boolean"
1733
+ },
1734
+ "dmgType": {
1735
+ "$ref": "util.json#/$defs/dataDamageTags"
1736
+ },
1737
+ "source": {
1738
+ "$ref": "util.json#/$defs/source"
1739
+ },
1740
+ "type": {
1741
+ "$ref": "items-shared.json#/$defs/itemType"
1742
+ },
1743
+ "scfType": {
1744
+ "$ref": "items-shared.json#/$defs/itemScfType"
1745
+ },
1746
+ "net": {
1747
+ "type": "boolean"
1748
+ },
1749
+ "polearm": {
1750
+ "type": "boolean"
1751
+ },
1752
+ "lance": {
1753
+ "type": "boolean"
1754
+ },
1755
+ "rapier": {
1756
+ "type": "boolean"
1757
+ },
1758
+ "whip": {
1759
+ "type": "boolean"
1760
+ },
1761
+ "halberd": {
1762
+ "type": "boolean"
1763
+ },
1764
+ "glaive": {
1765
+ "type": "boolean"
1766
+ },
1767
+ "arrow": {
1768
+ "type": "boolean"
1769
+ },
1770
+ "bolt": {
1771
+ "type": "boolean"
1772
+ },
1773
+ "bulletFirearm": {
1774
+ "type": "boolean"
1775
+ },
1776
+ "bulletSling": {
1777
+ "type": "boolean"
1778
+ },
1779
+ "cellEnergy": {
1780
+ "type": "boolean"
1781
+ },
1782
+ "needleBlowgun": {
1783
+ "type": "boolean"
1784
+ },
1785
+ "weaponCategory": {
1786
+ "$ref": "items-shared.json#/$defs/itemWeaponCategory"
1787
+ },
1788
+ "staff": {
1789
+ "type": "boolean"
1790
+ },
1791
+ "customProperties": {
1792
+ "$ref": "items-shared.json#/$defs/customProperties"
1793
+ }
1794
+ },
1795
+ "minProperties": 1,
1796
+ "additionalProperties": false
1797
+ },
1798
+ "noDisplay": {
1799
+ "type": "boolean"
1800
+ },
1801
+ "charges": {
1802
+ "type": [
1803
+ "string",
1804
+ "integer"
1805
+ ]
1806
+ },
1807
+ "attachedSpells": {
1808
+ "type": "array",
1809
+ "items": {
1810
+ "type": "string"
1811
+ }
1812
+ },
1813
+ "ammo": {
1814
+ "description": "Adds ammunition text to the header of the generic variant.",
1815
+ "type": "boolean"
1816
+ },
1817
+ "reqAttuneTags": {
1818
+ "$ref": "util.json#/$defs/reqAttuneTags"
1819
+ },
1820
+ "reqAttuneAltTags": {
1821
+ "$ref": "util.json#/$defs/reqAttuneTags"
1822
+ },
1823
+ "weaponCategory": {
1824
+ "$ref": "items-shared.json#/$defs/itemWeaponCategory"
1825
+ },
1826
+ "hasFluff": {
1827
+ "type": "boolean"
1828
+ },
1829
+ "hasFluffImages": {
1830
+ "type": "boolean"
1831
+ },
1832
+ "customProperties": {
1833
+ "$ref": "items-shared.json#/$defs/customProperties"
1834
+ },
1835
+ "fluff": {
1836
+ "$ref": "items-shared.json#/$defs/fluff"
1837
+ },
1838
+ "foundrySystem": {
1839
+ "$ref": "util-foundry.json#/$defs/foundrySystemObject"
1840
+ },
1841
+ "foundryFlags": {
1842
+ "$ref": "util-foundry.json#/$defs/foundryFlagsObject"
1843
+ },
1844
+ "foundryEffects": {
1845
+ "$ref": "util-foundry.json#/$defs/foundryEffectsArray"
1846
+ },
1847
+ "foundryImg": {
1848
+ "$ref": "util-foundry.json#/$defs/foundryImg"
1849
+ }
1850
+ },
1851
+ "additionalProperties": false,
1852
+ "required": [
1853
+ "name",
1854
+ "inherits",
1855
+ "requires"
1856
+ ]
1857
+ },
1858
+ "_magicvariantBrewRootRarity": {
1859
+ "type": "object",
1860
+ "properties": {
1861
+ "name": {
1862
+ "type": "string"
1863
+ },
1864
+ "alias": {
1865
+ "$ref": "util.json#/$defs/alias"
1866
+ },
1867
+ "edition": {
1868
+ "$ref": "util-edition.json#/$defs/edition"
1869
+ },
1870
+ "type": {
1871
+ "$ref": "items-shared.json#/$defs/itemType"
1872
+ },
1873
+ "entries": {
1874
+ "type": "array",
1875
+ "items": {
1876
+ "$ref": "entry.json"
1877
+ }
1878
+ },
1879
+ "requires": {
1880
+ "type": "array",
1881
+ "items": {
1882
+ "type": "object",
1883
+ "properties": {
1884
+ "name": {
1885
+ "type": "string"
1886
+ },
1887
+ "property": {
1888
+ "type": "string"
1889
+ },
1890
+ "armor": {
1891
+ "type": "boolean"
1892
+ },
1893
+ "axe": {
1894
+ "type": "boolean"
1895
+ },
1896
+ "bow": {
1897
+ "type": "boolean"
1898
+ },
1899
+ "crossbow": {
1900
+ "type": "boolean"
1901
+ },
1902
+ "sword": {
1903
+ "type": "boolean"
1904
+ },
1905
+ "weapon": {
1906
+ "type": "boolean"
1907
+ },
1908
+ "firearm": {
1909
+ "type": "boolean"
1910
+ },
1911
+ "mace": {
1912
+ "type": "boolean"
1913
+ },
1914
+ "spear": {
1915
+ "type": "boolean"
1916
+ },
1917
+ "hammer": {
1918
+ "type": "boolean"
1919
+ },
1920
+ "club": {
1921
+ "type": "boolean"
1922
+ },
1923
+ "dagger": {
1924
+ "type": "boolean"
1925
+ },
1926
+ "dmgType": {
1927
+ "$ref": "util.json#/$defs/dataDamageTags"
1928
+ },
1929
+ "source": {
1930
+ "$ref": "util.json#/$defs/source"
1931
+ },
1932
+ "type": {
1933
+ "$ref": "items-shared.json#/$defs/itemType"
1934
+ },
1935
+ "scfType": {
1936
+ "$ref": "items-shared.json#/$defs/itemScfType"
1937
+ },
1938
+ "net": {
1939
+ "type": "boolean"
1940
+ },
1941
+ "polearm": {
1942
+ "type": "boolean"
1943
+ },
1944
+ "lance": {
1945
+ "type": "boolean"
1946
+ },
1947
+ "rapier": {
1948
+ "type": "boolean"
1949
+ },
1950
+ "whip": {
1951
+ "type": "boolean"
1952
+ },
1953
+ "halberd": {
1954
+ "type": "boolean"
1955
+ },
1956
+ "glaive": {
1957
+ "type": "boolean"
1958
+ },
1959
+ "arrow": {
1960
+ "type": "boolean"
1961
+ },
1962
+ "bolt": {
1963
+ "type": "boolean"
1964
+ },
1965
+ "bulletFirearm": {
1966
+ "type": "boolean"
1967
+ },
1968
+ "bulletSling": {
1969
+ "type": "boolean"
1970
+ },
1971
+ "cellEnergy": {
1972
+ "type": "boolean"
1973
+ },
1974
+ "needleBlowgun": {
1975
+ "type": "boolean"
1976
+ },
1977
+ "weaponCategory": {
1978
+ "$ref": "items-shared.json#/$defs/itemWeaponCategory"
1979
+ },
1980
+ "staff": {
1981
+ "type": "boolean"
1982
+ },
1983
+ "customProperties": {
1984
+ "description": "A more restrictive area for custom boolean-only properties to be stored.",
1985
+ "type": "object",
1986
+ "additionalProperties": {
1987
+ "type": [
1988
+ "boolean"
1989
+ ]
1990
+ }
1991
+ }
1992
+ },
1993
+ "minProperties": 1,
1994
+ "additionalProperties": false
1995
+ }
1996
+ },
1997
+ "inherits": {
1998
+ "type": "object",
1999
+ "properties": {
2000
+ "type": {
2001
+ "description": "Generally this should be omitted, as the type of the base item will be used.",
2002
+ "$ref": "items-shared.json#/$defs/itemType"
2003
+ },
2004
+ "typeAlt": {
2005
+ "$ref": "items-shared.json#/$defs/itemType"
2006
+ },
2007
+ "property": {
2008
+ "description": "Generally this should be omitted, as the properties of the base item will be used.",
2009
+ "$ref": "items-shared.json#/$defs/itemPropertyOrWrapperArray"
2010
+ },
2011
+ "propertyAdd": {
2012
+ "description": "Additional properties to grant the specific variant, if not already present on the base item.",
2013
+ "$ref": "items-shared.json#/$defs/itemPropertyOrWrapperArray"
2014
+ },
2015
+ "propertyRemove": {
2016
+ "description": "Properties to remove from the specific variant, if present on the base item.",
2017
+ "$ref": "items-shared.json#/$defs/itemPropertyOrWrapperArray"
2018
+ },
2019
+ "range": {
2020
+ "type": "string"
2021
+ },
2022
+ "ac": {
2023
+ "type": "integer"
2024
+ },
2025
+ "age": {
2026
+ "$ref": "items-shared.json#/$defs/itemAge"
2027
+ },
2028
+ "critThreshold": {
2029
+ "type": "integer"
2030
+ },
2031
+ "bonusAc": {
2032
+ "type": "string"
2033
+ },
2034
+ "bonusWeapon": {
2035
+ "type": "string"
2036
+ },
2037
+ "bonusWeaponAttack": {
2038
+ "type": "string"
2039
+ },
2040
+ "bonusWeaponDamage": {
2041
+ "type": "string"
2042
+ },
2043
+ "bonusWeaponCritDamage": {
2044
+ "type": "string"
2045
+ },
2046
+ "bonusSpellAttack": {
2047
+ "type": "string"
2048
+ },
2049
+ "bonusSpellDamage": {
2050
+ "type": "string"
2051
+ },
2052
+ "bonusSpellSaveDc": {
2053
+ "type": "string"
2054
+ },
2055
+ "bonusSavingThrow": {
2056
+ "type": "string"
2057
+ },
2058
+ "bonusAbilityCheck": {
2059
+ "type": "string"
2060
+ },
2061
+ "bonusProficiencyBonus": {
2062
+ "type": "string"
2063
+ },
2064
+ "bonusSavingThrowConcentration": {
2065
+ "type": "string"
2066
+ },
2067
+ "dmg1": {
2068
+ "type": "string"
2069
+ },
2070
+ "dmg2": {
2071
+ "type": "string",
2072
+ "description": "The versatile or alternative damage dice of the weapon, e.g. \"1d10\""
2073
+ },
2074
+ "dmgType": {
2075
+ "$ref": "util.json#/$defs/dataDamageTags"
2076
+ },
2077
+ "modifySpeed": {
2078
+ "$ref": "items-shared.json#/$defs/itemModifySpeed"
2079
+ },
2080
+ "tier": {
2081
+ "$ref": "items-shared.json#/$defs/itemTier"
2082
+ },
2083
+ "rarity": {
2084
+ "$ref": "items-shared.json#/$defs/itemRarity"
2085
+ },
2086
+ "source": {
2087
+ "$ref": "util.json#/$defs/source"
2088
+ },
2089
+ "page": {
2090
+ "$ref": "util.json#/$defs/page"
2091
+ },
2092
+ "reprintedAs": {
2093
+ "$ref": "util.json#/$defs/reprintedAs"
2094
+ },
2095
+ "namePrefix": {
2096
+ "type": "string"
2097
+ },
2098
+ "nameSuffix": {
2099
+ "type": "string"
2100
+ },
2101
+ "nameRemove": {
2102
+ "type": "string"
2103
+ },
2104
+ "grantsProficiency": {
2105
+ "type": "boolean"
2106
+ },
2107
+ "grantsLanguage": {
2108
+ "type": "boolean"
2109
+ },
2110
+ "reqAttune": {
2111
+ "type": [
2112
+ "string",
2113
+ "boolean"
2114
+ ]
2115
+ },
2116
+ "curse": {
2117
+ "type": "boolean"
2118
+ },
2119
+ "vulnerable": {
2120
+ "$ref": "util.json#/$defs/damageVulnerabilityArray"
2121
+ },
2122
+ "resist": {
2123
+ "$ref": "util.json#/$defs/damageResistArray"
2124
+ },
2125
+ "immune": {
2126
+ "$ref": "util.json#/$defs/damageImmunityArray"
2127
+ },
2128
+ "conditionImmune": {
2129
+ "$ref": "util.json#/$defs/conditionImmunityArray"
2130
+ },
2131
+ "stealth": {
2132
+ "type": "boolean"
2133
+ },
2134
+ "strength": {
2135
+ "type": [
2136
+ "string",
2137
+ "null"
2138
+ ]
2139
+ },
2140
+ "dexterityMax": {
2141
+ "$ref": "items-shared.json#/$defs/itemDexterityMax"
2142
+ },
2143
+ "wondrous": {
2144
+ "type": "boolean"
2145
+ },
2146
+ "sentient": {
2147
+ "const": true
2148
+ },
2149
+ "entries": {
2150
+ "type": "array",
2151
+ "items": {
2152
+ "$ref": "entry.json"
2153
+ }
2154
+ },
2155
+ "charges": {
2156
+ "type": [
2157
+ "string",
2158
+ "integer"
2159
+ ]
2160
+ },
2161
+ "recharge": {
2162
+ "$ref": "items-shared.json#/$defs/itemRecharge"
2163
+ },
2164
+ "rechargeAmount": {
2165
+ "$ref": "items-shared.json#/$defs/itemRechargeAmount"
2166
+ },
2167
+ "attachedSpells": {
2168
+ "type": "array",
2169
+ "items": {
2170
+ "type": "string"
2171
+ }
2172
+ },
2173
+ "ability": {
2174
+ "$ref": "items-shared.json#/$defs/itemAbility"
2175
+ },
2176
+ "lootTables": {
2177
+ "type": "array",
2178
+ "items": {
2179
+ "oneOf": [
2180
+ {
2181
+ "type": "string"
2182
+ },
2183
+ {
2184
+ "type": "object",
2185
+ "properties": {
2186
+ "name": {
2187
+ "type": "string"
2188
+ },
2189
+ "source": {
2190
+ "$ref": "util.json#/$defs/source"
2191
+ }
2192
+ }
2193
+ }
2194
+ ]
2195
+ }
2196
+ },
2197
+ "srd": {
2198
+ "$ref": "util.json#/$defs/srd"
2199
+ },
2200
+ "srd52": {
2201
+ "$ref": "util.json#/$defs/srd"
2202
+ },
2203
+ "basicRules": {
2204
+ "$ref": "util.json#/$defs/basicRules"
2205
+ },
2206
+ "freeRules2024": {
2207
+ "$ref": "util.json#/$defs/basicRules"
2208
+ },
2209
+ "legacy": {
2210
+ "$ref": "util.json#/$defs/legacy"
2211
+ },
2212
+ "otherSources": {
2213
+ "$ref": "util.json#/$defs/otherSources"
2214
+ },
2215
+ "valueMult": {
2216
+ "type": "number"
2217
+ },
2218
+ "valueExpression": {
2219
+ "description": "Expression used to calculate each specific variant's value.",
2220
+ "type": "string"
2221
+ },
2222
+ "valueRarity": {
2223
+ "$ref": "items-shared.json#/$defs/itemRarity"
2224
+ },
2225
+ "weaponCategory": {
2226
+ "$ref": "items-shared.json#/$defs/itemWeaponCategory"
2227
+ },
2228
+ "weight": {
2229
+ "type": "number"
2230
+ },
2231
+ "weightMult": {
2232
+ "type": "number"
2233
+ },
2234
+ "weightExpression": {
2235
+ "description": "Expression used to calculate each specific variant's weight.",
2236
+ "type": "string"
2237
+ },
2238
+ "barding": {
2239
+ "type": "boolean"
2240
+ },
2241
+ "spellScrollLevel": {
2242
+ "type": "integer"
2243
+ },
2244
+ "reqAttuneTags": {
2245
+ "$ref": "util.json#/$defs/reqAttuneTags"
2246
+ },
2247
+ "reqAttuneAltTags": {
2248
+ "$ref": "util.json#/$defs/reqAttuneTags"
2249
+ },
2250
+ "miscTags": {
2251
+ "$ref": "items-shared.json#/$defs/itemMiscTags"
2252
+ },
2253
+ "mastery": {
2254
+ "$ref": "items-shared.json#/$defs/itemMastery"
2255
+ },
2256
+ "reach": {
2257
+ "$ref": "items-shared.json#/$defs/itemReach"
2258
+ },
2259
+ "light": {
2260
+ "$ref": "items-shared.json#/$defs/itemLight"
2261
+ },
2262
+ "hasRefs": {
2263
+ "type": "boolean",
2264
+ "description": "Whether this item has references within its data to dedicated \"itemEntry\"s."
2265
+ },
2266
+ "customProperties": {
2267
+ "description": "An unrestricted area for custom properties to be stored.",
2268
+ "type": "object"
2269
+ },
2270
+ "acSpecial": {
2271
+ "$ref": "items-shared.json#/$defs/itemAcSpecial"
2272
+ },
2273
+ "currencyConversion": {
2274
+ "description": "ID of a value conversion table. Homebrew only.",
2275
+ "type": "string"
2276
+ },
2277
+ "fluff": {
2278
+ "$ref": "items-shared.json#/$defs/fluff"
2279
+ }
2280
+ },
2281
+ "additionalProperties": false,
2282
+ "required": [
2283
+ "source"
2284
+ ]
2285
+ },
2286
+ "excludes": {
2287
+ "type": "object",
2288
+ "properties": {
2289
+ "name": {
2290
+ "oneOf": [
2291
+ {
2292
+ "type": "string"
2293
+ },
2294
+ {
2295
+ "type": "array",
2296
+ "items": {
2297
+ "type": "string"
2298
+ }
2299
+ }
2300
+ ]
2301
+ },
2302
+ "page": {
2303
+ "$ref": "util.json#/$defs/page"
2304
+ },
2305
+ "property": {
2306
+ "oneOf": [
2307
+ {
2308
+ "type": "string"
2309
+ },
2310
+ {
2311
+ "type": "array",
2312
+ "items": {
2313
+ "type": "string"
2314
+ }
2315
+ }
2316
+ ]
2317
+ },
2318
+ "armor": {
2319
+ "type": "boolean"
2320
+ },
2321
+ "axe": {
2322
+ "type": "boolean"
2323
+ },
2324
+ "bow": {
2325
+ "type": "boolean"
2326
+ },
2327
+ "crossbow": {
2328
+ "type": "boolean"
2329
+ },
2330
+ "sword": {
2331
+ "type": "boolean"
2332
+ },
2333
+ "weapon": {
2334
+ "type": "boolean"
2335
+ },
2336
+ "firearm": {
2337
+ "type": "boolean"
2338
+ },
2339
+ "mace": {
2340
+ "type": "boolean"
2341
+ },
2342
+ "spear": {
2343
+ "type": "boolean"
2344
+ },
2345
+ "hammer": {
2346
+ "type": "boolean"
2347
+ },
2348
+ "club": {
2349
+ "type": "boolean"
2350
+ },
2351
+ "dagger": {
2352
+ "type": "boolean"
2353
+ },
2354
+ "dmgType": {
2355
+ "$ref": "util.json#/$defs/dataDamageTags"
2356
+ },
2357
+ "source": {
2358
+ "$ref": "util.json#/$defs/source"
2359
+ },
2360
+ "type": {
2361
+ "$ref": "items-shared.json#/$defs/itemType"
2362
+ },
2363
+ "scfType": {
2364
+ "$ref": "items-shared.json#/$defs/itemScfType"
2365
+ },
2366
+ "net": {
2367
+ "type": "boolean"
2368
+ },
2369
+ "polearm": {
2370
+ "type": "boolean"
2371
+ },
2372
+ "lance": {
2373
+ "type": "boolean"
2374
+ },
2375
+ "rapier": {
2376
+ "type": "boolean"
2377
+ },
2378
+ "whip": {
2379
+ "type": "boolean"
2380
+ },
2381
+ "halberd": {
2382
+ "type": "boolean"
2383
+ },
2384
+ "glaive": {
2385
+ "type": "boolean"
2386
+ },
2387
+ "arrow": {
2388
+ "type": "boolean"
2389
+ },
2390
+ "bolt": {
2391
+ "type": "boolean"
2392
+ },
2393
+ "bulletFirearm": {
2394
+ "type": "boolean"
2395
+ },
2396
+ "bulletSling": {
2397
+ "type": "boolean"
2398
+ },
2399
+ "cellEnergy": {
2400
+ "type": "boolean"
2401
+ },
2402
+ "needleBlowgun": {
2403
+ "type": "boolean"
2404
+ },
2405
+ "weaponCategory": {
2406
+ "$ref": "items-shared.json#/$defs/itemWeaponCategory"
2407
+ },
2408
+ "staff": {
2409
+ "type": "boolean"
2410
+ },
2411
+ "customProperties": {
2412
+ "$ref": "items-shared.json#/$defs/customProperties"
2413
+ }
2414
+ },
2415
+ "minProperties": 1,
2416
+ "additionalProperties": false
2417
+ },
2418
+ "noDisplay": {
2419
+ "type": "boolean"
2420
+ },
2421
+ "charges": {
2422
+ "type": [
2423
+ "string",
2424
+ "integer"
2425
+ ]
2426
+ },
2427
+ "attachedSpells": {
2428
+ "type": "array",
2429
+ "items": {
2430
+ "type": "string"
2431
+ }
2432
+ },
2433
+ "ammo": {
2434
+ "description": "Adds ammunition text to the header of the generic variant.",
2435
+ "type": "boolean"
2436
+ },
2437
+ "reqAttuneTags": {
2438
+ "$ref": "util.json#/$defs/reqAttuneTags"
2439
+ },
2440
+ "reqAttuneAltTags": {
2441
+ "$ref": "util.json#/$defs/reqAttuneTags"
2442
+ },
2443
+ "weaponCategory": {
2444
+ "$ref": "items-shared.json#/$defs/itemWeaponCategory"
2445
+ },
2446
+ "hasFluff": {
2447
+ "type": "boolean"
2448
+ },
2449
+ "hasFluffImages": {
2450
+ "type": "boolean"
2451
+ },
2452
+ "customProperties": {
2453
+ "$ref": "items-shared.json#/$defs/customProperties"
2454
+ },
2455
+ "fluff": {
2456
+ "$ref": "items-shared.json#/$defs/fluff"
2457
+ },
2458
+ "foundrySystem": {
2459
+ "$ref": "util-foundry.json#/$defs/foundrySystemObject"
2460
+ },
2461
+ "foundryFlags": {
2462
+ "$ref": "util-foundry.json#/$defs/foundryFlagsObject"
2463
+ },
2464
+ "foundryEffects": {
2465
+ "$ref": "util-foundry.json#/$defs/foundryEffectsArray"
2466
+ },
2467
+ "foundryImg": {
2468
+ "$ref": "util-foundry.json#/$defs/foundryImg"
2469
+ },
2470
+ "rarity": {
2471
+ "$ref": "items-shared.json#/$defs/itemRarity"
2472
+ }
2473
+ },
2474
+ "additionalProperties": false,
2475
+ "required": [
2476
+ "name",
2477
+ "rarity",
2478
+ "inherits",
2479
+ "requires"
2480
+ ]
2481
+ },
2482
+ "_magicvariantSiteCopy": {
620
2483
  "type": "object",
621
2484
  "properties": {
622
2485
  "name": {
@@ -1039,11 +2902,7 @@
1039
2902
  "$ref": "items-shared.json#/$defs/fluff"
1040
2903
  }
1041
2904
  },
1042
- "additionalProperties": false,
1043
- "required": [
1044
- "rarity",
1045
- "source"
1046
- ]
2905
+ "additionalProperties": false
1047
2906
  },
1048
2907
  "excludes": {
1049
2908
  "type": "object",
@@ -1228,16 +3087,21 @@
1228
3087
  },
1229
3088
  "foundryImg": {
1230
3089
  "$ref": "util-foundry.json#/$defs/foundryImg"
3090
+ },
3091
+ "_copy": {
3092
+ "$ref": "util-copy.json#/$defs/copyBlock_copy_generic"
3093
+ },
3094
+ "source": {
3095
+ "$ref": "util.json#/$defs/source"
1231
3096
  }
1232
3097
  },
1233
3098
  "additionalProperties": false,
1234
3099
  "required": [
1235
- "name",
1236
- "inherits",
1237
- "requires"
3100
+ "_copy",
3101
+ "source"
1238
3102
  ]
1239
3103
  },
1240
- "_magicvariantItemBrewBaseRarity": {
3104
+ "_magicvariantBrewRootRarityCopy": {
1241
3105
  "type": "object",
1242
3106
  "properties": {
1243
3107
  "name": {
@@ -1660,10 +3524,7 @@
1660
3524
  "$ref": "items-shared.json#/$defs/fluff"
1661
3525
  }
1662
3526
  },
1663
- "additionalProperties": false,
1664
- "required": [
1665
- "source"
1666
- ]
3527
+ "additionalProperties": false
1667
3528
  },
1668
3529
  "excludes": {
1669
3530
  "type": "object",
@@ -1851,23 +3712,33 @@
1851
3712
  },
1852
3713
  "rarity": {
1853
3714
  "$ref": "items-shared.json#/$defs/itemRarity"
3715
+ },
3716
+ "_copy": {
3717
+ "$ref": "util-copy.json#/$defs/copyBlock_copy_generic"
3718
+ },
3719
+ "source": {
3720
+ "$ref": "util.json#/$defs/source"
1854
3721
  }
1855
3722
  },
1856
3723
  "additionalProperties": false,
1857
3724
  "required": [
1858
- "name",
1859
- "rarity",
1860
- "inherits",
1861
- "requires"
3725
+ "_copy",
3726
+ "source"
1862
3727
  ]
1863
3728
  },
1864
3729
  "magicvariantItem": {
1865
3730
  "anyOf": [
1866
3731
  {
1867
- "$ref": "#/$defs/_magicvariantItemSite"
3732
+ "$ref": "#/$defs/_magicvariantSite"
3733
+ },
3734
+ {
3735
+ "$ref": "#/$defs/_magicvariantSiteCopy"
3736
+ },
3737
+ {
3738
+ "$ref": "#/$defs/_magicvariantBrewRootRarity"
1868
3739
  },
1869
3740
  {
1870
- "$ref": "#/$defs/_magicvariantItemBrewBaseRarity"
3741
+ "$ref": "#/$defs/_magicvariantBrewRootRarityCopy"
1871
3742
  }
1872
3743
  ]
1873
3744
  }