forked from 5e-bits/5e-database
-
Notifications
You must be signed in to change notification settings - Fork 3
/
subclasses.json
1092 lines (1081 loc) · 31.2 KB
/
subclasses.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
[{
"index": 1,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/1",
"name": "Barbarian"
},
"name": "Berserker",
"subclass_flavor": "Primal Path",
"desc": ["For some barbarians, rage is a means to an end--that end being violence. The Path of the Berserker is a path of untrammeled fury, slick with blood. As you enter the berserker's rage, you thrill in the chaos of battle, heedless of your own health or well-being."],
"features": [
{
"name": "Primal Path",
"url": "http://www.dnd5eapi.co/api/features/5"
},
{
"name": "Frenzy",
"url": "http://www.dnd5eapi.co/api/features/6"
}
],
"url": "http://www.dnd5eapi.co/api/subclasses/1"
}, {
"index": 2,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/2",
"name": "Bard"
},
"name": "Lore",
"subclass_flavor": "Bard College",
"desc": ["Bards of the College of Lore know something about most things, collecting bits of knowledge from sources as diverse as scholarly tomes and peasant tales. Whether singing folk ballads in taverns or elaborate compositions in royal courts, these bards use their gifts to hold audiences spellbound. When the applause dies down, the audience members might find themselves questioning everything they held to be true, from their faith in the priesthood of the local temple to their loyalty to the king. The loyalty of these bards lies in the pursuit of beauty and truth, not in fealty to a monarch or following the tenets of a deity. A noble who keeps such a bard as a herald or advisor knows that the bard would rather be honest than politic. The college's members gather in libraries and sometimes in actual colleges, complete with classrooms and dormitories, to share their lore with one another. They also meet at festivals or affairs of state, where they can expose corruption, unravel lies, and poke fun at self-important figures of authority."],
"features": [
],
"url": "http://www.dnd5eapi.co/api/subclasses/2"
}, {
"index": 3,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/3",
"name": "Cleric"
},
"name": "Life",
"subclass_flavor": "Divine Domain",
"desc": ["The Life domain focuses on the vibrant positive energy--one of the fundamental forces of the universe--that sustains all life. The gods of life promote vitality and health through healing the sick and wounded, caring for those in need, and driving away the forces of death and undeath. Almost any non-evil deity can claim influence over this domain, particularly agricultural deities, sun gods, gods of healing or endurance, and gods of home and community."],
"features": [
],
"spells": [{
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/cleric/level/1",
"type": "level"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/28",
"name": "Bless"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/cleric/level/1",
"type": "level"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/66",
"name": "Cure Wounds"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/cleric/level/3",
"type": "level"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/167",
"name": "Lesser Restoration"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/cleric/level/3",
"type": "level"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/265",
"name": "Spiritual Weapon"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/cleric/level/5",
"type": "level"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/24",
"name": "Beacon of Hope"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/cleric/level/5",
"type": "level"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/236",
"name": "Revivify"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/cleric/level/7",
"type": "level"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/71",
"name": "Death Ward"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/cleric/level/9",
"type": "level"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/184",
"name": "Mass Cure Wounds"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/cleric/level/9",
"type": "level"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/226",
"name": "Raise Dead"
}
}],
"url": "http://www.dnd5eapi.co/api/subclasses/3"
}, {
"index": 4,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/4",
"name": "Druid"
},
"name": "Land",
"subclass_flavor": "Druid Circle",
"desc": ["The Circle of the Land is made up of mystics and sages who safeguard ancient knowledge and rites through a vast oral tradition. These druids meet within sacred circles of trees or standing stones to whisper primal secrets in Druidic. The circle's wisest members preside as the chief priests of communities that hold to the Old Faith and serve as advisors to the rulers of those folk. As a member of this circle, your magic is influenced by the land where you were initiated into the circle's mysterious rites."],
"features": [
],
"spells": [{
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/3",
"type": "level"
}, {
"name": "Circle of the Land: Arctic",
"url": "http://www.dnd5eapi.co/api/features/105"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/151",
"name": "Hold Person"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/3",
"type": "level"
}, {
"name": "Circle of the Land: Arctic",
"url": "http://www.dnd5eapi.co/api/features/105"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/263",
"name": "Spike Growth"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/5",
"type": "level"
}, {
"name": "Circle of the Land: Arctic",
"url": "http://www.dnd5eapi.co/api/features/105"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/257",
"name": "Sleet Storm"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/5",
"type": "level"
}, {
"name": "Circle of the Land: Arctic",
"url": "http://www.dnd5eapi.co/api/features/105"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/258",
"name": "Slow"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/7",
"type": "level"
}, {
"name": "Circle of the Land: Arctic",
"url": "http://www.dnd5eapi.co/api/features/105"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/123",
"name": "Freedom of Movement"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/7",
"type": "level"
}, {
"name": "Circle of the Land: Arctic",
"url": "http://www.dnd5eapi.co/api/features/105"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/152",
"name": "Holy Aura"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/9",
"type": "level"
}, {
"name": "Circle of the Land: Arctic",
"url": "http://www.dnd5eapi.co/api/features/105"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/45",
"name": "Commune"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/9",
"type": "level"
}, {
"name": "Circle of the Land: Arctic",
"url": "http://www.dnd5eapi.co/api/features/105"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/47",
"name": "Comprehend Languages"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/3",
"type": "level"
}, {
"name": "Circle of the Land: Coast",
"url": "http://www.dnd5eapi.co/api/features/106"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/196",
"name": "Mirror Image"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/3",
"type": "level"
}, {
"name": "Circle of the Land: Coast",
"url": "http://www.dnd5eapi.co/api/features/106"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/198",
"name": "Misty Step"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/5",
"type": "level"
}, {
"name": "Circle of the Land: Coast",
"url": "http://www.dnd5eapi.co/api/features/106"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/297",
"name": "Water Breathing"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/5",
"type": "level"
}, {
"name": "Circle of the Land: Coast",
"url": "http://www.dnd5eapi.co/api/features/106"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/298",
"name": "Water Walk"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/7",
"type": "level"
}, {
"name": "Circle of the Land: Coast",
"url": "http://www.dnd5eapi.co/api/features/106"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/60",
"name": "Control Water"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/7",
"type": "level"
}, {
"name": "Circle of the Land: Coast",
"url": "http://www.dnd5eapi.co/api/features/106"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/123",
"name": "Freedom of Movement"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/9",
"type": "level"
}, {
"name": "Circle of the Land: Coast",
"url": "http://www.dnd5eapi.co/api/features/106"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/52",
"name": "Conjure Elemental"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/9",
"type": "level"
}, {
"name": "Circle of the Land: Coast",
"url": "http://www.dnd5eapi.co/api/features/106"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/241",
"name": "Scrying"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/3",
"type": "level"
}, {
"name": "Circle of the Land: Desert",
"url": "http://www.dnd5eapi.co/api/features/107"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/32",
"name": "Blur"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/3",
"type": "level"
}, {
"name": "Circle of the Land: Desert",
"url": "http://www.dnd5eapi.co/api/features/107"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/253",
"name": "Silence"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/5",
"type": "level"
}, {
"name": "Circle of the Land: Desert",
"url": "http://www.dnd5eapi.co/api/features/107"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/62",
"name": "Create Food and Water"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/5",
"type": "level"
}, {
"name": "Circle of the Land: Desert",
"url": "http://www.dnd5eapi.co/api/features/107"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/222",
"name": "Protection From Energy"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/7",
"type": "level"
}, {
"name": "Circle of the Land: Desert",
"url": "http://www.dnd5eapi.co/api/features/107"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/29",
"name": "Blight"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/7",
"type": "level"
}, {
"name": "Circle of the Land: Desert",
"url": "http://www.dnd5eapi.co/api/features/107"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/141",
"name": "Hallucinatory Terrain"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/9",
"type": "level"
}, {
"name": "Circle of the Land: Desert",
"url": "http://www.dnd5eapi.co/api/features/107"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/160",
"name": "Insect Plague"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/9",
"type": "level"
}, {
"name": "Circle of the Land: Desert",
"url": "http://www.dnd5eapi.co/api/features/107"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/294",
"name": "Wall of Stone"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/3",
"type": "level"
}, {
"name": "Circle of the Land: Forest",
"url": "http://www.dnd5eapi.co/api/features/108"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/23",
"name": "Barkskin"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/3",
"type": "level"
}, {
"name": "Circle of the Land: Forest",
"url": "http://www.dnd5eapi.co/api/features/108"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/262",
"name": "Spider Climb"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/5",
"type": "level"
}, {
"name": "Circle of the Land: Forest",
"url": "http://www.dnd5eapi.co/api/features/108"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/34",
"name": "Call Lightning"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/5",
"type": "level"
}, {
"name": "Circle of the Land: Forest",
"url": "http://www.dnd5eapi.co/api/features/108"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/210",
"name": "Plant Growth"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/7",
"type": "level"
}, {
"name": "Circle of the Land: Forest",
"url": "http://www.dnd5eapi.co/api/features/108"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/83",
"name": "Divination"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/7",
"type": "level"
}, {
"name": "Circle of the Land: Forest",
"url": "http://www.dnd5eapi.co/api/features/108"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/123",
"name": "Freedom of Movement"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/9",
"type": "level"
}, {
"name": "Circle of the Land: Forest",
"url": "http://www.dnd5eapi.co/api/features/108"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/46",
"name": "Commune With Nature"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/9",
"type": "level"
}, {
"name": "Circle of the Land: Forest",
"url": "http://www.dnd5eapi.co/api/features/108"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/284",
"name": "Tree Stride"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/3",
"type": "level"
}, {
"name": "Circle of the Land: Grassland",
"url": "http://www.dnd5eapi.co/api/features/109"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/160",
"name": "Invisibility"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/3",
"type": "level"
}, {
"name": "Circle of the Land: Grassland",
"url": "http://www.dnd5eapi.co/api/features/109"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/203",
"name": "Pass Without Trace"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/5",
"type": "level"
}, {
"name": "Circle of the Land: Grassland",
"url": "http://www.dnd5eapi.co/api/features/109"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/70",
"name": "Daylight"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/5",
"type": "level"
}, {
"name": "Circle of the Land: Grassland",
"url": "http://www.dnd5eapi.co/api/features/109"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/143",
"name": "Haste"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/7",
"type": "level"
}, {
"name": "Circle of the Land: Grassland",
"url": "http://www.dnd5eapi.co/api/features/109"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/83",
"name": "Divination"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/7",
"type": "level"
}, {
"name": "Circle of the Land: Grassland",
"url": "http://www.dnd5eapi.co/api/features/109"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/123",
"name": "Freedom of Movement"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/9",
"type": "level"
}, {
"name": "Circle of the Land: Grassland",
"url": "http://www.dnd5eapi.co/api/features/109"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/89",
"name": "Dream"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/9",
"type": "level"
}, {
"name": "Circle of the Land: Grassland",
"url": "http://www.dnd5eapi.co/api/features/109"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/160",
"name": "Insect Plague"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/3",
"type": "level"
}, {
"name": "Circle of the Land: Mountain",
"url": "http://www.dnd5eapi.co/api/features/110"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/262",
"name": "Spider Climb"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/3",
"type": "level"
}, {
"name": "Circle of the Land: Mountain",
"url": "http://www.dnd5eapi.co/api/features/110"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/263",
"name": "Spike Growth"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/5",
"type": "level"
}, {
"name": "Circle of the Land: Mountain",
"url": "http://www.dnd5eapi.co/api/features/110"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/170",
"name": "Lightning Bolt"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/5",
"type": "level"
}, {
"name": "Circle of the Land: Mountain",
"url": "http://www.dnd5eapi.co/api/features/110"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/189",
"name": "Meld Into Stone"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/7",
"type": "level"
}, {
"name": "Circle of the Land: Mountain",
"url": "http://www.dnd5eapi.co/api/features/110"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/267",
"name": "Stone Shape"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/7",
"type": "level"
}, {
"name": "Circle of the Land: Mountain",
"url": "http://www.dnd5eapi.co/api/features/110"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/268",
"name": "Stoneskin"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/9",
"type": "level"
}, {
"name": "Circle of the Land: Mountain",
"url": "http://www.dnd5eapi.co/api/features/110"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/204",
"name": "Passwall"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/9",
"type": "level"
}, {
"name": "Circle of the Land: Mountain",
"url": "http://www.dnd5eapi.co/api/features/110"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/294",
"name": "Wall of Stone"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/3",
"type": "level"
}, {
"name": "Circle of the Land: Swamp",
"url": "http://www.dnd5eapi.co/api/features/112"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/1",
"name": "Acid Arrow"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/3",
"type": "level"
}, {
"name": "Circle of the Land: Swamp",
"url": "http://www.dnd5eapi.co/api/features/112"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/68",
"name": "Darkness"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/5",
"type": "level"
}, {
"name": "Circle of the Land: Swamp",
"url": "http://www.dnd5eapi.co/api/features/112"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/298",
"name": "Water Walk"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/5",
"type": "level"
}, {
"name": "Circle of the Land: Swamp",
"url": "http://www.dnd5eapi.co/api/features/112"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/266",
"name": "Stinking Cloud"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/7",
"type": "level"
}, {
"name": "Circle of the Land: Swamp",
"url": "http://www.dnd5eapi.co/api/features/112"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/123",
"name": "Freedom of Movement"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/7",
"type": "level"
}, {
"name": "Circle of the Land: Swamp",
"url": "http://www.dnd5eapi.co/api/features/112"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/172",
"name": "Locate Creature"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/9",
"type": "level"
}, {
"name": "Circle of the Land: Swamp",
"url": "http://www.dnd5eapi.co/api/features/112"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/160",
"name": "Insect Plague"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/druid/level/9",
"type": "level"
}, {
"name": "Circle of the Land: Swamp",
"url": "http://www.dnd5eapi.co/api/features/112"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/241",
"name": "Scrying"
}
}],
"url": "http://www.dnd5eapi.co/api/subclasses/4"
}, {
"index": 5,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/5",
"name": "Fighter"
},
"name": "Champion",
"subclass_flavor": "Martial Archetype",
"desc": ["The archetypal Champion focuses on the development of raw physical power honed to deadly perfection. Those who model themselves on this archetype combine rigorous training with physical excellence to deal devastating blows."],
"features": [
],
"url": "http://www.dnd5eapi.co/api/subclasses/5"
}, {
"index": 6,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/6",
"name": "Monk"
},
"name": "Open Hand",
"subclass_flavor": "Monastic Tradition",
"desc": ["Monks of the Way of the Open Hand are the ultimate masters of martial arts combat, whether armed or unarmed. They learn techniques to push and trip their opponents, manipulate ki to heal damage to their bodies, and practice advanced meditation that can protect them from harm."],
"features": [
],
"url": "http://www.dnd5eapi.co/api/subclasses/6"
}, {
"index": 7,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/7",
"name": "Paladin"
},
"name": "Devotion",
"subclass_flavor": "Sacred Oath",
"desc": ["The Oath of Devotion binds a paladin to the loftiest ideals of justice, virtue, and order. Sometimes called cavaliers, white knights, or holy warriors, these paladins meet the ideal of the knight in shining armor, acting with honor in pursuit of justice and the greater good. They hold themselves to the highest standards of conduct, and some, for better or worse, hold the rest of the world to the same standards. Many who swear this oath are devoted to gods of law and good and use their gods' tenets as the measure of their devotion. They hold angels--the perfect servants of good--as their ideals, and incorporate images of angelic wings into their helmets or coats of arms."],
"features": [
],
"spells": [{
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/paladin/level/3",
"type": "level"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/223",
"name": "Protection from Evil and Good"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/paladin/level/3",
"type": "level"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/239",
"name": "Sanctuary"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/paladin/level/5",
"type": "level"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/167",
"name": "Lesser Restoration"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/paladin/level/5",
"type": "level"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/305",
"name": "Zone of Truth"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/paladin/level/9",
"type": "level"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/24",
"name": "Beacon of Hope"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/paladin/level/9",
"type": "level"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/82",
"name": "Dispel Magic"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/paladin/level/13",
"type": "level"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/123",
"name": "Freedom of Movement"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/paladin/level/17",
"type": "level"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/45",
"name": "Commune"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/paladin/level/17",
"type": "level"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/114",
"name": "Flame Strike"
}
}],
"url": "http://www.dnd5eapi.co/api/subclasses/7"
}, {
"index": 8,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/8",
"name": "Ranger"
},
"name": "Hunter",
"subclass_flavor": "Ranger Archetype",
"desc": ["Emulating the Hunter archetype means accepting your place as a bulwark between civilization and the terrors of the wilderness. As you walk the Hunter's path, you learn specialized techniques for fighting the threats you face, from rampaging ogres and hordes of orcs to towering giants and terrifying dragons."],
"features": [
],
"url": "http://www.dnd5eapi.co/api/subclasses/8"
}, {
"index": 9,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/9",
"name": "Rogue"
},
"name": "Thief",
"subclass_flavor": "Sorcerous Origins",
"desc": ["You hone your skills in the larcenous arts. Burglars, bandits, cutpurses, and other criminals typically follow this archetype, but so do rogues who prefer to think of themselves as professional treasure seekers, explorers, delvers, and investigators. In addition to improving your agility and stealth, you learn skills useful for delving into ancient ruins, reading unfamiliar languages, and using magic items you normally couldn't employ."],
"features": [
],
"url": "http://www.dnd5eapi.co/api/subclasses/9"
}, {
"index": 10,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/10",
"name": "Sorcerer"
},
"name": "Draconic",
"subclass_flavor": "Sorcerous Origins",
"desc": ["Your innate magic comes from draconic magic that was mingled with your blood or that of your ancestors. Most often, sorcerers with this origin trace their descent back to a mighty sorcerer of ancient times who made a bargain with a dragon or who might even have claimed a dragon parent. Some of these bloodlines are well established in the world, but most are obscure. Any given sorcerer could be the first of a new bloodline, as a result of a pact or some other exceptional circumstance."],
"features": [
],
"url": "http://www.dnd5eapi.co/api/subclasses/10"
}, {
"index": 11,
"class": {
"url": "http://www.dnd5eapi.co/api/classes/11",
"name": "Warlock"
},
"name": "Fiend",
"subclass_flavor": "Otherworldly Patron",
"desc": ["You have made a pact with a fiend from the lower planes of existence, a being whose aims are evil, even if you strive against those aims. Such beings desire the corruption or destruction of all things, ultimately including you. Fiends powerful enough to forge a pact include demon lords such as Demogorgon, Orcus, Fraz'Urb-luu, and Baphomet; archdevils such as Asmodeus, Dispater, Mephistopheles, and Belial; pit fiends and balors that are especially mighty; and ultroloths and other lords of the yugoloths."],
"features": [
],
"spells": [{
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/warlock/level/1",
"type": "level"
}],
"spell": {
"url": "http://www.dnd5eapi.co/api/spells/33",
"name": "Burning Hands"
}
}, {
"prerequisites": [{
"url": "http://www.dnd5eapi.co/api/classes/warlock/level/1",
"type": "level"
}],