-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathDungeon Dudes; Sebastian Crowe's Guide to Drakkenheim.json
9967 lines (9967 loc) · 296 KB
/
Dungeon Dudes; Sebastian Crowe's Guide to Drakkenheim.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": "https://raw.githubusercontent.com/TheGiddyLimit/5etools-utils/master/schema/brew/homebrew.json",
"_meta": {
"sources": [
{
"json": "SCGtD",
"abbreviation": "SCGtD",
"full": "Sebastian Crowe's Guide to Drakkenheim",
"url": "https://www.youtube.com/@DungeonDudes",
"authors": [
"Dungeon Dudes"
],
"convertedBy": [
"Werring",
"Dan"
],
"version": "1.1"
}
],
"status": "wip",
"dateAdded": 1700993345,
"dateLastModified": 1729630006,
"_dateLastModifiedHash": "2ab745679e",
"edition": "classic"
},
"class": [
{
"name": "Apothecary",
"source": "SCGtD",
"classFeatures": [
{
"classFeature": "Occult Practice|Apothecary|SCGtD|1",
"gainSubclassFeature": true
},
"Apothecary Magic|Apothecary|SCGtD|1",
"Esoteric Theories|Apothecary|SCGtD|2",
{
"classFeature": "Occult Practice feature|Apothecary|SCGtD|3",
"gainSubclassFeature": true
},
"Ability Score Improvement|Apothecary|SCGtD|4",
{
"classFeature": "Occult Practice feature|Apothecary|SCGtD|6",
"gainSubclassFeature": true
},
"Ability Score Improvement|Apothecary|SCGtD|8",
{
"classFeature": "Occult Practice feature|Apothecary|SCGtD|10",
"gainSubclassFeature": true
},
"Greater Formula (6th level)|Apothecary|SCGtD|11",
"Ability Score Improvement|Apothecary|SCGtD|12",
"Greater Formula (7th level)|Apothecary|SCGtD|13",
{
"classFeature": "Occult Practice feature|Apothecary|SCGtD|14",
"gainSubclassFeature": true
},
"Greater Formula (8th level)|Apothecary|SCGtD|15",
"Ability Score Improvement|Apothecary|SCGtD|16",
"Greater Formula (9th level)|Apothecary|SCGtD|17",
{
"classFeature": "Occult Practice feature|Apothecary|SCGtD|18",
"gainSubclassFeature": true
},
"Additional Greater Formula (6th level)|Apothecary|SCGtD|19",
"Ability Score Improvement|Apothecary|SCGtD|19",
"Additional Greater Formula (7th level)|Apothecary|SCGtD|20",
"Miraculous Recovery|Apothecary|SCGtD|20"
],
"hd": {
"number": 1,
"faces": 8
},
"proficiency": [
"int",
"wis"
],
"classTableGroups": [
{
"colLabels": [
"{@filter Cantrips Known|spells|level=0|class=Apothecary}",
"Spell Slots",
"Slot Level",
"{@filter Theories Known|optionalfeatures|source=SCGtD|Feature Type=ET}"
],
"rows": [
[
3,
1,
"1st",
0
],
[
3,
2,
"1st",
2
],
[
3,
2,
"2nd",
2
],
[
4,
2,
"2nd",
3
],
[
4,
2,
"3rd",
3
],
[
4,
2,
"3rd",
4
],
[
4,
2,
"4th",
4
],
[
4,
2,
"4th",
5
],
[
4,
2,
"5th",
5
],
[
5,
2,
"5th",
6
],
[
5,
3,
"5th",
6
],
[
5,
3,
"5th",
7
],
[
5,
3,
"5th",
7
],
[
5,
3,
"5th",
8
],
[
5,
3,
"5th",
8
],
[
5,
3,
"5th",
9
],
[
5,
4,
"5th",
9
],
[
5,
4,
"5th",
10
],
[
5,
4,
"5th",
10
],
[
5,
4,
"5th",
11
]
]
}
],
"startingProficiencies": {
"armor": [
"light",
"medium"
],
"weapons": [
"simple",
"{@item short sword|phb|short swords}",
"{@item hand crossbow|phb|hand crossbows}"
],
"tools": [
"Any one tool proficiency",
"Plus another of your choice from the following: poisoner's kit, herbalism kit, or alchemist's supplies"
],
"skills": [
{
"choose": {
"from": [
"arcana",
"history",
"investigation",
"medicine",
"nature",
"religion"
],
"count": 2
}
}
]
},
"startingEquipment": {
"default": [
"(a) a {@item light crossbow|phb} and {@item Crossbow Bolts (20)|phb|20 bolts}, (b) a ${@item short sword|phb} or (c) any {@filter simple weapon|items|source=phb|category=basic|type=simple weapon}",
"(a) a {@item component pouch|phb} or (b) an {@item arcane focus|phb}",
"(a) a {@item scholar's pack|phb} or (b) a {@item dungeoneer's pack|phb}",
"{@item Hide armor|phb}, any {@filter simple weapon|items|source=phb|category=basic|type=simple weapon}, and two {@item dagger|phb|daggers}",
"a {@item Healer's kit|phb}"
],
"additionalFromBackground": true,
"goldAlternative": "{@dice 4d4 × 10|4d4 × 10|Starting Gold}"
},
"multiclassing": {
"requirements": {
"int": 13
},
"proficienciesGained": {
"armor": [
"light"
],
"tools": [
"Any one tool proficiency"
],
"skills": [
{
"acrobatics": true
}
]
}
},
"casterProgression": "pact",
"spellcastingAbility": "int",
"classSpells": [
"Acid Burn|SCGtD",
"Acid Splash",
"Bacterial Barrage|SCGtD",
"Chill Touch",
"Guidance",
"Light",
"Mending",
"Message",
"Poison Needle|SCGtD",
"Poison Spray",
"Resistance",
"Shocking Grasp",
"Spare the Dying",
"Thaumaturgy",
"Acrid Orb|SCGtD",
"Alarm",
"Comprehend Languages",
"Create or Destroy Water",
"Cure Wounds",
"Detect Evil and Good",
"Detect Magic",
"Detect Poison and Disease",
"Envenom|SCGtD",
"False Life",
"Feather Fall",
"Floating Disk",
"Fog Cloud",
"Grease",
"Healing Word",
"Hideous Laughter",
"Identify",
"Illusory Script",
"Infect|SCGtD",
"Jump",
"Purify Food and Drink",
"Sleep",
"Stream of Consumption|SCGtD",
"Toxic Shield|SCGtD",
"Unseen Servant",
"Acid Arrow",
"Aid",
"Biohazard|SCGtD",
"Blindness/Deafness",
"Caustic Grip|SCGtD",
"Enhance Ability",
"Enlarge/Reduce",
"Gentle Repose",
"Grasping Ghost|SCGtD",
"Hold Person",
"Invigorate|SCGtD",
"Lesser Restoration",
"Ocular Necrosis|SCGtD",
"Protection from Poison",
"Ray of Enfeeblement",
"See Invisibility",
"Silence",
"Spider Climb",
"Web",
"Bestow Curse",
"Corrosive Blast|SCGtD",
"Dispel Magic",
"Fear",
"Fetid Blade|SCGtD",
"Gaseous Form",
"Glyph of Warding",
"Haste",
"Hypnotic Pattern",
"Magic Circle",
"Mass Healing Word",
"Pestilence|SCGtD",
"Purge Contamination",
"Protection from Energy",
"Remove Curse",
"Revivify",
"Sending",
"Slow",
"Speak with Dead",
"Stinking Cloud",
"Tranquilizing Toxin|SCGtD",
"Vampiric Touch",
"Venomous Aura|SCGtD",
"Water Breathing",
"Black Tentacles",
"Blight",
"Blood Worm|SCGtD",
"Corpse Explosion|SCGtD",
"Corrupting Spores|SCGtDm",
"Death Ward",
"Freedom of Movement",
"Last Rites|SCGtD",
"Poison Wave|SCGtD",
"Polymorph",
"Stoneskin",
"Vitriolic Ichor|SCGtD",
"Acid Rain|SCGtD",
"Antilife Shell",
"Cloudkill",
"Contact Other Plane",
"Greater Restoration",
"Hold Monster",
"Mass Cure Wounds",
"Nerve Gas|SCGtD",
"Raise Dead",
"Scrying",
"Septic Shock|SCGtD",
"Telepathic Bond",
"Teleportation Circle",
"Toxic Barrage|SCGtD",
"Chain Lighting",
"Circle of Death",
"Create Undead",
"Disintegrate",
"Eyebite",
"Flesh to Stone",
"Globe of Invulnerability",
"Harm",
"Heal",
"Mephitic Vapors|SCGtD",
"True Seeing",
"Vile Necrosis|SCGtD",
"Etherealness",
"Finger of Death",
"Forcecage",
"Miasma|SCGtD",
"Plane Shift",
"Prismatic Spray",
"Grievous Wounds|SCGtD",
"Regenerate",
"Resurrection",
"Antimagic Field",
"Antipathy/Sympathy",
"Breath of Nightshade|SCGtD",
"Clone",
"Dominate Monster",
"Feeblemind",
"Mind Blank",
"Plague Wind|SCGtD",
"Power Word Stun",
"Astral Projection",
"Foresight",
"Mass Heal",
"Pandemic|SCGtD",
"Power Word Kill",
"Time Stop",
"Touch of Death|SCGtD",
"True Polymorph",
"True Resurrection"
],
"cantripProgression": [
3,
3,
3,
4,
4,
4,
4,
4,
4,
5,
5,
5,
5,
5,
5,
5,
5,
5,
5,
5
],
"preparedSpells": "<$level$> + <$int_mod$>",
"hasFluff": true
}
],
"classFeature": [
{
"name": "Apothecary Magic",
"source": "SCGtD",
"page": 135,
"className": "Apothecary",
"classSource": "SCGtD",
"level": 1,
"entries": [
"Your arcane research has given you facility with spells. Refer to the Core Rules for the general rules of spellcasting and the Spells Listing in this book for the apothecary spell list.",
{
"type": "entries",
"name": "Formula Book",
"entries": [
"You have a book or collection of notes that you study to prepare your apothecary spells, develop your esoteric theories, and record your occult practices.",
"You may use your formula book as an arcane focus for your apothecary spells.",
"You may describe this book any way you like. Some examples of your book's appearance include:",
"- A large leatherbound tome with yellowing pages bound shut with an iron lock",
"- A scattered assortment of scribbled notes loosely held together by rope",
"- A pristine journal with perfect edges and beautiful penmanship",
"- A leather briefcase with two small golden locks",
"- A medical bag with surgical symbols on the sides",
"- A beat-up satchel slung over one shoulder with vials and bottles poking out of every pocket",
"If the book is destroyed or lost, you can recreate it using inks and paper during a long rest."
]
},
{
"type": "entries",
"name": "Cantrips",
"entries": [
"You know three cantrips of your choice from the apothecary spell list.",
"You learn additional apothecary cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Apothecary table.",
{
"type": "entries",
"name": "Elementary Reformulation",
"entries": [
"Whenever you finish a long rest and consult your formula book, you can replace one apothecary cantrip you know with another cantrip from the apothecary spell list."
]
}
]
},
{
"type": "entries",
"name": "Preparing and Casting Spells",
"entries": [
"The Apothecary table shows how many spell slots you have to cast your apothecary spells of 1st through 5th level.",
"The table also shows what the level of those slots is; all of your spell slots are the same level.",
"To cast one of your apothecary spells of 1st level or higher, you must expend a spell slot. You regain all expended spell slots when you finish a short or long rest.",
"You prepare the list of apothecary spells that are available for you to cast, choosing from the {@filter apothecary spell list|spells|class=Apothecary}.",
"When you do so, choose a number of apothecary spells equal to your Intelligence modifier + your apothecary level (minimum of one spell).",
"A spell you prepare must be of a level no higher than what's shown in the Apothecary table's Slot Level column for your level.",
"For example, if you are a 5th-level apothecary, you have three 3rd-level spell slots.",
"With an Intelligence of 16, your list of prepared spells can include eight spells of 1st, 2nd, or 3rd level, in any combination.",
"To cast the 1st-level spell cure wounds, you must spend one of those slots, and you cast it as a 3rd-level spell.",
"Casting a 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 apothecary spells requires at least 1 minute per spell level for each spell on your list."
]
},
{
"type": "entries",
"name": "Spellcasting Ability",
"entries": [
"Intelligence is your spellcasting ability for your apothecary spells, since you learn your spells through dedicated study and occult knowledge.",
"You use your Intelligence whenever a spell refers to your spellcasting ability.",
"In addition, you use your Intelligence modifier when setting the saving throw DC for an apothecary spell you cast and when making an attack roll with one.",
{
"type": "abilityDc",
"name": "Spell",
"attributes": [
"int"
]
},
{
"type": "abilityAttackMod",
"name": "Spell",
"attributes": [
"int"
]
}
]
},
{
"type": "entries",
"name": "Ritual Casting",
"entries": [
"You can cast an apothecary spell as a ritual if that spell has the ritual tag and you have the spell prepared."
]
},
{
"type": "entries",
"name": "Spellcasting Focus",
"entries": [
"You can use an {@item arcane focus|PHB} as a spellcasting focus for your apothecary spells."
]
}
]
},
{
"name": "Occult Practice",
"source": "SCGtD",
"page": 136,
"className": "Apothecary",
"classSource": "SCGtD",
"level": 1,
"entries": [
"At 1st level, you take up one of the Occult Practices, a chosen discipline which defines your ongoing research of the body and spirit: the Alienist, the Chemist, the Exorcist, the Mutagenist, the Pathogenist, or the Reanimator.",
"Your choice grants you additional proficiencies and an expanded spell list at 1st level, and additional class features at 3rd, 6th, 10th, 14th, and 18th level."
]
},
{
"name": "Esoteric Theories",
"source": "SCGtD",
"page": 136,
"className": "Apothecary",
"classSource": "SCGtD",
"level": 2,
"entries": [
"You have discovered esoteric theories, scraps of forbidden lore that you can use to augment your magical abilities.",
"At 2nd level, you gain two {@filter esoteric theories|optionalfeatures|source=SCGtD|Feature Type=ET} of your choice. Your theory options are detailed at the end of the class description.",
"When you gain certain apothecary levels, you gain additional theories of your choice, as shown in the Theories Known column of the Apothecary table.",
"Additionally, when you gain a level in this class, you can choose one of the theories you know and replace it with another theory that you could learn at that level."
]
},
{
"name": "Occult Practice Feature",
"source": "SCGtD",
"page": 136,
"className": "Apothecary",
"classSource": "SCGtD",
"level": 3,
"entries": [
"At 3rd level, you gain a feature granted by your chosen discipline."
]
},
{
"name": "Ability Score Improvement",
"source": "SCGtD",
"page": 136,
"className": "Apothecary",
"classSource": "SCGtD",
"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 {@5etools feat|feats.html}."
]
},
{
"name": "Occult Practice Feature",
"source": "SCGtD",
"page": 136,
"className": "Apothecary",
"classSource": "SCGtD",
"level": 6,
"entries": [
"At 6th level, you gain a feature granted by your chosen discipline."
]
},
{
"name": "Ability Score Improvement",
"source": "SCGtD",
"page": 136,
"className": "Apothecary",
"classSource": "SCGtD",
"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 {@5etools feat|feats.html}."
]
},
{
"name": "Occult Practice Feature",
"source": "SCGtD",
"page": 136,
"className": "Apothecary",
"classSource": "SCGtD",
"level": 10,
"entries": [
"At 10th level, you gain a feature granted by your chosen discipline."
]
},
{
"name": "Greater Formula (6th level)",
"source": "SCGtD",
"page": 136,
"className": "Apothecary",
"classSource": "SCGtD",
"level": 11,
"entries": [
"At 11th level, you discover a magical secret called a Greater Formula. Choose one 6th-level spell from the apothecary spell list as this formula.",
"You can cast your Greater Formula once without expending a spell slot. You must finish a long rest before you can do so again.",
{
"type": "entries",
"name": "Master Reformulation",
"entries": [
"Whenever you finish a long rest and consult your formula book, you can replace one spell you gained from this feature with another spell of the same level from the Apothecary spell list."
]
}
]
},
{
"name": "Ability Score Improvement",
"source": "SCGtD",
"page": 136,
"className": "Apothecary",
"classSource": "SCGtD",
"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 {@5etools feat|feats.html}."
]
},
{
"name": "Greater Formula (7th level)",
"source": "SCGtD",
"page": 136,
"className": "Apothecary",
"classSource": "SCGtD",
"level": 13,
"entries": [
"At 13th level, you discover a magical secret called a Greater Formula. Choose one 7th-level spell from the apothecary spell list as this formula."
]
},
{
"name": "Occult Practice Feature",
"source": "SCGtD",
"page": 136,
"className": "Apothecary",
"classSource": "SCGtD",
"level": 14,
"entries": [
"At 14th level, you gain a feature granted by your chosen discipline."
]
},
{
"name": "Greater Formula (8th level)",
"source": "SCGtD",
"page": 136,
"className": "Apothecary",
"classSource": "SCGtD",
"level": 15,
"entries": [
"At 15th level, you discover a magical secret called a Greater Formula. Choose one 8th-level spell from the apothecary spell list as this formula."
]
},
{
"name": "Ability Score Improvement",
"source": "SCGtD",
"page": 136,
"className": "Apothecary",
"classSource": "SCGtD",
"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 {@5etools feat|feats.html}."
]
},
{
"name": "Greater Formula (9th level)",
"source": "SCGtD",
"page": 136,
"className": "Apothecary",
"classSource": "SCGtD",
"level": 17,
"entries": [
"At 17th level, you discover a magical secret called a Greater Formula. Choose one 9th-level spell from the apothecary spell list as this formula."
]
},
{
"name": "Occult Practice Feature",
"source": "SCGtD",
"page": 136,
"className": "Apothecary",
"classSource": "SCGtD",
"level": 18,
"entries": [
"At 18th level, you gain a feature granted by your chosen discipline."
]
},
{
"name": "Additional Greater Formula (6th level)",
"source": "SCGtD",
"page": 136,
"className": "Apothecary",
"classSource": "SCGtD",
"level": 19,
"entries": [
"At 19th level, you discover a magical secret called a Greater Formula. Choose one additional 6th-level spell from the apothecary spell list as this formula."
]
},
{
"name": "Ability Score Improvement",
"source": "SCGtD",
"page": 136,
"className": "Apothecary",
"classSource": "SCGtD",
"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 {@5etools feat|feats.html}."
]
},
{
"name": "Additional Greater Formula (7th level)",
"source": "SCGtD",
"page": 136,
"className": "Apothecary",
"classSource": "SCGtD",
"level": 20,
"entries": [
"At 20th level, you discover a magical secret called a Greater Formula. Choose one additional 7th-level spell from the apothecary spell list as this formula."
]
},
{
"name": "Miraculous Recovery",
"source": "SCGtD",
"page": 136,
"className": "Apothecary",
"classSource": "SCGtD",
"level": 20,
"entries": [
"At 20th level, you can spend 5 minutes channeling power into a number of creatures (which can include yourself) equal to your Intelligence modifier to facilitate an abnormally fast recovery.",
"You must tend to the creatures during this period, using a {@item Healer's Kit|PHB} with at least one use remaining.",
"The targets regain hit points, spell slots, hit dice, and other abilities as if they completed a long rest.",
"A creature can only benefit from one Miraculous Recovery in a 24-hour period.",
"Once you use this feature, you can't do so again until you finish a long rest."
]
}
],
"optionalfeature": [
{
"name": "Acquired Tolerance",
"source": "SCGtD",
"page": 136,
"featureType": [
"ET"
],
"entries": [
"You have advantage on saving throws against poison, and you gain resistance to poison damage.",
"In addition, you automatically succeed on saving throws against your own apothecary spells, and never take damage from your own apothecary spells."
]
},
{
"name": "Adrenaline Surge",
"source": "SCGtD",
"page": 136,
"featureType": [
"ET"
],
"prerequisite": [
{
"level": 6
}
],
"entries": [
"A creature at 0 hit points who regains hit points from a spell you cast using an apothecary spell slot gains resistance to all damage and has advantage on saving throws until the end of its next turn.",
"It gains advantage on the first attack roll it makes on its next turn."
]
},
{
"name": "Anatomical Precision",
"source": "SCGtD",
"page": 136,
"featureType": [
"ET"
],
"prerequisite": [
{
"level": 6
}
],
"entries": [
"When you make a weapon attack, you can use your Intelligence modifier, instead of Strength or Dexterity, for the attack and damage rolls."
]
},
{
"name": "Anesthesiology",
"source": "SCGtD",
"page": 137,
"featureType": [
"ET"
],
"prerequisite": [
{
"level": 14
}
],
"entries": [
"You can cast hold person without expending a spell slot or requiring material components.",
"You must finish a long rest before you can use this theory on the same creature again."
]
},
{
"name": "Bedside Manner",
"source": "SCGtD",
"page": 137,
"featureType": [
"ET"
],
"entries": [
"You gain proficiency in the Insight and Persuasion skills.",
"Your proficiency bonus is doubled for any ability check you make that uses either of these skills."
]
},
{
"name": "Caustic Formulae",
"source": "SCGtD",
"page": 137,
"featureType": [
"ET"
],
"prerequisite": [
{
"level": 6
}
],
"entries": [
"Once per turn when you deal damage to a creature or object with an apothecary spell, you can expend an apothecary spell slot to deal 2d4 extra acid damage to that target, plus another 2d4 per level of the spell slot."
]
},
{
"name": "Clinical Conditioning",
"source": "SCGtD",
"page": 137,
"featureType": [
"ET"
],
"prerequisite": [
{
"level": 6
}
],
"entries": [
"You gain proficiency in Constitution saving throws."
]
},
{
"name": "Combat Medic",
"source": "SCGtD",
"page": 137,
"featureType": [
"ET"
],
"entries": [
"You gain proficiency with martial weapons and shields."
]
},
{
"name": "Corrosive Compound",
"source": "SCGtD",
"page": 137,
"featureType": [
"ET"
],
"prerequisite": [
{
"level": 6
}
],
"entries": [
"When you deal poison damage with your apothecary spells, you can choose to deal half the spell's damage as poison damage and half the spell's damage as acid damage instead."
]
},
{
"name": "Cosmetic Surgery",
"source": "SCGtD",
"page": 137,
"featureType": [
"ET"
],
"entries": [
"You can spend 8 hours performing an occult surgical procedure upon a willing creature, permanently transforming its appearance.",
"You decide what the creature looks like, including facial features, the sound of its voice, hair length, coloration, and distinguishing characteristics, but none of its game statistics change.",
"You can't alter the size of a creature, and its basic shape stays the same.",
"The resulting transformation is non-magical, however, a greater restoration spell or similar magic cast upon the creature can restore it to its original appearance."
]
},
{
"name": "Critical Condition",
"source": "SCGtD",
"page": 137,
"featureType": [
"ET"
],
"prerequisite": [
{
"level": 6
}
],
"entries": [
"When a creature rolls a natural 1 on a saving throw made against one of your apothecary spells that deals damage, roll all of the spell's damage dice twice and add them together.",
"Then add any relevant modifiers as normal to determine the damage that creature takes from the spell."
]
},
{
"name": "Diagnosis",
"source": "SCGtD",
"page": 137,
"featureType": [
"ET"
],
"entries": [
"You can take the Help action as a bonus action on your turn."
]
},
{
"name": "Doctor's Note",
"source": "SCGtD",
"page": 137,
"featureType": [
"ET"
],
"prerequisite": [
{
"level": 6
}
],
"entries": [
"You can cast the sending spell at-will.",
"You must finish a long rest before you can use this theory to contact the same creature again."
]
},
{
"name": "Double Dose",
"source": "SCGtD",
"page": 137,
"featureType": [
"ET"
],
"prerequisite": [
{
"level": 10
}
],
"entries": [
"When you cast an apothecary spell using an apothecary spell slot that targets a single creature and restores hit points to that creature, you can target an additional creature within range."
]
},
{
"name": "Extracurricular Research",
"source": "SCGtD",
"page": 137,
"featureType": [
"ET"
],
"entries": [
"You learn two additional cantrips of your choice from any class's spell list.",
"These cantrips become apothecary cantrips for you."
]
},
{
"name": "Inoculation",
"source": "SCGtD",
"page": 137,
"featureType": [