forked from Jafner/jafner-homebrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jafner; JafnerBrew Collection.json
2613 lines (2612 loc) · 105 KB
/
Jafner; JafnerBrew Collection.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
{
"_meta": {
"sources": [
{
"json": "JB",
"abbreviation": "JBrew",
"full": "JafnerBrew",
"authors": [
"Joey"
],
"convertedBy": "Jafner",
"version": "1.0",
"targetSchema": "1.0.0"
}
]
},
"itemProperty": [
{
"abbreviation": "Ri",
"source": "JB",
"name": "Ritual"
}
],
"class": [
{
"name": "Variant Bard",
"source": "JB",
"hd": {
"number": 1,
"faces": 8
},
"proficiency": [
"dex",
"int"
],
"classTableGroups": [
{
"colLabels": [
"{@filter Cantrips Known|spells|level=0|class=bard}",
"{@filter Spells Known|spells|class=bard}"
],
"rows": [
[
2,
4
],
[
2,
5
],
[
2,
6
],
[
3,
7
],
[
3,
8
],
[
3,
9
],
[
3,
10
],
[
3,
11
],
[
3,
12
],
[
4,
14
],
[
4,
15
],
[
4,
15
],
[
4,
16
],
[
4,
18
],
[
4,
19
],
[
4,
19
],
[
4,
20
],
[
4,
22
],
[
4,
22
],
[
4,
22
]
]
},
{
"title": "Spell Slots per Spell Level",
"colLabels": [
"{@filter 1st|spells|level=1|class=bard}",
"{@filter 2nd|spells|level=2|class=bard}",
"{@filter 3rd|spells|level=3|class=bard}",
"{@filter 4th|spells|level=4|class=bard}",
"{@filter 5th|spells|level=5|class=bard}",
"{@filter 6th|spells|level=6|class=bard}",
"{@filter 7th|spells|level=7|class=bard}",
"{@filter 8th|spells|level=8|class=bard}",
"{@filter 9th|spells|level=9|class=bard}"
],
"rows": [
[
2,
0,
0,
0,
0,
0,
0,
0,
0
],
[
3,
0,
0,
0,
0,
0,
0,
0,
0
],
[
4,
2,
0,
0,
0,
0,
0,
0,
0
],
[
4,
3,
0,
0,
0,
0,
0,
0,
0
],
[
4,
3,
2,
0,
0,
0,
0,
0,
0
],
[
4,
3,
3,
0,
0,
0,
0,
0,
0
],
[
4,
3,
3,
1,
0,
0,
0,
0,
0
],
[
4,
3,
3,
2,
0,
0,
0,
0,
0
],
[
4,
3,
3,
3,
1,
0,
0,
0,
0
],
[
4,
3,
3,
3,
2,
0,
0,
0,
0
],
[
4,
3,
3,
3,
2,
1,
0,
0,
0
],
[
4,
3,
3,
3,
2,
1,
0,
0,
0
],
[
4,
3,
3,
3,
2,
1,
1,
0,
0
],
[
4,
3,
3,
3,
2,
1,
1,
0,
0
],
[
4,
3,
3,
3,
2,
1,
1,
1,
0
],
[
4,
3,
3,
3,
2,
1,
1,
1,
0
],
[
4,
3,
3,
3,
2,
1,
1,
1,
1
],
[
4,
3,
3,
3,
3,
1,
1,
1,
1
],
[
4,
3,
3,
3,
3,
2,
1,
1,
1
],
[
4,
3,
3,
3,
3,
2,
2,
1,
1
]
]
}
],
"startingProficiencies": {
"armor": [
"light"
],
"weapons": [
"simple",
"hand crossbows",
"longswords",
"rapiers",
"shortswords"
],
"tools": [
"three musical instruments of your choice"
],
"skills": {
"choose": 3,
"from": [
"Athletics",
"Acrobatics",
"Sleight of Hand",
"Stealth",
"Arcana",
"History",
"Investigation",
"Nature",
"Religion",
"Animal Handling",
"Insight",
"Medicine",
"Perception",
"Survival",
"Deception",
"Intimidation",
"Performance",
"Persuasion"
]
}
},
"startingEquipment": {
"additionalFromBackground": true,
"default": [
"(a) a {@item rapier|phb}, (b) a {@item longsword|phb}, or (c) any {@filter simple weapon|items|source=phb|category=basic|type=simple weapon}",
"(a) a {@item diplomat's pack|phb} or (b) an {@item entertainer's pack|phb}",
"(a) a {@item lute|phb} or (b) any other {@filter musical instrument|items|miscellaneous=mundane|type=instrument}",
"{@item Leather armor|phb}, and a {@item dagger|phb}"
],
"goldAlternative": "{@dice 5d4×10|5d4 × 10|Starting Gold}"
},
"multiclassing": {
"requirements": {
"int": 13
},
"proficienciesGained": {
"armor": [
"light"
],
"skills": {
"choose": 1,
"from": [
"Athletics",
"Acrobatics",
"Sleight of Hand",
"Stealth",
"Arcana",
"History",
"Investigation",
"Nature",
"Religion",
"Animal Handling",
"Insight",
"Medicine",
"Perception",
"Survival",
"Deception",
"Intimidation",
"Performance",
"Persuasion"
]
},
"tools": [
"one musical instrument of your choice"
]
}
},
"classFeatures": [
[
{
"name": "Bardic Inspiration",
"entries": [
"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 {@dice 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 {@dice d20} before deciding to use the Bardic Inspiration die, but must decide before the DM 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 Intelligence 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 {@dice d8} at 5th level, a {@dice d10} at 10th level, and a {@dice d12} at 15th level."
]
},
{
"name": "Spellcasting",
"entries": [
"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. See {@book chapter 10|PHB|10} for the general rules of spellcasting and chapter 11 for the {@filter bard spell list|spells|class=bard}.",
{
"type": "entries",
"name": "Cantrips",
"entries": [
"You know two cantrips of your choice from the bard spell list. You learn additional bard cantrips of your choice at higher levels, learning a 3rd cantrip at 4th level and a 4th at 10th level."
]
},
{
"type": "entries",
"name": "Spell Slots",
"entries": [
"The Bard table shows how many spell slots you have to cast your {@filter bard spells|spells|class=bard} of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.",
"For example, if you know the 1st-level spell {@spell cure wounds} and have a 1st-level and a 2nd-level spell slot available, you can cast {@spell cure wounds} using either slot."
]
},
{
"type": "entries",
"name": "Spells Known of 1st Level and Higher",
"entries": [
"You know four 1st-level spells of your choice from the bard spell list.",
"You learn an additional bard spell of your choice at each level except 12th, 16th, 19th, and 20th. Each of these spells must be of a level for which you have spell slots. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level.",
"Additionally, when you gain a level in this class, you can choose one of the bard spells you know and replace it with another spell from the bard spell list, which also must be of a level for which you have spell slots."
]
},
{
"type": "entries",
"name": "Spellcasting Ability",
"entries": [
"Intelligence is your spellcasting ability for your bard spells. Your magic comes from your intuition of the structure of the Weave and your ability to speak your wishes into being through it. You use your Intelligence whenever a spell refers to your spellcasting ability. In addition, you use your Intelligence modifier when setting the saving throw DC for a bard spell you cast and when making an attack roll with one.",
{
"type": "abilityDc",
"name": "Spell",
"attributes": [
"int"
]
},
{
"type": "abilityAttackMod",
"name": "Spell",
"attributes": [
"int"
]
}
]
},
{
"type": "entries",
"name": "Ritual Casting",
"entries": [
"You can cast any bard spell you know as a ritual if that spell has the ritual tag."
]
},
{
"type": "entries",
"name": "Spellcasting Focus",
"entries": [
"You can use a musical instrument (found in chapter 5) as a spellcasting focus for your bard spells."
]
}
]
}
],
[
{
"name": "Tactical Wit",
"entries": [
"Starting at 2nd level, your keen ability to assess tactical situations allows you to act quickly in battle. You can give yourself a bonus to your initiative rolls equal to your Intelligence modifier."
]
},
{
"name": "Epiphany (d6)",
"entries": [
"Beginning at 2nd level, you have a d6 epiphany die. When you make an ability check, attack roll, or saving throw, you can roll the die and add the number rolled to your total. You can wait until after you roll the {@dice d20} before deciding to use the Epiphany die, but you must decide before the DM says whether the roll succeeds or fails. Once you use this feature, you cannot do so again until you finish a short or long rest.",
"The die size increase when you reach certain levels in this class: to {@dice 1d8} at 9th level, to {@dice 1d10} at 13th level, and to {@dice 1d12} at 17th level."
]
}
],
[
{
"name": "Bard College",
"entries": [
"At 3rd level, you delve into the advanced techniques of a bard college of your choice from the list of available colleges. Your choice grants you features at 3rd level and again at 6th and 14th level."
],
"gainSubclassFeature": true
},
{
"name": "Expertise",
"entries": [
"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."
]
}
],
[
{
"name": "Ability Score Improvement",
"entries": [
"When you reach 4th 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.",
"If your DM allows the use of feats, you may instead take a {@5etools feat|feats.html}."
]
}
],
[
{
"name": "Bardic Inspiration (d8)",
"entries": [
"At 5th level, your Bardic Inspiration die changes to a {@dice d8}."
]
},
{
"name": "Font of Inspiration",
"entries": [
"Beginning when you reach 5th level, you regain all of your expended uses of Bardic Inspiration when you finish a short or long rest."
]
}
],
[
{
"name": "Comparative Evaluation",
"entries": [
"At 6th level, you gain the ability to estimate the mental capacity of other people. As an action, you can compare your Intelligence, Wisdom, and Charisma against a creature within 30 feet. You learn whether each of the creature's abilities is better, equal, or worse than yours."
]
},
{
"name": "Bard College feature",
"entries": [
"At 6th level, you gain a feature from your Bard College."
],
"gainSubclassFeature": true
}
],
[],
[
{
"name": "Ability Score Improvement",
"entries": [
"When you reach 8th 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.",
"If your DM allows the use of feats, you may instead take a {@5etools feat|feats.html}."
]
}
],
[
{
"name": "Epiphany (d8)",
"entries": [
"At 9th level, the size of your epiphany die increases to {@dice 1d8}."
]
}
],
[
{
"name": "Bardic Inspiration (d10)",
"entries": [
"At 10th level, your Bardic Inspiration die changes to a {@dice d10}."
]
},
{
"name": "Expertise",
"entries": [
"At 10th level, you can choose another two skill proficiencies. Your proficiency bonus is doubled for any ability check you make that uses either of the chosen proficiencies."
]
},
{
"name": "Magical Secrets",
"entries": [
"By 10th level, you have plundered magical knowledge from a wide spectrum of disciplines. Choose two spells from any classes, including this one. 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 and are included in the number in the Spells Known column of the Bard table.",
"You learn two additional spells from any classes at 14th level and again at 18th level."
]
}
],
[],
[
{
"name": "Ability Score Improvement",
"entries": [
"When you reach 12th 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.",
"If your DM allows the use of feats, you may instead take a {@5etools feat|feats.html}."
]
}
],
[
{
"name": "Epiphany (d10)",
"entries": [
"At 13th level, the size of your epiphany die increases to {@dice 1d10}."
]
}
],
[
{
"name": "Magical Secrets",
"entries": [
"At 14th level, choose two additional spells from any classes, including this one. 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 and are included in the number in the Spells Known column of the Bard table."
]
},
{
"name": "Bard College feature",
"entries": [
"At 14th level, you gain a feature from your Bard College."
],
"gainSubclassFeature": true
}
],
[
{
"name": "Bardic Inspiration (d12)",
"entries": [
"At 15th level, your Bardic Inspiration die changes to a {@dice d12}."
]
}
],
[
{
"name": "Ability Score Improvement",
"entries": [
"When you reach 16th 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.",
"If your DM allows the use of feats, you may instead take a {@5etools feat|feats.html}."
]
}
],
[
{
"name": "Epiphany (d12)",
"entries": [
"At 17th level, the size of your epiphany die increases to {@dice 1d12}."
]
}
],
[
{
"name": "Magical Secrets",
"entries": [
"At 18th level, choose two additional spells from any class, including this one. 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 and are included in the number in the Spells Known column of the Bard table."
]
}
],
[
{
"name": "Ability Score Improvement",
"entries": [
"When you reach 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.",
"If your DM allows the use of feats, you may instead take a {@5etools feat|feats.html}."
]
}
],
[
{
"name": "Superior Inspiration",
"entries": [
"At 20th level, when you roll initiative and have no uses of Bardic Inspiration left, you regain one use."
]
}
]
],
"subclassTitle": "Bard College",
"subclasses": [
{
"name": "College of Lore",
"subclassFeatures": [
[
{
"name": "College of Lore",
"entries": [
"Bards of the College of Lore know something about most things, collecting bits of knowledge from sources as diverse as scholarly tomes and peasant tales. Whether singing folk ballads in taverns or elaborate compositions in royal courts, these bards use their gifts to hold audiences spellbound. When the applause dies down, the audience members might find themselves questioning everything they held to be true, from their faith in the priesthood of the local temple to their loyalty to the king.",
"The loyalty of these bards lies in the pursuit of beauty and truth, not in fealty to a monarch or following the tenets of a deity. A noble who keeps such a bard as a herald or advisor knows that the bard would rather be honest than politic.",
"The college's members gather in libraries and sometimes in actual colleges, complete with classrooms and dormitories, to share their lore with one another. They also meet at festivals or affairs of state, where they can expose corruption, unravel lies, and poke fun at self-important figures of authority.",
{
"type": "entries",
"name": "Bonus Proficiencies",
"entries": [
"When you join the College of Lore at 3rd level, you gain proficiency with three skills of your choice."
]
},
{
"type": "entries",
"name": "Cutting Words",
"entries": [
"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 DM 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 {@condition charmed}."
]
}
]
}
],
[
{
"entries": [
{
"type": "entries",
"name": "Additional Magical Secrets",
"entries": [
"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."
]
}
]
}
],
[
{
"entries": [
{
"type": "entries",
"name": "Peerless Skill",
"entries": [
"Starting at 14th level, when you make an ability check, you can expend one use of Bardic Inspiration. Roll a Bardic Inspiration die and add the number rolled to your ability check. You can choose to do so after you roll the die for the ability check, but before the DM tells you whether you succeed or fail."
]
}
]
}
]
],
"source": "PHB",
"shortName": "Lore"
},
{
"name": "College of Valor",
"subclassFeatures": [
[
{
"name": "College of Valor",
"entries": [
"Bards of the College of Valor are daring skalds whose tales keep alive the memory of the great heroes of the past, and thereby inspire a new generation of heroes. These bards gather in mead halls or around great bonfires to sing the deeds of the mighty, both past and present. They travel the land to witness great events firsthand and to ensure that the memory of those events doesn't pass from the world. With their songs, they inspire others to reach the same heights of accomplishment as the heroes of old.",
{
"type": "entries",
"name": "Bonus Proficiencies",
"entries": [
"When you join the College of Valor at 3rd level, you gain proficiency with medium armor, shields, and martial weapons."
]
},
{
"type": "entries",
"name": "Combat Inspiration",
"entries": [
"Also at 3rd level, you learn to inspire others in battle. A creature that has a Bardic Inspiration die from you can roll that die and add the number rolled to a weapon damage roll it just made. Alternatively, when an attack roll is made against the creature, it can use its reaction to roll the Bardic Inspiration die and add the number rolled to its AC against that attack, after seeing the roll but before knowing whether it hits or misses."
]
}
]
}
],
[
{
"entries": [
{
"type": "entries",
"name": "Extra Attack",
"entries": [
"Starting at 6th level, you can attack twice, instead of once, whenever you take the {@action Attack} action on your turn."
]
}
]
}
],
[
{
"entries": [
{
"type": "entries",
"name": "Battle Magic",
"entries": [
"At 14th level, you have mastered the art of weaving spellcasting and weapon use into a single harmonious act. When you use your action to cast a bard spell, you can make one weapon attack as a bonus action."
]
}
]
}
]
],
"source": "PHB",
"shortName": "Valor"
},
{
"name": "College of Glamour (UA)",
"subclassFeatures": [
[
{
"name": "College of Glamour",
"entries": [
"The College of Glamour is open to those bards who mastered their craft in the vibrant, deadly realm of the Feywild. Tutored by satyrs, eladrin, and other fey, these bards learn to use their magic to delight and captivate others.",
"The bards of this college are regarded with a mixture of awe and fear. Their performances are the stuff of legend. The bards of this college are so eloquent that a speech or song that one of them performs can cause captors to release the bard unharmed and can lull a furious dragon into complacency. The same magic that allows them to quell beasts can also bend minds. Villainous bards of this college can leech off a community for weeks, abusing their magic to turn their hosts into thralls.",
{
"type": "entries",
"name": "Mantle of Inspiration",
"entries": [
"When you join the College of Glamour at 3rd level, you gain the ability to weave a song of fey magic that enthralls your allies with vigor and speed.",
"As a bonus action, you can expend a use of Bardic Inspiration to grant yourself a wondrous, otherworldly appearance. When you do so, choose a number of allies you can see and who can see you within 60 feet of you, up to a number of them equal to your Charisma modifier (minimum of one). Each target gains {@dice 2d6} temporary hit points.",
"When a target gains these temporary hit points, it can also use its reaction to move up to its speed toward you, without provoking opportunity attacks. It must take the shortest, safest path to you.",
"The number of temporary hit points increases when you reach certain levels in this class, increasing to {@dice 2d8} at 5th level, {@dice 2d10} at 10th level, and {@dice 2d12} at 15th level."
]
},
{
"type": "entries",
"name": "Enthralling Performance",
"entries": [
"Starting at 3rd level, you can charge your performance with seductive fey magic.",
"If you perform for at least 10 minutes, you can attempt to inspire wonder in your audience by singing, reciting a poem, or dancing. At the end of the performance, choose a number of humanoids within 60 feet of you who watched and listened to all of it, up to a number of them equal to your Charisma modifier (minimum of one). Each target must succeed on a Wisdom saving throw against your spell save DC or be {@condition charmed} by you. While {@condition charmed} in this way, the target idolizes you, it speaks glowingly of you to anyone who speaks to it, and it hinders anyone who opposes you, avoiding violence unless it was already inclined to fight on your behalf. This effect ends on a target after 1 hour, if it takes any damage, if you attack it, or if it witnesses you attacking or damaging any of its allies.",
"If a target succeeds on its save against this effect, the target has no hint that you tried to charm it.",
"Once you use this feature, you can't use it again until you finish a short or long rest."
]
}
]
}
],
[
{
"entries": [
{
"type": "entries",
"name": "Mantle of Majesty",
"entries": [
"At 6th level, you gain the ability to cloak yourself in a fey magic that makes others want to serve you. As a bonus action, you take on an appearance of unearthly beauty for 1 minute. During this time, you can cast {@spell command} as a bonus action on each of your turns, without using a spell slot. This effect lasts for 1 minute, and any creature {@condition charmed} by you automatically fails its saving throw against the spell.",
"Once you use this feature, you can't use it again until you finish a long rest."
]
}
]
}
],
[
{
"entries": [
{
"type": "entries",
"name": "Mantle of Majesty",
"entries": [
"At 14th level, you gain an otherworldly aspect to your appearance that makes you look more fierce and lovely.",
"In addition, through this feature, you can cast {@spell sanctuary} on yourself. If a creature fails its saving throw against the spell, you also gain advantage on all Charisma checks against the creature for 1 minute, and it has disadvantage on any saving throw it makes against your spells on your next turn.",
"Once you cast {@spell sanctuary} using this feature, you can't do so again until you finish a short or long rest."
]
}
]
}
]
],
"source": "UABardBardColleges",
"shortName": "Glamour (UA)"
},
{
"name": "College of Whispers (UA)",
"subclassFeatures": [
[
{
"name": "College of Whispers",
"entries": [
"Most folk are happy to welcome a bard into their midst. Bards of the College of Whispers use this to their advantage. They appear to be like any other bard, sharing news, singing songs, and telling tales to the audiences they gather. In truth, the College of Whispers teaches its students that they are wolves among sheep. These bards use their knowledge and magic to uncover secrets and turn them against others through extortion and threats.",
"Many other bards hate the College of Whispers, viewing it as a parasite that uses the bards' reputation to acquire wealth and power. For this reason, these bards rarely reveal their true nature unless they must. They typically claim to follow some other college, or keep their true nature secret in order to better infiltrate and exploit royal courts and other settings of power.",
{
"type": "entries",
"name": "Venomous Blades",
"entries": [
"When you join the College of Whispers at 3rd level, you gain the ability to magically make your weapon attacks toxic for a moment.",
"When you hit a creature with a weapon attack, you can expend one use of your Bardic Inspiration to deal an additional {@dice 2d6} poison damage to that target. You can do so only once per round on your turn.",
"The additional damage increases when you reach certain levels in this class, increasing to {@dice 2d8} at 5th level, {@dice 2d10} at 10th level, and {@dice 2d12} at 15th level."
]
},
{
"type": "entries",
"name": "Venomous Words",
"entries": [
"At 3rd level, you learn to infuse innocent-seeming words with an insidious magic. A creature that hears you speak can become plunged into fear and paranoia.",
"If you speak to a humanoid alone for at least 10 minutes, you can attempt to seed paranoia and fear into its mind. At the end of the conversation, the target must succeed on a Wisdom saving throw against your spell save DC or be {@condition frightened} for the next hour, until it is attacked or damaged, or until it witnesses its allies being attacked or damaged. While {@condition frightened} in this way, the target is paranoid and tries to avoid the company of others, including its allies. The target seeks out what it considers the safest, most secret place available to it and hides there.",
"If the target succeeds on its save, the target has no hint that you tried to frighten it.",
"Once you use this feature, you can't use it again until you finish a short rest or long rest."
]
}
]
}
],
[
{
"entries": [
{
"type": "entries",
"name": "Mantle of Whispers",
"entries": [
"At 6th level, you gain the ability to adopt a creature's persona. When you slay a creature with an attack or a spell or a creature dies within 5 feet of you, you can magically capture its shadow using your reaction. You can capture only the shadow of a creature that is your creature type, such as humanoid, and your size (you can capture a Small or Medium shadow if you're Small), and you can have only one shadow captured at a time.",
"After you capture a creature's shadow, you can use your magic to weave it into a disguise that allows you to take on its appearance and gain access to its surface memories. As an action, you take on the creature's appearance for 1 hour or until you end this effect as a bonus action.",
"During that hour, you gain access to all information that the creature would freely share with a casual acquaintance. Information includes general details on its background and personal life, but does not include secrets. The information is enough that you can pass yourself off as the creature by drawing on its memories.",
"Another creature can see through this disguise by making a Wisdom (Insight) check opposed by your Charisma (Deception) check, though you gain a +5 bonus to your check.",
"The disguise and the knowledge it grants disappears when this ability's duration ends."
]
}
]
}
],
[
{
"entries": [
{
"type": "entries",
"name": "Shadow Lore",
"entries": [
"At 14th level, you gain the ability to weave dark magic into your words and tap into a creature's deepest fears.",
"As an action, you magically whisper a phrase that only one creature of your choice within 30 feet of you can hear. The target must make a Wisdom saving throw against your spell save DC. It automatically succeeds if it doesn't share a language with you or if it can't hear you. On a successful saving throw, your whisper sounds like unintelligible mumbling and has no effect.",
"If the target fails its saving throw, it is {@condition charmed} by you for the next 8 hours or until you or your allies attack or damage it. It interprets the whispers as a description of its most mortifying secret. While you gain no knowledge of this secret, the target is convinced you know it.",
"While {@condition charmed} in this way, the creature obeys your commands for fear that you will reveal its secret. It won't risk its life for you or fight for you, unless it was already inclined to do so. It grants you favors and gifts it would offer to a close friend.",
"When the effect ends, the creature has no understanding of why it held you in such fear. Once you use this feature, you can't use it again until you finish a long rest."
]
}
]
}
]
],
"source": "UABardBardColleges",
"shortName": "Whispers (UA)"
},
{
"name": "College of Swords (UA)",
"subclassFeatures": [
[
{
"name": "College of Swords",
"entries": [
"Bards of the College of Swords are called blades, and they entertain through daring feats of weapon prowess. Blades perform stunts such as sword swallowing, knife throwing and juggling, and mock combats. But though they use their weapons to entertain, they are also highly trained and skilled warriors in their own right.",
"Their talent with weapons inspires many blades to lead double lives. One blade might use a circus troupe as cover for nefarious deeds such as assassination, robbery, and blackmail. Other blades strike at the wicked, bringing justice to bear against the cruel and powerful. Most troupes are happy to accept a blade's talent for the excitement it adds to a performance, but few entertainers fully trust them.",
"Blades who abandon lives as entertainers have often run into trouble that makes maintaining their secret activities impossible. A blade caught stealing or engaging in vigilante justice is too great a liability for most performer troupes. With their weapon skills as their greatest asset, these blades either take up work as enforcers for thieves' guilds or strike out on their own as adventurers.",
{
"type": "entries",
"name": "Bonus Proficiencies",
"entries": [
"When you join the College of Blades at 3rd level, you gain proficiency with medium armor and with scimitars."
]
},
{
"type": "entries",
"name": "Fighting Style",
"entries": [
"The College of Blades emphasizes mastery with weapons, granting you access to the two-weapon fighting option for the Fighting Style class feature.",
{
"type": "entries",
"entries": [
{
"type": "entries",
"name": "Two-Weapon Fighting",
"entries": [
"When you engage in two-weapon fighting, you can add your ability modifier to the damage of the second attack."
]
}
]
}
]