forked from 5e-bits/5e-database
-
Notifications
You must be signed in to change notification settings - Fork 3
/
features.json
8000 lines (8000 loc) · 300 KB
/
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
[
{
"index": 1,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/1",
"name": "Barbarian"
},
"subclass": {},
"name": "Rage",
"level": 1,
"desc": [
"In battle, you fight with primal ferocity. On your turn, you can enter a rage as a bonus action. While raging, you gain the following benefits if you aren't wearing heavy armor:",
"- You have advantage on Strength checks and Strength saving throws.",
"- When you make a melee weapon Attack using Strength, you gain a +2 bonus to the damage roll. This bonus increases as you level.",
"- You have Resistance to bludgeoning, piercing, and slashing damage.",
"If you are able to cast Spells, you can't cast them or concentrate on them while raging.",
"Your rage lasts for 1 minute. It ends early if you are knocked Unconscious or if Your Turn ends and you haven't attacked a hostile creature since your last turn or taken damage since then. You can also end your rage on Your Turn as a Bonus Action.",
"Once you have raged the maximum number of times for your barbarian level, you must finish a Long Rest before you can rage again. You may rage 2 times at 1st level, 3 at 3rd, 4 at 6th, 5 at 12th, and 6 at 17th."
],
"url": "http://www.dnd5eapi.co/api/features/1"
},
{
"index": 2,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/1",
"name": "Barbarian"
},
"subclass": {},
"name": "Unarmored Defense",
"level": 1,
"desc": [
"While you are not wearing any armor, your Armor Class equals 10 + your Dexterity modifier + your Constitution modifier. You can use a shield and still gain this benefit."
],
"url": "http://www.dnd5eapi.co/api/features/2"
},
{
"index": 3,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/1",
"name": "Barbarian"
},
"subclass": {},
"name": "Reckless Attack",
"level": 2,
"desc": [
"Starting at 2nd level, you can throw aside all concern for defense to attack with fierce desperation. When you make your first attack on your turn, you can decide to attack recklessly. Doing so gives you advantage on melee weapon attack rolls using Strength during this turn, but attack rolls against you have advantage until your next turn."
],
"url": "http://www.dnd5eapi.co/api/features/3"
},
{
"index": 4,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/1",
"name": "Barbarian"
},
"subclass": {},
"name": "Danger Sense",
"level": 2,
"desc": [
"At 2nd level, you gain an uncanny sense of when things nearby aren't as they should be, giving you an edge when you dodge away from danger. You have advantage on Dexterity saving throws against effects that you can see, such as traps and spells. To gain this benefit, you can't be blinded, deafened, or incapacitated."
],
"url": "http://www.dnd5eapi.co/api/features/4"
},
{
"index": 5,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/1",
"name": "Barbarian"
},
"subclass": {},
"name": "Primal Path",
"level": 3,
"desc": [
"At 3rd level, you choose a path that shapes the nature of your rage. Choose the Path of the Berserker or the Path of the Totem Warrior, both detailed at the end of the class description. Your choice grants you features at 3rd level and again at 6th, 10th, and 14th levels."
],
"url": "http://www.dnd5eapi.co/api/features/5"
},
{
"index": 6,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/1",
"name": "Barbarian"
},
"subclass": {
"url": "http://www.dnd5eapi.co/api/subclasses/1",
"name": "Berserker"
},
"name": "Frenzy",
"level": 3,
"desc": [
"Starting when you choose this path at 3rd level, you can go into a frenzy when you rage. If you do so, for the duration of your rage you can make a single melee weapon attack as a bonus action on each of your turns after this one. When your rage ends, you suffer one level of exhaustion (as described in appendix A)."
],
"url": "http://www.dnd5eapi.co/api/features/6"
},
{
"index": 7,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/1",
"name": "Barbarian"
},
"subclass": {},
"name": "Ability Score Improvement 1",
"level": 4,
"desc": [
"When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature."
],
"url": "http://www.dnd5eapi.co/api/features/7"
},
{
"index": 8,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/1",
"name": "Barbarian"
},
"subclass": {},
"name": "Extra Attack",
"level": 5,
"desc": [
"Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn."
],
"url": "http://www.dnd5eapi.co/api/features/8"
},
{
"index": 9,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/1",
"name": "Barbarian"
},
"subclass": {},
"name": "Fast Movement",
"level": 5,
"desc": [
"Starting at 5th level, your speed increases by 10 feet while you aren't wearing heavy armor."
],
"url": "http://www.dnd5eapi.co/api/features/9"
},
{
"index": 10,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/1",
"name": "Barbarian"
},
"subclass": {
"url": "http://www.dnd5eapi.co/api/subclasses/1",
"name": "Berserker"
},
"name": "Mindless Rage",
"level": 6,
"desc": [
"Beginning at 6th level, you can't be charmed or frightened while raging. If you are charmed or frightened when you enter your rage, the effect is suspended for the duration of the rage."
],
"url": "http://www.dnd5eapi.co/api/features/10"
},
{
"index": 11,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/1",
"name": "Barbarian"
},
"subclass": {},
"name": "Feral Instinct",
"level": 7,
"desc": [
"By 7th level, your instincts are so honed that you have advantage on initiative rolls.",
"Additionally, if you are surprised at the beginning of combat and aren't incapacitated, you can act normally on your first turn, but only if you enter your rage before doing anything else on that turn."
],
"url": "http://www.dnd5eapi.co/api/features/11"
},
{
"index": 12,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/1",
"name": "Barbarian"
},
"subclass": {},
"name": "Ability Score Improvement 2",
"level": 8,
"desc": [
"When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature."
],
"url": "http://www.dnd5eapi.co/api/features/12"
},
{
"index": 13,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/1",
"name": "Barbarian"
},
"subclass": {},
"name": "Brutal Critical (1 die)",
"level": 9,
"desc": [
"Beginning at 9th level, you can roll one additional weapon damage die when determining the extra damage for a critical hit with a melee attack. This increases to two additional dice at 13th level and three additional dice at 17th level."
],
"url": "http://www.dnd5eapi.co/api/features/13"
},
{
"index": 14,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/1",
"name": "Barbarian"
},
"subclass": {
"url": "http://www.dnd5eapi.co/api/subclasses/1",
"name": "Berserker"
},
"name": "Intimidating Presence",
"level": 10,
"desc": [
"Beginning at 10th level, you can use your action to frighten someone with your menacing presence. When you do so, choose one creature that you can see within 30 feet of you. If the creature can see or hear you, it must succeed on a Wisdom saving throw (DC equal to 8 + your proficiency bonus + your Charisma modifier) or be frightened of you until the end of your next turn. On subsequent turns, you can use your action to extend the duration of this effect on the frightened creature until the end of your next turn. This effect ends if the creature ends its turn out of line of sight or more than 60 feet away from you.",
" If the creature succeeds on its saving throw, you can't use this feature on that creature again for 24 hours."
],
"url": "http://www.dnd5eapi.co/api/features/14"
},
{
"index": 15,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/1",
"name": "Barbarian"
},
"subclass": {},
"name": "Relentless Rage",
"level": 11,
"desc": [
"Starting at 11th level, your rage can keep you fighting despite grievous wounds. If you drop to 0 hit points while you're raging and don't die outright, you can make a DC 10 Constitution saving throw. If you succeed, you drop to 1 hit point instead.",
"Each time you use this feature after the first, the DC increases by 5. When you finish a short or long rest, the DC resets to 10."
],
"url": "http://www.dnd5eapi.co/api/features/15"
},
{
"index": 16,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/1",
"name": "Barbarian"
},
"subclass": {},
"name": "Ability Score Improvement 3",
"level": 12,
"desc": [
"When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature."
],
"url": "http://www.dnd5eapi.co/api/features/16"
},
{
"index": 17,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/1",
"name": "Barbarian"
},
"subclass": {},
"name": "Brutal Critical (2 dice)",
"level": 13,
"desc": [
"Beginning at 9th level, you can roll one additional weapon damage die when determining the extra damage for a critical hit with a melee attack. This increases to two additional dice at 13th level and three additional dice at 17th level."
],
"url": "http://www.dnd5eapi.co/api/features/17"
},
{
"index": 18,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/1",
"name": "Barbarian"
},
"subclass": {
"url": "http://www.dnd5eapi.co/api/subclasses/1",
"name": "Berserker"
},
"name": "Retaliation",
"level": 14,
"desc": [
"Starting at 14th level, when you take damage from a creature that is within 5 feet of you, you can use your reaction to make a melee weapon Attack against that creature."
],
"url": "http://www.dnd5eapi.co/api/features/18"
},
{
"index": 19,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/1",
"name": "Barbarian"
},
"subclass": {},
"name": "Persistent Rage",
"level": 15,
"desc": [
"Beginning at 15th level, your rage is so fierce that it ends early only if you fall unconscious or if you choose to end it."
],
"url": "http://www.dnd5eapi.co/api/features/19"
},
{
"index": 20,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/1",
"name": "Barbarian"
},
"subclass": {},
"name": "Ability Score Improvement 4",
"level": 16,
"desc": [
"When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature."
],
"url": "http://www.dnd5eapi.co/api/features/20"
},
{
"index": 21,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/1",
"name": "Barbarian"
},
"subclass": {},
"name": "Brutal Critical (3 dice)",
"level": 17,
"desc": [
"Beginning at 9th level, you can roll one additional weapon damage die when determining the extra damage for a critical hit with a melee attack. This increases to two additional dice at 13th level and three additional dice at 17th level."
],
"url": "http://www.dnd5eapi.co/api/features/21"
},
{
"index": 22,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/1",
"name": "Barbarian"
},
"subclass": {},
"name": "Indomitable Might",
"level": 18,
"desc": [
"Beginning at 18th level, if your total for a Strength check is less than your Strength score, you can use that score in place of the total."
],
"url": "http://www.dnd5eapi.co/api/features/22"
},
{
"index": 23,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/1",
"name": "Barbarian"
},
"subclass": {},
"name": "Ability Score Improvement 5",
"level": 19,
"desc": [
"When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature."
],
"url": "http://www.dnd5eapi.co/api/features/23"
},
{
"index": 24,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/1",
"name": "Barbarian"
},
"subclass": {},
"name": "Fast Movement",
"level": 20,
"desc": [
"At 20th level, you embody the power of the wilds. Your Strength and Constitution scores increase by 4. Your maximum for those scores is now 24."
],
"url": "http://www.dnd5eapi.co/api/features/24"
},
{
"index": 25,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Spellcasting",
"level": 1,
"desc": [
"You have learned to untangle and reshape the fabric of reality in harmony with your wishes and music. Your spells are part of your vast repertoire, magic that you can tune to different situations."
],
"reference": "http://www.dnd5eapi.co/api/spellcasting/bard",
"url": "http://www.dnd5eapi.co/api/features/25"
},
{
"index": 26,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Bardic Inspiration (d6)",
"level": 1,
"desc": [
"You can inspire others through stirring words or music. To do so, you use a bonus action on your turn to choose one creature other than yourself within 60 feet of you who can hear you. That creature gains one Bardic Inspiration die, a d6. Once within the next 10 minutes, the creature can roll the die and add the number rolled to one ability check, attack roll, or saving throw it makes. The creature can wait until after it rolls the d20 before deciding to use the Bardic Inspiration die, but must decide before the GM says whether the roll succeeds or fails. Once the Bardic Inspiration die is rolled, it is lost. A creature can have only one Bardic Inspiration die at a time.",
"You can use this feature a number of times equal to your Charisma modifier (a minimum of once). You regain any expended uses when you finish a long rest. ",
"Your Bardic Inspiration die changes when you reach certain levels in this class. The die becomes a d8 at 5th level, a d10 at 10th level, and a d12 at 15th level."
],
"url": "http://www.dnd5eapi.co/api/features/26"
},
{
"index": 27,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Jack of All Trades",
"level": 2,
"desc": [
"Starting at 2nd level, you can add half your proficiency bonus, rounded down, to any ability check you make that doesn't already include your proficiency bonus."
],
"url": "http://www.dnd5eapi.co/api/features/27"
},
{
"index": 28,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Song of Rest (d6)",
"level": 2,
"desc": [
"Beginning at 2nd level, you can use soothing music or oration to help revitalize your wounded allies during a short rest. If you or any friendly creatures who can hear your performance regain hit points at the end of the short rest by spending one or more Hit Dice, each of those creatures regains an extra 1d6 hit points. ",
"The extra hit points increase when you reach certain levels in this class: to 1d8 at 9th level, to 1d10 at 13th level, and to 1d12 at 17th level."
],
"url": "http://www.dnd5eapi.co/api/features/28"
},
{
"index": 29,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Bard College",
"level": 3,
"desc": [
"At 3rd level, you delve into the advanced techniques of a bard college of your choice: the College of Lore or the College of Valor, both detailed at the end of the class description. Your choice grants you features at 3rd level and again at 6th and 14th level."
],
"url": "http://www.dnd5eapi.co/api/features/29"
},
{
"index": 30,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {
"url": "http://www.dnd5eapi.co/api/subclasses/2",
"name": "Lore"
},
"name": "Bonus Proficiencies",
"level": 3,
"desc": [
"When you join the College of Lore at 3rd level, you gain proficiency with three skills of your choice."
],
"url": "http://www.dnd5eapi.co/api/features/30"
},
{
"index": 31,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {
"url": "http://www.dnd5eapi.co/api/subclasses/2",
"name": "Lore"
},
"name": "Cutting Words",
"level": 3,
"desc": [
"Also at 3rd level, you learn how to use your wit to distract, confuse, and otherwise sap the confidence and competence of others.",
"When a creature that you can see within 60 feet of you makes an attack roll, an ability check, or a damage roll, you can use your reaction to expend one of your uses of Bardic Inspiration, rolling a Bardic Inspiration die and subtracting the number rolled from the creature's roll.",
"You can choose to use this feature after the creature makes its roll, but before the GM determines whether the attack roll or ability check succeeds or fails, or before the creature deals its damage. The creature is immune if it can't hear you or if it's immune to being charmed."
],
"url": "http://www.dnd5eapi.co/api/features/31"
},
{
"index": 32,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Choose: Expertise 1",
"level": 3,
"desc": [
"At 3rd level, choose two of your skill proficiencies. Your proficiency bonus is doubled for any ability check you make that uses either of the chosen proficiencies. At 10th level, you can choose another two skill proficiencies to gain this benefit."
],
"choice": {
"choose": 2,
"type": "feature",
"from": [
{
"url": "http://www.dnd5eapi.co/api/features/278",
"name": "Expertise: Acrobatics"
},
{
"url": "http://www.dnd5eapi.co/api/features/277",
"name": "Expertise: Animal Handling"
},
{
"url": "http://www.dnd5eapi.co/api/features/261",
"name": "Expertise: Arcana"
},
{
"url": "http://www.dnd5eapi.co/api/features/262",
"name": "Expertise: Athletics"
},
{
"url": "http://www.dnd5eapi.co/api/features/263",
"name": "Expertise: Deception"
},
{
"url": "http://www.dnd5eapi.co/api/features/264",
"name": "Expertise: History"
},
{
"url": "http://www.dnd5eapi.co/api/features/265",
"name": "Expertise: Insight"
},
{
"url": "http://www.dnd5eapi.co/api/features/266",
"name": "Expertise: Intimidation"
},
{
"url": "http://www.dnd5eapi.co/api/features/267",
"name": "Expertise: Investigation"
},
{
"url": "http://www.dnd5eapi.co/api/features/268",
"name": "Expertise: Medicine"
},
{
"url": "http://www.dnd5eapi.co/api/features/269",
"name": "Expertise: Nature"
},
{
"url": "http://www.dnd5eapi.co/api/features/270",
"name": "Expertise: Perception"
},
{
"url": "http://www.dnd5eapi.co/api/features/271",
"name": "Expertise: Performance"
},
{
"url": "http://www.dnd5eapi.co/api/features/272",
"name": "Expertise: Persuasion"
},
{
"url": "http://www.dnd5eapi.co/api/features/273",
"name": "Expertise: Religion"
},
{
"url": "http://www.dnd5eapi.co/api/features/274",
"name": "Expertise: Sleight of Hand"
},
{
"url": "http://www.dnd5eapi.co/api/features/275",
"name": "Expertise: Stealth"
},
{
"url": "http://www.dnd5eapi.co/api/features/276",
"name": "Expertise: Survival"
}
]
},
"url": "http://www.dnd5eapi.co/api/features/32"
},
{
"index": 33,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Expertise: Acrobatics",
"prerequisites": [
{
"type": "proficiency",
"proficiency": "http://www.dnd5eapi.co/api/proficiencies/105"
}
],
"desc": [
"Your proficiency bonus is doubled for any ability check you make for this skill."
],
"group": "Expertise (Bard)",
"url": "http://www.dnd5eapi.co/api/features/33"
},
{
"index": 34,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Expertise: Animal Handling",
"prerequisites": [
{
"type": "proficiency",
"proficiency": "http://www.dnd5eapi.co/api/proficiencies/106"
}
],
"desc": [
"Your proficiency bonus is doubled for any ability check you make for this skill."
],
"group": "Expertise (Bard)",
"url": "http://www.dnd5eapi.co/api/features/34"
},
{
"index": 35,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Expertise: Arcana",
"prerequisites": [
{
"type": "proficiency",
"proficiency": "http://www.dnd5eapi.co/api/proficiencies/107"
}
],
"desc": [
"Your proficiency bonus is doubled for any ability check you make for this skill."
],
"group": "Expertise (Bard)",
"url": "http://www.dnd5eapi.co/api/features/35"
},
{
"index": 36,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Expertise: Athletics",
"prerequisites": [
{
"type": "proficiency",
"proficiency": "http://www.dnd5eapi.co/api/proficiencies/108"
}
],
"desc": [
"Your proficiency bonus is doubled for any ability check you make for this skill."
],
"group": "Expertise (Bard)",
"url": "http://www.dnd5eapi.co/api/features/36"
},
{
"index": 37,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Expertise: Deception",
"prerequisites": [
{
"type": "proficiency",
"proficiency": "http://www.dnd5eapi.co/api/proficiencies/109"
}
],
"desc": [
"Your proficiency bonus is doubled for any ability check you make for this skill."
],
"group": "Expertise (Bard)",
"url": "http://www.dnd5eapi.co/api/features/37"
},
{
"index": 38,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Expertise: History",
"prerequisites": [
{
"type": "proficiency",
"proficiency": "http://www.dnd5eapi.co/api/proficiencies/110"
}
],
"desc": [
"Your proficiency bonus is doubled for any ability check you make for this skill."
],
"group": "Expertise (Bard)",
"url": "http://www.dnd5eapi.co/api/features/38"
},
{
"index": 39,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Expertise: Insight",
"prerequisites": [
{
"type": "proficiency",
"proficiency": "http://www.dnd5eapi.co/api/proficiencies/111"
}
],
"desc": [
"Your proficiency bonus is doubled for any ability check you make for this skill."
],
"group": "Expertise (Bard)",
"url": "http://www.dnd5eapi.co/api/features/39"
},
{
"index": 40,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Expertise: Intimidation",
"prerequisites": [
{
"type": "proficiency",
"proficiency": "http://www.dnd5eapi.co/api/proficiencies/112"
}
],
"desc": [
"Your proficiency bonus is doubled for any ability check you make for this skill."
],
"group": "Expertise (Bard)",
"url": "http://www.dnd5eapi.co/api/features/40"
},
{
"index": 41,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Expertise: Investigation",
"prerequisites": [
{
"type": "proficiency",
"proficiency": "http://www.dnd5eapi.co/api/proficiencies/113"
}
],
"desc": [
"Your proficiency bonus is doubled for any ability check you make for this skill."
],
"group": "Expertise (Bard)",
"url": "http://www.dnd5eapi.co/api/features/41"
},
{
"index": 42,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Expertise: Medicine",
"prerequisites": [
{
"type": "proficiency",
"proficiency": "http://www.dnd5eapi.co/api/proficiencies/114"
}
],
"desc": [
"Your proficiency bonus is doubled for any ability check you make for this skill."
],
"group": "Expertise (Bard)",
"url": "http://www.dnd5eapi.co/api/features/42"
},
{
"index": 43,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Expertise: Nature",
"prerequisites": [
{
"type": "proficiency",
"proficiency": "http://www.dnd5eapi.co/api/proficiencies/115"
}
],
"desc": [
"Your proficiency bonus is doubled for any ability check you make for this skill."
],
"group": "Expertise (Bard)",
"url": "http://www.dnd5eapi.co/api/features/43"
},
{
"index": 44,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Expertise: Perception",
"prerequisites": [
{
"type": "proficiency",
"proficiency": "http://www.dnd5eapi.co/api/proficiencies/116"
}
],
"desc": [
"Your proficiency bonus is doubled for any ability check you make for this skill."
],
"group": "Expertise (Bard)",
"url": "http://www.dnd5eapi.co/api/features/44"
},
{
"index": 45,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Expertise: Performance",
"prerequisites": [
{
"type": "proficiency",
"proficiency": "http://www.dnd5eapi.co/api/proficiencies/117"
}
],
"desc": [
"Your proficiency bonus is doubled for any ability check you make for this skill."
],
"group": "Expertise (Bard)",
"url": "http://www.dnd5eapi.co/api/features/45"
},
{
"index": 46,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Expertise: Persuasion",
"prerequisites": [
{
"type": "proficiency",
"proficiency": "http://www.dnd5eapi.co/api/proficiencies/118"
}
],
"desc": [
"Your proficiency bonus is doubled for any ability check you make for this skill."
],
"group": "Expertise (Bard)",
"url": "http://www.dnd5eapi.co/api/features/46"
},
{
"index": 47,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Expertise: Religion",
"prerequisites": [
{
"type": "proficiency",
"proficiency": "http://www.dnd5eapi.co/api/proficiencies/119"
}
],
"desc": [
"Your proficiency bonus is doubled for any ability check you make for this skill."
],
"group": "Expertise (Bard)",
"url": "http://www.dnd5eapi.co/api/features/47"
},
{
"index": 48,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Expertise: Sleight of Hand",
"prerequisites": [
{
"type": "proficiency",
"proficiency": "http://www.dnd5eapi.co/api/proficiencies/120"
}
],
"desc": [
"Your proficiency bonus is doubled for any ability check you make for this skill."
],
"group": "Expertise (Bard)",
"url": "http://www.dnd5eapi.co/api/features/48"
},
{
"index": 49,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Expertise: Stealth",
"prerequisites": [
{
"type": "proficiency",
"proficiency": "http://www.dnd5eapi.co/api/proficiencies/121"
}
],
"desc": [
"Your proficiency bonus is doubled for any ability check you make for this skill."
],
"group": "Expertise (Bard)",
"url": "http://www.dnd5eapi.co/api/features/49"
},
{
"index": 50,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Expertise: Survival",
"prerequisites": [
{
"type": "proficiency",
"proficiency": "http://www.dnd5eapi.co/api/proficiencies/122"
}
],
"desc": [
"Your proficiency bonus is doubled for any ability check you make for this skill."
],
"group": "Expertise (Bard)",
"url": "http://www.dnd5eapi.co/api/features/50"
},
{
"index": 51,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Ability Score Improvement 1",
"level": 4,
"desc": [
"When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature."
],
"url": "http://www.dnd5eapi.co/api/features/51"
},
{
"index": 52,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Bardic Inspiration (d8)",
"level": 5,
"desc": [
"You can inspire others through stirring words or music. To do so, you use a bonus action on your turn to choose one creature other than yourself within 60 feet of you who can hear you. That creature gains one Bardic Inspiration die, a d6. Once within the next 10 minutes, the creature can roll the die and add the number rolled to one ability check, attack roll, or saving throw it makes. The creature can wait until after it rolls the d20 before deciding to use the Bardic Inspiration die, but must decide before the GM says whether the roll succeeds or fails. Once the Bardic Inspiration die is rolled, it is lost. A creature can have only one Bardic Inspiration die at a time.",
"You can use this feature a number of times equal to your Charisma modifier (a minimum of once). You regain any expended uses when you finish a long rest. ",
"Your Bardic Inspiration die changes when you reach certain levels in this class. The die becomes a d8 at 5th level, a d10 at 10th level, and a d12 at 15th level."
],
"url": "http://www.dnd5eapi.co/api/features/52"
},
{
"index": 53,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Font of Inspiration",
"level": 5,
"desc": [
"Beginning when you reach 5th level, you regain all of your expended uses of Bardic Inspiration when you finish a short or long rest."
],
"url": "http://www.dnd5eapi.co/api/features/53"
},
{
"index": 54,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {},
"name": "Countercharm",
"level": 6,
"desc": [
"At 6th level, you gain the ability to use musical notes or words of power to disrupt mind-influencing effects. As an action, you can start a performance that lasts until the end of your next turn. During that time, you and any friendly creatures within 30 feet of you have advantage on saving throws against being frightened or charmed. A creature must be able to hear you to gain this benefit. The performance ends early if you are incapacitated or silenced or if you voluntarily end it (no action required)."
],
"url": "http://www.dnd5eapi.co/api/features/54"
},
{
"index": 55,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"subclass": {
"url": "http://www.dnd5eapi.co/api/subclasses/2",
"name": "Lore"
},
"name": "Additional Magical Secrets",
"level": 6,
"desc": [
"At 6th level, you learn two spells of your choice from any class. A spell you choose must be of a level you can cast, as shown on the Bard table, or a cantrip. The chosen spells count as bard spells for you but don't count against the number of bard spells you know."
],
"url": "http://www.dnd5eapi.co/api/features/55"
},
{
"index": 56,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"