5etools-utils 0.12.34 → 0.12.35

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "5etools-utils",
3
- "version": "0.12.34",
3
+ "version": "0.12.35",
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.35",
3
+ "version": "1.21.36",
4
4
  "title": "Bestiary Schema",
5
5
  "$id": "bestiary.json",
6
6
  "type": "object",
@@ -1136,7 +1136,7 @@
1136
1136
  "miscTags": {
1137
1137
  "type": "array",
1138
1138
  "items": {
1139
- "description": "AOE: Has Areas of Effect\n CUR: Inflicts Curse\n DIS: Inflicts Disease\n HPR: Has HP Reduction\n MW: Has Weapon Attacks, Melee\n RW: Has Weapon Attacks, Ranged\n RCH: Has Reach Attacks\n MLW: Has Melee Weapons\n RNG: Has Ranged Weapons\n THW: Has Thrown Weapons",
1139
+ "description": "AOE: Has Areas of Effect\nCUR: Inflicts Curse\nDIS: Inflicts Disease\nHPR: Has HP Reduction\nMW: Has Weapon Attacks, Melee\nRW: Has Weapon Attacks, Ranged\nMA: Has Attacks, Melee\nRA: Has Attacks, Ranged\nRCH: Has Reach Attacks\nMLW: Has Melee Weapons\nRNG: Has Ranged Weapons\nTHW: Has Thrown Weapons",
1140
1140
  "enum": [
1141
1141
  "AOE",
1142
1142
  "CUR",
@@ -1144,6 +1144,8 @@
1144
1144
  "HPR",
1145
1145
  "MW",
1146
1146
  "RW",
1147
+ "MA",
1148
+ "RA",
1147
1149
  "RCH",
1148
1150
  "MLW",
1149
1151
  "RNG",
@@ -2348,7 +2350,7 @@
2348
2350
  "miscTags": {
2349
2351
  "type": "array",
2350
2352
  "items": {
2351
- "description": "AOE: Has Areas of Effect\n CUR: Inflicts Curse\n DIS: Inflicts Disease\n HPR: Has HP Reduction\n MW: Has Weapon Attacks, Melee\n RW: Has Weapon Attacks, Ranged\n RCH: Has Reach Attacks\n MLW: Has Melee Weapons\n RNG: Has Ranged Weapons\n THW: Has Thrown Weapons",
2353
+ "description": "AOE: Has Areas of Effect\nCUR: Inflicts Curse\nDIS: Inflicts Disease\nHPR: Has HP Reduction\nMW: Has Weapon Attacks, Melee\nRW: Has Weapon Attacks, Ranged\nMA: Has Attacks, Melee\nRA: Has Attacks, Ranged\nRCH: Has Reach Attacks\nMLW: Has Melee Weapons\nRNG: Has Ranged Weapons\nTHW: Has Thrown Weapons",
2352
2354
  "enum": [
2353
2355
  "AOE",
2354
2356
  "CUR",
@@ -2356,6 +2358,8 @@
2356
2358
  "HPR",
2357
2359
  "MW",
2358
2360
  "RW",
2361
+ "MA",
2362
+ "RA",
2359
2363
  "RCH",
2360
2364
  "MLW",
2361
2365
  "RNG",
@@ -3565,7 +3569,7 @@
3565
3569
  "miscTags": {
3566
3570
  "type": "array",
3567
3571
  "items": {
3568
- "description": "AOE: Has Areas of Effect\n CUR: Inflicts Curse\n DIS: Inflicts Disease\n HPR: Has HP Reduction\n MW: Has Weapon Attacks, Melee\n RW: Has Weapon Attacks, Ranged\n RCH: Has Reach Attacks\n MLW: Has Melee Weapons\n RNG: Has Ranged Weapons\n THW: Has Thrown Weapons",
3572
+ "description": "AOE: Has Areas of Effect\nCUR: Inflicts Curse\nDIS: Inflicts Disease\nHPR: Has HP Reduction\nMW: Has Weapon Attacks, Melee\nRW: Has Weapon Attacks, Ranged\nMA: Has Attacks, Melee\nRA: Has Attacks, Ranged\nRCH: Has Reach Attacks\nMLW: Has Melee Weapons\nRNG: Has Ranged Weapons\nTHW: Has Thrown Weapons",
3569
3573
  "enum": [
3570
3574
  "AOE",
3571
3575
  "CUR",
@@ -3573,6 +3577,8 @@
3573
3577
  "HPR",
3574
3578
  "MW",
3575
3579
  "RW",
3580
+ "MA",
3581
+ "RA",
3576
3582
  "RCH",
3577
3583
  "MLW",
3578
3584
  "RNG",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "feats.json",
4
- "version": "1.7.3",
4
+ "version": "1.7.4",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "featData": {
@@ -40,6 +40,12 @@
40
40
  "srd52": {
41
41
  "$ref": "util.json#/$defs/srd"
42
42
  },
43
+ "basicRules": {
44
+ "$ref": "util.json#/$defs/basicRules"
45
+ },
46
+ "freeRules2024": {
47
+ "$ref": "util.json#/$defs/basicRules"
48
+ },
43
49
  "otherSources": {
44
50
  "$ref": "util.json#/$defs/otherSources"
45
51
  },
@@ -174,6 +180,12 @@
174
180
  "srd52": {
175
181
  "$ref": "util.json#/$defs/srd"
176
182
  },
183
+ "basicRules": {
184
+ "$ref": "util.json#/$defs/basicRules"
185
+ },
186
+ "freeRules2024": {
187
+ "$ref": "util.json#/$defs/basicRules"
188
+ },
177
189
  "otherSources": {
178
190
  "$ref": "util.json#/$defs/otherSources"
179
191
  },
@@ -311,6 +323,12 @@
311
323
  "srd52": {
312
324
  "$ref": "util.json#/$defs/srd"
313
325
  },
326
+ "basicRules": {
327
+ "$ref": "util.json#/$defs/basicRules"
328
+ },
329
+ "freeRules2024": {
330
+ "$ref": "util.json#/$defs/basicRules"
331
+ },
314
332
  "otherSources": {
315
333
  "$ref": "util.json#/$defs/otherSources"
316
334
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "items-base.json",
4
- "version": "1.6.3",
4
+ "version": "1.6.4",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "itemLookupBase": {
@@ -16,6 +16,18 @@
16
16
  "page": {
17
17
  "$ref": "util.json#/$defs/page"
18
18
  },
19
+ "srd": {
20
+ "$ref": "util.json#/$defs/srd"
21
+ },
22
+ "srd52": {
23
+ "$ref": "util.json#/$defs/srd"
24
+ },
25
+ "basicRules": {
26
+ "$ref": "util.json#/$defs/basicRules"
27
+ },
28
+ "freeRules2024": {
29
+ "$ref": "util.json#/$defs/basicRules"
30
+ },
19
31
  "name": {
20
32
  "type": "string"
21
33
  }
@@ -36,6 +48,18 @@
36
48
  "page": {
37
49
  "$ref": "util.json#/$defs/page"
38
50
  },
51
+ "srd": {
52
+ "$ref": "util.json#/$defs/srd"
53
+ },
54
+ "srd52": {
55
+ "$ref": "util.json#/$defs/srd"
56
+ },
57
+ "basicRules": {
58
+ "$ref": "util.json#/$defs/basicRules"
59
+ },
60
+ "freeRules2024": {
61
+ "$ref": "util.json#/$defs/basicRules"
62
+ },
39
63
  "name": {
40
64
  "type": "string"
41
65
  },
@@ -67,6 +91,18 @@
67
91
  "page": {
68
92
  "$ref": "util.json#/$defs/page"
69
93
  },
94
+ "srd": {
95
+ "$ref": "util.json#/$defs/srd"
96
+ },
97
+ "srd52": {
98
+ "$ref": "util.json#/$defs/srd"
99
+ },
100
+ "basicRules": {
101
+ "$ref": "util.json#/$defs/basicRules"
102
+ },
103
+ "freeRules2024": {
104
+ "$ref": "util.json#/$defs/basicRules"
105
+ },
70
106
  "name": {
71
107
  "type": "string"
72
108
  },
@@ -1171,6 +1207,18 @@
1171
1207
  "page": {
1172
1208
  "$ref": "util.json#/$defs/page"
1173
1209
  },
1210
+ "srd": {
1211
+ "$ref": "util.json#/$defs/srd"
1212
+ },
1213
+ "srd52": {
1214
+ "$ref": "util.json#/$defs/srd"
1215
+ },
1216
+ "basicRules": {
1217
+ "$ref": "util.json#/$defs/basicRules"
1218
+ },
1219
+ "freeRules2024": {
1220
+ "$ref": "util.json#/$defs/basicRules"
1221
+ },
1174
1222
  "name": {
1175
1223
  "type": "string"
1176
1224
  },
@@ -1195,6 +1243,18 @@
1195
1243
  "page": {
1196
1244
  "$ref": "util.json#/$defs/page"
1197
1245
  },
1246
+ "srd": {
1247
+ "$ref": "util.json#/$defs/srd"
1248
+ },
1249
+ "srd52": {
1250
+ "$ref": "util.json#/$defs/srd"
1251
+ },
1252
+ "basicRules": {
1253
+ "$ref": "util.json#/$defs/basicRules"
1254
+ },
1255
+ "freeRules2024": {
1256
+ "$ref": "util.json#/$defs/basicRules"
1257
+ },
1198
1258
  "name": {
1199
1259
  "type": "string"
1200
1260
  },
@@ -1227,6 +1287,18 @@
1227
1287
  "page": {
1228
1288
  "$ref": "util.json#/$defs/page"
1229
1289
  },
1290
+ "srd": {
1291
+ "$ref": "util.json#/$defs/srd"
1292
+ },
1293
+ "srd52": {
1294
+ "$ref": "util.json#/$defs/srd"
1295
+ },
1296
+ "basicRules": {
1297
+ "$ref": "util.json#/$defs/basicRules"
1298
+ },
1299
+ "freeRules2024": {
1300
+ "$ref": "util.json#/$defs/basicRules"
1301
+ },
1230
1302
  "name": {
1231
1303
  "type": "string"
1232
1304
  },
@@ -1255,6 +1327,18 @@
1255
1327
  "page": {
1256
1328
  "$ref": "util.json#/$defs/page"
1257
1329
  },
1330
+ "srd": {
1331
+ "$ref": "util.json#/$defs/srd"
1332
+ },
1333
+ "srd52": {
1334
+ "$ref": "util.json#/$defs/srd"
1335
+ },
1336
+ "basicRules": {
1337
+ "$ref": "util.json#/$defs/basicRules"
1338
+ },
1339
+ "freeRules2024": {
1340
+ "$ref": "util.json#/$defs/basicRules"
1341
+ },
1258
1342
  "name": {
1259
1343
  "type": "string"
1260
1344
  },
@@ -1285,6 +1369,18 @@
1285
1369
  "page": {
1286
1370
  "$ref": "util.json#/$defs/page"
1287
1371
  },
1372
+ "srd": {
1373
+ "$ref": "util.json#/$defs/srd"
1374
+ },
1375
+ "srd52": {
1376
+ "$ref": "util.json#/$defs/srd"
1377
+ },
1378
+ "basicRules": {
1379
+ "$ref": "util.json#/$defs/basicRules"
1380
+ },
1381
+ "freeRules2024": {
1382
+ "$ref": "util.json#/$defs/basicRules"
1383
+ },
1288
1384
  "name": {
1289
1385
  "type": "string"
1290
1386
  },
@@ -1313,6 +1409,18 @@
1313
1409
  "page": {
1314
1410
  "$ref": "util.json#/$defs/page"
1315
1411
  },
1412
+ "srd": {
1413
+ "$ref": "util.json#/$defs/srd"
1414
+ },
1415
+ "srd52": {
1416
+ "$ref": "util.json#/$defs/srd"
1417
+ },
1418
+ "basicRules": {
1419
+ "$ref": "util.json#/$defs/basicRules"
1420
+ },
1421
+ "freeRules2024": {
1422
+ "$ref": "util.json#/$defs/basicRules"
1423
+ },
1316
1424
  "name": {
1317
1425
  "type": "string"
1318
1426
  },
@@ -1423,6 +1531,18 @@
1423
1531
  "page": {
1424
1532
  "$ref": "util.json#/$defs/page"
1425
1533
  },
1534
+ "srd": {
1535
+ "$ref": "util.json#/$defs/srd"
1536
+ },
1537
+ "srd52": {
1538
+ "$ref": "util.json#/$defs/srd"
1539
+ },
1540
+ "basicRules": {
1541
+ "$ref": "util.json#/$defs/basicRules"
1542
+ },
1543
+ "freeRules2024": {
1544
+ "$ref": "util.json#/$defs/basicRules"
1545
+ },
1426
1546
  "prerequisite": {
1427
1547
  "$ref": "util.json#/$defs/prerequisite"
1428
1548
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "races.json",
4
- "version": "1.12.7",
4
+ "version": "1.12.8",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "sharedData": {
@@ -47,24 +47,24 @@
47
47
  "speed": {
48
48
  "$ref": "util.json#/$defs/speed"
49
49
  },
50
+ "abilityEntry": {
51
+ "$ref": "entry.json#/$defs/entryItem"
52
+ },
53
+ "creatureTypesEntry": {
54
+ "$ref": "entry.json#/$defs/entryItem"
55
+ },
56
+ "sizeEntry": {
57
+ "$ref": "entry.json#/$defs/entryItem"
58
+ },
59
+ "speedEntry": {
60
+ "$ref": "entry.json#/$defs/entryItem"
61
+ },
50
62
  "entries": {
51
63
  "type": "array",
52
64
  "items": {
53
65
  "$ref": "entry.json"
54
66
  }
55
67
  },
56
- "hasAbilityScoreEntry": {
57
- "const": true
58
- },
59
- "hasCreatureTypeEntry": {
60
- "const": true
61
- },
62
- "hasSizeEntry": {
63
- "const": true
64
- },
65
- "hasSpeedEntry": {
66
- "const": true
67
- },
68
68
  "darkvision": {
69
69
  "type": "integer"
70
70
  },
@@ -310,24 +310,24 @@
310
310
  "speed": {
311
311
  "$ref": "util.json#/$defs/speed"
312
312
  },
313
+ "abilityEntry": {
314
+ "$ref": "entry.json#/$defs/entryItem"
315
+ },
316
+ "creatureTypesEntry": {
317
+ "$ref": "entry.json#/$defs/entryItem"
318
+ },
319
+ "sizeEntry": {
320
+ "$ref": "entry.json#/$defs/entryItem"
321
+ },
322
+ "speedEntry": {
323
+ "$ref": "entry.json#/$defs/entryItem"
324
+ },
313
325
  "entries": {
314
326
  "type": "array",
315
327
  "items": {
316
328
  "$ref": "entry.json"
317
329
  }
318
330
  },
319
- "hasAbilityScoreEntry": {
320
- "const": true
321
- },
322
- "hasCreatureTypeEntry": {
323
- "const": true
324
- },
325
- "hasSizeEntry": {
326
- "const": true
327
- },
328
- "hasSpeedEntry": {
329
- "const": true
330
- },
331
331
  "darkvision": {
332
332
  "type": "integer"
333
333
  },
@@ -655,24 +655,24 @@
655
655
  "speed": {
656
656
  "$ref": "util.json#/$defs/speed"
657
657
  },
658
+ "abilityEntry": {
659
+ "$ref": "entry.json#/$defs/entryItem"
660
+ },
661
+ "creatureTypesEntry": {
662
+ "$ref": "entry.json#/$defs/entryItem"
663
+ },
664
+ "sizeEntry": {
665
+ "$ref": "entry.json#/$defs/entryItem"
666
+ },
667
+ "speedEntry": {
668
+ "$ref": "entry.json#/$defs/entryItem"
669
+ },
658
670
  "entries": {
659
671
  "type": "array",
660
672
  "items": {
661
673
  "$ref": "entry.json"
662
674
  }
663
675
  },
664
- "hasAbilityScoreEntry": {
665
- "const": true
666
- },
667
- "hasCreatureTypeEntry": {
668
- "const": true
669
- },
670
- "hasSizeEntry": {
671
- "const": true
672
- },
673
- "hasSpeedEntry": {
674
- "const": true
675
- },
676
676
  "darkvision": {
677
677
  "type": "integer"
678
678
  },
@@ -922,24 +922,24 @@
922
922
  "speed": {
923
923
  "$ref": "util.json#/$defs/speed"
924
924
  },
925
+ "abilityEntry": {
926
+ "$ref": "entry.json#/$defs/entryItem"
927
+ },
928
+ "creatureTypesEntry": {
929
+ "$ref": "entry.json#/$defs/entryItem"
930
+ },
931
+ "sizeEntry": {
932
+ "$ref": "entry.json#/$defs/entryItem"
933
+ },
934
+ "speedEntry": {
935
+ "$ref": "entry.json#/$defs/entryItem"
936
+ },
925
937
  "entries": {
926
938
  "type": "array",
927
939
  "items": {
928
940
  "$ref": "entry.json"
929
941
  }
930
942
  },
931
- "hasAbilityScoreEntry": {
932
- "const": true
933
- },
934
- "hasCreatureTypeEntry": {
935
- "const": true
936
- },
937
- "hasSizeEntry": {
938
- "const": true
939
- },
940
- "hasSpeedEntry": {
941
- "const": true
942
- },
943
943
  "darkvision": {
944
944
  "type": "integer"
945
945
  },
@@ -1195,24 +1195,24 @@
1195
1195
  "speed": {
1196
1196
  "$ref": "util.json#/$defs/speed"
1197
1197
  },
1198
+ "abilityEntry": {
1199
+ "$ref": "entry.json#/$defs/entryItem"
1200
+ },
1201
+ "creatureTypesEntry": {
1202
+ "$ref": "entry.json#/$defs/entryItem"
1203
+ },
1204
+ "sizeEntry": {
1205
+ "$ref": "entry.json#/$defs/entryItem"
1206
+ },
1207
+ "speedEntry": {
1208
+ "$ref": "entry.json#/$defs/entryItem"
1209
+ },
1198
1210
  "entries": {
1199
1211
  "type": "array",
1200
1212
  "items": {
1201
1213
  "$ref": "entry.json"
1202
1214
  }
1203
1215
  },
1204
- "hasAbilityScoreEntry": {
1205
- "const": true
1206
- },
1207
- "hasCreatureTypeEntry": {
1208
- "const": true
1209
- },
1210
- "hasSizeEntry": {
1211
- "const": true
1212
- },
1213
- "hasSpeedEntry": {
1214
- "const": true
1215
- },
1216
1216
  "darkvision": {
1217
1217
  "type": "integer"
1218
1218
  },
@@ -1474,24 +1474,24 @@
1474
1474
  "speed": {
1475
1475
  "$ref": "util.json#/$defs/speed"
1476
1476
  },
1477
+ "abilityEntry": {
1478
+ "$ref": "entry.json#/$defs/entryItem"
1479
+ },
1480
+ "creatureTypesEntry": {
1481
+ "$ref": "entry.json#/$defs/entryItem"
1482
+ },
1483
+ "sizeEntry": {
1484
+ "$ref": "entry.json#/$defs/entryItem"
1485
+ },
1486
+ "speedEntry": {
1487
+ "$ref": "entry.json#/$defs/entryItem"
1488
+ },
1477
1489
  "entries": {
1478
1490
  "type": "array",
1479
1491
  "items": {
1480
1492
  "$ref": "entry.json"
1481
1493
  }
1482
1494
  },
1483
- "hasAbilityScoreEntry": {
1484
- "const": true
1485
- },
1486
- "hasCreatureTypeEntry": {
1487
- "const": true
1488
- },
1489
- "hasSizeEntry": {
1490
- "const": true
1491
- },
1492
- "hasSpeedEntry": {
1493
- "const": true
1494
- },
1495
1495
  "darkvision": {
1496
1496
  "type": "integer"
1497
1497
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "variantrules.json",
4
- "version": "1.1.8",
4
+ "version": "1.1.9",
5
5
  "title": "RulesArray",
6
6
  "type": "object",
7
7
  "properties": {
@@ -58,6 +58,12 @@
58
58
  "srd52": {
59
59
  "$ref": "util.json#/$defs/srd"
60
60
  },
61
+ "basicRules": {
62
+ "$ref": "util.json#/$defs/basicRules"
63
+ },
64
+ "freeRules2024": {
65
+ "$ref": "util.json#/$defs/basicRules"
66
+ },
61
67
  "legacy": {
62
68
  "$ref": "util.json#/$defs/legacy"
63
69
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.21.35",
3
+ "version": "1.21.36",
4
4
  "title": "Bestiary Schema",
5
5
  "$id": "bestiary.json",
6
6
  "type": "object",
@@ -1136,7 +1136,7 @@
1136
1136
  "miscTags": {
1137
1137
  "type": "array",
1138
1138
  "items": {
1139
- "description": "AOE: Has Areas of Effect\n CUR: Inflicts Curse\n DIS: Inflicts Disease\n HPR: Has HP Reduction\n MW: Has Weapon Attacks, Melee\n RW: Has Weapon Attacks, Ranged\n RCH: Has Reach Attacks\n MLW: Has Melee Weapons\n RNG: Has Ranged Weapons\n THW: Has Thrown Weapons",
1139
+ "description": "AOE: Has Areas of Effect\nCUR: Inflicts Curse\nDIS: Inflicts Disease\nHPR: Has HP Reduction\nMW: Has Weapon Attacks, Melee\nRW: Has Weapon Attacks, Ranged\nMA: Has Attacks, Melee\nRA: Has Attacks, Ranged\nRCH: Has Reach Attacks\nMLW: Has Melee Weapons\nRNG: Has Ranged Weapons\nTHW: Has Thrown Weapons",
1140
1140
  "enum": [
1141
1141
  "AOE",
1142
1142
  "CUR",
@@ -1144,6 +1144,8 @@
1144
1144
  "HPR",
1145
1145
  "MW",
1146
1146
  "RW",
1147
+ "MA",
1148
+ "RA",
1147
1149
  "RCH",
1148
1150
  "MLW",
1149
1151
  "RNG",
@@ -2348,7 +2350,7 @@
2348
2350
  "miscTags": {
2349
2351
  "type": "array",
2350
2352
  "items": {
2351
- "description": "AOE: Has Areas of Effect\n CUR: Inflicts Curse\n DIS: Inflicts Disease\n HPR: Has HP Reduction\n MW: Has Weapon Attacks, Melee\n RW: Has Weapon Attacks, Ranged\n RCH: Has Reach Attacks\n MLW: Has Melee Weapons\n RNG: Has Ranged Weapons\n THW: Has Thrown Weapons",
2353
+ "description": "AOE: Has Areas of Effect\nCUR: Inflicts Curse\nDIS: Inflicts Disease\nHPR: Has HP Reduction\nMW: Has Weapon Attacks, Melee\nRW: Has Weapon Attacks, Ranged\nMA: Has Attacks, Melee\nRA: Has Attacks, Ranged\nRCH: Has Reach Attacks\nMLW: Has Melee Weapons\nRNG: Has Ranged Weapons\nTHW: Has Thrown Weapons",
2352
2354
  "enum": [
2353
2355
  "AOE",
2354
2356
  "CUR",
@@ -2356,6 +2358,8 @@
2356
2358
  "HPR",
2357
2359
  "MW",
2358
2360
  "RW",
2361
+ "MA",
2362
+ "RA",
2359
2363
  "RCH",
2360
2364
  "MLW",
2361
2365
  "RNG",
@@ -3565,7 +3569,7 @@
3565
3569
  "miscTags": {
3566
3570
  "type": "array",
3567
3571
  "items": {
3568
- "description": "AOE: Has Areas of Effect\n CUR: Inflicts Curse\n DIS: Inflicts Disease\n HPR: Has HP Reduction\n MW: Has Weapon Attacks, Melee\n RW: Has Weapon Attacks, Ranged\n RCH: Has Reach Attacks\n MLW: Has Melee Weapons\n RNG: Has Ranged Weapons\n THW: Has Thrown Weapons",
3572
+ "description": "AOE: Has Areas of Effect\nCUR: Inflicts Curse\nDIS: Inflicts Disease\nHPR: Has HP Reduction\nMW: Has Weapon Attacks, Melee\nRW: Has Weapon Attacks, Ranged\nMA: Has Attacks, Melee\nRA: Has Attacks, Ranged\nRCH: Has Reach Attacks\nMLW: Has Melee Weapons\nRNG: Has Ranged Weapons\nTHW: Has Thrown Weapons",
3569
3573
  "enum": [
3570
3574
  "AOE",
3571
3575
  "CUR",
@@ -3573,6 +3577,8 @@
3573
3577
  "HPR",
3574
3578
  "MW",
3575
3579
  "RW",
3580
+ "MA",
3581
+ "RA",
3576
3582
  "RCH",
3577
3583
  "MLW",
3578
3584
  "RNG",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$id": "feats.json",
4
- "version": "1.7.3",
4
+ "version": "1.7.4",
5
5
  "type": "object",
6
6
  "$defs": {
7
7
  "featData": {
@@ -40,6 +40,12 @@
40
40
  "srd52": {
41
41
  "$ref": "util.json#/$defs/srd"
42
42
  },
43
+ "basicRules": {
44
+ "$ref": "util.json#/$defs/basicRules"
45
+ },
46
+ "freeRules2024": {
47
+ "$ref": "util.json#/$defs/basicRules"
48
+ },
43
49
  "otherSources": {
44
50
  "$ref": "util.json#/$defs/otherSources"
45
51
  },
@@ -174,6 +180,12 @@
174
180
  "srd52": {
175
181
  "$ref": "util.json#/$defs/srd"
176
182
  },
183
+ "basicRules": {
184
+ "$ref": "util.json#/$defs/basicRules"
185
+ },
186
+ "freeRules2024": {
187
+ "$ref": "util.json#/$defs/basicRules"
188
+ },
177
189
  "otherSources": {
178
190
  "$ref": "util.json#/$defs/otherSources"
179
191
  },
@@ -311,6 +323,12 @@
311
323
  "srd52": {
312
324
  "$ref": "util.json#/$defs/srd"
313
325
  },
326
+ "basicRules": {
327
+ "$ref": "util.json#/$defs/basicRules"
328
+ },
329
+ "freeRules2024": {
330
+ "$ref": "util.json#/$defs/basicRules"
331
+ },
314
332
  "otherSources": {
315
333
  "$ref": "util.json#/$defs/otherSources"
316
334
  },