forked from TheGiddyLimit/homebrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Matthew Mercer; Blood Hunter.json
1861 lines (1861 loc) · 66.4 KB
/
Matthew Mercer; Blood Hunter.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": "BloodHunter",
"abbreviation": "CR",
"full": "Blood Hunter",
"authors": [
"Matthew Mercer"
],
"version": "2.1",
"url": "http://www.dmsguild.com/product/170777/Blood-Hunter-Class",
"targetSchema": "1.0.0"
}
],
"dateAdded": 1515780480,
"dateLastModified": 1515780480
},
"class": [
{
"name": "Blood Hunter",
"source": "BloodHunter",
"hd": {
"number": 1,
"faces": 10
},
"proficiency": [
"str",
"wis"
],
"classTableGroups": [
{
"colLabels": [
"Crimson Rite Damage Die",
"Blood Curses"
],
"rows": [
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 4
}
]
},
0
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 4
}
]
},
1
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 4
}
]
},
1
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 4
}
]
},
1
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 6
}
]
},
2
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 6
}
]
},
2
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 6
}
]
},
2
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 6
}
]
},
2
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 6
}
]
},
3
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 6
}
]
},
3
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 8
}
]
},
3
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 8
}
]
},
3
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 8
}
]
},
4
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 8
}
]
},
4
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 8
}
]
},
4
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 8
}
]
},
4
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 10
}
]
},
5
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 10
}
]
},
5
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 10
}
]
},
5
],
[
{
"type": "dice",
"toRoll": [
{
"number": 1,
"faces": 10
}
]
},
6
]
]
},
{
"subclasses": [
{
"name": "Profane Soul",
"source": "BloodHunter"
}
],
"colLabels": [
"Cantrips Known",
"Spells Known",
"Spell Slots",
"Slot Level"
],
"rows": [
[
0,
0,
0,
0
],
[
0,
0,
0,
0
],
[
2,
2,
1,
"1st"
],
[
2,
2,
1,
"1st"
],
[
2,
3,
2,
"1st"
],
[
2,
3,
2,
"1st"
],
[
2,
4,
2,
"2nd"
],
[
2,
4,
2,
"2nd"
],
[
2,
5,
2,
"2nd"
],
[
3,
5,
2,
"2nd"
],
[
3,
6,
2,
"2nd"
],
[
3,
6,
2,
"2nd"
],
[
3,
7,
2,
"3rd"
],
[
3,
7,
2,
"3rd"
],
[
3,
8,
2,
"3rd"
],
[
3,
8,
2,
"3rd"
],
[
3,
9,
2,
"3rd"
],
[
3,
9,
2,
"3rd"
],
[
3,
10,
2,
"4th"
],
[
3,
11,
2,
"4th"
]
]
}
],
"startingProficiencies": {
"armor": [
"light",
"medium",
"{@item shield|phb|shields}"
],
"weapons": [
"simple",
"martial"
],
"tools": [
"Alchemist's supplies"
],
"skills": [
{
"choose": {
"from": [
"athletics",
"acrobatics",
"arcana",
"insight",
"investigation",
"survival"
],
"count": 2
}
}
]
},
"startingEquipment": {
"additionalFromBackground": true,
"default": [
"(a) a martial weapon or (b) two simple weapons",
"(a) a light crossbow and 20 bolts or (b) hand crossbow and 20 bolts",
"(a) studded leather armor or (b) scale mail armor",
"an explorer's pack"
],
"goldAlternative": "4d4 × 10",
"defaultData": [
{
"a": [],
"b": []
},
{
"a": [],
"b": []
},
{
"a": [],
"b": []
},
{
"_": []
}
]
},
"classFeatures": [
"Hunter's Bane|Blood Hunter|BloodHunter|1",
"Crimson Rite|Blood Hunter|BloodHunter|1",
"Fighting Style|Blood Hunter|BloodHunter|2",
"Blood Maledict (1/rest)|Blood Hunter|BloodHunter|2",
{
"classFeature": "Blood Hunter Order|Blood Hunter|BloodHunter|3",
"gainSubclassFeature": true
},
"Ability Score Improvement|Blood Hunter|BloodHunter|4",
"Extra Attack|Blood Hunter|BloodHunter|5",
"Blood Maledict (2/rest)|Blood Hunter|BloodHunter|6",
{
"classFeature": "Blood Hunter Order feature|Blood Hunter|BloodHunter|7",
"gainSubclassFeature": true
},
"Ability Score Improvement|Blood Hunter|BloodHunter|8",
"Grim Psychometry|Blood Hunter|BloodHunter|9",
"Dark Velocity|Blood Hunter|BloodHunter|10",
"Blood Maledict (3/rest)|Blood Hunter|BloodHunter|11",
{
"classFeature": "Blood Hunter Order feature|Blood Hunter|BloodHunter|11",
"gainSubclassFeature": true
},
"Ability Score Improvement|Blood Hunter|BloodHunter|12",
"Hardened Soul|Blood Hunter|BloodHunter|14",
{
"classFeature": "Blood Hunter Order feature|Blood Hunter|BloodHunter|15",
"gainSubclassFeature": true
},
"Ability Score Improvement|Blood Hunter|BloodHunter|16",
"Blood Maledict (4/rest)|Blood Hunter|BloodHunter|17",
{
"classFeature": "Blood Hunter Order feature|Blood Hunter|BloodHunter|18",
"gainSubclassFeature": true
},
"Ability Score Improvement|Blood Hunter|BloodHunter|19",
"Sanguine Mastery|Blood Hunter|BloodHunter|20"
],
"subclassTitle": "Blood Hunter Orders",
"cantripProgression": [
0,
0,
2,
2,
2,
2,
2,
2,
2,
3,
3,
3,
3,
3,
3,
3,
3,
3,
3,
3
],
"spellsKnownProgression": [
0,
0,
2,
2,
3,
3,
4,
4,
5,
5,
6,
6,
7,
7,
8,
8,
9,
9,
10,
11
]
}
],
"classFeature": [
{
"name": "Hunter's Bane",
"source": "BloodHunter",
"className": "Blood Hunter",
"classSource": "BloodHunter",
"level": 1,
"entries": [
"Beginning at 1st level, you have survived the imbibing of the Hunters Bane, a poisonous alchemical concoction that alters your life's blood, forever binding you to the darkness and honing your senses against it.",
"You have advantage on Wisdom (Survival) checks to track Fey, Fiends, and Undead, as well as on Intelligence checks to recall information about them. If you are actively tracking one of these creature types, you cannot be surprised by any creatures of that type. You can only be tracking one type of creature at a time.",
"Upon reaching 11th level, you can flare the internal toxic scars from the ritual, using the pain to give clarity, or promote anger. You can choose to suffer damage equal to a roll of your crimson rite damage die to gain advantage on a Wisdom (insight) check or Charisma (Intimidation) check."
]
},
{
"name": "Crimson Rite",
"source": "BloodHunter",
"className": "Blood Hunter",
"classSource": "BloodHunter",
"level": 1,
"entries": [
"At 1st level, you learn to invoke a rite of blood magic within your weapon at the cost of your own vitality. Choose to learn one rite from the Primal Rites list below. You cannot change this choice.",
"As a bonus action, you imbue a single weapon with the elemental energy of a known rite until your next short or long rest. While active, attacks from this weapon deal an additional 1d4 rite damage of the chosen elemental type. Rite damage is considered magical. The rite damage die changes as you gain blood hunter levels, as shown in the crimson rite damage die column of the blood hunter table. Should your weapon leave your grip, the rite fades immediately. An active rite on a weapon thrown fades directly after the attack is complete.",
"When a crimson rite is activated, you suffer damage equal to your character level, and you reduce your maximum hit points by an amount equal to your character level. These lost maximum hit points return once the rite fades and cannot be restored otherwise. When a rite fades, no hit points are regained as part of the restoring of maximum hit points.",
"Crimson rite can be used on multiple weapons, costing additional hit point loss. Most weapons can only be subject to a single rite at any given time. Each end of a polearm or quarterstaff is treated as a separate weapon for the purposes of this feature. A rite can be allowed to fade at any time on your turn (no action required).",
"You gain access to an additional Primal Rite at 6th level and 11th level. You may learn an Esoteric Rite at 14th level.",
{
"type": "entries",
"name": "Primal Rites",
"entries": [
"Choose from the following:",
{
"type": "entries",
"name": "Rite of the Flame",
"entries": [
"Your rite damage is fire type."
]
},
{
"type": "entries",
"name": "Rite of the Frozen",
"entries": [
"Your rite damage is cold type."
]
},
{
"type": "entries",
"name": "Rite of the Storm",
"entries": [
"Your rite damage is lightning type."
]
}
]
},
{
"type": "entries",
"name": "Esoteric Rites",
"entries": [
"Choose from the following:",
{
"type": "entries",
"name": "Rite of the Roar",
"entries": [
"Your rite damage is thunder type."
]
},
{
"type": "entries",
"name": "Rite of the Oracle",
"entries": [
"Your rite damage is psychic type."
]
},
{
"type": "entries",
"name": "Rite of the Dead",
"entries": [
"Your rite damage is necrotic type."
]
}
]
}
]
},
{
"name": "Fighting Style",
"source": "BloodHunter",
"className": "Blood Hunter",
"classSource": "BloodHunter",
"level": 2,
"entries": [
"You adopt a particular style of fighting as your specialty. Choose a fighting style from the list of optional features. You can't take the same Fighting Style option more than once, even if you get to choose again.",
{
"type": "options",
"entries": [
{
"type": "entries",
"name": "Archery",
"entries": [
"You gain a +2 bonus to attack rolls you make with ranged weapons."
]
},
{
"type": "entries",
"name": "Dueling",
"entries": [
"When you are wielding a melee weapon in one hand and no other weapons, you gain a +2 bonus to damage rolls with that weapon."
]
},
{
"type": "entries",
"name": "Great Weapon Fighting",
"entries": [
"When you roll a 1 or 2 on a damage die for an attack you make with a melee weapon that you are wielding with two hands, you can reroll the die and must use the new roll, even if the new roll is a 1 or a 2. The weapon must have the two-handed or versatile property for you to gain this benefit."
]
},
{
"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."
]
}
]
}
]
},
{
"name": "Blood Maledict (1/rest)",
"source": "BloodHunter",
"className": "Blood Hunter",
"classSource": "BloodHunter",
"level": 2,
"entries": [
"At 2nd level, you gain the knowledge to further channel, and sacrifice, a part of your vital essence to curse and manipulate your enemies. You gain one blood curse of your choice, detailed in the 'blood curses' section below. You learn one additional blood curse of your choice, and you can choose one of the blood curses you know and replace it with another blood curse, at 5th, 9th, 13th, 17th, and 20th level.",
"When you use your Blood Maledict, you choose which curse to invoke. While invoking a blood curse, but before it affects the target, you may choose to amplify the curse by suffering damage equal to a roll of your crimson rite damage die. An amplified curse gains an additional effect, noted in the curse's description. Creatures that do not have blood in their bodies are immune to blood curses (DM's discretion).",
"You can use this feature once. You regain expended uses when you finish a short or long rest. Beginning at 6th level, you can use your Blood Maledict feature twice between rests, at 11th level you can use it three times between rests, and at 17th level, you can use it four times between rests.",
{
"type": "entries",
"name": "Blood Curses",
"entries": [
"The Blood Curses are presented in alphabetical order.",
{
"type": "entries",
"entries": [
{
"type": "entries",
"name": "Blood Curse of Binding",
"entries": [
"As a bonus action, you can attempt to bind an enemy no more than one size larger than you within 30 feet. The target must succeed on a Strength saving throw (DC equal to 8 + your proficiency bonus + your Wisdom modifier) or have their speed be reduced to 0 until the end of your next turn.",
"{@i Amplify}. This curse becomes ongoing, and can affect a creature regardless of their size category. At the end of each of its turns, the cursed can make another Strength saving throw. On a success, this curse ends. You can end the curse whenever you like (no action required)."
]
},
{
"type": "entries",
"name": "Blood Curse of the Eyeless",
"entries": [
"When an enemy who is not immune to blindness within 60 feet makes a weapon attack, you can use your reaction to impose disadvantage on the attack roll.",
"{@i Amplify}. Following the triggering attack, the affected enemy has disadvantage on the next attack roll they make."
]
},
{
"type": "entries",
"name": "Blood Curse of the Fallen Puppet",
"entries": [
"The moment a creature falls unconscious or dies within 30 feet of you, you can use your reaction to give that creature a final act of aggression. That creature immediately makes a single weapon attack against a target of your choice within its attack range. After the attack, the creature returns to being unconscious or dead.",
"{@i Amplify}. You grant a bonus to the attack roll and damage roll of the cursed creature's attack equal to your Wisdom modifier (minimum of 1)"
]
},
{
"type": "entries",
"name": "Blood Curse of the Fending Rite",
"entries": [
"When an enemy casts a spell that requires a Dexterity saving throw, you can use your reaction to deflect the spell with your crimson rite. You gain a bonus to the initial saving throw against that spell equal to your Wisdom Modifier (minimum of 1). This curse is invoked before the saving throw is rolled.",
"{@i Amplify}. You grant all allies within 5 feet of you this bonus to their saving throw against the triggering spell as well."
]
},
{
"type": "entries",
"name": "Blood Curse of the Marked",
"entries": [
"As a bonus action, you can mark an enemy within 60 feet. Until the end of your turn, all crimson rite damage you deal to the target is doubled.",
"{@i Amplify}. You cause the marked target to also lose resistance to your rite damage type until the beginning of your next turn."
]
},
{
"type": "entries",
"name": "Blood Curse of Mutual Suffering",
"entries": [
"As a bonus action, you can link to a creature within 30 feet for up to a minute, forcing them to share in the pain they inflict upon you. The next time the cursed creature damages you with a weapon attack, this curse deals necrotic damage to the cursed creature equal to half of the damage you suffered. This curse then ends.",
"{@i Amplify}. This curse instead deals damage equal to the damage you suffered, and it ignores Necrotic resistance."
]
},
{
"type": "entries",
"name": "Blood Curse of Purgation",
"entries": [
"As a bonus action, you can manipulate the vitality of a creature within 60 feet to expunge a corruption in their blood. The target creature can immediately make a saving throw against a poisoned condition afflicting it.",
"{@i Amplify}. Your target can instead immediately make a saving throw against one other condition afflicting it. This condition can be blinded, deafened, or paralyzed."
]
},
{
"type": "entries",
"name": "Blood Curse of Spell Sunder",
"entries": [
"When an enemy casts a spell within 60 feet that requires a spell attack roll and targets you, you can use your reaction to rend the spell from the air, imposing disadvantage on the spell attack roll.",
"{@i Amplify}. You make a Wisdom ability check. The DC equals 10 + the spell's level. On a success, the creature's spell misses you automatically."
]
}
]
}
]
}
]
},
{
"name": "Blood Hunter Order",
"source": "BloodHunter",
"className": "Blood Hunter",
"classSource": "BloodHunter",
"level": 3,
"entries": [
"At 3rd level, you commit to an order of blood hunter martial focus, chosen from the list of available orders. The order you choose grants you features at 3rd level, and again at 7th, 11th, 15th, and 18th level."
]
},
{
"name": "Ability Score Improvement",
"source": "BloodHunter",
"className": "Blood Hunter",
"classSource": "BloodHunter",
"level": 4,
"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 feat."
]
},
{
"name": "Extra Attack",
"source": "BloodHunter",
"className": "Blood Hunter",
"classSource": "BloodHunter",
"level": 5,
"entries": [
"Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn."
]
},
{
"name": "Blood Maledict (2/rest)",
"source": "BloodHunter",
"className": "Blood Hunter",
"classSource": "BloodHunter",
"level": 6,
"entries": [
"At 6th level, you can use your Blood Maledict ability twice between rests."
]
},
{
"name": "Blood Hunter Order feature",
"source": "BloodHunter",
"className": "Blood Hunter",
"classSource": "BloodHunter",
"level": 7,
"entries": [
"At 7th level, you gain one feature granted by your Blood Hunter Order."
]
},
{
"name": "Ability Score Improvement",
"source": "BloodHunter",
"className": "Blood Hunter",
"classSource": "BloodHunter",
"level": 8,
"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 feat."
]
},
{
"name": "Grim Psychometry",
"source": "BloodHunter",
"className": "Blood Hunter",
"classSource": "BloodHunter",
"level": 9,
"entries": [
"When you reach 9th level, you can take 10 minutes to meditate on an object to discern vague details regarding any lingering evil or wicked past surrounding it. Make a Wisdom ability check. Based on the result, the DM may reveal obscure information about dark events that may have previously surrounded the object, or hints toward a sinister purpose. This feature has no effect on objects untouched by evil. An object can only be targeted by this feature once, and future attempts reveal no further details. You cannot use this feature again until you finish a short or long rest."
]
},
{
"name": "Dark Velocity",
"source": "BloodHunter",
"className": "Blood Hunter",
"classSource": "BloodHunter",
"level": 10,
"entries": [
"Upon reaching 10th level, you beckon the surrounding shadows to grant you unnatural swiftness on the battlefield. You gain darkvision out to 30 feet, or if you have darkvision, extend it out an additional 30 feet. While in dim light or darkness, your speed increases by 10 feet, and attacks of opportunity made against you have disadvantage."
]
},
{
"name": "Blood Maledict (3/rest)",
"source": "BloodHunter",
"className": "Blood Hunter",
"classSource": "BloodHunter",
"level": 11,
"entries": [
"At 11th level, you can use your Blood Maledict ability three times between rests."
]
},
{
"name": "Blood Hunter Order feature",
"source": "BloodHunter",
"className": "Blood Hunter",
"classSource": "BloodHunter",
"level": 11,
"entries": [
"At 11th level, you gain one feature granted by your Blood Hunter Order."
]
},
{
"name": "Ability Score Improvement",
"source": "BloodHunter",
"className": "Blood Hunter",
"classSource": "BloodHunter",
"level": 12,
"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 feat."
]
},
{
"name": "Hardened Soul",
"source": "BloodHunter",
"className": "Blood Hunter",
"classSource": "BloodHunter",
"level": 14,
"entries": [
"When you reach 14th level, you can no longer become Frightened, and you have advantage on saving throws against magical Charm effects."
]
},
{
"name": "Blood Hunter Order feature",
"source": "BloodHunter",
"className": "Blood Hunter",
"classSource": "BloodHunter",
"level": 15,
"entries": [
"At 15th level, you gain one feature granted by your Blood Hunter Order."
]
},
{
"name": "Ability Score Improvement",
"source": "BloodHunter",
"className": "Blood Hunter",
"classSource": "BloodHunter",
"level": 16,
"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 feat."
]
},
{
"name": "Blood Maledict (4/rest)",
"source": "BloodHunter",
"className": "Blood Hunter",
"classSource": "BloodHunter",
"level": 17,
"entries": [
"At 17th level, you can use your Blood Maledict ability four times between rests."
]
},
{
"name": "Blood Hunter Order feature",
"source": "BloodHunter",
"className": "Blood Hunter",
"classSource": "BloodHunter",
"level": 18,
"entries": [
"At 18th level, you gain one feature granted by your Blood Hunter Order."
]
},
{
"name": "Ability Score Improvement",
"source": "BloodHunter",
"className": "Blood Hunter",
"classSource": "BloodHunter",
"level": 19,
"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 feat."
]
},
{
"name": "Sanguine Mastery",
"source": "BloodHunter",
"className": "Blood Hunter",
"classSource": "BloodHunter",
"level": 20,
"entries": [
"Upon becoming 20th level, your ability to harness your pain, and the pain of your foes, is perfected. When you are below one fourth of your current maximum hit points, all of your crimson rite damage dice are maximized.",
"In addition, when you critically hit with a weapon attack that bears your crimson rite, you regain a use of your blood maledict feature."
]
}
],
"subclassFeature": [
{
"name": "Order of the Ghostslayer",
"source": "BloodHunter",
"className": "Blood Hunter",
"classSource": "BloodHunter",
"subclassShortName": "Ghostslayer",
"subclassSource": "BloodHunter",
"level": 3,
"entries": [
"The Order of the Ghostslayer is the oldest and most driven of the orders, having rediscovered the secrets of blood magic and refined them for combat against the scourge of undeath. Ghostslayers seek out and study the moment of death, obsessing over the mysteries of the transition. Some will sit with the terminally diseased to closely witness their passing, while others go so far as to deliberately have a near\u2014death experience, allowing them to tune their body and senses to the ethereal realms beyond.",
{
"type": "refSubclassFeature",
"subclassFeature": "Rite of the Dawn|Blood Hunter|BloodHunter|Ghostslayer|BloodHunter|3"
}
]
},
{
"type": "entries",
"name": "Rite of the Dawn",
"entries": [
"When you join this order at 3rd level, you learn the esoteric rite Rite of the Dawn (detailed below).",
"If you hit an Undead creature with your Rite of the Dawn, it suffers additional radiant damage equal to your Wisdom modifier.",
"Upon reaching 11th level, any creature you hit with your Rite of the Dawn suffers this additional radiant damage.",
{
"type": "entries",
"entries": [
{
"type": "entries",
"name": "Rite of the Dawn",
"entries": [
"Your rite damage is radiant type. The damage you suffer from activating this rite is halved."
]
}
]
}
],
"source": "BloodHunter",
"className": "Blood Hunter",
"classSource": "BloodHunter",
"subclassShortName": "Ghostslayer",