forked from MrPrimate/ddb-importer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass-features.json
9410 lines (9410 loc) · 265 KB
/
class-features.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "Abjuration Savant",
"class_feature": "Abjuration Savant",
"class": "Wizard",
"subclass": "School of Abjuration",
"path": "icons/magic/defensive/shield-barrier-flaming-pentagon-purple-orange.webp"
},
{
"name": "Accursed Specter",
"class_feature": "Accursed Specter",
"class": "Warlock",
"subclass": "The Hexblade",
"path": "icons/magic/death/projectile-skull-fire-purple.webp"
},
{
"name": "Acolyte of Nature",
"class_feature": "Acolyte of Nature",
"class": "Cleric",
"subclass": "Nature Domain",
"path": "icons/consumables/plants/leaf-veins-glowing-green.webp"
},
{
"name": "Action Surge",
"class_feature": "Action Surge",
"class": "Fighter",
"subclass": "Battle Master",
"path": "icons/skills/social/intimidation-impressing.webp"
},
{
"name": "Action Surge",
"class_feature": "Action Surge",
"class": "Fighter",
"subclass": "",
"path": "icons/skills/social/intimidation-impressing.webp"
},
{
"name": "Additional Bard Spells",
"class_feature": "Additional Bard Spells",
"class": "Bard",
"subclass": "",
"path": "icons/sundries/books/book-symbol-reverse-blue.webp"
},
{
"name": "Additional Cleric Spells",
"class_feature": "Additional Cleric Spells",
"class": "Cleric",
"subclass": "",
"path": "icons/sundries/books/book-symbol-cross-blue.webp"
},
{
"name": "Additional Druid Spells",
"class_feature": "Additional Druid Spells",
"class": "Druid",
"subclass": "",
"path": "icons/sundries/books/book-symbol-tree-silver-green.webp"
},
{
"name": "Additional Fighting Style",
"class_feature": "Additional Fighting Style",
"class": "Fighter",
"subclass": "Champion",
"path": "icons/skills/melee/weapons-crossed-swords-purple.webp"
},
{
"name": "Additional Magical Secrets",
"class_feature": "Additional Magical Secrets",
"class": "Bard",
"subclass": "College of Lore",
"path": "icons/sundries/documents/document-torn-diagram-tan.webp"
},
{
"name": "Additional Paladin Spells",
"class_feature": "Additional Paladin Spells",
"class": "Paladin",
"subclass": "",
"path": "icons/sundries/books/book-symbol-canterbury-cross.webp"
},
{
"name": "Additional Ranger Spells",
"class_feature": "Additional Ranger Spells",
"class": "Ranger",
"subclass": "",
"path": "icons/sundries/books/book-embossed-roots-green.webp"
},
{
"name": "Additional Sorcerer Spells",
"class_feature": "Additional Sorcerer Spells",
"class": "Sorcerer",
"subclass": "",
"path": "icons/sundries/books/book-tooled-eye-gold-red.webp"
},
{
"name": "Additional Warlock Spells",
"class_feature": "Additional Warlock Spells",
"class": "Warlock",
"subclass": "",
"path": "icons/sundries/books/book-reye-reptile-brown.webp"
},
{
"name": "Additional Wizard Spells",
"class_feature": "Additional Wizard Spells",
"class": "Wizard",
"subclass": "",
"path": "icons/sundries/books/book-embossed-jewel-gold-purple.webp"
},
{
"name": "Adept Marksman",
"class_feature": "Adept Marksman",
"class": "Fighter",
"subclass": "Gunslinger",
"path": "icons/weapons/guns/gun-topbarrel.webp"
},
{
"name": "Adjust Density",
"class_feature": "Adjust Density",
"class": "Wizard",
"subclass": "Graviturgy Magic",
"path": "icons/magic/unholy/orb-beam-pink.webp"
},
{
"name": "Advanced Transformation",
"class_feature": "Advanced Transformation",
"class": "Blood Hunter",
"subclass": "Order of the Lycan",
"path": "icons/commodities/claws/claw-brown-black.webp"
},
{
"name": "Alchemical Savant",
"class_feature": "Alchemical Savant",
"class": "Artificer",
"subclass": "Alchemist",
"path": "icons/tools/laboratory/vials-blue-pink.webp"
},
{
"name": "Power Armor",
"class_feature": "Power Armor",
"class": "Artificer",
"subclass": "",
"path": "icons/creatures/magical/construct-iron-stomping-yellow.webp"
},
{
"name": "Defensive Field",
"class_feature": "Defensive Field",
"class": "Artificer",
"subclass": "",
"path": "icons/magic/control/debuff-chains-ropes-net-white.webp"
},
{
"name": "Alchemist Spells",
"class_feature": "Alchemist Spells",
"class": "Artificer",
"subclass": "Alchemist",
"path": "icons/sundries/books/book-symbol-potion-blue.webp"
},
{
"name": "Alter Memories",
"class_feature": "Alter Memories",
"class": "Wizard",
"subclass": "School of Enchantment",
"path": "icons/magic/control/debuff-chains-ropes-purple.webp"
},
{
"name": "Ambush",
"class_feature": "Ambush",
"class": "Ranger",
"subclass": "",
"path": "icons/skills/melee/weapons-crossed-swords-yellow.webp"
},
{
"name": "Ambush Master",
"class_feature": "Ambush Master",
"class": "Rogue",
"subclass": "Scout",
"path": "icons/magic/nature/stealth-hide-eyes-green.webp"
},
{
"name": "Among the Dead",
"class_feature": "Among the Dead",
"class": "Warlock",
"subclass": "The Undying",
"path": "icons/magic/life/heart-cross-strong-blue.webp"
},
{
"name": "Ancestral Protectors",
"class_feature": "Ancestral Protectors",
"class": "Barbarian",
"subclass": "Path of the Ancestral Guardian",
"path": "icons/creatures/unholy/demons-horned-glowing-pink.webp"
},
{
"name": "Animating Performance",
"class_feature": "Animating Performance",
"class": "Bard",
"subclass": "College of Creation",
"path": "icons/magic/water/orb-water-ice-pink.webp"
},
{
"name": "Arcane Abeyance",
"class_feature": "Arcane Abeyance",
"class": "Wizard",
"subclass": "Chronurgy Magic",
"path": "icons/tools/navigation/hourglass-yellow.webp"
},
{
"name": "Arcane Archer Lore",
"class_feature": "Arcane Archer Lore",
"class": "Fighter",
"subclass": "Arcane Archer",
"path": "icons/sundries/books/book-symbol-triangle-silver-blue.webp"
},
{
"name": "Arcane Armor",
"class_feature": "Arcane Armor",
"class": "Artificer",
"subclass": "Armorer",
"path": "icons/equipment/hand/gauntlet-plate-gold.webp"
},
{
"name": "Arcane Charge",
"class_feature": "Arcane Charge",
"class": "Fighter",
"subclass": "Eldritch Knight",
"path": "icons/skills/ranged/projectile-explosion-black-orange.webp"
},
{
"name": "Arcane Deflection",
"class_feature": "Arcane Deflection",
"class": "Wizard",
"subclass": "War Magic",
"path": "icons/magic/defensive/shield-barrier-glowing-triangle-red.webp"
},
{
"name": "Arcane Firearm",
"class_feature": "Arcane Firearm",
"class": "Artificer",
"subclass": "Artillerist",
"path": "icons/weapons/guns/gun-worn-steel.webp"
},
{
"name": "Arcane Initiate",
"class_feature": "Arcane Initiate",
"class": "Cleric",
"subclass": "Arcana Domain",
"path": "icons/magic/symbols/runes-triangle-orange-purple.webp"
},
{
"name": "Arcane Jolt",
"class_feature": "Arcane Jolt",
"class": "Artificer",
"subclass": "Battle Smith",
"path": "icons/magic/lightning/bolt-strike-blue.webp"
},
{
"name": "Arcane Mastery",
"class_feature": "Arcane Mastery",
"class": "Cleric",
"subclass": "Arcana Domain",
"path": "icons/magic/symbols/runes-star-pentagon-orange-purple.webp"
},
{
"name": "Arcane Recovery",
"class_feature": "Arcane Recovery",
"class": "Wizard",
"subclass": "School of Evocation",
"path": "icons/magic/earth/explosion-lava-stone-green.webp"
},
{
"name": "Arcane Recovery",
"class_feature": "Arcane Recovery",
"class": "Wizard",
"subclass": "",
"path": "icons/magic/earth/explosion-lava-stone-green.webp"
},
{
"name": "Arcane Shot",
"class_feature": "Arcane Shot",
"class": "Fighter",
"subclass": "Arcane Archer",
"path": "icons/magic/fire/projectile-arrow-fire-purple.webp"
},
{
"name": "Arcane Shot Options",
"class_feature": "Arcane Shot Options",
"class": "Fighter",
"subclass": "Arcane Archer",
"path": "icons/weapons/bows/longbow-gold-pink.webp"
},
{
"name": "Arcane Tradition",
"class_feature": "Arcane Tradition",
"class": "Wizard",
"subclass": "School of Evocation",
"path": "icons/magic/water/orb-ice-glow.webp"
},
{
"name": "Arcane Tradition",
"class_feature": "Arcane Tradition",
"class": "Wizard",
"subclass": "",
"path": "icons/magic/water/orb-ice-glow.webp"
},
{
"name": "Arcane Ward",
"class_feature": "Arcane Ward",
"class": "Wizard",
"subclass": "School of Abjuration",
"path": "icons/magic/defensive/shield-barrier-glowing-triangle-blue.webp"
},
{
"name": "Archdruid",
"class_feature": "Archdruid",
"class": "Druid",
"subclass": "Circle of the Land (Arctic)",
"path": "icons/magic/nature/beam-hand-leaves-green.webp"
},
{
"name": "Archdruid",
"class_feature": "Archdruid",
"class": "Druid",
"subclass": "",
"path": "icons/magic/nature/beam-hand-leaves-green.webp"
},
{
"name": "Armor Model",
"class_feature": "Armor Model",
"class": "Artificer",
"subclass": "Armorer",
"path": "icons/equipment/chest/breastplate-collared-steel-grey.webp"
},
{
"name": "Armor Modifications",
"class_feature": "Armor Modifications",
"class": "Artificer",
"subclass": "Armorer",
"path": "icons/equipment/chest/breastplate-cuirass-steel-grey.webp"
},
{
"name": "Armor of Hexes",
"class_feature": "Armor of Hexes",
"class": "Warlock",
"subclass": "The Hexblade",
"path": "icons/skills/toxins/poison-bottle-corked-fire-green.webp"
},
{
"name": "Armorer Spells",
"class_feature": "Armorer Spells",
"class": "Artificer",
"subclass": "Armorer",
"path": "icons/sundries/books/book-symbol-plant-brown.webp"
},
{
"name": "Arms of the Astral Self",
"class_feature": "Arms of the Astral Self",
"class": "Monk",
"subclass": "Way of the Astral Self",
"path": "icons/magic/unholy/strike-hand-glow-pink.webp"
},
{
"name": "Artificer Infusions",
"class_feature": "Artificer Infusions",
"class": "Artificer",
"subclass": "Alchemist",
"path": "icons/commodities/stone/ore-pile-purple.webp"
},
{
"name": "Artificer Infusions",
"class_feature": "Artificer Infusions",
"class": "Artificer",
"subclass": "",
"path": "icons/commodities/stone/ore-pile-purple.webp"
},
{
"name": "Artificer Specialist",
"class_feature": "Artificer Specialist",
"class": "Artificer",
"subclass": "Alchemist",
"path": "icons/commodities/tech/claw-mechanical.webp"
},
{
"name": "Artificer Specialist",
"class_feature": "Artificer Specialist",
"class": "Artificer",
"subclass": "",
"path": "icons/commodities/tech/claw-mechanical.webp"
},
{
"name": "Artillerist Spells",
"class_feature": "Artillerist Spells",
"class": "Artificer",
"subclass": "Artillerist",
"path": "icons/sundries/books/book-tooled-brass-brown.webp"
},
{
"name": "Ascendant Aspect",
"class_feature": "Ascendant Aspect",
"class": "Monk",
"subclass": "Way of the Ascendant Dragon (UA)",
"path": "icons/magic/control/debuff-energy-hold-levitate-green.webp"
},
{
"name": "Aspect of the Beast",
"class_feature": "Aspect of the Beast",
"class": "Barbarian",
"subclass": "Path of the Totem Warrior",
"path": "icons/commodities/claws/claws-bear-brown-white.webp"
},
{
"name": "Aspect of the Wyrm",
"class_feature": "Aspect of the Wyrm",
"class": "Monk",
"subclass": "Way of the Ascendant Dragon (UA)",
"path": "icons/creatures/reptiles/serpent-horned-green.webp"
},
{
"name": "Assassinate",
"class_feature": "Assassinate",
"class": "Rogue",
"subclass": "Assassin",
"path": "icons/weapons/daggers/dagger-curved-black.webp"
},
{
"name": "Aura Improvements",
"class_feature": "Aura Improvements",
"class": "Paladin",
"subclass": "Oath of Devotion",
"path": "icons/magic/light/explosion-star-blue.webp"
},
{
"name": "Aura Improvements",
"class_feature": "Aura Improvements",
"class": "Paladin",
"subclass": "",
"path": "icons/magic/light/explosion-star-blue.webp"
},
{
"name": "Aura of Alacrity",
"class_feature": "Aura of Alacrity",
"class": "Paladin",
"subclass": "Oath of Glory",
"path": "icons/skills/movement/feet-winged-boots-brown.webp"
},
{
"name": "Aura of Conquest",
"class_feature": "Aura of Conquest",
"class": "Paladin",
"subclass": "Oath of Conquest",
"path": "icons/skills/melee/weapons-crossed-swords-white-blue.webp"
},
{
"name": "Aura of Courage",
"class_feature": "Aura of Courage",
"class": "Paladin",
"subclass": "Oath of Devotion",
"path": "icons/magic/light/explosion-beam-impact-silhouette.webp"
},
{
"name": "Aura of Courage",
"class_feature": "Aura of Courage",
"class": "Paladin",
"subclass": "",
"path": "icons/magic/light/explosion-beam-impact-silhouette.webp"
},
{
"name": "Aura of Devotion",
"class_feature": "Aura of Devotion",
"class": "Paladin",
"subclass": "Oath of Devotion",
"path": "icons/magic/life/heart-glowing-red.webp"
},
{
"name": "Aura of Hate",
"class_feature": "Aura of Hate",
"class": "Paladin",
"subclass": "Oathbreaker",
"path": "icons/skills/melee/strike-flail-spiked-pink.webp"
},
{
"name": "Aura of Liberation",
"class_feature": "Aura of Liberation",
"class": "Paladin",
"subclass": "Oath of the Open Sea",
"path": "icons/magic/light/orb-beams-green.webp"
},
{
"name": "Aura of Protection",
"class_feature": "Aura of Protection",
"class": "Paladin",
"subclass": "Oath of Devotion",
"path": "icons/magic/defensive/shield-barrier-glowing-blue.webp"
},
{
"name": "Aura of Protection",
"class_feature": "Aura of Protection",
"class": "Paladin",
"subclass": "",
"path": "icons/magic/defensive/shield-barrier-glowing-blue.webp"
},
{
"name": "Aura of the Guardian",
"class_feature": "Aura of the Guardian",
"class": "Paladin",
"subclass": "Oath of Redemption",
"path": "icons/magic/defensive/shield-barrier-glowing-blue.webp"
},
{
"name": "Aura of the Sentinel",
"class_feature": "Aura of the Sentinel",
"class": "Paladin",
"subclass": "Oath of the Watchers",
"path": "icons/magic/defensive/shield-barrier-glowing-blue.webp"
},
{
"name": "Aura of Warding",
"class_feature": "Aura of Warding",
"class": "Paladin",
"subclass": "Oath of the Ancients",
"path": "icons/magic/defensive/shield-barrier-glowing-blue.webp"
},
{
"name": "Avatar of Battle",
"class_feature": "Avatar of Battle",
"class": "Cleric",
"subclass": "War Domain",
"path": "icons/equipment/shield/kite-wooden-oak-glow.webp"
},
{
"name": "Avenging Angel",
"class_feature": "Avenging Angel",
"class": "Paladin",
"subclass": "Oath of Vengeance",
"path": "icons/magic/control/buff-flight-wings-runes-red-yellow.webp"
},
{
"name": "Awakened Astral Self",
"class_feature": "Awakened Astral Self",
"class": "Monk",
"subclass": "Way of the Astral Self",
"path": "icons/magic/air/wind-tornado-cyclone-red-orange.webp"
},
{
"name": "Awakened Mind",
"class_feature": "Awakened Mind",
"class": "Warlock",
"subclass": "The Great Old One",
"path": "icons/magic/perception/eye-ringed-glow-angry-teal.webp"
},
{
"name": "Awakened Spellbook",
"class_feature": "Awakened Spellbook",
"class": "Wizard",
"subclass": "Order of Scribes",
"path": "icons/sundries/books/book-open-brown.webp"
},
{
"name": "Balm of the Summer Court",
"class_feature": "Balm of the Summer Court",
"class": "Druid",
"subclass": "Circle of Dreams",
"path": "icons/magic/nature/leaf-glow-triple-orange-purple.webp"
},
{
"name": "Banishing Arrow",
"class_feature": "Banishing Arrow",
"class": "Ranger",
"subclass": "Arcane Archer",
"path": "icons/magic/movement/portal-vortex-orange.webp"
},
{
"name": "Bard College",
"class_feature": "Bard College",
"class": "Bard",
"subclass": "College of Lore",
"path": "icons/environment/settlement/house-manor.webp"
},
{
"name": "Bard College",
"class_feature": "Bard College",
"class": "Bard",
"subclass": "",
"path": "icons/environment/settlement/house-manor.webp"
},
{
"name": "Bardic Inspiration",
"class_feature": "Bardic Inspiration",
"class": "Bard",
"subclass": "College of Lore",
"path": "icons/magic/control/buff-flight-wings-runes-blue.webp"
},
{
"name": "Bardic Inspiration",
"class_feature": "Bardic Inspiration",
"class": "Bard",
"subclass": "",
"path": "icons/magic/control/buff-flight-wings-runes-blue.webp"
},
{
"name": "Bardic Versatility",
"class_feature": "Bardic Versatility",
"class": "Bard",
"subclass": "",
"path": "icons/magic/symbols/runes-triangle-blue.webp"
},
{
"name": "Bastion of Law",
"class_feature": "Bastion of Law",
"class": "Sorcerer",
"subclass": "Clockwork Soul",
"path": "icons/equipment/neck/amulet-carved-stone-hammer.webp"
},
{
"name": "Battle Magic",
"class_feature": "Battle Magic",
"class": "Bard",
"subclass": "College of Valor",
"path": "icons/magic/symbols/runes-star-pentagon-orange.webp"
},
{
"name": "Battle Ready",
"class_feature": "Battle Ready",
"class": "Artificer",
"subclass": "Battle Smith",
"path": "icons/weapons/swords/sword-guard-serrated.webp"
},
{
"name": "Battle Smith Spells",
"class_feature": "Battle Smith Spells",
"class": "Artificer",
"subclass": "Battle Smith",
"path": "icons/sundries/books/symbol-axe-gold-grey.webp"
},
{
"name": "Battlerager Armor",
"class_feature": "Battlerager Armor",
"class": "Barbarian",
"subclass": "Path of the Battlerager",
"path": "icons/equipment/shoulder/pauldron-spiked-black.webp"
},
{
"name": "Battlerager Charge",
"class_feature": "Battlerager Charge",
"class": "Barbarian",
"subclass": "Path of the Battlerager",
"path": "icons/magic/light/projectile-beam-yellow.webp"
},
{
"name": "Beast Spells",
"class_feature": "Beast Spells",
"class": "Druid",
"subclass": "Circle of the Land (Arctic)",
"path": "icons/creatures/abilities/stinger-poison-green.webp"
},
{
"name": "Beast Spells",
"class_feature": "Beast Spells",
"class": "Druid",
"subclass": "",
"path": "icons/creatures/abilities/stinger-poison-green.webp"
},
{
"name": "Beguiling Arrow",
"class_feature": "Beguiling Arrow",
"class": "Ranger",
"subclass": "Arcane Archer",
"path": "icons/magic/control/hypnosis-mesmerism-eye.webp"
},
{
"name": "Beguiling Defenses",
"class_feature": "Beguiling Defenses",
"class": "Warlock",
"subclass": "The Archfey",
"path": "icons/magic/air/wind-vortex-swirl-purple.webp"
},
{
"name": "Beguiling Twist",
"class_feature": "Beguiling Twist",
"class": "Ranger",
"subclass": "Fey Wanderer",
"path": "icons/magic/control/debuff-chains-ropes-purple.webp"
},
{
"name": "Bend Luck",
"class_feature": "Bend Luck",
"class": "Sorcerer",
"subclass": "Wild Magic",
"path": "icons/magic/air/air-wave-gust-blue.webp"
},
{
"name": "Benign Transposition",
"class_feature": "Benign Transposition",
"class": "Wizard",
"subclass": "School of Conjuration",
"path": "icons/magic/control/energy-stream-link-blue.webp"
},
{
"name": "Bestial Fury",
"class_feature": "Bestial Fury",
"class": "Ranger",
"subclass": "Beast Master",
"path": "icons/skills/melee/blood-slash-foam-red.webp"
},
{
"name": "Bestial Soul",
"class_feature": "Bestial Soul",
"class": "Barbarian",
"subclass": "Path of the Beast",
"path": "icons/commodities/claws/claw-brown-black.webp"
},
{
"name": "Blade Flourish",
"class_feature": "Blade Flourish",
"class": "Bard",
"subclass": "College of Swords",
"path": "icons/skills/melee/maneuver-greatsword-yellow.webp"
},
{
"name": "Bladesong",
"class_feature": "Bladesong",
"class": "Wizard",
"subclass": "Bladesinging",
"path": "icons/skills/melee/maneuver-greatsword-yellow.webp"
},
{
"name": "Blazing Revival",
"class_feature": "Blazing Revival",
"class": "Druid",
"subclass": "Circle of Wildfire",
"path": "icons/magic/control/buff-flight-wings-runes-red-yellow.webp"
},
{
"name": "Blessed Healer",
"class_feature": "Blessed Healer",
"class": "Cleric",
"subclass": "Life Domain",
"path": "icons/magic/light/orbs-hand-gray.webp"
},
{
"name": "Blessed Strikes",
"class": "Cleric",
"class_feature": "Blessed Strikes",
"subclass": "",
"path": "icons/magic/holy/projectiles-blades-salvo-yellow.webp"
},
{
"name": "Blessing of the Forge",
"class_feature": "Blessing of the Forge",
"class": "Cleric",
"subclass": "Forge Domain",
"path": "icons/skills/melee/weapons-crossed-swords-white-blue.webp"
},
{
"name": "Blessing of the Trickster",
"class_feature": "Blessing of the Trickster",
"class": "Cleric",
"subclass": "Trickery Domain",
"path": "icons/equipment/neck/necklace-charm-clover.webp"
},
{
"name": "Blessings of Knowledge",
"class_feature": "Blessings of Knowledge",
"class": "Cleric",
"subclass": "Knowledge Domain",
"path": "icons/sundries/books/book-symbol-square-blue-green.webp"
},
{
"name": "Blindsense",
"class_feature": "Blindsense",
"class": "Rogue",
"subclass": "Thief",
"path": "icons/magic/control/hypnosis-mesmerism-eye.webp"
},
{
"name": "Blindsense",
"class_feature": "Blindsense",
"class": "Rogue",
"subclass": "",
"path": "icons/magic/control/hypnosis-mesmerism-eye.webp"
},
{
"name": "Blood Curse of Binding",
"class_feature": "Blood Curse of Binding",
"class": "Blood Hunter",
"subclass": "",
"path": "icons/magic/control/debuff-chains-shackles-movement-purple.webp"
},
{
"name": "Blood Curse of Bloated Agony",
"class_feature": "Blood Curse of Bloated Agony",
"class": "Blood Hunter",
"subclass": "",
"path": "icons/magic/unholy/strike-body-explode-disintegrate.webp"
},
{
"name": "Blood Curse of Corrosion",
"class_feature": "Blood Curse of Corrosion",
"class": "Blood Hunter",
"subclass": "Order of the Mutant",
"path": "icons/creatures/slimes/slime-movment-dripping-green.webp"
},
{
"name": "Blood Curse of Exposure",
"class_feature": "Blood Curse of Exposure",
"class": "Blood Hunter",
"subclass": "",
"path": "icons/magic/control/silhouette-hold-change-green.webp"
},
{
"name": "Blood Curse of the Anxious",
"class_feature": "Blood Curse of the Anxious",
"class": "Blood Hunter",
"subclass": "",
"path": "icons/skills/wounds/injury-face-impact-orange.webp"
},
{
"name": "Blood Curse of the Exorcist",
"class_feature": "Blood Curse of the Exorcist",
"class": "Blood Hunter",
"subclass": "Order of the Ghostslayer",
"path": "icons/creatures/reptiles/lizard-mouth-glowing-red.webp"
},
{
"name": "Blood Curse of the Eyeless",
"class_feature": "Blood Curse of the Eyeless",
"class": "Blood Hunter",
"subclass": "",
"path": "icons/skills/wounds/injury-eyes-blood-red.webp"
},
{
"name": "Blood Curse of the Fallen Puppet",
"class_feature": "Blood Curse of the Fallen Puppet",
"class": "Blood Hunter",
"subclass": "",
"path": "icons/magic/control/control-influence-puppet.webp"
},
{
"name": "Blood Curse of the Marked",
"class_feature": "Blood Curse of the Marked",
"class": "Blood Hunter",
"subclass": "",
"path": "icons/skills/wounds/blood-spurt-spray-red.webp"
},
{
"name": "Blood Curse of the Muddled Mind",
"class_feature": "Blood Curse of the Muddled Mind",
"class": "Blood Hunter",
"subclass": "",
"path": "icons/magic/death/skull-weapon-staff-glow-pink.webp"
},
{
"name": "Blood Curse of the Souleater",
"class_feature": "Blood Curse of the Souleater",
"class": "Blood Hunter",
"subclass": "Order of the Profane Soul",
"path": "icons/magic/death/skull-horned-goat-pentagram-red.webp"
},
{
"name": "Blood Curses",
"class_feature": "Blood Curses",
"class": "Blood Hunter",
"subclass": "Order of the Ghostslayer",
"path": "icons/skills/wounds/blood-drip-droplet-red.webp"
},
{
"name": "Blood Curses",
"class_feature": "Blood Curses",
"class": "Blood Hunter",
"subclass": "",
"path": "icons/skills/wounds/blood-drip-droplet-red.webp"
},
{
"name": "Blood Hunter Order",
"class_feature": "Blood Hunter Order",
"class": "Blood Hunter",
"subclass": "Order of the Ghostslayer",
"path": "icons/magic/lightning/strike-arrow-spear-red.webp"
},
{
"name": "Blood Hunter Order",
"class_feature": "Blood Hunter Order",
"class": "Blood Hunter",
"subclass": "",
"path": "icons/magic/lightning/strike-arrow-spear-red.webp"
},
{
"name": "Blood Maledict",
"class_feature": "Blood Maledict",
"class": "Blood Hunter",
"subclass": "Order of the Ghostslayer",
"path": "icons/skills/wounds/blood-spurt-spray-red.webp"
},
{
"name": "Blood Maledict",
"class_feature": "Blood Maledict",
"class": "Blood Hunter",
"subclass": "",
"path": "icons/skills/wounds/blood-spurt-spray-red.webp"
},
{
"name": "Body of the Astral Self",
"class_feature": "Body of the Astral Self",
"class": "Monk",
"subclass": "Way of the Astral Self",
"path": "icons/magic/light/explosion-beam-impact-silhouette.webp"
},
{
"name": "Bolstering Magic",
"class_feature": "Bolstering Magic",
"class": "Barbarian",
"subclass": "Path of Wild Magic",
"path": "icons/magic/fire/dagger-rune-enchant-flame-strong-red.webp"
},
{
"name": "Bond of Fang and Scale",
"class_feature": "Bond of Fang and Scale",
"class": "Ranger",
"subclass": "Drakewarden (UA)",
"path": "icons/commodities/leather/scales-green.webp"
},
{
"name": "Bonus Proficiencies",
"class_feature": "Bonus Proficiencies",
"class": "",
"subclass": "",
"path": "icons/sundries/books/book-red-exclamation.webp"
},
{
"name": "Born to the Saddle",
"class_feature": "Born to the Saddle",
"class": "Fighter",
"subclass": "Cavalier",
"path": "icons/environment/people/cavalry-heavy.webp"
},
{
"name": "Brand of Axiom",
"class_feature": "Brand of Axiom",
"class": "Blood Hunter",
"subclass": "Order of the Mutant",
"path": "icons/magic/fire/flame-burning-creature-skeleton.webp"
},
{
"name": "Brand of Castigation",
"class_feature": "Brand of Castigation",
"class": "Blood Hunter",
"subclass": "Order of the Ghostslayer",
"path": "icons/magic/life/heart-shadow-red.webp"
},
{
"name": "Brand of Castigation",
"class_feature": "Brand of Castigation",
"class": "Blood Hunter",
"subclass": "",
"path": "icons/magic/life/heart-shadow-red.webp"
},
{
"name": "Brand of Sundering",
"class_feature": "Brand of Sundering",
"class": "Blood Hunter",
"subclass": "Order of the Ghostslayer",
"path": "icons/skills/melee/strike-axe-blood-red.webp"
},
{
"name": "Brand of Tethering",
"class_feature": "Brand of Tethering",
"class": "Blood Hunter",
"subclass": "Order of the Ghostslayer",
"path": "icons/sundries/survival/rope-noose-brown.webp"
},
{
"name": "Brand of Tethering",
"class_feature": "Brand of Tethering",
"class": "Blood Hunter",
"subclass": "",
"path": "icons/sundries/survival/rope-noose-brown.webp"
},
{
"name": "Brand of the Sapping Scar",
"class_feature": "Brand of the Sapping Scar",
"class": "Blood Hunter",
"subclass": "Order of the Profane Soul",
"path": "icons/skills/melee/strike-slashes-orange.webp"
},
{
"name": "Brand of the Voracious",
"class_feature": "Brand of the Voracious",
"class": "Blood Hunter",
"subclass": "Order of the Lycan",
"path": "icons/creatures/abilities/mouth-teeth-long-red.webp"
},
{
"name": "Breath of the Dragon",
"class_feature": "Breath of the Dragon",
"class": "Monk",
"subclass": "Way of the Ascendant Dragon (UA)",
"path": "icons/creatures/abilities/dragon-fire-breath-orange.webp"
},
{
"name": "Breath of Winter",
"class_feature": "Elemental Disciplines",
"class": "Monk",
"subclass": "Way of the Four Elements",