forked from TheGiddyLimit/homebrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Fenrir-Hati-Skoll;Avenger.json
1611 lines (1611 loc) · 44.5 KB
/
Fenrir-Hati-Skoll;Avenger.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
{
"$schema": "../schema.json",
"_meta": {
"sources": [
{
"json": "Avenger",
"full": "The Avenger",
"authors": [
"Fenrir-Hati-Skoll"
],
"abbreviation": "AVGR",
"url": "https://homebrewery.naturalcrit.com/share/rJ-2UqVM3N",
"version": "V2"
}
],
"dateAdded": 1559662102,
"dateLastModified": 1559662102
},
"class": [
{
"name": "Avenger",
"source": "Avenger",
"hd": {
"number": 1,
"faces": 10
},
"proficiency": [
"wis",
"cha"
],
"classTableGroups": [
{
"colLabels": [
"Rituals Known",
"Ritual Level"
],
"rows": [
[
"-",
"-"
],
[
3,
"{@filter 1st|spells|level=1|class=Avenger (AVGR)}"
],
[
3,
"{@filter 1st|spells|level=1|class=Avenger (AVGR)}"
],
[
3,
"{@filter 1st|spells|level=1|class=Avenger (AVGR)}"
],
[
4,
"{@filter 2nd|spells|level=2|class=Avenger (AVGR)}"
],
[
4,
"{@filter 2nd|spells|level=2|class=Avenger (AVGR)}"
],
[
4,
"{@filter 2nd|spells|level=2|class=Avenger (AVGR)}"
],
[
5,
"{@filter 2nd|spells|level=2|class=Avenger (AVGR)}"
],
[
5,
"{@filter 3rd|spells|level=3|class=Avenger (AVGR)}"
],
[
5,
"{@filter 3rd|spells|level=3|class=Avenger (AVGR)}"
],
[
6,
"{@filter 3rd|spells|level=3|class=Avenger (AVGR)}"
],
[
6,
"{@filter 3rd|spells|level=3|class=Avenger (AVGR)}"
],
[
6,
"{@filter 4th|spells|level=4|class=Avenger (AVGR)}"
],
[
7,
"{@filter 4th|spells|level=4|class=Avenger (AVGR)}"
],
[
7,
"{@filter 4th|spells|level=4|class=Avenger (AVGR)}"
],
[
7,
"{@filter 4th|spells|level=4|class=Avenger (AVGR)}"
],
[
8,
"{@filter 5th|spells|level=5|class=Avenger (AVGR)}"
],
[
8,
"{@filter 5th|spells|level=5|class=Avenger (AVGR)}"
],
[
8,
"{@filter 5th|spells|level=5|class=Avenger (AVGR)}"
],
[
8,
"{@filter 5th|spells|level=5|class=Avenger (AVGR)}"
]
]
}
],
"startingProficiencies": {
"armor": [
"light"
],
"weapons": [
"simple",
"martial"
],
"skills": [
{
"choose": {
"from": [
"acrobatics",
"athletics",
"insight",
"intimidation",
"medicine",
"perception",
"religion",
"stealth"
],
"count": 2
}
}
]
},
"startingEquipment": {
"additionalFromBackground": true,
"default": [
"(a) a {@filter martial weapon|items|source=phb|category=basic|type= martial weapon} or (b) two {@filter simple weapon|items|source=phb|category=basic|type=simple weapon}",
"(a) an {@item explorer's pack|phb} or (b) a {@item priest's pack|phb}",
"Robes and a {@item holy symbol|phb}"
],
"defaultData": [
{
"a": [
{
"equipmentType": "weaponMartial"
}
],
"b": [
{
"equipmentType": "weaponSimple",
"quantity": 2
}
]
},
{
"a": [
"explorer's pack|phb"
],
"b": [
"priest's pack|phb"
]
},
{
"_": [
"holy symbol|phb"
]
}
]
},
"classFeatures": [
"Armor of Faith|Avenger|Avenger|1",
"Holy Warrior|Avenger|Avenger|1",
"Oath of Enmity|Avenger|Avenger|2",
"Ritual Casting|Avenger|Avenger|2",
"Sacred Studies|Avenger|Avenger|2",
{
"classFeature": "Divine Censure|Avenger|Avenger|3",
"gainSubclassFeature": true
},
"Channel Divinity|Avenger|Avenger|3",
"Ability Score Improvement|Avenger|Avenger|4",
"Extra Attack|Avenger|Avenger|5",
"Blade of Zeal|Avenger|Avenger|6",
"Defended by Faith|Avenger|Avenger|7",
{
"classFeature": "Censure Feature|Avenger|Avenger|7",
"gainSubclassFeature": true
},
"Ability Score Improvement|Avenger|Avenger|8",
"Improved Ritual Casting|Avenger|Avenger|9",
"True Conviction|Avenger|Avenger|10",
"Wrath of the Divine|Avenger|Avenger|11",
"Ability Score Improvement|Avenger|Avenger|12",
"Aegis of Belief|Avenger|Avenger|13",
{
"classFeature": "Censure Feature|Avenger|Avenger|14",
"gainSubclassFeature": true
},
"Eyes of the Inquisitor|Avenger|Avenger|15",
"Ability Score Improvement|Avenger|Avenger|16",
"Ardent Fury|Avenger|Avenger|17",
{
"classFeature": "Censure Feature|Avenger|Avenger|18",
"gainSubclassFeature": true
},
"Ability Score Improvement|Avenger|Avenger|19",
"Spirit of Vengeance|Avenger|Avenger|20"
],
"subclassTitle": "Divine Censure",
"classSpells": [
"Alarm",
{
"name": "Ceremony",
"source": "XGE"
},
{
"name": "Covenant",
"source": "AVGR"
},
"Comprehend Languages",
"Detect Magic",
"Detect Poison and Disease",
"Identify",
"Purify Food and Drink",
{
"name": "Seek Refuge",
"source": "AVGR"
},
"Augury",
{
"name": "Erase from Memory",
"source": "AVGR"
},
"Gentle Repose",
{
"name": "Iron Vigil",
"source": "AVGR"
},
{
"name": "Sanctify Weapon",
"source": "AVGR"
},
"Silence",
"Feign Death",
{
"name": "Greater Ceremony",
"source": "AVGR"
},
"Phantom Steed",
{
"name": "Rebuff the Wicked",
"source": "AVGR"
},
"Water Breathing",
"Water Walk",
{
"name": "Binding",
"source": "AVGR"
},
"Divination",
{
"name": "Endure Elements",
"source": "AVGR"
},
{
"name": "Protect Thoughts",
"source": "AVGR"
},
"Commune",
"Contact Other Plane",
{
"name": "Greater Phantom Steed",
"source": "AVGR"
},
{
"name": "Seal the Grave",
"source": "AVGR"
}
]
}
],
"spell": [
{
"name": "Binding",
"level": 4,
"school": "T",
"time": [
{
"number": 1,
"unit": "hour"
}
],
"range": {
"type": "point",
"distance": {
"type": "touch"
}
},
"components": {
"v": true,
"s": true,
"m": {
"text": "a silver lockbox worth at least 150 gp which the spell consumes",
"cost": 15000
}
},
"duration": [
{
"type": "timed",
"duration": {
"type": "day",
"amount": 10
}
}
],
"classes": {
"fromClassList": [
{
"name": "Avenger",
"source": "Avenger"
}
]
},
"source": "Avenger",
"meta": {
"ritual": true
},
"entries": [
"You touch an object no larger than a 5-foot cube and chose one of the following modes which applies for the duration of the spell.",
"When you cast the spell, you can designate creatures that aren't affected by this spell.",
{
"type": "entries",
"entries": [
{
"type": "entries",
"name": "Gravity",
"entries": [
"Magic ties this object stronger to the forces of gravity. Any creature that attempts to move this object finds that it weighs 100 times its normal weight."
]
}
]
},
{
"type": "entries",
"entries": [
{
"type": "entries",
"name": "Heat",
"entries": [
"The object glows white hot in response to a creature's touch. Any creature in physical contact with the object takes {@damage 2d8} fire damage at the start of each of their turns."
]
}
]
},
{
"type": "entries",
"entries": [
{
"type": "entries",
"name": "Exhaustion",
"entries": [
"The object saps the energy of the being holding it. Any creature in physical contact with the object suffers two levels of exhaustion."
]
}
]
}
],
"areaTags": [
"ST"
]
},
{
"name": "Covenant",
"level": 1,
"school": "D",
"time": [
{
"number": 1,
"unit": "minute"
}
],
"range": {
"type": "point",
"distance": {
"type": "touch"
}
},
"components": {
"v": true,
"s": true,
"m": {
"text": "length of rope or chain"
}
},
"duration": [
{
"type": "permanent",
"ends": [
"dispel"
]
}
],
"classes": {
"fromClassList": [
{
"name": "Avenger",
"source": "Avenger"
}
]
},
"source": "Avenger",
"meta": {
"ritual": true
},
"entries": [
"You touch two or more creatures and bind them to a promise, whether it's a simple statement or an extensive legal document. The targets of this spell must be within 10 feet of you throughout the casting.",
"If a creature fails to uphold their end of the deal, or breaks the promise the other targets of this spell are immediately alerted mentally at which point this spell ends. A creature alerted this way only knows that the deal was broken, but nothing else."
],
"areaTags": [
"MT"
]
},
{
"name": "Endure Elements",
"level": 4,
"school": "A",
"time": [
{
"number": 1,
"unit": "hour"
}
],
"range": {
"type": "point",
"distance": {
"type": "touch"
}
},
"components": {
"v": true,
"s": true,
"m": {
"text": "a bit of fur from an artic creature and a scale from a desert lizard"
}
},
"duration": [
{
"type": "timed",
"duration": {
"type": "hour",
"amount": 24
}
}
],
"classes": {
"fromClassList": [
{
"name": "Avenger",
"source": "Avenger"
}
]
},
"source": "Avenger",
"meta": {
"ritual": true
},
"entries": [
"You touch a willing creature and protect them from the effects of extreme weather for the duration. A creature under the effect of this spell is protected from Extreme Cold, Extreme Heat, Heavy Precipitation, and Strong Wind as described in chapter 5 of the Dungeon Master's Guide."
],
"areaTags": [
"ST"
]
},
{
"name": "Erase from Memory",
"level": 2,
"school": "E",
"time": [
{
"number": 1,
"unit": "action"
}
],
"range": {
"type": "point",
"distance": {
"type": "self"
}
},
"components": {
"v": true,
"s": true,
"m": {
"text": "an ivory or jade mask worth at least 100 gp"
}
},
"duration": [
{
"type": "timed",
"duration": {
"type": "hour",
"amount": 1
},
"concentration": true
}
],
"classes": {
"fromClassList": [
{
"name": "Avenger",
"source": "Avenger"
}
]
},
"source": "Avenger",
"meta": {
"ritual": true
},
"entries": [
"For the duration of the spell magic protects you from the witness of other creatures. Creatures interact with you normally while under the effects of this spell but upon leaving you (or vice versa) they find they cannot remember your physical appearance and have disadvantage on any checks made to recall further information about you."
],
"areaTags": [
"ST"
]
},
{
"name": "Greater Ceremony",
"level": 3,
"school": "A",
"time": [
{
"number": 1,
"unit": "hour"
}
],
"range": {
"type": "point",
"distance": {
"type": "touch"
}
},
"components": {
"v": true,
"s": true,
"m": {
"text": "250 gp worth of powdered silver, which the spell consumes",
"cost": 25000
}
},
"duration": [
{
"type": "instant"
}
],
"classes": {
"fromClassList": [
{
"name": "Avenger",
"source": "Avenger"
}
]
},
"source": "Avenger",
"meta": {
"ritual": true
},
"entries": [
"You perform an immaculate religious ceremony that is infused with great magic. When you cast the spell, choose one of the following rites, the target of which must be within 10 feet of you throughout the casting.",
{
"type": "entries",
"entries": [
{
"type": "entries",
"name": "Atonement",
"entries": [
"You touch one willing creature whose alignment has changed and restore it to its original alignment."
]
}
]
},
{
"type": "entries",
"entries": [
{
"type": "entries",
"name": "Bless Water",
"entries": [
"You touch up to one gallon of water and cause it to become holy water."
]
}
]
},
{
"type": "entries",
"entries": [
{
"type": "entries",
"name": "Coming of Age",
"entries": [
"You touch one humanoid who is a young adult. For the next 7 days, the target has advantage on ability checks. A creature can benefit from this rite only once."
]
}
]
},
{
"type": "entries",
"entries": [
{
"type": "entries",
"name": "Dedication",
"entries": [
"You touch one humanoid who wishes to be dedicated to your god's service. For the next 7 days, the target has advantage on saving throws. A creature can benefit from this rite only once."
]
}
]
},
{
"type": "entries",
"entries": [
{
"type": "entries",
"name": "Funeral Rite",
"entries": [
"You touch one corpse, and for the next year, the target can't become undead by any means short of a wish spell."
]
}
]
},
{
"type": "entries",
"entries": [
{
"type": "entries",
"name": "Wedding",
"entries": [
"You touch adult humanoids willing to be bonded together in marriage. For the next 30 days, each target gains a +5 bonus to AC while they are within 30 feet of each other. A creature can benefit from this rite again only if widowed."
]
}
]
}
],
"areaTags": [
"ST"
],
"miscTags": [
"MAC"
]
},
{
"name": "Greater Phantom Steed",
"level": 5,
"school": "I",
"time": [
{
"number": 1,
"unit": "minute"
}
],
"range": {
"type": "point",
"distance": {
"type": "feet",
"amount": 30
}
},
"components": {
"v": true,
"s": true,
"m": {
"text": "the jawbone of a horse"
}
},
"duration": [
{
"type": "timed",
"duration": {
"type": "hour",
"amount": 24
}
}
],
"classes": {
"fromClassList": [
{
"name": "Avenger",
"source": "Avenger"
}
]
},
"source": "Avenger",
"meta": {
"ritual": true
},
"entries": [
"A Large quasi-real, horselike creature appears on the ground in an unoccupied space of your choice within range. You decide the creature's appearance, but it is equipped with a saddle, bit, and bridle. Any of the equipment created by the spell vanishes in a puff of smoke if it is carried more than 10 feet away from the steed.",
"For the duration, you or a creature you choose can ride the steed. The creature uses the statistics for a pegasus, except it has a speed of 100 feet, a flying speed of 120 feet, and can travel 12 miles in an hour, or 16 miles at a fast pace. When the spell ends, the steed gradually fades, giving the rider 1 minute to dismount. The spell ends if you use an action to dismiss it or if the steed takes any damage."
],
"miscTags": [
"SMN"
]
},
{
"name": "Iron Vigil",
"level": 2,
"school": "T",
"time": [
{
"number": 10,
"unit": "minute"
}
],
"range": {
"type": "point",
"distance": {
"type": "self"
}
},
"components": {
"v": true,
"s": true,
"m": {
"text": "a rooster's feather"
}
},
"duration": [
{
"type": "timed",
"duration": {
"type": "hour",
"amount": 8
},
"concentration": true
}
],
"classes": {
"fromClassList": [
{
"name": "Avenger",
"source": "Avenger"
}
]
},
"source": "Avenger",
"meta": {
"ritual": true
},
"entries": [
"You create a magic circle with a 15-foot-radius, as long as you remain within the circle for the duration you don't need food, water, or sleep, and can gain the benefits of a long rest if you spend all 8 hours performing light activity like praying, reading, or keeping watch."
]
},
{
"name": "Protect Thoughts",
"level": 4,
"school": "A",
"time": [
{
"number": 1,
"unit": "action"
}
],
"range": {
"type": "point",
"distance": {
"type": "self"
}
},
"components": {
"v": true,
"s": true,
"m": {
"text": "a polished mirror"
}
},
"duration": [
{
"type": "timed",
"duration": {
"type": "hour",
"amount": 8
}
}
],
"classes": {
"fromClassList": [
{
"name": "Avenger",
"source": "Avenger"
}
]
},
"source": "Avenger",
"meta": {
"ritual": true
},
"entries": [
"For the duration of the spell your thoughts can't be read by telepathy or other means unless you allow it. Anyone who attempts to read your mind sees and hears only static."
]
},
{
"name": "Rebuff the Wicked",
"level": 3,
"school": "A",
"time": [
{
"number": 1,
"unit": "hour"
}
],
"range": {
"type": "point",
"distance": {
"type": "touch"
}
},
"components": {
"v": true,
"s": true,
"m": {
"text": "a miniature silver shield, worth at least 50 gp",
"cost": 5000
}
},
"duration": [
{
"type": "timed",
"duration": {
"type": "hour",
"amount": 8
}
}
],
"classes": {
"fromClassList": [
{
"name": "Avenger",
"source": "Avenger"
}
]
},
"source": "Avenger",
"meta": {
"ritual": true
},
"entries": [
"You touch up to 5 creatures and choose one of the following creature type: celestial, fey, fiend, or undead.",
"For the duration of the spell whenever a creature of the selected type makes an attack roll against a creature targeted by this spell the creature must roll a {@dice d4} and subtract the number rolled from the attack roll."
]
},
{
"name": "Sanctify Weapon",
"level": 2,
"school": "T",
"time": [
{
"number": 10,
"unit": "minute"
}
],
"range": {
"type": "point",
"distance": {
"type": "touch"
}
},
"components": {
"v": true,
"s": true,
"m": {
"text": "a vial of holy water, which the spell consumes"
}
},
"duration": [
{
"type": "timed",
"duration": {
"type": "hour",
"amount": 24
}
}
],
"classes": {
"fromClassList": [
{
"name": "Avenger",
"source": "Avenger"
}
]
},
"source": "Avenger",
"meta": {
"ritual": true
},
"entries": [
"You touch a nonmagical weapon. Until the spell ends, that weapon counts as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage."
]
},
{
"name": "Seal the Grave",
"level": 5,
"school": "A",
"time": [
{
"number": 1,
"unit": "hour"
}
],
"range": {
"type": "point",
"distance": {
"type": "feet",
"amount": 150
}
},
"components": {
"v": true,
"s": true,
"m": {
"text": "a jeweled locket worth at least 300 gp and an iron nail which is driven through the locket",
"cost": 30000
}
},
"duration": [
{
"type": "instant"
}
],
"classes": {
"fromClassList": [
{
"name": "Avenger",
"source": "Avenger"
}
]
},
"source": "Avenger",
"meta": {
"ritual": true
},
"entries": [
"You consecrate an area against the effects of necromancy. Choose a point within range, for the next 24 hours all corpses in a 100-foot radius centered on that point can't become undead by any means short of a wish spell.",
"Casting this spell on the same spot every day for a year makes this effect permanent."
]
},
{
"name": "Seek Refuge",
"level": 1,
"school": "D",
"time": [
{
"number": 1,
"unit": "action"
}
],
"range": {
"type": "point",
"distance": {
"type": "self"
}
},
"components": {
"v": true,
"s": true,
"m": {
"text": "a dove's feather"
}
},
"duration": [
{
"type": "instant"
}
],
"classes": {
"fromClassList": [
{
"name": "Avenger",
"source": "Avenger"
}
]
},
"source": "Avenger",
"meta": {
"ritual": true
},
"entries": [
"You sense the distance and direction to the nearest place that has been consecrated or desecrated, as with the hallow spell, as long as that place is within 10 miles of you."
],
"areaTags": [