5etools-utils 0.12.64 → 0.12.65

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. package/package.json +1 -1
  2. package/schema/brew/backgrounds.json +3 -3
  3. package/schema/brew/bestiary/bestiary.json +164 -13
  4. package/schema/brew/class/class.json +6 -6
  5. package/schema/brew/class/fluff-class.json +9 -0
  6. package/schema/brew/entry.json +53 -4
  7. package/schema/brew/feats.json +3 -3
  8. package/schema/brew/optionalfeatures.json +3 -3
  9. package/schema/brew/races.json +6 -6
  10. package/schema/brew/util-additionalspells.json +302 -0
  11. package/schema/brew/util-foundry.json +1 -1
  12. package/schema/brew/util.json +10 -295
  13. package/schema/brew-fast/backgrounds.json +3 -3
  14. package/schema/brew-fast/bestiary/bestiary.json +164 -13
  15. package/schema/brew-fast/class/class.json +6 -6
  16. package/schema/brew-fast/class/fluff-class.json +9 -0
  17. package/schema/brew-fast/entry.json +53 -4
  18. package/schema/brew-fast/feats.json +3 -3
  19. package/schema/brew-fast/optionalfeatures.json +3 -3
  20. package/schema/brew-fast/races.json +6 -6
  21. package/schema/brew-fast/util-additionalspells.json +302 -0
  22. package/schema/brew-fast/util-foundry.json +1 -1
  23. package/schema/brew-fast/util.json +10 -295
  24. package/schema/site/backgrounds.json +3 -3
  25. package/schema/site/bestiary/bestiary.json +164 -13
  26. package/schema/site/class/class.json +6 -6
  27. package/schema/site/class/fluff-class.json +9 -0
  28. package/schema/site/entry.json +53 -4
  29. package/schema/site/feats.json +3 -3
  30. package/schema/site/optionalfeatures.json +3 -3
  31. package/schema/site/races.json +6 -6
  32. package/schema/site/util-additionalspells.json +302 -0
  33. package/schema/site/util-foundry.json +1 -1
  34. package/schema/site/util.json +10 -295
  35. package/schema/site-fast/backgrounds.json +3 -3
  36. package/schema/site-fast/bestiary/bestiary.json +164 -13
  37. package/schema/site-fast/class/class.json +6 -6
  38. package/schema/site-fast/class/fluff-class.json +9 -0
  39. package/schema/site-fast/entry.json +53 -4
  40. package/schema/site-fast/feats.json +3 -3
  41. package/schema/site-fast/optionalfeatures.json +3 -3
  42. package/schema/site-fast/races.json +6 -6
  43. package/schema/site-fast/util-additionalspells.json +302 -0
  44. package/schema/site-fast/util-foundry.json +1 -1
  45. package/schema/site-fast/util.json +10 -295
  46. package/schema/ua/backgrounds.json +3 -3
  47. package/schema/ua/bestiary/bestiary.json +164 -13
  48. package/schema/ua/class/class.json +6 -6
  49. package/schema/ua/class/fluff-class.json +9 -0
  50. package/schema/ua/entry.json +53 -4
  51. package/schema/ua/feats.json +3 -3
  52. package/schema/ua/optionalfeatures.json +3 -3
  53. package/schema/ua/races.json +6 -6
  54. package/schema/ua/util-additionalspells.json +302 -0
  55. package/schema/ua/util-foundry.json +1 -1
  56. package/schema/ua/util.json +10 -295
  57. package/schema/ua-fast/backgrounds.json +3 -3
  58. package/schema/ua-fast/bestiary/bestiary.json +164 -13
  59. package/schema/ua-fast/class/class.json +6 -6
  60. package/schema/ua-fast/class/fluff-class.json +9 -0
  61. package/schema/ua-fast/entry.json +53 -4
  62. package/schema/ua-fast/feats.json +3 -3
  63. package/schema/ua-fast/optionalfeatures.json +3 -3
  64. package/schema/ua-fast/races.json +6 -6
  65. package/schema/ua-fast/util-additionalspells.json +302 -0
  66. package/schema/ua-fast/util-foundry.json +1 -1
  67. package/schema/ua-fast/util.json +10 -295
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "5etools-utils",
3
- "version": "0.12.64",
3
+ "version": "0.12.65",
4
4
  "description": "Shared utilities for the 5etools ecosystem.",
5
5
  "type": "module",
6
6
  "main": "lib/Api.js",
@@ -74,7 +74,7 @@
74
74
  "$ref": "util.json#/$defs/startingEquipment"
75
75
  },
76
76
  "additionalSpells": {
77
- "$ref": "util.json#/$defs/additionalSpellsArray"
77
+ "$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
78
78
  },
79
79
  "ability": {
80
80
  "$ref": "util.json#/$defs/abilityScores"
@@ -204,7 +204,7 @@
204
204
  "$ref": "util.json#/$defs/startingEquipment"
205
205
  },
206
206
  "additionalSpells": {
207
- "$ref": "util.json#/$defs/additionalSpellsArray"
207
+ "$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
208
208
  },
209
209
  "ability": {
210
210
  "$ref": "util.json#/$defs/abilityScores"
@@ -337,7 +337,7 @@
337
337
  "$ref": "util.json#/$defs/startingEquipment"
338
338
  },
339
339
  "additionalSpells": {
340
- "$ref": "util.json#/$defs/additionalSpellsArray"
340
+ "$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
341
341
  },
342
342
  "ability": {
343
343
  "$ref": "util.json#/$defs/abilityScores"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "version": "1.21.43",
3
+ "version": "1.21.45",
4
4
  "title": "Bestiary Schema",
5
5
  "$id": "bestiary.json",
6
6
  "type": "object",
@@ -110,6 +110,10 @@
110
110
  }
111
111
  ]
112
112
  },
113
+ "_legendaryActions": {
114
+ "type": "integer",
115
+ "minimum": 1
116
+ },
113
117
  "creatureData": {
114
118
  "type": "object",
115
119
  "properties": {
@@ -838,8 +842,10 @@
838
842
  ]
839
843
  },
840
844
  "legendaryActions": {
841
- "type": "integer",
842
- "minimum": 1
845
+ "$ref": "#/$defs/_legendaryActions"
846
+ },
847
+ "legendaryActionsLair": {
848
+ "$ref": "#/$defs/_legendaryActions"
843
849
  },
844
850
  "legendaryHeader": {
845
851
  "type": "array",
@@ -972,6 +978,7 @@
972
978
  "items": {
973
979
  "type": "string",
974
980
  "examples": [
981
+ "any",
975
982
  "underwater",
976
983
  "coastal",
977
984
  "mountain",
@@ -983,10 +990,56 @@
983
990
  "swamp",
984
991
  "underdark",
985
992
  "desert",
986
- "any",
987
993
  "badlands",
988
994
  "farmland",
989
- "planar"
995
+ "planar",
996
+ "planar, transitive",
997
+ "planar, elemental",
998
+ "planar, inner",
999
+ "planar, upper",
1000
+ "planar, lower",
1001
+ "planar, water",
1002
+ "planar, earth",
1003
+ "planar, fire",
1004
+ "planar, air",
1005
+ "planar, ooze",
1006
+ "planar, magma",
1007
+ "planar, ash",
1008
+ "planar, ice",
1009
+ "planar, ethereal",
1010
+ "planar, astral",
1011
+ "planar, arborea",
1012
+ "planar, arcadia",
1013
+ "planar, beastlands",
1014
+ "planar, bytopia",
1015
+ "planar, elysium",
1016
+ "planar, mount celestia",
1017
+ "planar, ysgard",
1018
+ "planar, abyss",
1019
+ "planar, acheron",
1020
+ "planar, carceri",
1021
+ "planar, gehenna",
1022
+ "planar, hades",
1023
+ "planar, nine hells",
1024
+ "planar, pandemonium",
1025
+ "planar, limbo",
1026
+ "planar, mechanus",
1027
+ "planar, outlands"
1028
+ ]
1029
+ }
1030
+ },
1031
+ "treasure": {
1032
+ "type": "array",
1033
+ "minItems": 1,
1034
+ "items": {
1035
+ "type": "string",
1036
+ "examples": [
1037
+ "any",
1038
+ "individual",
1039
+ "arcana",
1040
+ "armaments",
1041
+ "implements",
1042
+ "relics"
990
1043
  ]
991
1044
  }
992
1045
  },
@@ -2109,8 +2162,10 @@
2109
2162
  ]
2110
2163
  },
2111
2164
  "legendaryActions": {
2112
- "type": "integer",
2113
- "minimum": 1
2165
+ "$ref": "#/$defs/_legendaryActions"
2166
+ },
2167
+ "legendaryActionsLair": {
2168
+ "$ref": "#/$defs/_legendaryActions"
2114
2169
  },
2115
2170
  "legendaryHeader": {
2116
2171
  "type": "array",
@@ -2243,6 +2298,7 @@
2243
2298
  "items": {
2244
2299
  "type": "string",
2245
2300
  "examples": [
2301
+ "any",
2246
2302
  "underwater",
2247
2303
  "coastal",
2248
2304
  "mountain",
@@ -2254,10 +2310,56 @@
2254
2310
  "swamp",
2255
2311
  "underdark",
2256
2312
  "desert",
2257
- "any",
2258
2313
  "badlands",
2259
2314
  "farmland",
2260
- "planar"
2315
+ "planar",
2316
+ "planar, transitive",
2317
+ "planar, elemental",
2318
+ "planar, inner",
2319
+ "planar, upper",
2320
+ "planar, lower",
2321
+ "planar, water",
2322
+ "planar, earth",
2323
+ "planar, fire",
2324
+ "planar, air",
2325
+ "planar, ooze",
2326
+ "planar, magma",
2327
+ "planar, ash",
2328
+ "planar, ice",
2329
+ "planar, ethereal",
2330
+ "planar, astral",
2331
+ "planar, arborea",
2332
+ "planar, arcadia",
2333
+ "planar, beastlands",
2334
+ "planar, bytopia",
2335
+ "planar, elysium",
2336
+ "planar, mount celestia",
2337
+ "planar, ysgard",
2338
+ "planar, abyss",
2339
+ "planar, acheron",
2340
+ "planar, carceri",
2341
+ "planar, gehenna",
2342
+ "planar, hades",
2343
+ "planar, nine hells",
2344
+ "planar, pandemonium",
2345
+ "planar, limbo",
2346
+ "planar, mechanus",
2347
+ "planar, outlands"
2348
+ ]
2349
+ }
2350
+ },
2351
+ "treasure": {
2352
+ "type": "array",
2353
+ "minItems": 1,
2354
+ "items": {
2355
+ "type": "string",
2356
+ "examples": [
2357
+ "any",
2358
+ "individual",
2359
+ "arcana",
2360
+ "armaments",
2361
+ "implements",
2362
+ "relics"
2261
2363
  ]
2262
2364
  }
2263
2365
  },
@@ -3385,8 +3487,10 @@
3385
3487
  ]
3386
3488
  },
3387
3489
  "legendaryActions": {
3388
- "type": "integer",
3389
- "minimum": 1
3490
+ "$ref": "#/$defs/_legendaryActions"
3491
+ },
3492
+ "legendaryActionsLair": {
3493
+ "$ref": "#/$defs/_legendaryActions"
3390
3494
  },
3391
3495
  "legendaryHeader": {
3392
3496
  "type": "array",
@@ -3519,6 +3623,7 @@
3519
3623
  "items": {
3520
3624
  "type": "string",
3521
3625
  "examples": [
3626
+ "any",
3522
3627
  "underwater",
3523
3628
  "coastal",
3524
3629
  "mountain",
@@ -3530,10 +3635,56 @@
3530
3635
  "swamp",
3531
3636
  "underdark",
3532
3637
  "desert",
3533
- "any",
3534
3638
  "badlands",
3535
3639
  "farmland",
3536
- "planar"
3640
+ "planar",
3641
+ "planar, transitive",
3642
+ "planar, elemental",
3643
+ "planar, inner",
3644
+ "planar, upper",
3645
+ "planar, lower",
3646
+ "planar, water",
3647
+ "planar, earth",
3648
+ "planar, fire",
3649
+ "planar, air",
3650
+ "planar, ooze",
3651
+ "planar, magma",
3652
+ "planar, ash",
3653
+ "planar, ice",
3654
+ "planar, ethereal",
3655
+ "planar, astral",
3656
+ "planar, arborea",
3657
+ "planar, arcadia",
3658
+ "planar, beastlands",
3659
+ "planar, bytopia",
3660
+ "planar, elysium",
3661
+ "planar, mount celestia",
3662
+ "planar, ysgard",
3663
+ "planar, abyss",
3664
+ "planar, acheron",
3665
+ "planar, carceri",
3666
+ "planar, gehenna",
3667
+ "planar, hades",
3668
+ "planar, nine hells",
3669
+ "planar, pandemonium",
3670
+ "planar, limbo",
3671
+ "planar, mechanus",
3672
+ "planar, outlands"
3673
+ ]
3674
+ }
3675
+ },
3676
+ "treasure": {
3677
+ "type": "array",
3678
+ "minItems": 1,
3679
+ "items": {
3680
+ "type": "string",
3681
+ "examples": [
3682
+ "any",
3683
+ "individual",
3684
+ "arcana",
3685
+ "armaments",
3686
+ "implements",
3687
+ "relics"
3537
3688
  ]
3538
3689
  }
3539
3690
  },
@@ -890,7 +890,7 @@
890
890
  "$ref": "../util.json#/$defs/otherSources"
891
891
  },
892
892
  "additionalSpells": {
893
- "$ref": "../util.json#/$defs/additionalSpellsArray"
893
+ "$ref": "../util-additionalspells.json#/$defs/additionalSpellsArray"
894
894
  },
895
895
  "hasFluff": {
896
896
  "const": true
@@ -1102,7 +1102,7 @@
1102
1102
  "$ref": "../util.json#/$defs/otherSources"
1103
1103
  },
1104
1104
  "additionalSpells": {
1105
- "$ref": "../util.json#/$defs/additionalSpellsArray"
1105
+ "$ref": "../util-additionalspells.json#/$defs/additionalSpellsArray"
1106
1106
  },
1107
1107
  "hasFluff": {
1108
1108
  "const": true
@@ -1314,7 +1314,7 @@
1314
1314
  "$ref": "../util.json#/$defs/otherSources"
1315
1315
  },
1316
1316
  "additionalSpells": {
1317
- "$ref": "../util.json#/$defs/additionalSpellsArray"
1317
+ "$ref": "../util-additionalspells.json#/$defs/additionalSpellsArray"
1318
1318
  },
1319
1319
  "hasFluff": {
1320
1320
  "const": true
@@ -1747,7 +1747,7 @@
1747
1747
  ]
1748
1748
  },
1749
1749
  "additionalSpells": {
1750
- "$ref": "../util.json#/$defs/additionalSpellsArray"
1750
+ "$ref": "../util-additionalspells.json#/$defs/additionalSpellsArray"
1751
1751
  },
1752
1752
  "hasFluff": {
1753
1753
  "const": true
@@ -2056,7 +2056,7 @@
2056
2056
  ]
2057
2057
  },
2058
2058
  "additionalSpells": {
2059
- "$ref": "../util.json#/$defs/additionalSpellsArray"
2059
+ "$ref": "../util-additionalspells.json#/$defs/additionalSpellsArray"
2060
2060
  },
2061
2061
  "hasFluff": {
2062
2062
  "const": true
@@ -2368,7 +2368,7 @@
2368
2368
  ]
2369
2369
  },
2370
2370
  "additionalSpells": {
2371
- "$ref": "../util.json#/$defs/additionalSpellsArray"
2371
+ "$ref": "../util-additionalspells.json#/$defs/additionalSpellsArray"
2372
2372
  },
2373
2373
  "hasFluff": {
2374
2374
  "const": true
@@ -10,6 +10,9 @@
10
10
  "name": {
11
11
  "type": "string"
12
12
  },
13
+ "preserveName": {
14
+ "const": true
15
+ },
13
16
  "source": {
14
17
  "$ref": "../util.json#/$defs/source"
15
18
  },
@@ -56,6 +59,9 @@
56
59
  "name": {
57
60
  "type": "string"
58
61
  },
62
+ "preserveName": {
63
+ "const": true
64
+ },
59
65
  "source": {
60
66
  "$ref": "../util.json#/$defs/source"
61
67
  },
@@ -103,6 +109,9 @@
103
109
  "name": {
104
110
  "type": "string"
105
111
  },
112
+ "preserveName": {
113
+ "const": true
114
+ },
106
115
  "source": {
107
116
  "$ref": "../util.json#/$defs/source"
108
117
  },
@@ -3,7 +3,7 @@
3
3
  "$id": "entry.json",
4
4
  "title": "Entry",
5
5
  "description": "A recursively renderable object.",
6
- "version": "1.9.3",
6
+ "version": "1.9.5",
7
7
  "$defs": {
8
8
  "_arrayOfSpell": {
9
9
  "type": "array",
@@ -39,7 +39,46 @@
39
39
  },
40
40
  "_entryDataData": {
41
41
  "description": "A generic object for storing special data for external use-cases. Keys prefixed with \"rd-\" should be added as \"data-\" HTML attributes when rendering to HTML.",
42
- "type": "object"
42
+ "type": "object",
43
+ "properties": {
44
+ "genTables": {
45
+ "type": "object",
46
+ "properties": {
47
+ "tableIgnore": {
48
+ "const": true
49
+ },
50
+ "tableChapterIgnore": {
51
+ "const": true
52
+ },
53
+ "tableInclude": {
54
+ "const": true
55
+ },
56
+ "tableNamePrefix": {
57
+ "type": "string"
58
+ },
59
+ "tableName": {
60
+ "type": "string"
61
+ },
62
+ "skipSectionPrefix": {
63
+ "const": true
64
+ },
65
+ "fauxGroupName": {
66
+ "type": "string"
67
+ },
68
+ "fauxGroupSource": {
69
+ "$ref": "util.json#/$defs/source"
70
+ },
71
+ "fauxGroupPage": {
72
+ "$ref": "util.json#/$defs/page"
73
+ },
74
+ "isFauxGroupAdditional": {
75
+ "const": true
76
+ }
77
+ },
78
+ "additionalProperties": false,
79
+ "minProperties": 1
80
+ }
81
+ }
43
82
  },
44
83
  "_entryTableColLabelItem": {
45
84
  "anyOf": [
@@ -3798,6 +3837,9 @@
3798
3837
  "rest": {
3799
3838
  "$ref": "#/$defs/entrySpellcasting_frequency"
3800
3839
  },
3840
+ "restLong": {
3841
+ "$ref": "#/$defs/entrySpellcasting_frequency"
3842
+ },
3801
3843
  "daily": {
3802
3844
  "$ref": "#/$defs/entrySpellcasting_frequency"
3803
3845
  },
@@ -3816,6 +3858,9 @@
3816
3858
  "recharge": {
3817
3859
  "$ref": "#/$defs/entrySpellcasting_recharge"
3818
3860
  },
3861
+ "legendary": {
3862
+ "$ref": "#/$defs/entrySpellcasting_frequency"
3863
+ },
3819
3864
  "spells": {
3820
3865
  "type": "object",
3821
3866
  "properties": {
@@ -3874,6 +3919,7 @@
3874
3919
  "constant",
3875
3920
  "will",
3876
3921
  "rest",
3922
+ "restLong",
3877
3923
  "daily",
3878
3924
  "weekly",
3879
3925
  "monthly",
@@ -3881,7 +3927,8 @@
3881
3927
  "ritual",
3882
3928
  "spells",
3883
3929
  "charges",
3884
- "recharge"
3930
+ "recharge",
3931
+ "legendary"
3885
3932
  ]
3886
3933
  }
3887
3934
  },
@@ -3901,7 +3948,9 @@
3901
3948
  "trait",
3902
3949
  "action",
3903
3950
  "bonus",
3904
- "reaction"
3951
+ "reaction",
3952
+ "legendary",
3953
+ "mythic"
3905
3954
  ]
3906
3955
  },
3907
3956
  "chargesItem": {
@@ -65,7 +65,7 @@
65
65
  "$ref": "util.json#/$defs/dataFeatCategory"
66
66
  },
67
67
  "additionalSpells": {
68
- "$ref": "util.json#/$defs/additionalSpellsArray"
68
+ "$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
69
69
  },
70
70
  "languageProficiencies": {
71
71
  "$ref": "util.json#/$defs/languageProficiencies"
@@ -220,7 +220,7 @@
220
220
  "$ref": "util.json#/$defs/dataFeatCategory"
221
221
  },
222
222
  "additionalSpells": {
223
- "$ref": "util.json#/$defs/additionalSpellsArray"
223
+ "$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
224
224
  },
225
225
  "languageProficiencies": {
226
226
  "$ref": "util.json#/$defs/languageProficiencies"
@@ -378,7 +378,7 @@
378
378
  "$ref": "util.json#/$defs/dataFeatCategory"
379
379
  },
380
380
  "additionalSpells": {
381
- "$ref": "util.json#/$defs/additionalSpellsArray"
381
+ "$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
382
382
  },
383
383
  "languageProficiencies": {
384
384
  "$ref": "util.json#/$defs/languageProficiencies"
@@ -68,7 +68,7 @@
68
68
  "type": "boolean"
69
69
  },
70
70
  "additionalSpells": {
71
- "$ref": "util.json#/$defs/additionalSpellsArray"
71
+ "$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
72
72
  },
73
73
  "languageProficiencies": {
74
74
  "$ref": "util.json#/$defs/languageProficiencies"
@@ -204,7 +204,7 @@
204
204
  "type": "boolean"
205
205
  },
206
206
  "additionalSpells": {
207
- "$ref": "util.json#/$defs/additionalSpellsArray"
207
+ "$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
208
208
  },
209
209
  "languageProficiencies": {
210
210
  "$ref": "util.json#/$defs/languageProficiencies"
@@ -344,7 +344,7 @@
344
344
  "type": "boolean"
345
345
  },
346
346
  "additionalSpells": {
347
- "$ref": "util.json#/$defs/additionalSpellsArray"
347
+ "$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
348
348
  },
349
349
  "languageProficiencies": {
350
350
  "$ref": "util.json#/$defs/languageProficiencies"
@@ -173,7 +173,7 @@
173
173
  "type": "null"
174
174
  },
175
175
  {
176
- "$ref": "util.json#/$defs/additionalSpellsArray"
176
+ "$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
177
177
  }
178
178
  ]
179
179
  },
@@ -449,7 +449,7 @@
449
449
  "type": "null"
450
450
  },
451
451
  {
452
- "$ref": "util.json#/$defs/additionalSpellsArray"
452
+ "$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
453
453
  }
454
454
  ]
455
455
  },
@@ -807,7 +807,7 @@
807
807
  "type": "null"
808
808
  },
809
809
  {
810
- "$ref": "util.json#/$defs/additionalSpellsArray"
810
+ "$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
811
811
  }
812
812
  ]
813
813
  },
@@ -1087,7 +1087,7 @@
1087
1087
  "type": "null"
1088
1088
  },
1089
1089
  {
1090
- "$ref": "util.json#/$defs/additionalSpellsArray"
1090
+ "$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
1091
1091
  }
1092
1092
  ]
1093
1093
  },
@@ -1373,7 +1373,7 @@
1373
1373
  "type": "null"
1374
1374
  },
1375
1375
  {
1376
- "$ref": "util.json#/$defs/additionalSpellsArray"
1376
+ "$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
1377
1377
  }
1378
1378
  ]
1379
1379
  },
@@ -1665,7 +1665,7 @@
1665
1665
  "type": "null"
1666
1666
  },
1667
1667
  {
1668
- "$ref": "util.json#/$defs/additionalSpellsArray"
1668
+ "$ref": "util-additionalspells.json#/$defs/additionalSpellsArray"
1669
1669
  }
1670
1670
  ]
1671
1671
  },