-
Notifications
You must be signed in to change notification settings - Fork 0
/
spells.json
6460 lines (6459 loc) · 386 KB
/
spells.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
[
{
"name": "Melf's Acid Arrow",
"classes": [
"wizard"
],
"school": "evocation",
"level": 2,
"range": "90 feet",
"duration": "Instantaneous",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 1,
"materials": "Powdered rhubarb leaf and an adder's stomach",
"concentration": false,
"ritual": false,
"description": "<p>A shimmering green arrow streaks toward a target within range and bursts in a spray of acid. Make a ranged spell attack against the target. On a hit, the target takes 4d4 acid damage immediately and 2d4 acid damage at the end of its next turn. On a miss, the arrow splashes the target with acid for half as much of the initial damage and no damage at the end of its next turn.</p>",
"atHigherLevel": "<p>When you cast this spell using a spell slot of 3rd level or higher, the damage (both initial and later) increases by 1d4 for each slot level above 2nd.</p>"
},
{
"name": "Acid Splash",
"classes": [
"sorcerer",
"wizard"
],
"school": "conjuration",
"level": 0,
"range": "60 feet",
"duration": "Instantaneous",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 0,
"concentration": false,
"ritual": false,
"description": "<p>You hurl a bubble of acid. Choose one creature within range, or choose two creatures within range that are within 5 feet of each other. A target must succeed on a Dexterity saving throw or take 1d6 acid damage.</p><p>This spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).</p>"
},
{
"name": "Aid",
"classes": [
"cleric",
"paladin"
],
"school": "abjuration",
"level": 2,
"range": "30 feet",
"duration": "8 hours",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 1,
"materials": "A tiny strip of white cloth",
"concentration": false,
"ritual": false,
"description": "<p>Your spell bolsters your allies with toughness and resolve. Choose up to three creatures within range. Each target's hit point maximum and current hit points increase by 5 for the duration.</p>",
"atHigherLevel": "<p>When you cast this spell using a spell slot of 3rd level or higher, a target's hit points increase by an additional 5 for each slot level above 2nd.</p>"
},
{
"name": "Alarm",
"classes": [
"ranger",
"wizard"
],
"school": "abjuration",
"level": 1,
"range": "30 feet",
"duration": "8 hours",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 1,
"materials": "A tiny bell and a piece of fine silver wire",
"concentration": false,
"ritual": true,
"description": "<p>You set an alarm against unwanted intrusion. Choose a door, a window, or an area within range that is no larger than a 20-foot cube. Until the spell ends, an alarm alerts you whenever a Tiny or larger creature touches or enters the warded area. When you cast the spell, you can designate creatures that won't set off the alarm. You also choose whether the alarm is mental or audible.</p><p>A mental alarm alerts you with a ping in your mind if you are within 1 mile of the warded area. This ping awakens you if you are sleeping.</p><p>An audible alarm produces the sound of a hand bell for 10 seconds within 60 feet.</p>",
"aoe": {
"type": "cube",
"edge": "20"
}
},
{
"name": "Alter Self",
"classes": [
"sorcerer",
"wizard"
],
"school": "transmutation",
"level": 2,
"range": "Self",
"duration": "Up to 1 hour",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 0,
"concentration": true,
"ritual": false,
"description": "<p>You assume a different form. When you cast the spell, choose one of the following options, the effects of which last for the duration of the spell. While the spell lasts, you can end one option as an action to gain the benefits of a different one.</p><p><b>Aquatic Adaptation.</b> You adapt your body to an aquatic environment, sprouting gills and growing webbing between your fingers. You can breathe underwater and gain a swimming speed equal to your walking speed.</p><p><b>Change Appearance.</b> You transform your appearance. You decide what you look like, including your height, weight, facial features, sound of your voice, hair length, coloration, and distinguishing characteristics, if any. You can make yourself appear as a member of another race, though none of your statistics change. You also can't appear as a creature of a different size than you, and your basic shape stays the same; if you're bipedal, you can't use this spell to become quadrupedal, for instance. At any time for the duration of the spell, you can use your action to change your appearance in this way again.</p><p><b>Natural Weapons.</b> You grow claws, fangs, spines, horns, or a different natural weapon of your choice. Your unarmed strikes deal 1d6 bludgeoning, piercing, or slashing damage, as appropriate to the natural weapon you chose, and you are proficient with your unarmed strikes. Finally, the natural weapon is magic and you have a +1 bonus to the attack and damage rolls you make using it.</p>"
},
{
"name": "Animal Friendship",
"classes": [
"bard",
"druid",
"ranger"
],
"school": "enchantment",
"level": 1,
"range": "30 feet",
"duration": "24 hours",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 1,
"materials": "A morsel of food",
"concentration": false,
"ritual": false,
"description": "<p>This spell lets you convince a beast that you mean it no harm. Choose a beast that you can see within range. It must see and hear you. If the beast's Intelligence is 4 or higher, the spell fails. Otherwise, the beast must succeed on a Wisdom saving throw or be charmed by you for the spell's duration. If you or one of your companions harms the target, the spell ends.</p>",
"atHigherLevel": "<p>When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional beast for each slot level above 1st.</p>"
},
{
"name": "Animal Messenger",
"classes": [
"bard",
"druid",
"ranger"
],
"school": "enchantment",
"level": 2,
"range": "30 feet",
"duration": "24 hours",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 1,
"materials": "A morsel of food",
"concentration": false,
"ritual": true,
"description": "<p>By means of this spell, you use an animal to deliver a message. Choose a Tiny beast you can see within range, such as a squirrel, a blue jay, or a bat. You specify a location, which you must have visited, and a recipient who matches a general description, such as “a man or woman dressed in the uniform of the town guard” or “a red-haired dwarf wearing a pointed hat.” You also speak a message of up to twenty-five words. The target beast travels for the duration of the spell toward the specified location, covering about 50 miles per 24 hours for a flying messenger, or 25 miles for other animals.</p><p>When the messenger arrives, it delivers your message to the creature that you described, replicating the sound of your voice. The messenger speaks only to a creature matching the description you gave. If the messenger doesn't reach its destination before the spell ends, the message is lost, and the beast makes its way back to where you cast this spell.</p>",
"atHigherLevel": "<p>If you cast this spell using a spell slot of 3rd level or higher, the duration of the spell increases by 48 hours for each slot level above 2nd.</p>"
},
{
"name": "Animal Shapes",
"classes": [
"druid"
],
"school": "transmutation",
"level": 8,
"range": "30 feet",
"duration": "Up to 24 hours",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 0,
"concentration": true,
"ritual": false,
"description": "<p>Your magic turns others into beasts. Choose any number of willing creatures that you can see within range. You transform each target into the form of a Large or smaller beast with a challenge rationg of 4 or lower. On subsequent turns, you can use your action to transform affected creatures into new forms.</p><p>The transformation lasts for the duration for each target, or until the target drops to 0 hit points or dies. You can choose a different form for each target. A target's game statistics are replaced by the statistics of the chosen beast, thought the target retains its alignment and Intelligence, Wisdom, and Charisma scores. The target assumes the hit points of its new form, and when it reverts to its normal form, it returns to the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form. As long as the excess damage doesn't reduce the creature's normal form to 0 hit points, it isn't knocked unconscious. The creature is limited in the actions it can perform by the nature of its new form, and it can't speak or cast spells.</p><p>The target's gear melds into the new form. The target can't activate, wield, or otherwise benefit from any of its equipment.</p>"
},
{
"name": "Animate Dead",
"classes": [
"cleric",
"wizard"
],
"school": "necromancy",
"level": 3,
"range": "10 feet",
"duration": "Instantaneous",
"casting": "1 minute",
"verbal": true,
"somatic": true,
"material": 1,
"materials": "A drop of blood, a piece of flesh, and a pinch of bone dust",
"concentration": false,
"ritual": false,
"description": "<p>This spell creates an undead servant. Choose a pile of bones or a corpse of a Medium or Small humanoid within range. Your spell imbues the target with a foul mimicry of life, raising it as an undead creature. The target becomes a skeleton if you chose bones or a zombie if you chose a corpse (the DM has the creature's game statistics).</p><p>On each of your turns, you can use a bonus action to mentally command any creature you made with this spell if the creature is within 60 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete.</p><p>The creature is under your control for 24 hours, after which it stops obeying any command you've given it. To maintain control of the creature for another 24 hours, you must cast this spell on the creature again before the current 24-hour period ends. This use of the spell reasserts your control over up to four creatures you have animated with this spell, rather than animating a new one.</p>",
"atHigherLevel": "<p>When you cast this spell using a spell slot of 4th level or higher, you animate or reassert control over two additional undead creatures for each slot level above 3rd. Each of the creatures must come from a different corpse or pile of bones.</p>"
},
{
"name": "Animate Objects",
"classes": [
"bard",
"sorcerer",
"wizard"
],
"school": "transmutation",
"level": 5,
"range": "120 feet",
"duration": "Up to 1 minute",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 0,
"concentration": true,
"ritual": false,
"description": "<p>Objects come to life at your command. Choose up to ten nonmagical objects within range that are not being worn or carried. Medium targets count as two objects, Large targets count as four objects, Huge targets count as eight objects. You can't animate any object larger than Huge. Each target animates and becomes a creature under your control until the spell ends or until reduced to 0 hit points.</p><p>As a bonus action, you can mentally command any creature you made with this spell if the creature is within 500 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete.</p><table><thead><tr><th>Size</th><th>HP</th><th>AC</th><th>Attack</th><th>Str</th><th>Dex</th></tr></thead><tbody><tr><td>Tiny</td><td>20</td><td>18</td><td>+8 to hit, 1d4+4 damage</td><td>4</td><td>18</td></tr><tr><td>Small</td><td>25</td><td>16</td><td>+6 to hit, 1d8+2 damage</td><td>6</td><td>14</td></tr><tr><td>Medium</td><td>40</td><td>13</td><td>+5 to hit, 2d6+1 damage</td><td>10</td><td>12</td></tr><tr><td>Large</td><td>50</td><td>10</td><td>+6 to hit, 2d10+2 damage</td><td>14</td><td>10</td></tr><tr><td>Huge</td><td>80</td><td>10</td><td>+8 to hit, 2d12+2 damage</td><td>18</td><td>6</td></tr></tbody></table><p>An animated object is a construct with AC, hit points, attacks, Strength, and Dexterity determined by its size. Its Constitution is 10 and its Intelligence and Wisdom are 3, and its Charisma is 1. Its speed is 30 feet; if the object lacks legs or other appendages it can use for locomotion, it instead has a flying speed of 30 feet and can hover. If the object is securely attached to a surface or a larger object, such as a chain bolted to a wall, its speed is 0. It has blindsight with a radius of 30 feet and is blind beyond that distance. When the animated object drops to 0 hit points, it reverts to its original object form, and any remaining damage carries over to its original object form.</p><p>If you command an object to attack, it can make a single melee attack against a creature within 5 feet of it. It makes a slam attack with an attack bonus and bludgeoning damage determined by its size. The DM might rule that a specific object inflicts slashing or piercing damage based on its form.</p>",
"atHigherLevel": "<p>If you cast this spell using a spell slot of 6th level or higher, you can animate two additional objects for each slot level above 5th.</p>"
},
{
"name": "Antilife Shell",
"classes": [
"druid"
],
"school": "abjuration",
"level": 5,
"range": "Self (10-foot radius)",
"duration": "Up to 1 hour",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 0,
"concentration": true,
"ritual": false,
"description": "<p>A shimmering barrier extends out from you in a 10-foot radius and moves with you, remaining centered on you and hedging out creatures other than undead and constructs. The barrier lasts for the duration.</p><p>The barrier prevents an affected creature from passing or reaching through. An affected creature can cast spells or make attacks with ranged or reach weapons through the barrier.</p><p>If you move so an affected creature is forced to pass through the barrier, the spell ends.</p>",
"aoe": {
"type": "sphere",
"radius": "10"
}
},
{
"name": "Antimagic Field",
"classes": [
"cleric",
"wizard"
],
"school": "abjuration",
"level": 8,
"range": "Self (10-foot-radius sphere)",
"duration": "Up to 1 hour",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 1,
"materials": "A pinch of powdered iron or iron filings",
"concentration": true,
"ritual": false,
"description": "<p>A 10-foot-radius invisible sphere of antimagic surrounds you. This area is divorced from the magical energy that suffuses the multiverse. Within the sphere, spells can't be cast, summoned creatures disappear, and even magic items become mundane. Until the spell ends, the sphere moves with you, centered on you.</p><p>Spells and other magical effects, except those created by an artifact or a deity, are suppressed in the sphere and can't protrude into it. A slot expended to cast a suppressed spell is consumed. While an effect is suppressed, it doesn't function, but the time it spends suppressed counts against its duration.</p><p><b>Targeted Effects.</b> Spells and other magical effects, such as <i>magic missile</i> and <i>charm person</i>, that target a creature or an object in the sphere have no effect on that target.</p><p><b>Areas of Magic.</b> The area of another spell or magical effect, such as <i>fireball</i>, can't extend into the sphere. If the sphere overlaps an area of magic, the part of the area that is covered by the sphere is suppressed. For example, the flames created by a <i>wall of fire</i> are suppressed within the sphere, creating a gap in the wall if the overlap is large enough.</p><p><b>Spells.</b> Any active spell or other magical effect on a creature or an object in the sphere is suppressed while the creature or object is in it.</p><p><b>Magic Items.</b> The properties and powers of magic items are suppressed in the sphere. For example, a <i>+1 longsword</i> in the sphere functions as a nonmagical longsword.</p><p>A magic weapon's properties and powers are suppressed if it is used against a target in the sphere or wielded by an attacker in the sphere. If a magic weapon or a piece of magic ammunition fully leaves the sphere (for example, if you fire a magic arrow or throw a magic spear at a target outside the sphere), the magic of the item ceases to be suppressed as soon as it exits.</p><p><b>Magical Travel.</b> Teleportation and planar travel fail to work in the sphere, whether the sphere is the destination or the departure point for such magical travel. A portal to another location, world, or plane of existence, as well as an opening to an extradimensional space such as that created by the rope trick spell, temporarily closes while in the sphere.</p><p><b>Creatures and Objects.</b> A creature or object summoned or created by magic temporarily winks out of existence in the sphere. Such a creature instantly reappears once the space the creature occupied is no longer within the sphere.</p><p><b>Dispel Magic.</b> Spells and magical effects such as <i>dispel magic</i> have no effect on the sphere. Likewise, the spheres created by different <i>antimagic field</i> spells don't nullify each other.</p>",
"aoe": {
"type": "sphere",
"radius": "10"
}
},
{
"name": "Antipathy/Sympathy",
"classes": [
"druid",
"wizard"
],
"school": "enchantment",
"level": 8,
"range": "60 feet",
"duration": "10 days",
"casting": "1 hour",
"verbal": true,
"somatic": true,
"material": 1,
"materials": "Either a hump of alum soaked in vinegar for the <i>antipathy</i> effect or a drop of honey for the <i>sympathy</i> effect",
"concentration": false,
"ritual": false,
"description": "<p>This spell attracts or repels creatures of your choice. You target something within range, either a Huge or smaller object or creature or an area that is no larger than a 200-foot cube. Then specify a kind of intelligent creature, such as red dragons, goblins, or vampires. You invest the target with an aura that either attracts or repels the specified creatures for the duration. Choose antipathy or sympathy as the aura's effect.</p><p><b>Antipathy.</b> The enchantment causes creatures of the kind you designated to feel an intense urge to leave the area and avoid the target. When such a creature can see the target or comes within 60 feet of it, the creature must succeed on a Wisdom saving throw or become frightened. The creature remains frightened while it can see the target or is within 60 feet of it. While frightened by the target, the creature must use its movement to move to the nearest safe spot from which it can't see the target. If the creature moves more than 60 feet from the target and can't see it, the creature is no longer frightened, but the creature becomes frightened again if it regains sight of the target or moves within 60 feet of it.</p><p><b>Sympathy.</b> The enchantment causes the specified creatures to feel an intense urge to approach the target while within 60 feet of it or able to see it. When such a creature can see the target or comes within 60 feet of it, the creature must succeed on a Wisdom saving throw or use its movement on each of its turns to enter the area or move within reach of the target. When the creature has done so, it can't willingly move away from the target.</p><p>If the target damages or otherwise harms an affected creature, the affected creature can make a Wisdom saving throw to end the effect, as described below.</p><p><b>Ending the Effect.</b> If an affected creature ends its turn while not within 60 feet of the target or able to see it, the creature makes a Wisdom saving throw. On a successful save, the creature is no longer affected by the target and recognizes the feeling of repugnance or attraction as magical. In addition, a creature affected by the spell is allowed another Wisdom saving throw every 24 hours while the spell persists.</p><p>A creature that successfully saves against this effect is immune to it for 1 minute, after which time it can be affected again.</p>"
},
{
"name": "Arcane Eye",
"classes": [
"wizard"
],
"school": "divination",
"level": 4,
"range": "30 feet",
"duration": "Up to 1 hour",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 1,
"materials": "A bit of bat fur",
"concentration": true,
"ritual": false,
"description": "<p>You create an invisible, magical eye within range that hovers in the for the duration.</p><p>You mentally recieve visual information from the eye, which has normal vision and darkvision out to 30 feet. The eye can look in every direction.</p><p>As an action, you can move the eye up to 30 feet in any direction. There is no limit to how far away from you the eye can move, but it can't enter another plane of existence. A solid barrier blocks the eye's movement, but the eye can pass through an opening as small as 1 inch in diameter.</p>"
},
{
"name": "Bigby's Hand",
"classes": [
"wizard"
],
"school": "evocation",
"level": 5,
"range": "120 feet",
"duration": "Up to 1 minute",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 1,
"materials": "An eggshell and a snakeskin glove",
"concentration": true,
"ritual": false,
"description": "<p>You create a Large hand of shimmering, translucent force in an unoccupied space that you can see within range. The hand lasts for the spell's duration, and it moves at your command, mimicking the movements of your own hand.</p><p>The hand is an object that has AC 20 and hit points equal to your hit point maximum. If it drops to 0 hit points, the spell ends. It has a Strength of 26 (+8) and a Dexterity of 10 (+0). The hand doesn't fill its space.</p><p>When you cast the spell and as a bonus action on your subsequent turns, you can move the hand up to 60 feet and then cause one of the following effects with it.</p><p><b>Clenched Fist</b>. The hand strikes one creature or object within 5 feet of it. Make a melee spell attack for the hand using your game statistics. On a hit, the target takes 4d8 force damage.</p><p><b>Forceful Hand</b>. The hand attempts to push a creature within 5 feet of it in a direction you choose. Make a check with the hand's Strength contested by the Strength (Athletics) check of the target. If the target is Medium or smaller, you have advantage on the check. If you succeed, the hand pushes the target up to 5 feet plus a number of feet equal to five times your spellcasting ability modifier. The hand moves with the target to remain within 5 feet of it.</p><p><b>Grasping Hand.</b> The hand attempts to grapple a Huge or smaller creature within 5 feet of it. You use the hand's Strength score to resolve the grapple. If the target is Medium or smaller, you have advantage on the check. While the hand is grappling the target, you can use a bonus action to have the hand crush it. When you do so, the target takes bludgeoning damage equal to 2d6 + your spellcasting ability modifier.</p><p><b>Interposing Hand.</b> The hand interposes itself between you and a creature you choose until you give the hand a different command. The hand moves to stay between you and the target, providing you with half cover against the target. The target can't move through the hand's space if its Strength score is less than or equal to the hand's Strength score. If its Strength score is higher than the hand's Strength score, the target can move toward you through the hand's space, but that space is difficult terrain for the target.</p>",
"atHigherLevel": "<p>When you cast this spell using a spell slot of 6th level or higher, the damage from the clenched fist option increases by 2d8 and the damage from the grasping hand increases by 2d6 for each slot level above 5th.</p>"
},
{
"name": "Arcane Lock",
"classes": [
"wizard"
],
"school": "abjuration",
"level": 2,
"range": "Touch",
"duration": "Until dispelled",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 3,
"materials": "Gold dust worth at least 25 gp, which the spell consumes",
"concentration": false,
"ritual": false,
"description": "<p>You touch a closed door, window, gate, chest, or other entryway, and it becomes locked for the duration. You and the creatures you designate when you cast this spell can open the object normally. You can also set a password that, when spoken within 5 feet of the object, suppresses this spell for 1 minute. Otherwise, it is impassable until it is broken or the spell is dispelled or suppressed. Casting knock on the object suppresses arcane lock for 10 minutes.</p><p>While affected by this spell, the object is more difficult to break or force open; the DC to break it or pick any locks on it increases by 10.</p>"
},
{
"name": "Mordenkainen's Sword",
"classes": [
"bard",
"wizard"
],
"school": "evocation",
"level": 7,
"range": "60 feet",
"duration": "Up to 1 minute",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 2,
"materials": "A miniature platinum sword with a grip and pommel of copper and zinc, worth 250 gp",
"concentration": true,
"ritual": false,
"description": "<p>You create a sword-shaped plane of force that hovers within range. It lasts for the duration.</p><p>When the sword appears, you make a melee spell attack against a target of your choice within 5 feet of the sword. On a hit, the target takes 3d10 force damage. Until the spell ends, you can use a bonus action on each of your turns to move the sword up to 20 feet to a spot you can see and repeat this attack against the same target or a different one.</p>"
},
{
"name": "Nystul's Magic Aura",
"classes": [
"wizard"
],
"school": "illusion",
"level": 2,
"range": "Touch",
"duration": "24 hours",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 1,
"materials": "A small square of silk",
"concentration": false,
"ritual": false,
"description": "<p>You place an illusion on a creature or an object you touch so that divination spells reveal false information about it. The target can be a willing creature or an object that isn't being carried or worn by another creature.</p><p>When you cast the spell, choose one or both of the following effects. The effect lasts for the duration. If you cast this spell on the same creature or object every day for 30 days, placing the same effect on it each time, the illusion lasts until it is dispelled.</p><p><b>False Aura.</b> You change the way the target appears to spells and magical effects, such as detect magic, that detect magical auras. You can make a nonmagical object appear magical, a magical object appear nonmagical, or change the object's magical aura so that it appears to belong to a specific school of magic that you choose. When you use this effect on an object, you can make the false magic apparent to any creature that handles the item.</p><p><b>Mask.</b> You change the way the target appears to spells and magical effects that detect creature types, such as a paladin's Divine Sense or the trigger of a symbol spell. You choose a creature type and other spells and magical effects treat the target as if it were a creature of that type or of that alignment.</p>"
},
{
"name": "Astral Projection",
"classes": [
"cleric",
"warlock",
"wizard"
],
"school": "necromancy",
"level": 9,
"range": "10 feet",
"duration": "Special",
"casting": "1 hour",
"verbal": true,
"somatic": true,
"material": 3,
"materials": "For each creature you affect with this spell you must provide one jacinth worth at least 1,000 gp and one ornately carved bar of silver worth at least 100gp, all of which the spell consumes",
"concentration": false,
"ritual": false,
"description": "<p>You and up to eight willing creatures within range project your astral bodies into the Astral Plane (the spell fails and the casting is wasted if you are already on that plane). The material body you leave behind is unconscious and in a state of suspended animation; it doesn't need food or air and doesn't age.</p><p>Your astral body resembles your mortal form in almost every way, replicating your game statistics and possessions. The principal difference is the addition of a silvery cord that extends from between your shoulder blades and trails behind you, fading to invisibility after 1 foot. This cord is your tether to your material body. As long as the tether remains intact, you can find your way home. If the cord is cut - something that can happen only when an effect specifically states that it does - your soul and body are separated, killing you instantly.</p><p>Your astral form can freely travel through the Astral Plane and can pass through portals there leading to any other plane. If you enter a new plane or return to the plane you were on when casting this spell, your body and possessions are transported along the silver cord, allowing you to re-enter your body as you enter the new plane. Your astral form is a separate incarnation. Any damage or other effects that apply to it have no effect on your physical body, nor do they persist when you return to it.</p><p>The spell ends for you and your companions when you use your action to dismiss it. When the spell ends, the affected creature returns to its physical body, and it awakens.</p><p>The spell might also end early for you or one of your companions. A successful <i>dispel magic</i> spell used against an astral or physical body ends the spell for that creature. If a creature's original body or its astral form drops to 0 hit points, the spell ends for that creature. If the spell ends and the silver cord is intact, the cord pulls the creature's astral form back to its body, ending its state of suspended animation.</p><p>If you are returned to your body prematurely, your companions remain in their astral forms and must find their own way back to their bodies, usually by dropping to 0 hit points.</p>"
},
{
"name": "Augury",
"classes": [
"cleric"
],
"school": "divination",
"level": 2,
"range": "Self",
"duration": "Instantaneous",
"casting": "1 minute",
"verbal": true,
"somatic": true,
"material": 2,
"materials": "Specially marked sticks, bones, or similar tokens worth at least 25 gp",
"concentration": false,
"ritual": true,
"description": "<p>By casting gem-inlaid sticks, rolling dragon bones, laying out ornate cards, or employing some other divining tool, you receive an omen from an otherworldly entity about the results of a specific course of action that you plan to take within the next 30 minutes. The GM chooses from the following possible omens:</p><ul><li><i>Weal</i>, for good results</li><li><i>Woe</i>, for bad results</li><li><i>Weal and woe</i>, for both good and bad results</li><li><i>Nothing</i>, for results that aren't especially good or bad</li></ul><p>The spell doesn't take into account any possible circumstances that might change the outcome, such as the casting of additional spells or the loss or gain of a companion.</p><p>If you cast the spell two or more times before completing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get a random reading. The GM makes this roll in secret.</p>"
},
{
"name": "Awaken",
"classes": [
"bard",
"druid"
],
"school": "transmutation",
"level": 5,
"range": "Touch",
"duration": "Instantaneous",
"casting": "8 hours",
"verbal": true,
"somatic": true,
"material": 3,
"materials": "An agate worth at least 1000 gp, which the spell consumes",
"concentration": false,
"ritual": false,
"description": "<p>After spending the casting time tracing magical pathways within a precious gemstone, you touch a Huge or smaller beast or plant. The target must have either no Intelligence score or an Intelligence of 3 or less. The target gains an Intelligence of 10. The target also gains the ability to speak one language you know. If the target is a plant, it gains the ability to move its limbs, roots, vines, creepers, and so forth, and it gains senses similar to a human's. Your DM chooses statistics appropriate for the awakened plant, such as the statistics for the awakened shrub or the awakened tree.</p><p>The awakened beast or plant is charmed by you for 30 days or until you or your companions do anything harmful to it. When the charmed condition ends, the awakened creature chooses whether to remain friendly to you, based on how you treated it while it was charmed.</p>"
},
{
"name": "Bane",
"classes": [
"bard",
"cleric"
],
"school": "enchantment",
"level": 1,
"range": "30 feet",
"duration": "Up to 1 minute",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 1,
"materials": "A drop of blood",
"concentration": true,
"ritual": false,
"description": "<p>Up to three creatures of your choice that you can see within range must make Charisma saving throws. Whenever a target that fails this saving throw makes an attack roll or a saving throw before the spell ends, the target must roll a d4 and subtract the number rolled from the attack roll or saving throw.</p>",
"atHigherLevel": "<p>When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.</p>"
},
{
"name": "Banishment",
"classes": [
"cleric",
"paladin",
"sorcerer",
"warlock",
"wizard"
],
"school": "abjuration",
"level": 4,
"range": "60 feet",
"duration": "Up to 1 minute",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 1,
"materials": "An item distasteful to the target",
"concentration": true,
"ritual": false,
"description": "<p>You attempt to send one creature that you can see within range to another plane of existence. The target must succeed on a Charisma saving throw or be banished.</p><p>If the target is native to the plane of existance you're on, you banish the target to a harmless demiplane. While there, the target is incapacitated. The target remains there until the spell ends, at which point the target reappears in the space it left or in the nearest unoccupied space if that space is occupied.</p><p>If the target is native to a different plane of existance than the one you're on, the target is banished with a faint popping noise, returning to its home plane. If the spell ends before 1 minute has passed, the target reappears in the space it left or in the nearest unoccupied space if that space is occupied. Otherwise, the target doesn't return.</p>",
"atHigherLevel": "<p>When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th.</p>"
},
{
"name": "Barkskin",
"classes": [
"druid",
"ranger"
],
"school": "transmutation",
"level": 2,
"range": "Touch",
"duration": "Up to 1 hour",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 1,
"materials": "A handful of oak bark",
"concentration": true,
"ritual": false,
"description": "<p>You touch a willing creature. Until the spell ends, the target's skin has a rough, bark-like appearance, and the target's AC can't be less than 16, regardless of what kind of armor it is wearing.</p>"
},
{
"name": "Beacon of Hope",
"classes": [
"cleric"
],
"school": "abjuration",
"level": 3,
"range": "30 feet",
"duration": "Up to 1 minute",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 0,
"concentration": true,
"ritual": false,
"description": "<p>This spell bestows hope and vitality. Choose any number of creatures within range. For the duration, each target has advantage on Wisdom saving throws and death saving throws, and regains the maximum number of hit points possible from any healing.</p>"
},
{
"name": "Bestow Curse",
"classes": [
"bard",
"cleric",
"wizard"
],
"school": "necromancy",
"level": 3,
"range": "Touch",
"duration": "Up to 1 minute",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 0,
"concentration": true,
"ritual": false,
"description": "<p>You touch a creature, and that creature must succeed on a Wisdom saving throw or become cursed for the duration of the spell. When you cast this spell, choose the nature of the curse from the following options:</p><ul><li>Choose one ability score. While cursed, the target has disadvantage on ability checks and saving throws made with that ability score.</li><li>While cursed, the target has disadvantage on attack rolls against you.</li><li>While cursed, the target must make a Wisdom saving throw at the start of each of its turns. If it fails, it wastes its action that turn doing nothing.</li><li>While the target is cursed, your attacks and spells deal an extra 1d8 necrotic damage to the target.</li></ul><p>A <i>remove curse</i> spell ends this effect. At the GM's option, you may choose an alternative curse effect, but it should be no more powerful than those described above. The GM has final say on such a curse's effect.</p>",
"atHigherLevel": "<p>If you cast this spell using a spell slot of 4th level or higher, the duration is concentration, up to 10 minutes. If you use a spell slot of 5th level or higher, the duration is 8 hours. If you use a spell slot of 7th level or higher, the duration is 24 hours. If you use a 9th level spell slot, the spell lasts until it is dispelled. Using a spell slot of 5th level or higher grants a duration that doesn't require concentration.</p>"
},
{
"name": "Evard's Black Tentacles",
"classes": [
"wizard"
],
"school": "conjuration",
"level": 4,
"range": "90 feet",
"duration": "Up to 1 minute",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 1,
"materials": "A piece of tentacle from a giant octopus or a giant squid",
"concentration": true,
"ritual": false,
"description": "<p>Squirming, ebony tentacles fill a 20-foot square on ground that you can see within range. For the duration, these tentacles turn the ground in the area into difficult terrain.</p><p>When a creature enters the affected area for the first time on a turn or starts its turn there, the creature must succeed on a Dexterity saving throw or take 3d6 bludgeoning damage and be restrained by the tentacles until the spell ends. A creature that starts its turn in the area and is already restrained by the tentacles takes 3d6 bludgeoning damage.</p><p>A creature restrained by the tentacles can use its action to make a Strength or Dexterity check (its choice) against your spell save DC. On a success, it frees itself.</p>",
"aoe": {
"type": "cube",
"edge": "20"
}
},
{
"name": "Blade Barrier",
"classes": [
"cleric"
],
"school": "evocation",
"level": 6,
"range": "90 feet",
"duration": "Up to 10 minutes",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 0,
"concentration": true,
"ritual": false,
"description": "<p>You create a vertical wall of whirling, razor-sharp blades made of magical energy. The wall appears within range and lasts for the duration. You can make a straight wall up to 100 feet long, 20 feet high, and 5 feet thick, or a ringed wall up to 60 feet in diameter, 20 feet high, and 5 feet thick. The wall provides three-quarters cover to creatures behind it, and its space is difficult terrain.</p><p>When a creature enters the wall's area for the first time on a turn or starts its turn there, the creature must make a Dexterity saving throw. On a failed save, the creature takes 6d10 slashing damage. On a successful save, the creature takes half as much damage.</p>"
},
{
"name": "Bless",
"classes": [
"cleric",
"paladin"
],
"school": "enchantment",
"level": 1,
"range": "30 feet",
"duration": "Up to 1 minute",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 1,
"materials": "A sprinkling of holy water",
"concentration": true,
"ritual": false,
"description": "<p>You bless up to three creatures of your choice within range. Whenever a target makes an attack roll or a saving throw before the spell ends, the target can roll a d4 and add the number rolled to the attack roll or saving throw.</p>"
},
{
"name": "Blight",
"classes": [
"druid",
"sorcerer",
"warlock",
"wizard"
],
"school": "necromancy",
"level": 4,
"range": "30 feet",
"duration": "Instantaneous",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 0,
"concentration": false,
"ritual": false,
"description": "<p>Necromantic energy washes over a creature of your choice that you can see within range, draining moisture and vitality from it. The target must make a Constitution saving throw. The target takes 8d8 necrotic damage on a failed save, or half as much damage on a successful one. The spell has no effect on undead or constructs.</p><p>If you target a plant creature or a magical plant, it makes the saving throw with disadvantage, and the spell deals maximum damage to it.</p><p>If you target a nonmagical plant that isn't a creature, such as a tree or shrub, it doesn't make a saving throw; it simply withers and dies.</p>",
"atHigherLevel": "<p>When you cast this spell using a spell slot of 5th level of higher, the damage increases by 1d8 for each slot level above 4th.</p>"
},
{
"name": "Blindness/Deafness",
"classes": [
"bard",
"cleric",
"sorcerer",
"wizard"
],
"school": "necromancy",
"level": 2,
"range": "30 feet",
"duration": "1 minute",
"casting": "1 action",
"verbal": true,
"somatic": false,
"material": 0,
"concentration": false,
"ritual": false,
"description": "<p>You can blind or deafen a foe. Choose one creature that you can see within range to make a Constitution saving throw. If it fails, the target is either blinded or deafened (your choice) for the duration. At the end of each of its turns, the target can make a Constitution saving throw. On a success, the spell ends.</p>",
"atHigherLevel": "<p>When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.</p>"
},
{
"name": "Blink",
"classes": [
"sorcerer",
"wizard"
],
"school": "transmutation",
"level": 3,
"range": "Self",
"duration": "1 minute",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 0,
"concentration": false,
"ritual": false,
"description": "<p>Roll a d20 at the end of each of your turns for the duration of the spell. On a roll of 11 or higher, you vanish from your current plane of existence and appear in the Ethereal Plane (the spell fails and the casting is wasted if you were already on that plane). At the start of your next turn, and when the spell ends if you are on the Ethereal Plane, you return to an unoccupied space of your choice that you can see within 10 feet of the space you vanished from. If no unoccupied space is available within that range, you appear in the nearest unoccupied space (chosen at random if more than one space is equally near). You can dismiss this spell as an action.</p><p>While on the Ethereal Plane, you can see and hear the plane you originated from, which is cast in shades of gray, and you can't see anything there more than 60 feet away. You can only affect and be affected by other creatures on the Ethereal Plane. Creatures that aren't there can't perceive you or interact with you, unless they have the ability to do so.</p>"
},
{
"name": "Blur",
"classes": [
"sorcerer",
"wizard"
],
"school": "illusion",
"level": 2,
"range": "Self",
"duration": "Up to 1 minute",
"casting": "1 action",
"verbal": true,
"somatic": false,
"material": 0,
"concentration": true,
"ritual": false,
"description": "<p>Your body becomes blurred, shifting and wavering to all who can see you. For the duration, any creature has disadvantage on attack rolls against you. An attacker is immune to this effect if it doesn't rely on sight, as with blindsight, or can see through illusions, as with truesight.</p>"
},
{
"name": "Branding Smite",
"classes": [
"paladin"
],
"school": "evocation",
"level": 2,
"range": "Self",
"duration": "Up to 1 minute",
"casting": "1 action",
"verbal": true,
"somatic": false,
"material": 0,
"concentration": true,
"ritual": false,
"description": "<p>The next time you hit a creature with a weapon attack before this spell ends, the weapon gleams with astral radiance as you strike. The attack deals an extra 2d6 radiant damage to the target, which becomes visible if it's invisible, and the target sheds dim light in a 5-foot radius and can't become invisible until the spell ends.</p>",
"atHigherLevel": "<p>When you cast this spell using a spell slot of 3rd level or higher, the extra damage increases by 1d6 for each slot level above 2nd.</p>"
},
{
"name": "Burning Hands",
"classes": [
"sorcerer",
"wizard"
],
"school": "evocation",
"level": 1,
"range": "Self (15-foot cone)",
"duration": "Instantaneous",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 0,
"concentration": false,
"ritual": false,
"description": "<p>As you hold your hands with thumbs touching and fingers spread, a thin sheet of flames shoots forth from your outstretched fingertips. Each creature in a 15-foot cone must make a Dexterity saving throw. A creature takes 3d6 fire damage on a failed save, or half as much damage on a successful one.</p><p>The fire ignites any flammable objects in the area that aren't being worn or carried.</p>",
"atHigherLevel": "<p>When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.</p>",
"aoe": {
"type": "cone",
"length": "15"
}
},
{
"name": "Call Lightning",
"classes": [
"druid"
],
"school": "conjuration",
"level": 3,
"range": "120 feet",
"duration": "Up to 10 minutes",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 0,
"concentration": true,
"ritual": false,
"description": "<p>A storm cloud appears in the shape of a cylinder that is 10 feet tall with a 60-foot radius, centered on a point you can see 100 feet directly above you. The spell fails if you can't see a point in the air where the storm cloud could appear (for example, if you are in a room that can't accommodate the cloud).</p><p>When you cast the spell, choose a point you can see within range. A bolt of lightning flashes down from the cloud to that point. Each creature within 5 feet of that point must make a Dexterity saving throw. A creature takes 3d10 lightning damage on a failed save, or half as much damage on a successful one. On each of your turns until the spell ends, you can use your action to call down lightning in this way again, targeting the same point or a different one.</p><p>If you are outdoors in stormy conditions when you cast this spell, the spell gives you control over the existing storm instead of creating a new one. Under such conditions, the spell's damage increases by 1d10.</p>",
"atHigherLevel": "<p>When you cast this spell using a spell slot of 4th or higher level, the damage increases by 1d10 for each slot level above 3rd.</p>"
},
{
"name": "Calm Emotions",
"classes": [
"bard",
"cleric"
],
"school": "enchantment",
"level": 2,
"range": "60 feet",
"duration": "Up to 1 minute",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 0,
"concentration": true,
"ritual": false,
"description": "<p>You attempt to suppress strong emotions in a group of people. Each humanoid in a 20-foot-radius sphere centered on a point you choose within range must make a Charisma saving throw; a creature can choose to fail this saving throw if it wishes. If a creature fails its saving throw, choose one of the following two effects. You can suppress any effect causing a target to be charmed or frightened. When this spell ends, any suppressed effect resumes, provided that its duration has not expired in the meantime.</p><p>Alternatively, you can make a target indifferent about creatures of your choice that it is hostile toward. This indifference ends if the target is attacked or harmed by a spell or if it witnesses any of its friends being harmed. When the spell ends, the creature becomes hostile again, unless the DM rules otherwise.</p>",
"aoe": {
"type": "sphere",
"radius": "20"
}
},
{
"name": "Chain Lightning",
"classes": [
"sorcerer",
"wizard"
],
"school": "evocation",
"level": 6,
"range": "150 feet",
"duration": "Instantaneous",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 1,
"materials": "A bit of fur; a piece of amber, glass or a crystal rod; and three silver pins",
"concentration": false,
"ritual": false,
"description": "<p>You create a bolt of lightning that arcs toward a target of your choice that you can see within range. Three bolts then leap from that target to as many as three other targets, each of which must be within 30 feet of the first target. A target can be a creature or an object and can be targeted by only one of the bolts.</p><p>A target must make a Dexterity saving throw. The target takes 10d8 lightning damage on a failed save, or half as much damage on a successful one.</p>",
"atHigherLevel": "<p>When you cast this spell using a spell slot of 7th level or higher, one additional bolt leaps from the first target to another target for each slot level above 6th.</p>"
},
{
"name": "Charm Person",
"classes": [
"bard",
"cleric",
"druid",
"sorcerer",
"warlock",
"wizard"
],
"school": "enchantment",
"level": 1,
"range": "30 feet",
"duration": "1 hour",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 0,
"concentration": false,
"ritual": false,
"description": "<p>You attempt to charm a humanoid you can see within range. It must make a Wisdom saving throw, and does so with advantage if you or your companions are fighting it. If it fails the saving throw, it is charmed by you until the spell ends or until you or your companions do anything harmful to it. The charmed creature regards you as a friendly acquaintance. When the spell ends, the creature knows it was charmed by you.</p>",
"atHigherLevel": "<p>When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.</p>"
},
{
"name": "Chill Touch",
"classes": [
"sorcerer",
"warlock",
"wizard"
],
"school": "necromancy",
"level": 0,
"range": "120 feet",
"duration": "1 round",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 0,
"concentration": false,
"ritual": false,
"description": "<p>You create a ghostly, skeletal hand in the space of a creature within range. Make a ranged spell attack against the creature to assail it with the chill of the grave. On a hit, the target takes 1d8 necrotic damage, and it can't regain hit points until the start of your next turn. Until then, the hand clings to the target.</p><p>If you hit an undead target, it also has disadvantage on attack rolls against you until the end of your next turn.</p><p>This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).</p>"
},
{
"name": "Circle of Death",
"classes": [
"sorcerer",
"warlock",
"wizard"
],
"school": "necromancy",
"level": 6,
"range": "150 feet",
"duration": "Instantaneous",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 2,
"materials": "The powder of a crushed black pearl worth at least 500 gp",
"concentration": false,
"ritual": false,
"description": "<p>A sphere of negative energy ripples out in a 60-foot-radius sphere from a point within range. Each creature in that area must make a Constitution saving throw. A target takes 8d6 necrotic damage on a failed save, or half as much damage on a successful one.</p>",
"atHigherLevel": "<p>When you cast this spell using a spell slot of 7th level or higher, the damage increases by 2d6 for each slot level above 6th.</p>",
"aoe": {
"type": "sphere",
"radius": "60"
}
},
{
"name": "Clairvoyance",
"classes": [
"bard",
"cleric",
"sorcerer",
"wizard"
],
"school": "divination",
"level": 3,
"range": "1 mile",
"duration": "Up to 10 minutes",
"casting": "10 minutes",
"verbal": true,
"somatic": true,
"material": 2,
"materials": "A focus worth at least 100gp, either a jeweled horn for hearing or a glass eye for seeing",
"concentration": true,
"ritual": false,
"description": "<p>You create an invisible sensor within range in a location familiar to you (a place you have visited or seen before) or in an obvious location that is unfamiliar to you (such as behind a door, around a corner, or in a grove of trees). The sensor remains in place for the duration, and it can't be attacked or otherwise interacted with.</p><p>When you cast the spell, you choose seeing or hearing. You can use the chosen sense through the sensor as if you were in its space. As your action, you can switch between seeing and hearing.</p><p>A creature that can see the sensor (such as a creature benefiting from <i>see invisibility</i> or truesight) sees a luminous, intangible orb about the size of your fist.</p>"
},
{
"name": "Clone",
"classes": [
"wizard"
],
"school": "necromancy",
"level": 8,
"range": "Touch",
"duration": "Instantaneous",
"casting": "1 hour",
"verbal": true,
"somatic": true,
"material": 3,
"materials": "A diamond worth at least 1,000 gp and at least 1 cubic inch of flesh of the creature that is to be cloned, which the spell consumes, and a vessel worth at least 2,000 gp that has a sealable lid and is large enough to hold a medium creature, such as a large urn, coffin, mud-filled cyst in the ground, or crystal container filled with salt water",
"concentration": false,
"ritual": false,
"description": "<p>This spell grows an inert duplicate of a living creature as a safeguard against death. This clone forms inside a sealed vessel and grows to full size and maturity after 120 days; you can also choose to have the clone be a younger version of th esame creature. It remains inert and endures indefinitely, as long as its vessel remains undisturbed.</p><p>At any time after the clone matures, if the original creature dies, its soul tranfers to the clone, provided that the soul is free and willing to return. The clone is physically identical to the original and has the same personality, memories, and abilities, but none of the original's equipment. The original creature's physical remains, if they still exist, become inert and can't thereafter be restored to life, since the creature's soul is elsewhere.</p>"
},
{
"name": "Cloudkill",
"classes": [
"sorcerer",
"wizard"
],
"school": "conjuration",
"level": 5,
"range": "120 feet",
"duration": "Up to 10 minutes",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 0,
"concentration": true,
"ritual": false,
"description": "<p>You create a 20-foot-radius sphere of poisonous, yellow-green fog centered on a point you choose within range. The fog spreads around corners. It lasts for the duration or until strong wind disperses the fog, ending the spell. Its area is heavily obscured.</p><p>When a creature enters the spell's area for the first time on a turn or starts its turn there, that creature must make a Constitution saving throw. The creature takes 5d8 poison damage on a failed save, or half as much damage on a successful one. Creatures are affected even if they hold their breath or don't need to breathe.</p><p>The fog moves 10 feet away from you at the start of each of your turns, rolling along the surface of the ground. The vapors, being heavier than air, sink to the lowest level of the land, even pouring down openings.</p>",
"atHigherLevel": "<p>When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d8 for each slot level above 5th.</p>",
"aoe": {
"type": "sphere",
"radius": "20"
}
},
{
"name": "Color Spray",
"classes": [
"sorcerer",
"wizard"
],
"school": "illusion",
"level": 1,
"range": "Self (15-foot cone)",
"duration": "1 round",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 1,
"materials": "A pinch of powder or sand that is colored red, yellow, and blue",
"concentration": false,
"ritual": false,
"description": "<p>A dazzling array of flashing, colored light springs from your hand. Roll 6d10; the total is how many hit points of creatures this spell can effect. Creatures in a 15-foot cone originating from you are affected in ascending order of their current hit points (ignoring unconscious creatures and creatures that can't see).</p><p>Starting with the creature that has the lowest current hit points, each creature affected by this spell is blinded until the spell ends. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected.</p>",
"atHigherLevel": "<p>When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d10 for each slot level above 1st.</p>",
"aoe": {
"type": "cone",
"length": "15"
}
},
{
"name": "Command",
"classes": [
"cleric",
"paladin"
],
"school": "enchantment",
"level": 1,
"range": "60 feet",
"duration": "1 round",
"casting": "1 action",
"verbal": true,
"somatic": false,
"material": 0,
"concentration": false,
"ritual": false,
"description": "<p>You speak a one-word command to a creature you can see within range. The target must succeed on a Wisdom saving throw or follow the command on its next turn. The spell has no effect if the target is undead, if it doesn't understand your language, or if your command is directly harmful to it.</p><p>Some typical commands and their effects follow. You might issue a command other than one described here. If you do so, the GM determines how the target behaves. If the target can't follow your command, the spell ends.</p><p><b>Approach.</b> The target moves toward you by the shortest and most direct route, ending its turn if it moves within 5 feet of you.</p><p><b>Drop.</b> The target drops whatever it is holding and then ends its turn.</p><p><b>Flee.</b> The target spends its turn moving away from you by the fastest available means.</p><p><b>Grovel.</b> The target falls prone and then ends its turn.</p><p><b>Halt.</b> The target doesn't move and takes no actions. A flying creature stays aloft, provided that it is able to do so. If it must move to stay aloft, it flies the minimum distance needed to remain in the air.</p>",
"atHigherLevel": "<p>When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.</p>"
},
{
"name": "Commune",
"classes": [
"cleric"
],
"school": "divination",
"level": 5,
"range": "Self",
"duration": "1 minute",
"casting": "1 minute",
"verbal": true,
"somatic": true,
"material": 1,
"materials": "Incense and a vial of holy or unholy water",
"concentration": false,
"ritual": true,
"description": "<p>You contact your deity or a divine proxy and ask up to three questions that can be answered with a yes or no. You must ask your questions before the spell ends. You receive a correct answer for each question.</p><p>Divine beings aren't necessarily omniscient, so you might receive "unclear" as an answer if a question pertains to information that lies beyond the deity's knowledge. In a case where a one-word answer could be misleading or contrary to the deity's interests, the DM might offer a short phrase as an answer instead.</p><p>If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get no answer. The DM makes this roll in secret.</p>"
},
{
"name": "Commune with Nature",
"classes": [
"druid",
"ranger"
],
"school": "divination",
"level": 5,
"range": "Self",
"duration": "Instantaneous",
"casting": "1 minute",
"verbal": true,
"somatic": true,
"material": 0,
"concentration": false,
"ritual": true,
"description": "<p>You briefly become one with nature and gain knowledge of the surrounding territory. In the outdoors, the spell gives you knowledge of the land within 3 miles of you. In caves and other natural underground settings, the radius is limited to 300 feet. The spell doesn't function where nature has been replaced by construction, such as in dungeons and towns.</p><p>You instantly gain knowledge of up to three facts of your choice about any of the following subjects as they relate to the area:</p><ul><li>terrain and bodies of water</li><li>prevalent plants, minerals, animals, or peoples</li><li>powerful celestials, fey, fiends, elementals, or undead</li><li>influence from other planes of existence</li><li>buildings</li></ul><p>For example, you could determine the location of powerful undead in the area, the location of major sources of safe drinking water, and the location of any nearby towns.</p>"
},
{
"name": "Comprehend Languages",
"classes": [
"bard",
"sorcerer",
"warlock",
"wizard"
],
"school": "divination",
"level": 1,
"range": "Self",
"duration": "1 hour",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 1,
"materials": "A pinch of soot and salt",
"concentration": false,
"ritual": true,
"description": "<p>For the duration, you understand the literal meaning of any spoken language that you hear. You also understand any written language that you see, but you must be touching the surface on which the words are written. It takes about 1 minute to read one page of text.</p><p>This spell doesn't decode secret messages in a text or a glyph, such as an arcane sigil, that isn't part of a written language.</p>"
},
{
"name": "Compulsion",
"classes": [
"bard"
],
"school": "enchantment",
"level": 4,
"range": "30 feet",
"duration": "Up to 1 minute",
"casting": "1 action",
"verbal": true,
"somatic": true,
"material": 0,
"concentration": true,
"ritual": false,
"description": "<p>Creatures of your choice that you can see within range and that can hear you must make a Wisdom saving throw. A target automatically succeeds on this saving throw if it can't be charmed. On a failed save, a target is affected by this spell. Until the spell ends, you can use a bonus action on each of your turns to designate a direction that is horizontal to you. Each affected target must use as much of its movement as possible to move in that direction on its next turn. It can take any action before it moves. After moving in this way, it can make another Wisdom save to try to end the effect.</p><p>A target isn't compelled to move into an obviously deadly hazard, such as a fire or a pit, but it will provoke opportunity attacks to move in the designated direction.</p>"
},
{
"name": "Cone of Cold",
"classes": [
"sorcerer",
"wizard"
],
"school": "evocation",
"level": 5,