forked from TheGiddyLimit/homebrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MCDM Production - The Illrigger Class.json
2296 lines (2296 loc) · 68.2 KB
/
MCDM Production - The Illrigger Class.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": "ILL",
"abbreviation": "ILL",
"full": "MCDM - The Illrigger Class",
"authors": [
"Matthew Colville"
],
"convertedBy": [
"Nexxom"
],
"version": "1.0.0",
"url": "https://shop.mcdmproductions.com/products/illrigger-class"
}
],
"dateAdded": 1620498967,
"dateLastModified": 1620498967
},
"class": [
{
"name": "Illrigger",
"source": "ILL",
"shortName": "Illrigger",
"hd": {
"number": 1,
"faces": 10
},
"proficency": [
"con",
"cha"
],
"startingProficiencies": {
"armor": [
"light",
"medium",
"shields"
],
"weapons": [
"simple",
"martial"
],
"skills": [
{
"choose": {
"from": [
"arcana",
"athletics",
"deception",
"insight",
"intimidation",
"investigation",
"persuasion",
"religion"
],
"count": 2
}
}
]
},
"startingEquipment": {
"default": [
"(a) a martial weapon and a shield or (b) two martial weapons",
"(a) chain shirt or (b) leather armor, longbow, and 20 arrows",
"(a) a priest's pack or (b) a dungeoneer's pack",
"A holy symbol, two daggers, and five javelins"
],
"defaultData": [
{
"a": [],
"b": []
},
{
"a": [],
"b": []
},
{
"a": [],
"b": []
},
{
"_": []
}
]
},
"multiclassing": {
"requirements": {
"cha": 13,
"or": [
{
"str": 13,
"dex": 13
}
]
},
"proficienciesGained": {
"armor": [
"light",
"medium",
"shields"
],
"weapons": [
"simple",
"martial"
]
}
},
"classTableGroups": [
{
"colLabels": [
"Infernal Conduit Dice"
],
"rows": [
[
1
],
[
1
],
[
2
],
[
2
],
[
3
],
[
3
],
[
4
],
[
4
],
[
5
],
[
5
],
[
6
],
[
6
],
[
7
],
[
7
],
[
8
],
[
8
],
[
9
],
[
9
],
[
10
],
[
10
]
]
}
],
"classFeatures": [
"Forked Tongue|Illrigger|ILL|1",
"Infernal Conduit|Illrigger|ILL|1",
"Fighting Style|Illrigger|ILL|2",
"Baleful Interdict|Illrigger|ILL|2",
"Hellsight|Illrigger|ILL|3",
{
"classFeature": "Diabolic Contract|Illrigger|ILL|3",
"gainSubclassFeature": true
},
"Ability Score Improvement|Illrigger|ILL|4",
"Extra Attack|Illrigger|ILL|5",
{
"classFeature": "Baleful Interdict Improvement|Illrigger|ILL|6",
"gainSubclassFeature": true
},
{
"classFeature": "Diabolic Contract Improvement|Illrigger|ILL|7",
"gainSubclassFeature": true
},
"Ability Score Improvement|Illrigger|ILL|8",
{
"classFeature": "Diabolic Contract Improvement|Illrigger|ILL|9",
"gainSubclassFeature": true
},
{
"classFeature": "Baleful Interdict Improvement|Illrigger|ILL|10",
"gainSubclassFeature": true
},
"Improved Infernal Conduit|Illrigger|ILL|11",
"Ability Score Improvement|Illrigger|ILL|12",
{
"classFeature": "Diabolic Contract Improvement|Illrigger|ILL|13",
"gainSubclassFeature": true
},
"Aura of Despair|Illrigger|ILL|14",
"Summon Hell|Illrigger|ILL|15",
"Ability Score Improvement|Illrigger|ILL|16",
{
"classFeature": "Diabolic Contract Improvement|Illrigger|ILL|17",
"gainSubclassFeature": true
},
{
"classFeature": "Baleful Interdict Improvement|Illrigger|ILL|18",
"gainSubclassFeature": true
},
"Ability Score Improvement|Illrigger|ILL|19",
{
"classFeature": "Diabolic Contract Improvement|Illrigger|ILL|20",
"gainSubclassFeature": true
}
],
"subclassTitle": "Diabolic Contracts",
"fluff": [
{
"name": "The Illrigger",
"type": "section",
"entries": [
"The archdevils who rule the Seven Cities of Hell scheme and plot endlessly, eternally. Each seeks to bring the others to heel. To ascend to the Throne of Hell, unite the seven cities and every infernal thing that lives there, and lead an infinite army of devils across the timescape until all worlds burn.",
"Their elite shock troops, the terror-commandos of Hell, are the {@i illriggers}. Knights of Hell, they are charismatic counter-paladins who master devils, disrupt enemy organizations, and command Hell's armies.",
{
"type": "entries",
"name": "The Order of Desolation",
"entries": [
"Millennia ago, the Lords of Hell did something remarkable: they cooperated. They came together to create the Order of Desolation, knights sworn to serve Hell first, their patron archdevil second.",
"Acceptance into the Order of Desolation makes you a comrade with every other illrigger, regardless of which archdevil you serve. Each archdevil has churches, underground fanes, secret societies, cults. All with leaders manically devoted to the archdevil who grants them their power. But this association of illriggers consider themselves above the petty political squabbles that divide the seven cities.",
"Members of the Order of Desolation, also known as the Desolate, are expected to be intelligent, resourceful, tactical, manipulative. A temple or cult might conclude that the presence of an illrigger in their midst is a sign that their archdevil approves of their actions, but the illriggers are independent. The order was founded to give the Lords of Hell agents capable of acting across the timescape, free from the direct control of their patron. An illrigger has many powerful abilities granted by their archdevil, but more precious is their patron's trust. Left to their own devices, the illrigger is expected to sow discord, pain, strife, deceit, and fear without instruction or supervision.",
"It is not unusual, therefore, for a member of the Order of Desolation to rely on other members of the order first, even from illriggers who serve other archdevils, before going to any church, cult, or temple devoted to their own archdevil."
]
}
]
}
]
}
],
"classFeature": [
{
"name": "Forked Tongue",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"level": 1,
"entries": [
"You have a facility with speech and know how to manipulate an audience. Whenever you make an ability check to persuade, deceive, or intimidate, you can treat a d20 roll of 7 or lower as an 8. Additionally you learn the Infernal language."
]
},
{
"name": "Infernal Conduit",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"level": 1,
"entries": [
"There is a pool of infernal power within you that replenishes after you take a long rest. This pool is represented by dice, starting with {@dice 1d10} at 1st level. Your pool gains dice as shown on the Illrigger table. With these dice you can transfer hit points between your illrigger and other targets, healing allies at the expense of your own health or draining the life forceof enemies to rejuvenate your own vitality.",
"As an action, choose a number of dice from your remaining pool and touch another creature. If they are unwilling, this is a melee spell attack with which you are proficient, using Charisma as your spellcasting ability. If you miss, nothing happens\u2014you do not roll or lose dice from your pool. If you hit, or if you're targeting a willing creature, roll the chosen dice.",
"The result of your roll is the number of hit points you transfer. If you're touching an ally, they gain that many hit points, ignoring any hit points in excess of their maximum. You lose hit points equal to the number of hit points they gained. If your sacrifice reduces you to 0 hit points, you fall unconscious.",
"If you're touching an enemy, they take necrotic damage equal to your roll, and you gain that many hit points. If you would gain hit points in excess of your maximum, you gain that number of temporary hit points instead."
]
},
{
"name": "Fighting Style",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"level": 2,
"entries": [
"At 2nd level, you choose an illrigger fighting style:",
{
"type": "options",
"count": 1,
"entries": [
{
"type": "refClassFeature",
"classFeature": "Treachery|Illrigger|ILL|2"
},
{
"type": "refClassFeature",
"classFeature": "Bravado|Illrigger|ILL|2"
},
{
"type": "refClassFeature",
"classFeature": "Schemes|Illrigger|ILL|2"
},
{
"type": "refClassFeature",
"classFeature": "Lies|Illrigger|ILL|2"
}
]
}
]
},
{
"name": "Treachery",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"level": 2,
"entries": [
"When you attack an enemy who has none of your allies adjacent to it, you gain a +3 bonus to damage rolls."
]
},
{
"name": "Bravado",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"level": 2,
"entries": [
"While you are not wearing any armor, your Armor Class equals 10 + your Dexterity modifier + your Charisma modifier. You can use a shield and still gain this benefit."
]
},
{
"name": "Schemes",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"level": 2,
"entries": [
"While you wield a melee weapon in one hand and no other weapons, you can use your reaction after an adjacent enemy attacks you to move into any other unoccupied space within five feet of the attacking enemy. This movement does not provoke an opportunity attack."
]
},
{
"name": "Lies",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"level": 2,
"entries": [
"When you attack with a two-handed melee weapon, you can use your Charisma modifier, instead of your Strength modifier, for both the attack and damage rolls."
]
},
{
"name": "Baleful Interdict",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"level": 2,
"entries": [
"When you reach 2nd level, you learn to use the power of Hell to censure other creatures. As a bonus action, you can place a seal on a target you can see within 30 feet. You can do this a number of times equal to your Charisma modifier. When you finish a short or long rest, you regain all your seals.",
"When you or an ally hits a target you can see with any seals on it, as free action, you can consume the seals to make the attack deal an extra {@dice 2d6} necrotic damage to the target per seal consumed. If you are within 30 feet of the target, you regain 2 hit points for each die of damage your seals deals.",
"A creature with a seal on them is an {@b interdicted creature.}",
"Seals evaporate if not used after 1 minute. Only the illrigger who placed the seal knows it's there; it appears to the illrigger as a glowing glyph on the creature's forehead. If a creature with any of your seals on it dies, you can move all of its seals to another creature within range."
]
},
{
"name": "Hellsight",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"level": 3,
"entries": [
"When you reach 3rd level, your mastery of deception makes it easy for you to recognize the use of concealing sorcery. As an action, you extend your awareness out from you. Until the end of your next turn, you know the location of creatures within 60 feet using magic to hide or disguise themselves.",
"You can use this feature a number of times equal to your Charisma modifier. When you finish a long rest, you regain your expended uses."
]
},
{
"name": "Diabolic Contract",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"level": 3,
"entries": [
"When you reach 3rd level, you sign a diabolic contract with your archdevil who welcomes you into the Order of Desolation. You gain the Invoke Authority ability and choose either Painkiller (Dispater), Shadowmaster (Moloch), or Architect of Ruin (Asmodeus) as your archdevil.",
"Furthermore, you are a noble knight in the lists of Hell and will be accorded fine treatment and hospitality anywhere in Hell you travel, even to cities ruled by enemy archdevils. More cosmopolitan cities in the timescape\u2014like Alloy, the City of Brass\u2014will also respect your noble rank.",
{
"type": "refClassFeature",
"classFeature": "Invoke Authority|Illrigger|ILL|3"
}
]
},
{
"name": "Invoke Authority",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"level": 3,
"entries": [
"You invoke the authority granted you by your archdevil, channelling baleful energy to fuel magical effects. Each Invoke Authority option provided by your archdevil explains how to use it",
"When you use your Invoke Authority, you choose which option to use. Once you use this feature, you must finish a long rest to use it again."
]
},
{
"name": "Ability Score Improvement",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"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": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"level": 5,
"entries": [
"Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn"
]
},
{
"name": "Baleful Interdict Improvement",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"level": 6,
"entries": [
"At 6th level, due to your Contract, your interdiction carries more power."
]
},
{
"name": "Diabolic Contract Improvement",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"level": 7,
"entries": [
"At 7th level, you gain additional power from your Diabolic Contract."
]
},
{
"name": "Ability Score Improvement",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"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": "Diabolic Contract Improvement",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"level": 9,
"entries": [
"At 9th level, you gain additional power from your Diabolic Contract."
]
},
{
"name": "Baleful Interdict Improvement",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"level": 10,
"entries": [
"When you reach 10th level, you feel your connection to your archdevil increase. Your seals deal an extra {@dice 1d6} damage.",
"Your Contract also provides you interdiction with additional power."
]
},
{
"name": "Improved Infernal Conduit",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"level": 11,
"entries": [
"Beginning at 11th level, in addition to draining the life force of an enemy, you can also inflict one level of exhaustion on them. They may recover this exhaustion normally. This ability does not work if the target already has three or more levels of exhaustion, or if you have no dice left in your pool, and you cannot choose to inflict exhaustion {@i instead} of draining life."
]
},
{
"name": "Improved Infernal Conduit",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"level": 11,
"entries": [
"Beginning at 11th level, in addition to draining the life force of an enemy, you can also inflict one level of exhaustion on them. They may recover this exhaustion normally. This ability does not work if the target already has three or more levels of exhaustion, or if you have no dice left in your pool, and you cannot choose to inflict exhaustion {@i instead} of draining life."
]
},
{
"name": "Ability Score Improvement",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"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": "Diabolic Contract Improvement",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"level": 13,
"entries": [
"At 13th level, you gain additional power from your Diabolic Contract."
]
},
{
"name": "Aura of Despair",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"level": 14,
"entries": [
"Beginning at 14th level, you radiate a magical aura of evil. Whenever a hostile creature within 15 feet of you makes an attack roll or a saving throw, it must roll a {@dice 1d4} and subtract the number rolled from the result."
]
},
{
"name": "Summon Hell",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"level": 15,
"entries": [
"Beginning at 15th level, as an action, you can summon a bone devil to serve you for 1 minute. The devil appears in an unoccupied space within 30 feet. It is bound to you and must obey your commands to the best of its ability. It acts on the same initiative that you act on, and may both act and move on the turn you summon it. If you die or fall unconscious, the devil returns to Hell. Once you use this feature, you must wait 1 week before you can use it again."
]
},
{
"name": "Ability Score Improvement",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"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": "Diabolic Contract Improvement",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"level": 17,
"entries": [
"At 17th level, you gain additional power from your Diabolic Contract."
]
},
{
"name": "Baleful Interdict Improvement",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"level": 18,
"entries": [
"At 18th level, due to your Contract, your interdiction carries more power."
]
},
{
"name": "Ability Score Improvement",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"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": "Diabolic Contract Improvement",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"level": 20,
"entries": [
"At 20th level, you gain ultimate power from your Diabolic Contract."
]
}
],
"subclassFeature": [
{
"name": "Architect of Ruin",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"subclassShortName": "Architect",
"subclassSource": "ILL",
"level": 3,
"entries": [
"Asmodeus is the Lord of Acheron, the City of Fear. His illriggers scour the timescape collecting secrets and spells designed to deceive and terrify his opponents. The war he fights against the other Lords of Hell is one of deception and propaganda.",
"Acheron's illriggers work to make Hell's enemies seem outnumbered and outmaneuvered. Half their strategy involves research and infiltration, the other half illusion and propaganda. When an Architect of Ruin finally confronts an enemy, the foe sees the illrigger's forces as impossibly powerful, while their own allies betray them and their armies flee in fear.",
{
"type": "entries",
"name": "Tenets of Ruin",
"entries": [
"Hell's Architects swear an oath to Asmodeus when they join the Order of Desolation. The oath commits them to destroy Asmodeus' enemies by causing fear and sowing distrust.",
{
"type": "entries",
"name": "The Battlefield of the Mind.",
"entries": [
"By the time my armies meet yours, you will be filled with terror and doubt your own strength. I won't have to lift a finger to defeat you."
]
},
{
"type": "entries",
"name": "The Proper Secret.",
"entries": [
"Once I know your secrets,I know what you fear."
]
},
{
"type": "entries",
"name": "Knowledge Is Power.",
"entries": [
"Lore is as powerful as steel. I will learn every detail about my enemy so that, when I strike, I will know their every move. They will be checkmated before the game even begins."
]
},
{
"type": "entries",
"name": "Perception Is Reality.",
"entries": [
"Illusion is {@i also} as powerful as steel. I will spread so many rumors about my own powers, your friends will desert you, your soldiers will quake. So what if none of it's true? And some of it is..."
]
}
]
},
{
"type": "entries",
"name": "Contract with Asmodeus",
"entries": [
"Asmodeus' fighting mages must be able to thwart an enemy's spells as well as their plans.",
{
"type": "entries",
"name": "Invoke Authority: Veteran of Sorcery.",
"entries": [
"As a reaction to failing a saving throw against a spell, you can choose to succeed instead."
]
},
{
"type": "entries",
"name": "Invoke Authority: Spellbreaker.",
"entries": [
"You call on Asmodeus' authority to protect you from enemy magic. Any time you are targeted by a {@spell magic missile} spell, a line spell, or a spell that requires a ranged attack roll, roll a {@dice d6}. On a 1 to 5, you are unaffected. On a 6, your are unaffected and the effect is reflected back at the caster as though it originated from you, turning the caster into the target."
]
}
]
},
{
"type": "entries",
"name": "Spellcasting",
"entries": [
"When Asmodeus accepts you as an Architect of Ruin, you gain access to his infernal power and learn to access divine magic to cast illrigger spells.",
{
"type": "entries",
"name": "Cantrips.",
"entries": [
"You learn two cantrips of your choice from the illrigger spell list. At 8th level, you learn an additional cantrip."
]
},
{
"type": "entries",
"name": "Spell Slots.",
"entries": [
"The Architect of Ruin Spellcasting table shows how many spell slots you have. To cast one of these spells, you must expend a slot of the spell's level or higher. When you finish a long rest, you regain all expended spell slots."
]
},
{
"type": "entries",
"name": "Spells Known of 1st Level and Higher.",
"entries": [
"You prepare the list of illrigger spells that are available for you to cast, choosing from the illrigger spell list. When you do so, choose a number of illrigger spells equal to your Charisma modifier + half your illrigger level (rounded down), minimum of one spell. The spells must be of a level for which you have spell slots.",
"For example, if you are a 5th-level illrigger, you have three 1st-level and two 2nd-level spell slots. With a Charisma of 14, your list of prepared spells can include four spells of 1st or 2nd level in any combination. If you prepare the 1st-level spell Hell's lash, you can cast it using a 1st-level or 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.",
"You can change your list of prepared spells when you finish a long rest. Preparing a new list of illrigger spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list."
]
},
{
"type": "entries",
"name": "Spellcasting Ability.",
"entries": [
"Charisma is your spellcasting ability for your illrigger spells, since your power derives from your ability to command the attention of your patron archdevil. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for an illrigger spell you cast and when making an attack roll with one.",
{
"type": "abilityDc",
"name": "Spell save",
"attributes": [
"cha"
]
},
{
"type": "abilityAttackMod",
"name": "Spell",
"attributes": [
"cha"
]
}
]
}
]
}
]
},
{
"name": "Hellmage",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"subclassShortName": "Architect",
"subclassSource": "ILL",
"level": 6,
"entries": [
"When you cast an illusion spell, you may choose to expend an unused seal instead of a spell slot."
]
},
{
"name": "Spellmaster",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"subclassShortName": "Architect",
"subclassSource": "ILL",
"level": 7,
"entries": [
"You have advantage on Constitution saving throws that you make to maintain your concentration on a spell."
]
},
{
"name": "Instant Illusion",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"subclassShortName": "Architect",
"subclassSource": "ILL",
"level": 9,
"entries": [
"When you place a seal on an enemy, you can, as a reaction, cast an illusion spell that normally has a casting time of 1 action."
]
},
{
"name": "Submit!",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"subclassShortName": "Architect",
"subclassSource": "ILL",
"level": 10,
"entries": [
"As a reaction when you cast a spell, you can consume a seal on an interdicted creature to impose disadvantage on their saving throws against the spell."
]
},
{
"name": "By Will Alone",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"subclassShortName": "Architect",
"subclassSource": "ILL",
"level": 13,
"entries": [
"Your illusion spells no longer require any components. When casting an illusion spell, there is no indication you are casting the spell. You can cast illusion spells while blind, while gagged, and with your hands bound."
]
},
{
"name": "Asmoedus's Blessing",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"subclassShortName": "Architect",
"subclassSource": "ILL",
"level": 17,
"entries": [
"You can, as a reaction to taking damage, cast {@spell fire shield}. The shield is always a warm shield, deals fire damage, and deals {@dice 4d8} damage instead of {@dice 2d8}. You cannot use this feature again until you complete a long rest."
]
},
{
"name": "Magic Resistance",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"subclassShortName": "Architect",
"subclassSource": "ILL",
"level": 18,
"entries": [
"You gain advantage on saving throws against spells and magical effects from interdicted creatures."
]
},
{
"name": "Lore Devil",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"subclassShortName": "Architect",
"subclassSource": "ILL",
"level": 20,
"entries": [
"As an action, you can become a lore devil for 1 minute. You gain three extra seals. Enemies with seals on them automatically fail their saving throws against your spells. You emanate an interference aura, forcing any creature within 60 feet trying to cast a spell to first succeed at a DC 18 Intelligence saving throw or else the spell fails and they lose the spell slot.",
"Whenever you use a spell slot to cast a spell, there is a 25% chance the spell works normally but you do not lose the spell slot.",
"While in this form, your type becomes fiend (devil) and Hell is your home plane. You cannot use this feature again until you complete a long rest. At their discretion, your GM may choose one {@i codex} and grant you limited use of one of the abilities from that {@i codex}."
]
},
{
"name": "Shadowmaster",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"subclassShortName": "Shadowmaster",
"subclassSource": "ILL",
"level": 3,
"entries": [
"Moloch is the Lord of Styx, the City of Lies. He strives to rule Hell through subterfuge, deceit, and trickery. His illriggers are assassins, striking from the shadows or using deception to earn high-ranking positions close to powerful rulers. Many Shadowmasters run networks of spies and assassins who have no idea of the infernal provenance of their master.",
"The Shadowmasters are sworn not to reveal themselves and to take their own lives before betraying their true allegiance. Many Shadowmasters have elaborate plans ready for their own assassination so that, should someone get close to discovering their true identity, they will be killed by their own assassins, preserving the truth. Of course, these killers have no idea who they were really working for...",
{
"type": "entries",
"name": "Tenets of Shadow",
"entries": [
"The Shadowmasters swear an oath to Moloch when they join the Order of Desolation. The oath commits them to serve Moloch's foes as allies before revealing themselves as enemies.",
{
"type": "entries",
"name": "Plans Within Plans.",
"entries": [
"My enemies must never discover my true goals. I will sacrifice myself to protect my schemes."
]
},
{
"type": "entries",
"name": "Create Chaos.",
"entries": [
"Disorder is my goal. Where there is peace, I will create strife. Where there is certainty, I will create doubt. If there is war, it must never end."
]
},
{
"type": "entries",
"name": "Power in Patience.",
"entries": [
"I will study my enemy. I will prepare, research, slowly build trust, so that my loyalty is unquestioned and any thought of my betraying my lord unthinkable."
]
},
{
"type": "entries",
"name": "Hesitation Is Failure.",
"entries": [
"I am perfectly willing and able to kill swiftly and efficiently should the need arise. I may rely on agents, but when the opportunity presents itself I will kill without hesitation."
]
}
]
},
{
"type": "entries",
"name": "Contract with Moloch",
"entries": [
"Moloch's elite assassins must be able to survive to get close to their enemies and quickly eliminate them.",
{
"type": "entries",
"name": "Invoke Authority: Fade",
"entries": [
"As an action, you can become invisible and can, as part of this action, attempt to take the Hide action. The invisibility ends after 1 minute or if you make an attack or cast a spell."
]
},
{
"type": "entries",
"name": "Invoke Authority: Moloch's Blessing",
"entries": [
"As an action, you can become invisible and can, as part of this action, attempt to take the Hide action. The invisibility ends after 1 minute or if you make an attack or cast a spell."
]
}
]
},
{
"type": "entries",
"name": "Flash of Brimstone",
"entries": [
"As a reaction to placing a seal on a target, you can teleport to an unoccupied space that you can see adjacent to the target."
]
},
{
"type": "entries",
"name": "Bonus Proficiencies",
"entries": [
"When you choose Moloch as your archdevil, you gain proficiency with Stealth, Acrobatics, and thieves' tools."
]
},
{
"type": "entries",
"name": "Dagger Adept",
"entries": [
"Your training makes you skilled with certain light weapons. While two-weapon fighting with daggers and/or sickles, you can add your ability modifier to the damage of the second attack, and you can draw or stow two daggers or sickles when you would normally be able to draw or stow only one.",
"At 5th level, your daggers and sickles do {@dice 1d6} damage. At 11th level, your daggers and sickles do {@dice 1d8} damage. At 17th level, your daggers and sickles do {@dice 1d10} damage."
]
}
]
},
{
"name": "Marked for Death",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"subclassShortName": "Shadowmaster",
"subclassSource": "ILL",
"level": 6,
"entries": [
"Your connection to Moloch's power deepens. If you hit an interdicted creature with a melee attack, you can mark them for death. The target has disadvantage on attack rolls that do not include you until the end of its next turn. While that creature is interdicted, it must make a Wisdom saving throw (DC equal to 8 + your proficiency bonus + your Charisma modifier) whenever it tries to leave your reach. On a failure, its speed instead becomes 0 until the start of its next turn. These effects last until it is no longer interdicted, you leave its reach, or it leaves your reach."
]
},
{
"name": "Relentless",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"subclassShortName": "Shadowmaster",
"subclassSource": "ILL",
"level": 7,
"entries": [
"Your movement increases by 10 feet."
]
},
{
"name": "Only A Memory",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"subclassShortName": "Shadowmaster",
"subclassSource": "ILL",
"level": 9,
"entries": [
"Your mastery of shadow grants you advantage on Dexterity (Stealth) checks when taking the Hide action, and Hide becomes a bonus action for you.."
]
},
{
"name": "He Is the Darkness",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"subclassShortName": "Shadowmaster",
"subclassSource": "ILL",
"level": 10,
"entries": [
"While within 10 feet of an interdicted enemy, shadows envelop you and you gain the benefits of half cover."
]
},
{
"name": "Evasion",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"subclassShortName": "Shadowmaster",
"subclassSource": "ILL",
"level": 13,
"entries": [
"When you are prompted to make a Dexterity saving throw to take only half damage from an effect, you instead take no damage if you succeed on the saving throw, and only half damage if you fail."
]
},
{
"name": "Shadowkiller",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"subclassShortName": "Shadowmaster",
"subclassSource": "ILL",
"level": 17,
"entries": [
"You gain darkvision and can see normally in magical darkness. In addition you can see the exact location of any creatures within 60 feet using illusion spells to obfuscate their location, such as blur, mirror image, or invisibility."
]
},
{
"name": "Hell's Assassin",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"subclassShortName": "Shadowmaster",
"subclassSource": "ILL",
"level": 18,
"entries": [
"Your seals do {@dice 3d10} damage each, rather than {@dice 3d6}."
]
},
{
"name": "Shadowform",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"subclassShortName": "Shadowmaster",
"subclassSource": "ILL",
"level": 20,
"entries": [
"Starting at 20th level, as an action, you can become a greater shadow for 1 minute. You gain damage resistance to acid, cold, fire, lightning, thunder, bludgeoning, piercing, and slashing damage. You gain Incorporeal Movement and a flying speed of 50 feet. You can move through other creatures and objects as if they were difficult terrain. You take 5 ({@dice 1d10}) force damage if you end your turn inside an object. Your weapon attacks deal necrotic damage, and successful attacks drain {@dice 1d4} Strength from the target. If this drain reduces the target's Strength to 0, it dies. Otherwise, the drain lasts until the target finishes a short or long rest. If a non-evil humanoid dies from this attack, a new shadow rises from the corpse 1d4 hours later. You cannot use this feature again until you complete a long rest."
]
},
{
"name": "Painkiller",
"source": "ILL",
"className": "Illrigger",
"classSource": "ILL",
"subclassShortName": "Painkiller",
"subclassSource": "ILL",
"level": 3,
"entries": [