-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOptional Features.json
2330 lines (2330 loc) · 80.6 KB
/
Optional Features.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"$schema": "../schema.json",
"_meta": {
"sources": [
{
"json": "COFSA",
"abbreviation": "CoFS:A",
"full": "The Compendium of Forgotten Secrets: Awakening",
"authors": [
"Genuine Fantasy Press",
"William Hudson King"
],
"convertedBy": [
"Joe",
"Modnar",
"EldritchTiefling"
],
"version": "1.6",
"url": "https://www.genfantasypress.com",
"targetSchema": "1.1.0"
}
],
"optionalFeatureTypes": {
"maneuvers": "Maneuvers"
},
"dateAdded": 1537874753
},
"optionalfeature": [
{
"name": "Acolytes of the Arachnid",
"prerequisite": [
{
"patron": "The Weaver of Lies",
"pact": "Tome"
}
],
"entries": [
"Whenever you finish a short or long rest, you can perform a weaving ritual over the course of 10 minutes. When you finish, you can touch a number of creatures equal to your Charisma modifier. These creatures become immune to the web spell and natural webbing, and climbing costs them no extra movement while the creature is touching a web. This lasts until that creature finishes a short or long rest."
],
"source": "COFSA",
"page": 98,
"featureType": "EI"
},
{
"name": "Aegis Strike",
"prerequisite": [
{
"patron": "The Timeless Monumental"
}
],
"entries": [
"When you take the Attack action on your turn, and hit a creature with a weapon attack, you can choose to have your attack deal no damage. Instead, the target is wreathed in a punishing barrier of energy. The first time the target makes an attack before the start of your next turn, it takes radiant damage equal to {@dice 2d6} + your Charisma modifier."
],
"source": "COFSA",
"page": 38,
"featureType": "maneuvers"
},
{
"name": "All Else Equal",
"prerequisite": [
{
"patron": "The Warrior-Saint",
"level": {
"level": 7,
"class": {
"name": "Warlock"
}
}
}
],
"entries": [
"Whenever you cast a spell with the word “smite” in the name, you can choose to have it function with any weapon attack, rather than only melee weapon attacks."
],
"source": "COFSA",
"page": 91,
"featureType": "EI"
},
{
"name": "Allegro Vivace",
"prerequisite": [
{
"patron": "The Perfect Chord",
"level": {
"level": 9,
"class": {
"name": "Warlock"
}
}
}
],
"entries": [
"You can cast {@spell greater restoration} using a warlock spell slot. Once you cast this spell, you cannot do so again until you finish a long rest."
],
"source": "COFSA",
"page": 72,
"featureType": "EI"
},
{
"name": "Alliance Upheld",
"prerequisite": [
{
"patron": "The Eternal Citadel",
"level": {
"level": 7,
"class": {
"name": "Warlock"
}
}
}
],
"entries": [
"Whenever you use the Righteous Guardian feature on an ally other than yourself who has at least 1 hit point, they recover hit points equal to your Charisma modifier."
],
"source": "COFSA",
"page": 36,
"featureType": "EI"
},
{
"name": "Arc Lightning",
"prerequisite": [
{
"patron": "The Storm Lord",
"level": {
"level": 11,
"class": {
"name": "Warlock"
}
}
}
],
"entries": [
"When you cast a cantrip that deals damage or make a weapon attack, you can use a bonus action to cast lightning bolt using a warlock spell slot at a target of your cantrip or weapon attack."
],
"source": "COFSA",
"page": 87,
"featureType": "EI"
},
{
"name": "Assassin in the Dark",
"prerequisite": [
{
"patron": "The Weaver of Lies",
"pact": "Chain"
}
],
"entries": [
"If you have a shade widow as your familiar, it gains additional hit points equal to your warlock level. Whenever it uses the Bite action, you can use your reaction to impose disadvantage on the target’s first Constitution saving throw against the widow’s poison."
],
"source": "COFSA",
"page": 98,
"featureType": "EI"
},
{
"name": "Astrological Chart",
"prerequisite": [
{
"patron": "The Fallen Exile",
"pact": "Tome"
}
],
"entries": [
"Whenever you are attacked, you can use a reaction to unleash a wave of sparkling light around yourself in a 10-foot radius. All invisible creatures and objects within the area are highlighted in glowing motes of stardust. Hostile creatures within the radius must make a Wisdom saving throw against your warlock spell save DC. On a failed save, creatures are {@condition blinded} until the start of your next turn.",
"Once you do this, you cannot do so again until you finish a short or long rest.",
"Additionally, you cannot become lost whenever you have an unobstructed view of the night sky, and you gain advantage on checks made to navigate at night."
],
"source": "COFSA",
"page": 42,
"featureType": "EI"
},
{
"name": "Awakened Blade",
"prerequisite": [
{
"patron": "The Blackthorn Grove",
"pact": "Blade"
}
],
"entries": [
"You can choose to create a weapon from polished black wood and wicked spines using your Pact of the Blade feature. While you maintain concentration on a spell cast using a warlock spell slot while wielding this weapon, dense foliage covers your skin, causing your AC to equal 17 if it would normally be lower."
],
"source": "COFSA",
"page": 23,
"featureType": "EI"
},
{
"name": "Awakened Insight",
"entries": [
"Whenever you cast a spell using a warlock spell slot, you gain advantage on the first ability check you make before the end of your next turn."
],
"source": "COFSA",
"page": 129,
"featureType": "EI"
},
{
"name": "Awestruck Awakening",
"prerequisite": [
{
"patron": "The Keeper of the Depths"
}
],
"entries": [
"Whenever you finish a long rest, your mind overflows with the terrible secrets of your patron. You can speak to one allied creature over the course of 10 minutes, filling its mind with what you’ve learned. That creature can add your proficiency bonus to one skill or tool of your choice that it is not already proficient in until its next long rest."
],
"source": "COFSA",
"page": 65,
"featureType": "EI"
},
{
"name": "Barred Mind",
"entries": [
"Whenever you make a Wisdom saving throw and succeed, your mind locks shut. If the same creature or effect forces you to make another Wisdom saving throw before the end of your next turn, that saving throw is made with advantage."
],
"source": "COFSA",
"page": 129,
"featureType": "EI"
},
{
"name": "Between the Worlds",
"prerequisite": [
{
"patron": "The Warrior-Saint",
"level": {
"level": 16,
"class": {
"name": "Warlock"
}
}
}
],
"entries": [
"You can cast plane shift without expending a spell slot. Once you cast this spell in this way, you can’t do so again until you finish a long rest."
],
"source": "COFSA",
"page": 91,
"featureType": "EI"
},
{
"name": "Binding Blast",
"prerequisite": [
{
"patron": "The Weaver of Lies",
"level": {
"level": 9,
"class": {
"name": "Warlock"
}
}
}
],
"entries": [
"Whenever you cast a spell that targets more than one creature and inflicts damage, you can use your bonus action to send transparent webbing to bind all targets that took damage from the spell. A bound target cannot move from they were when you cast the spell unless they succeed a Strength ({@skill athletics}) check against your warlock spell save DC at the start of their next turn. Forced movement, such as a {@action shove}, automatically breaks the webbing. The webbing dissolves into dust at the end of a bound creature’s turn."
],
"source": "COFSA",
"page": 98,
"featureType": "EI"
},
{
"name": "Blade Empowerment",
"prerequisite": [
{
"pact": "Blade"
}
],
"entries": [
"As a bonus action, you can empower your pact weapon with eldritch energy. The first time you hit a creature with an empowered pact weapon before the start of your next turn, it takes additional force damage equal to half your warlock level and if the attack was a critical hit, the target is knocked prone."
],
"source": "COFSA",
"page": 129,
"featureType": "EI"
},
{
"name": "Blasphemous Whisper",
"prerequisite": [
{
"patron": "The Weaver of Lies",
"level": {
"level": 12,
"class": {
"name": "Warlock"
}
}
}
],
"entries": [
"You can now activate the Poisoned Mind feature whenever you cast a cantrip that targets one or more hostile creatures."
],
"source": "COFSA",
"page": 98,
"featureType": "EI"
},
{
"name": "Book of Stolen Secrets",
"prerequisite": [
{
"patron": "The Keeper of the Depths",
"pact": "Tome"
}
],
"entries": [
"Whenever you are in conversation, you can take your Book of Shadows in hand and ask a creature one question. The creature must make a Wisdom saving throw against your warlock spell save DC if it is unwilling to answer. If it fails or if it decides to respond truthfully, the most accurate answer the creature could possibly give is immediately written in the book.",
"Once you do this, you can't do so again until you finish a short or long rest."
],
"source": "COFSA",
"page": 65,
"featureType": "EI"
},
{
"name": "Book of the Blackthorn",
"prerequisite": [
{
"patron": "The Blackthorn Grove",
"pact": "Tome"
}
],
"entries": [
"During a short or long rest, you can choose to create an effigy from plant material, weaving and shaping it into a heart. You can only have one such effigy at a time. Over the course of one minute, you can choose to replace the heart of a dead creature with this effigy, causing it to rise as a zombie with 1 hit point. The zombie will unerringly seek a path towards a destination you name at the time of this ritual, but will ignore any creatures it encounters and will not pause or stop until destroyed. Once the zombie reaches that destination, it will fall to the ground and the sapling of a tree will sprout from the corpse."
],
"source": "COFSA",
"page": 23,
"featureType": "EI"
},
{
"name": "Broken Dreams",
"prerequisite": [
{
"level": {
"level": 18,
"class": {
"name": "Warlock"
}
}
}
],
"entries": [
"Once during a rest, you can cast {@spell dream} without expending a spell slot. Casting this spell does not interfere with your rest."
],
"source": "COFSA",
"page": 129,
"featureType": "EI"
},
{
"name": "Broken God's Blade",
"prerequisite": [
{
"patron": "The Warrior-Saint",
"pact": "Blade"
}
],
"entries": [
"You can create a weapon of polished starsteel capped with a shining gemstone using your Pact of the Blade feature. Whenever you strike a creature with this weapon, you can choose to unleash a wave of magical force to push the target up to 10 feet directly away from you. You can choose to use your Charisma modifier for attack and damage rolls with this weapon."
],
"source": "COFSA",
"page": 91,
"featureType": "EI"
},
{
"name": "Broker's Blade",
"prerequisite": [
{
"patron": "The Currency Conspiracy",
"pact": "Blade"
}
],
"entries": [
"You can choose to create a weapon from pure golden metal covered in precious gemstones using your Pact of the Blade feature. While you are wielding this weapon, you can choose to make an exchanging strike in place of a normal attack. Make a Charisma {@skill persuasion} check opposed by the target's Wisdom {@skill insight}. If you succeed, you trade the pact weapon in your hand for one object the target is currently holding, passing your blade to them and taking the item in one smooth motion. Creatures that are immune to the {@condition charmed} condition are immune to this feature."
],
"source": "COFSA",
"page": 30,
"featureType": "EI"
},
{
"name": "Bitterchill Blast",
"prerequisite": [
{
"patron": "The Wild Huntsman"
}
],
"entries": [
"Your Black Ice feature can now be triggered when you cast a cantrip that requires a saving throw. When you use your Black Ice feature, you can choose to have that cantrip or attack deal cold damage instead of its normal damage type. If the target takes damage from the attack or cantrip, it can’t benefit from features or effects that allow it to ignore difficult terrain until the start of your next turn."
],
"source": "COFSA",
"page": 104,
"featureType": "EI"
},
{
"name": "Butcher's Quill",
"source": "COFSA",
"page": 11,
"featureType": "EI",
"prerequisite": [
{
"patron": "The Accursed Archive",
"pact": "Blade"
}
],
"entries": [
"Using your Pact of the Blade feature, you can create a weapon wrapped in raven feathers and the hide of abominations that drips and bleeds black ink. When you hit a creature with this weapon, you can cast a single 1st level spell you know with a casting time of one bonus action without expending a spell slot. Once you cast a spell in this way, you can't do so again until you finish a short or long rest."
]
},
{
"name": "Captured Heart",
"entries": [
"You gain advantage on attack rolls targeting creatures that you have {@condition charmed}. If you attack a creature you have {@condition charmed}, it can’t take reactions until the end of your next turn."
],
"source": "COFSA",
"page": 129,
"featureType": "EI"
},
{
"name": "Catalogue of Experiences",
"prerequisite": [
{
"patron": "The Gelatinous Convocation",
"pact": "Tome"
}
],
"entries": [
"Whenever you use your Recovered Memories feature to absorb the knowledge of a creature, you can store the experience in your Book of Shadows, and make it come to life upon the pages of the book. You can copy and transfer any memories within your Book to another creature by touching them with the Book as an action."
],
"source": "COFSA",
"page": 54,
"featureType": "EI"
},
{
"name": "Caustic Blast",
"prerequisite": [
{
"patron": "The Gelatinous Convocation",
"level": {
"level": 7,
"class": {
"name": "Warlock"
}
}
}
],
"entries": [
"Whenever you cast a cantrip that deals damage or make a weapon attack, you can use a bonus action to infuse it with acidic energy. The cantrip or attack deals acid damage instead of the normal type, can target objects, and inflicts twice as much damage to unattended objects and structures. If a creature damaged by this acid is using a nonmagical shield, they must make a Dexterity saving throw against your warlock spell save DC. If they fail, their shield is destroyed."
],
"source": "COFSA",
"page": 54,
"featureType": "EI"
},
{
"name": "Cheerful Duet",
"prerequisite": [
{
"patron": "The Perfect Chord",
"pact": "Chain"
}
],
"entries": [
"If you have a {@creature symphonic songbird} as your familiar, it gains additional maximum hit points equal to your warlock level. You can choose to cast spells that require only verbal components as though you were in your familiar's space."
],
"source": "COFSA",
"page": 72,
"featureType": "EI"
},
{
"name": "Chronicle of the Flame",
"source": "COFSA",
"page": 17,
"featureType": "EI",
"prerequisite": [
{
"patron": "The Ashen Wolf",
"pact": "Tome"
}
],
"entries": [
"You can perform a ritual for the Wolf during a short or long rest. When you do so, choose either Dexterity or Strength saving throws. When you make a saving throw of this type, you can use your reaction to gain advantage on that saving throw and cast a cantrip with a casting time of one action.",
"Once you use this invocation, you cannot do so again until you finish a short or long rest. "
]
},
{
"name": "Chronicle of Winters Past",
"prerequisite": [
{
"patron": "The Wild Huntsman",
"pact": "Tome"
}
],
"entries": [
"As an action, you infuse yourself with the cruel bite of ice from ages long past. For 1 minute, cold damage you deal ignores resistance and immunity and you gain immunity to cold damage.",
"Once you use this invocation, you can’t do so again until you finish a short or long rest."
],
"source": "COFSA",
"page": 105,
"featureType": "EI"
},
{
"name": "Clash of Wills",
"prerequisite": [
{
"patron": "The Keeper of the Depths"
}
],
"entries": [
"Whenever you deal damage to an enemy creature with a cantrip or weapon attack, you can use your bonus action to disrupt their magic. The target must make a Wisdom saving throw against your warlock spell save DC. If they fail, their concentration saving throws are made with disadvantage until the end of your next turn."
],
"source": "COFSA",
"page": 65,
"featureType": "EI"
},
{
"name": "Codex of the Black Dawn",
"prerequisite": [
{
"patron": "The Shadowcat",
"pact": "Tome"
}
],
"entries": [
"You can summon forth nightmarish fire from the Inverse to deepen the darkness of an area. By performing a 10-minute ritual, you can create a cold, black shadowflame around an object you are touching. The object consumes light within a 30-foot radius, turning bright light to dim light and dim light to nonmagical darkness. A shadowflame remains until you dispel it as an action, it enters the radius of another shadowflame, or it comes into contact with real fire."
],
"source": "COFSA",
"page": 83,
"featureType": "EI"
},
{
"name": "Cold Blooded",
"prerequisite": [
{
"patron": "The Serpent Empress",
"level": {
"level": 7,
"class": {
"name": "Warlock"
}
}
}
],
"entries": [
"You can cast {@spell polymorph} once without expending a spell slot, but only to turn the target into a snake or other reptile. Once you cast this spell using this feature, you cannot do so again until you finish a long rest."
],
"source": "COFSA",
"page": 78,
"featureType": "EI"
},
{
"name": "Commanding Presence",
"prerequisite": [
{
"level": {
"level": 12,
"class": {
"name": "Warlock"
}
},
"patron": "The Serpent Empress"
}
],
"entries": [
"Whenever you cast a spell with a range of Self using a warlock spell slot, choose one creature within 15 feet of you. The target must make a Wisdom saving throw against your warlock spell save DC. If they fail, they are {@condition charmed} by you until the end of your next turn."
],
"source": "COFSA",
"page": 78,
"featureType": "EI"
},
{
"name": "Compendium of Forgotten Secrets",
"prerequisite": [
{
"pact": "Tome"
}
],
"entries": [
"You are aware of the presence of any Alrisen upon the same plane as you, and you have learned the relationships that they may have with one another. You are instantly aware if any of these relationships change. If you are loyal to one or more of them, you know what direction they are in, like a compass. Most Alrisen have the capacity to conceal themselves from your detection at their discretion. You also gain advantage on checks made to identify their followers, servants, slaves, or other minions."
],
"source": "COFSA",
"page": 129,
"featureType": "EI"
},
{
"name": "Compositions of the Masters",
"prerequisite": [
{
"patron": "The Perfect Chord",
"pact": "Tome"
}
],
"entries": [
"You can ignore the effects of the {@spell silence} spell and of magical effects that would produce a similar area of magical silence, enabling you to speak and cast spells normally. You also become immune to the {@condition deafened} condition."
],
"source": "COFSA",
"page": 72,
"featureType": "EI"
},
{
"name": "Contract Killer",
"prerequisite": [
{
"patron": "The Currency Conspiracy",
"pact": "Tome"
}
],
"entries": [
"During a short or long rest, you can summon a contract detailing any agreement filled with your exact stipulations and requests. Any creature that signs the contract is bound by an obligation to fulfill the terms of the agreement for as long as the contract exists or until the terms are completed. If you break the agreement, you lose Gilt equal to three times your character level. If the amount lost is higher than your current total, you suffer force damage equal to twice the difference. If a creature other than you breaks the agreement, you can choose to expend an amount of Gilt less than or equal to five times your warlock level, inflicting force damage to all offending parties equal to the amount spent. Once you either break the contract or inflict damage using this feature, the contract is destroyed and can no longer be enforced. You can have a maximum number of contracts created using this invocation equal to your Charisma modifier at one time."
],
"source": "COFSA",
"page": 30,
"featureType": "EI"
},
{
"name": "Convocation's Child",
"prerequisite": [
{
"patron": "The Gelatinous Convocation",
"pact": "Chain"
}
],
"entries": [
"While you have a wiggly cube as your familiar, it gains additional maximum hit points equal to your warlock level. When you reach 6th level, you can choose to have your wiggly cube grow to become a Medium creature, and at 14th level, you can choose to have your wiggly cube become a Large creature. You can change the size of the cube as a bonus action. Whenever it is Medium, it’s Engulf damage improves to {@dice 2d8} initial damage and to {@dice 4d8} at the start of the cube’s turn. When it is Large, the damage improves to {@dice 3d8} initial damage and to {@dice 5d8} at the start of the cube’s turn."
],
"source": "COFSA",
"page": 54,
"featureType": "EI"
},
{
"name": "Creature of Carrion",
"prerequisite": [
{
"patron": "The Forbidden Graveyard",
"pact": "Chain"
}
],
"entries": [
"If you have a {@creature haunted crow} as your familiar, it gains additional hit points equal to your warlock level. While you have this familiar, it recovers a single use of its Shriek action whenever either of you reduces a creature to 0 hit points, and the saving throw DC of this action equals your warlock spell save DC."
],
"source": "COFSA",
"page": 47,
"featureType": "EI"
},
{
"name": "Curse of Carasphyx",
"source": "COFSA",
"page": 11,
"featureType": "EI",
"prerequisite": [
{
"patron": "The Accursed Archive",
"level": {
"class": {
"name": "Warlock"
}
}
}
],
"entries": [
"Your flesh grows corrupt in appearance but is imbued with terrible might. While you are not wearing armor or using a shield, you can choose to have your AC equal 10 + your Strength modifier + your Charisma modifier."
]
},
{
"name": "Cursed Portfolio",
"prerequisite": [
{
"patron": "The Grey Portrait",
"pact": "Tome"
}
],
"entries": [
"When you cast a spell that creates an illusion, you can use your bonus action to become {@condition invisible} until the start of your next turn, leaving an illusion of yourself standing in your place.",
"You can do this a number of times equal to your Charisma modifier, and these uses recover when you finish a long rest."
],
"source": "COFSA",
"page": 60,
"featureType": "EI"
},
{
"name": "Dance of the Storm",
"prerequisite": [
{
"patron": "The Storm Lord",
"level": {
"level": 15,
"class": {
"name": "Warlock"
}
}
}
],
"entries": [
"You can cast {@spell fly} on yourself at will without expending a spell slot or material components."
],
"source": "COFSA",
"page": 87,
"featureType": "EI"
},
{
"name": "Dark Speech",
"entries": [
"As an action, you can create a 5-foot cube of magical darkness at a point that you can see within 60 feet of you by speaking a phrase from a forgotten tongue. The cube lasts until the start of your next turn unless you use your action to sustain it."
],
"source": "COFSA",
"page": 129,
"featureType": "EI"
},
{
"name": "Darkest Secrets",
"prerequisite": [
{
"patron": "The Keeper of the Depths",
"level": {
"level": 4,
"class": {
"name": "Warlock"
}
}
}
],
"entries": [
"Whenever you choose your proficiencies for your Secrets of the Lost feature, you can forfeit both gained proficiencies. When you do, you can have your proficiency bonus be doubled for any ability check on a single skill or tool you are proficient with. This lasts until you finish a long rest."
],
"source": "COFSA",
"page": 65,
"featureType": "EI"
},
{
"name": "Deepest Sympathies",
"prerequisite": [
{
"patron": "The Keeper of the Depths",
"pact": "Chain"
}
],
"entries": [
"If you have an {@creature eyeless watcher} as a familiar, it gains additional maximum hit points equal to your warlock level. Whenever your eyeless watcher takes the {@action Help} action, it can use a bonus action to become {@condition invisible} until the start of its next turn."
],
"source": "COFSA",
"page": 66,
"featureType": "EI"
},
{
"name": "Duskborne Companion",
"prerequisite": [
{
"patron": "The Shadowcat",
"pact": "Chain"
}
],
"entries": [
"When you have a {creature dimcat} as your familiar, it gains additional hit points equal to your warlock level. Whenever you cast a spell using a warlock spell slot while you have a dimcat as your familiar, you can choose to teleport up to 30 feet to a location you can see within 5 feet of your familiar."
],
"source": "COFSA",
"page": 83,
"featureType": "EI"
},
{
"name": "Eldritch Annhilation",
"prerequisite": [
{
"pact": "Blade",
"level": {
"level": 18,
"class": {
"name": "Warlock"
}
}
}
],
"entries": [
"When you kill a creature with your pact weapon, you siphon a fragment of their essence. The next time you hit with your pact weapon, you deal extra force damage equal to your warlock level."
],
"source": "COFSA",
"page": 129,
"featureType": "EI"
},
{
"name": "Eldritch Shaping",
"prerequisite": [
{
"level": {
"level": 5,
"class": {
"name": "Warlock"
}
},
"spell": [
"eldritch blast"
]
}
],
"entries": [
"Whenever you cast a spell using a warlock spell slot, you can use your bonus action to collect the excess power. The next time you cast {@spell eldritch blast}, you can choose one of the following options to replace the normal beams of energy with shaped explosions. The DC of any saving throw is equal to your warlock spell save DC.",
{
"type": "list",
"items": [
"{@b Pulse:} You unleash a pulse of eldritch energy in a 10-foot radius around you. Target a number of creatures that you can see in the area equal to your number of eldritch blast beams. Each creature must succeed on a Dexterity saving throw or be struck by one beam.",
"{@b Shockwave:} You unleash a wave of eldritch energy in a 20- foot cone. Target a number of creatures that you can see in the area equal to your number of {@spell eldritch blast} beams. Each creature must succeed on a Dexterity saving throw or be struck by one beam."
]
}
],
"source": "COFSA",
"page": 129,
"featureType": "EI"
},
{
"name": "Eldritch Shaping, Greater",
"prerequisite": [
{
"level": {
"level": 11,
"class": {
"name": "Warlock"
}
},
"spell": [
"eldritch blast"
]
}
],
"entries": [
"As {@invocation eldritch shaping}, except you choose from the following options instead.",
{
"type": "list",
"items": [
"{@b Spike:} You summon a 10-foot spike of pure eldritch energy from beneath the ground and attempt to strike a creature you can see within range. The target must succeed on a Dexterity saving throw or be struck by all the beams of your {@spell eldritch blast} as though you were standing at the point where the spike originated.",
"{@b Torrent:} You unleash a devastating arc of energy in a line 60 feet long and 5 feet wide. Target a number of creatures that you can see in the area equal to your number of {@spell eldritch blast} beams. Each creature must succeed on a Dexterity saving throw or be struck by one beam."
]
}
],
"source": "COFSA",
"page": 129,
"featureType": "EI"
},
{
"name": "Eldritch Shaping, Master",
"prerequisite": [
{
"level": {
"level": 17,
"class": {
"name": "Warlock"
}
},
"spell": [
"eldritch blast"
]
}
],
"entries": [
"As {@invocation eldritch shaping}, except you choose from the following options instead.",
{
"type": "list",
"items": [
"{@b Doom:} You channel concentrated eldritch energy into one location. Target one creature you can see within range. The target must succeed on a Charisma saving throw or be struck by all beams of your {@spell eldritch blast}. If this attack kills the creature, you can use your bonus action to prepare another Eldritch Shape.",
"{@b Distruction:} You unleash an web of chaotic eldritch energy. Target one creature you can see within range, and then target up to 4 other enemy creatures you can see within 30 feet of the primary target. Each secondary target must succeed on a Wisdom saving throw or be struck by one beam of your {@spell eldritch blast}. The primary target is struck by a number of beams of your {@spell eldritch blast} equal to the number of creatures who failed their saving throw."
]
}
],
"source": "COFSA",
"page": 129,
"featureType": "EI"
},
{
"name": "Emergency Fund",
"prerequisite": [
{
"patron": "The Currency Conspiracy",
"level": {
"level": 7,
"class": {
"name": "Warlock"
}
}
}
],
"entries": [
"Whenever you have zero warlock spell slots remaining, you can use a bonus action to expend Gilt equal to four times your warlock level. When you do, you regain one warlock spell slot. Once you do this, you can't do so again until you finish a long rest."
],
"source": "COFSA",
"page": 31,
"featureType": "EI"
},
{
"name": "Essence of Ash",
"source": "COFSA",
"page": 17,
"featureType": "EI",
"prerequisite": [
{
"patron": "The Ashen Wolf",
"pact": "Chain"
}
],
"entries": [
"If you have an {@creature emberborn|COFSA} as your familiar, it gains additional hit points equal to your warlock level plus twice your Charisma modifier.",
"When you reach 11th level, the emberborn can grow in size to become a Medium creature, at your discretion. While it is Medium, its bite attack deals {@damage 2d6||Bite piercing} piercing damage and {@damage 2d6||Bite fire} fire damage, and the emberborn's speed increases to 50 feet. Creatures hit by the bite attack must succeed on a DC 13 Strength saving throw or be knocked prone. At 16th level, the Medium emberborn's bite attack deals {@damage 3d6||Bite piercing} piercing damage and {@damage 3d6||Bite fire} fire damage, and the Strength saving throw DC equals your warlock spell save DC. "
]
},
{
"name": "Essence of the Sky",
"prerequisite": [
{
"patron": "The Storm Lord",
"pact": "Chain"
}
],
"entries": [
"If you have a {@creature spark seeker} as your familiar, it gains additional hit points equal to your warlock level. While you have a {@creature spark seeker} as your familiar, you can cast spells that deal lightning or thunder damage as though your familiar was the point of origin for the spell when determining the range and available targets."
],
"source": "COFSA",
"page": 87,
"featureType": "EI"
},
{
"name": "Everburning Gaze",
"prerequisite": [
{
"patron": "The Shadowcat",
"level": {
"level": 16,
"class": {
"name": "Warlock"
}
}
}
],
"entries": [
"Your Stolen Luck curse draws your patron’s eye. The target’s d20 roll is changed to a 1 if the result of your d6 roll is a 5 or 6."
],
"source": "COFSA",
"page": 83,
"featureType": "EI"
},
{
"name": "Evil Eye",
"entries": [
"As an action, you imbue your eyes with eldritch magic and glare darkly at a creature. If the target can see you, it suffers disadvantage on its next attack roll or ability check made within 1 minute."
],
"source": "COFSA",
"page": 129,
"featureType": "EI"
},
{
"name": "Eyes of the Lost",
"prerequisite": [
{
"patron": "The Forbidden Graveyard"
}
],
"entries": [
"As an action, you can choose to perceive through the senses of an undead creature within 120 feet until the start of your next turn. While you do so, you are considered deaf and blind to your own senses."
],
"source": "COFSA",
"page": 47,
"featureType": "EI"
},
{
"name": "Fang of the Prowler",
"prerequisite": [
{
"patron": "The Shadowcat",
"pact": "Blade"
}
],
"entries": [
"When you create a melee weapon with the finesse property using your Pact of the Blade feature, you can make it from polished silver flowing with blue-black smoke. While wielding this weapon, you gain advantage on initiative rolls. During the first round of combat, attacks with this weapon deal extra psychic damage equal to your Charisma modifier plus half your warlock level."
],
"source": "COFSA",
"page": 83,
"featureType": "EI"
},
{
"name": "Flaywind Blade",
"prerequisite": [
{
"patron": "The Storm Lord",
"pact": "Blade"
}
],
"entries": [
"When you create a weapon with your Pact of the Blade feature, you can infuse it with silver mist and form it from stormscarred steel. When you attack with this weapon, you can use your Charisma modifier, instead of Strength or Dexterity, for the attack and damage rolls. When a ranged attack misses you while you are wielding this weapon, you can use your reaction to move up to 15 feet without provoking opportunity attacks, and you can move through spaces occupied by hostile creatures without spending additional movement."
],
"source": "COFSA",
"page": 87,
"featureType": "EI"
},
{
"name": "Frame of Reference",
"prerequisite": [
{
"patron": "The Gray Portrait",
"level": {
"level": 11,
"class": {
"name": "Warlock"
}
}
}
],
"entries": [
"While you are within an art demiplane, you can use your bonus action to teleport to any location within the demiplane that you can see. You can also use your action to create an art demiplane in a different piece of real art you can see and teleport to a location within that demiplane. The new piece of real art must be within 60 feet of the original piece."
],
"source": "COFSA",
"page": 60,
"featureType": "EI"
},
{
"name": "Frostbound Armor",