-
Notifications
You must be signed in to change notification settings - Fork 1
/
Mordenkainen 2.json
2991 lines (2862 loc) · 103 KB
/
Mordenkainen 2.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
// 20201107072034
// https://critterdb.com/api/publishedbestiaries/5ea4b8b463a0580dfd76d379/creatures/2
[
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Medium",
"race": "fiend (yugoloth)",
"alignment": "Neutral Evil",
"armorType": "natural armor",
"armorClass": 15,
"numHitDie": 14,
"speed": "30 ft.",
"abilityScores": {
"strength": 17,
"dexterity": 10,
"constitution": 19,
"intelligence": 7,
"wisdom": 10,
"charisma": 9
},
"proficiencyBonus": 3,
"damageVulnerabilities": [
],
"damageResistances": [
"Cold",
"Fire",
"Lightning",
"Bludgeoning",
"Piercing",
"Slashing",
"from non-magical attacks"
],
"damageImmunities": [
"Acid",
"Poison"
],
"conditionImmunities": [
"Poisoned"
],
"senses": [
"blindsight 60 ft.",
"darkvision 60 ft."
],
"languages": [
"Abyssal",
"Infernal",
"telepathy 60 ft."
],
"challengeRating": 7,
"experiencePoints": 2900,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "",
"savingThrows": [
{
"ability": "strength",
"proficient": true
}
],
"skills": [
],
"additionalAbilities": [
{
"name": "Innate Spellcasting",
"description": "The dhergoloth's innate spellcasting ability is Charisma (spell save DC 10, +2 to hit with spell attacks). It can innately cast the following spells, requiring no material components:\n\nAt will: <i>darkness</i>, <i>fear</i>\n3/day: <i>sleep</i>"
},
{
"name": "Magic Resistance",
"description": "The dhergoloth has advantage on saving throws against spells and other magical effects."
},
{
"name": "Magic Weapons",
"description": "The dhergoloth's weapon attacks are magical."
}
],
"actions": [
{
"name": "Multiattack",
"description": "The dhergoloth makes two claw attacks."
},
{
"name": "Claw",
"description": "<i>Melee Weapon Attack:</i> +6 to hit, reach 5 ft., one target. <i>Hit:</i> 12 (2d8 + 3) slashing damage."
},
{
"name": "Flailing Claws (Recharge 5-6)",
"description": "The dhergoloth moves up to its walking speed in a straight line and targets each creature within 5 feet of it during its movement. Each target must succeed on a DC 14 Dexterity saving throw or take 22 (3d12 + 3) slashing damage."
},
{
"name": "Teleport",
"description": "The dhergoloth magically teleports, along with any equipment it is wearing or carrying, up to 60 feet to an unoccupied space it can see."
}
],
"reactions": [
],
"legendaryActions": [
],
"hitDieSize": 8
},
"sharing": {
"linkSharingEnabled": false
},
"_id": "5ea4b8b763a0580dfd76d392",
"name": "Dhergoloth",
"__v": 0,
"publishedBestiaryId": "5ea4b8b463a0580dfd76d379"
},
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Huge",
"race": "giant",
"alignment": "Chaotic Evil",
"armorType": "natural armor",
"armorClass": 15,
"numHitDie": 15,
"speed": "40 ft.",
"abilityScores": {
"strength": 22,
"dexterity": 15,
"constitution": 21,
"intelligence": 9,
"wisdom": 11,
"charisma": 5
},
"proficiencyBonus": 5,
"damageVulnerabilities": [
],
"damageResistances": [
"Bludgeoning",
"Piercing",
"Slashing",
"from non-magical attacks"
],
"damageImmunities": [
],
"conditionImmunities": [
],
"senses": [
"darkvision 60 ft."
],
"languages": [
"Giant"
],
"challengeRating": 13,
"experiencePoints": 10000,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "",
"savingThrows": [
{
"ability": "wisdom",
"proficient": true
},
{
"ability": "charisma",
"proficient": true
}
],
"skills": [
{
"name": "Perception",
"proficient": true
}
],
"additionalAbilities": [
{
"name": "Keen Smell",
"description": "The dire troll has advantage on Wisdom (perception) checks that rely on smell."
},
{
"name": "Regeneration",
"description": "The troll regains 10 hit points at the start of its turn. If the troll takes acid or fire damage, it regains only 5 hit points at the start of its next turn. The troll dies only if it is hit by an attack that deals 10 or more acid or fire damage while the troll has 0 hit points."
}
],
"actions": [
{
"name": "Multiattack",
"description": "The troll makes five attacks: one with its bite and four with its claws."
},
{
"name": "Bite",
"description": "<i>Melee Weapon Attack:</i> +11 to hit, reach 10 ft., one target. <i>Hit:</i> 10 (1d8 + 6) piercing damage plus 5 (1d10) poison damage."
},
{
"name": "Claws",
"description": "<i>Melee Weapon Attack:</i> +11 to hit, reach 10 ft., one target. <i>Hit:</i> 16 (3d6 + 6) slashing damage."
},
{
"name": "Whirlwind of Claws (Recharge 5-6)",
"description": "Each creature within 10 feet of the troll must make a DC 19 Dexterity saving throw, taking 44 (8d10) slashing damage on a failed save, or half as much damage on a successful one."
}
],
"reactions": [
],
"legendaryActions": [
],
"hitDieSize": 12
},
"sharing": {
"linkSharingEnabled": false
},
"_id": "5ea4b8b763a0580dfd76d391",
"name": "Dire Troll",
"__v": 0,
"publishedBestiaryId": "5ea4b8b463a0580dfd76d379"
},
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Medium",
"race": "Humanoid (elf)",
"alignment": "Chaotic Evil",
"armorType": "Studded leather",
"armorClass": 15,
"numHitDie": 25,
"speed": "30 ft., climb 30 ft.",
"abilityScores": {
"strength": 11,
"dexterity": 17,
"constitution": 14,
"intelligence": 19,
"wisdom": 14,
"charisma": 16
},
"proficiencyBonus": 5,
"damageVulnerabilities": [
],
"damageResistances": [
"Poison"
],
"damageImmunities": [
],
"conditionImmunities": [
],
"senses": [
"blindsight 10 ft.",
"darkvision 120 ft."
],
"languages": [
"Elvish",
"Undercommon",
"can speak with spiders"
],
"challengeRating": 13,
"experiencePoints": 10000,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "",
"savingThrows": [
{
"ability": "constitution",
"proficient": true
},
{
"ability": "intelligence",
"proficient": true
},
{
"ability": "charisma",
"proficient": true
}
],
"skills": [
{
"name": "Arcana",
"proficient": true
},
{
"name": "Nature",
"proficient": true
},
{
"name": "Perception",
"proficient": true
},
{
"name": "Stealth",
"proficient": true
}
],
"additionalAbilities": [
{
"name": "Change Shape (1/Rest)",
"description": "The drow can use a bonus action to magically polymorph into a giant spider, remaining in that form for up to 1 hour. It can revert to its true form as a bonus action. Its statistics, other than its size, are the same in each form. It can speak and cast spells while in giant spider form. Any equipment it is wearing or carrying while in humanoid form melds into the giant spider form. It can't activate, use, wield, or otherwise benefit from any of its equipment. It reverts to humanoid form if it dies."
},
{
"name": "Fey Ancestry",
"description": "The drow has advantage on saving throws against being charmed, and magic can't put the drow to sleep."
},
{
"name": "Innate Spellcasting",
"description": "The drow's innate spellcasting ability is Charisma (spell save DC 16, +8 to hit with spell attacks). It can innately cast the following spells, requiring no material components:\n\nAt will: <i>dancing lights</i>\n1/day: <i>darkness</i>, <i>faerie fire</i>, <i>levitate</i> (self only)"
},
{
"name": "Spellcasting",
"description": "The drow arachnomancer is a 16th-level spellcaster. The drow arachnomancer's spellcasting ability is Charisma (spell save DC 16, +8 to hit with spell attacks). The drow arachnomancer has the following warlock spells prepared:\n\nCantrip (at will): <i>chill touch</i>, <i>eldritch blast</i>, <i>mage hand</i>, <i>poison spray</i>\n5th level (3 slots): <i>conjure animals</i>, <i>crown of madness</i>, <i>dimension door</i>, <i>dispel magic</i>, <i>fear</i>, <i>fly</i>, <i>giant insect</i>, <i>hold monster</i>, <i>insect plague</i>, <i>invisibility</i>, <i>vampiric touch</i>, <i>web</i>, <i>witch bolt</i>\n1/day each: <i>dominate monster</i>, <i>etherealness</i>, <i>eyebite</i>"
},
{
"name": "Spider Climb",
"description": "The drow arachnomancer can climb difficult surfaces, including upside down on ceilings, without needing to make an ability check."
},
{
"name": "Sunlight Sensitivity",
"description": "While in sunlight, the drow arachnomancer has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight."
},
{
"name": "Web Walker",
"description": "The drow arachnomancer ignores movement restrictions caused by webbing."
}
],
"actions": [
{
"name": "Multiattack",
"description": "The drow makes two poisonous touch attacks or two bite attacks. The first of these attacks that hits each round deals an extra 26 (4d12) poison damage to the target."
},
{
"name": "Poisonous Touch (Humanoid Form Only)",
"description": "<i>Melee Weapon Attack:</i> +8 to hit, reach 5 ft., one target. <i>Hit:</i> 28 (8d6) poison damage."
},
{
"name": "Bite (Giant Spider Form Only)",
"description": "<i>Melee Weapon Attack:</i> +8 to hit, reach 5 ft., one target. <i>Hit:</i> 12 (2d8 + 3) piercing damage, and the target must make a DC 15 Constitution saving throw, taking 26 (4d12) poison damage on a failed save, or half as much damage on a successful one. If the poison damage reduces a target to 0 hit points, the target is stable but poisoned for 1 hour, even after regaining hit points, and is paralyzed while poisoned in this way."
},
{
"name": "Web (Giant Spider Form Only; Recharge 5-6)",
"description": "<i>Ranged Weapon Attack:</i> +8 to hit, range 30/60 ft., one target. <i>Hit:</i> The target is restrained by webbing. As an action, the target can make a DC 15 Strength check, bursting the webbing on a success. The webbing can also be attacked and destroyed (AC 10; hp 5; vulnerability to fire damage; immunity to bludgeoning, poison, and psychic damage)."
}
],
"reactions": [
],
"legendaryActions": [
],
"hitDieSize": 8
},
"sharing": {
"linkSharingEnabled": false
},
"_id": "5ea4b8b763a0580dfd76d395",
"name": "Drow Arachnomancer",
"__v": 0,
"publishedBestiaryId": "5ea4b8b463a0580dfd76d379"
},
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Medium",
"race": "Humanoid (elf)",
"alignment": "Neutral Evil",
"armorType": "18 with mage armor",
"armorClass": 15,
"numHitDie": 30,
"speed": "30 ft.",
"abilityScores": {
"strength": 15,
"dexterity": 20,
"constitution": 16,
"intelligence": 18,
"wisdom": 15,
"charisma": 18
},
"proficiencyBonus": 6,
"damageVulnerabilities": [
],
"damageResistances": [
],
"damageImmunities": [
],
"conditionImmunities": [
],
"senses": [
"darkvision 120 ft."
],
"languages": [
"Elvish",
"Undercommon"
],
"challengeRating": 18,
"experiencePoints": 20000,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "",
"savingThrows": [
{
"ability": "dexterity",
"proficient": true
},
{
"ability": "constitution",
"proficient": true
},
{
"ability": "charisma",
"proficient": true
}
],
"skills": [
{
"name": "Acrobatics",
"proficient": true
},
{
"name": "Athletics",
"proficient": true
},
{
"name": "Perception",
"proficient": true
},
{
"name": "Stealth",
"proficient": true
}
],
"additionalAbilities": [
{
"name": "Fey Ancestry",
"description": "The drow favored consort has advantage on saving throws against being charmed, and magic can't put the drow favored consort to sleep."
},
{
"name": "Innate Spellcasting",
"description": "The drow favored consort's innate spellcasting ability is Charisma (spell save DC 18, +10 to hit with spell attacks). It can innately cast the following spells, requiring no material components:\n\nAt will: <i>dancing lights</i>\n1/day: <i>darkness</i>, <i>faerie fire</i>, <i>levitate</i> (self only)"
},
{
"name": "Spellcasting",
"description": "The drow favored consort is a 11th-level spellcaster. The drow favored consort's spellcasting ability is Intelligence (spell save DC 18, +10 to hit with spell attacks). The drow favored consort has the following wizard spells prepared:\n\nCantrip (at will): <i>mage hand</i>, <i>message</i>, <i>poison spray</i>, <i>shocking grasp</i>, <i>ray of frost</i>\n1st level (4 slots): <i>burning hands</i>, <i>mage armor</i>, <i>magic missile</i>, <i>shield</i>\n2nd level (3 slots): <i>gust of wind</i>, <i>invisibility</i>, <i>misty step</i>, <i>shatter</i>\n3rd level (3 slots): <i>counterspell</i>, <i>fireball</i>, <i>haste</i>\n4th level (3 slots): <i>dimension door</i>, <i>Otiluke's resilient sphere</i>\n5th level (2 slots): <i>cone of cold</i>\n6th level (1 slots): <i>chain lightning</i>"
},
{
"name": "Sunlight Sensitivity",
"description": "While in sunlight, the drow favored consort has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight."
},
{
"name": "War Magic",
"description": "When the drow uses its action to cast a spell, it can make one weapon attack as a bonus action."
}
],
"actions": [
{
"name": "Multiattack",
"description": "The drow makes three scimitar attacks."
},
{
"name": "Scimitar",
"description": "<i>Melee Weapon Attack:</i> +11 to hit, reach 5 ft., one target. <i>Hit:</i> 8 (1d6 + 5) slashing damage plus 18 (4d8) poison damage. In addition, the target has disadvantage on the next saving throw it makes against a spell the drow casts before the end of the drow's next turn."
},
{
"name": "Hand Crossbow",
"description": "<i>Ranged Weapon Attack:</i> +11 to hit, range 30/120 ft., one target. <i>Hit:</i> 8 (1d6 + 5) piercing damage, and the target must succeed on a DC 13 Constitution saving throw or be poisoned for 1 hour. If the saving throw fails by 5 or more, the target is also unconscious while poisoned in this way. The target regains consciousness if it takes damage or another creature uses an action to shake it."
}
],
"reactions": [
],
"legendaryActions": [
],
"hitDieSize": 8
},
"sharing": {
"linkSharingEnabled": false
},
"_id": "5ea4b8b763a0580dfd76d393",
"name": "Drow Favored Consort",
"__v": 0,
"publishedBestiaryId": "5ea4b8b463a0580dfd76d379"
},
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Medium",
"race": "Humanoid (elf)",
"alignment": "Neutral Evil",
"armorType": "Chain mail",
"armorClass": 16,
"numHitDie": 25,
"speed": "30 ft.",
"abilityScores": {
"strength": 14,
"dexterity": 19,
"constitution": 15,
"intelligence": 12,
"wisdom": 14,
"charisma": 13
},
"proficiencyBonus": 4,
"damageVulnerabilities": [
],
"damageResistances": [
],
"damageImmunities": [
],
"conditionImmunities": [
],
"senses": [
"darkvision 120 ft."
],
"languages": [
"Elvish",
"Undercommon"
],
"challengeRating": 9,
"experiencePoints": 5000,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "",
"savingThrows": [
{
"ability": "dexterity",
"proficient": true
},
{
"ability": "constitution",
"proficient": true
},
{
"ability": "wisdom",
"proficient": true
}
],
"skills": [
{
"name": "Perception",
"proficient": true
},
{
"name": "Stealth",
"proficient": true
}
],
"additionalAbilities": [
{
"name": "Battle Command",
"description": "As a bonus action, the drow targets one ally he can see within 30 feet of him. If the target can see or hear the drow, the target can use its reaction to make one melee at-tack or to take the Dodge or Hide action."
},
{
"name": "Fey Ancestry",
"description": "The drow has advantage on saving throws against being charmed, and magic can't put the drow to sleep."
},
{
"name": "Innate Spellcasting",
"description": "The drow house captain's innate spellcasting ability is Charisma (spell save DC 13, +5 to hit with spell attacks). It can innately cast the following spells, requiring no material components:\n\nAt will: <i>dancing lights</i>\n1/day: <i>darkness</i>, <i>faerie fire</i>, <i>levitate</i> (self only)"
},
{
"name": "Sunlight Sensitivity",
"description": "While in sunlight, the drow has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight."
}
],
"actions": [
{
"name": "Multiattack",
"description": "The drow makes three attacks: two with his scimitar and one with his whip or his hand crossbow."
},
{
"name": "Scimitar",
"description": "<i>Melee Weapon Attack:</i> +8 to hit, reach 5 ft., one target. <i>Hit:</i> 7 (1d6 + 4) slashing damage plus 14 (4d6) poison damage."
},
{
"name": "Whip",
"description": "<i>Melee Weapon Attack:</i> +8 to hit, reach 10 ft., one target. <i>Hit:</i> 6 (1d4 + 4) slashing damage. If the target is an ally, it has advantage on attack rolls until the end of its next turn."
},
{
"name": "Hand Crossbow",
"description": "<i>Ranged Weapon Attack:</i> +8 to hit, range 30/120 ft., one target. <i>Hit:</i> 7 (1d6 + 4) piercing damage, and the target must succeed on a DC 13 Constitution saving throw or be poisoned for 1 hour. If the saving throw fails by 5 or more, the target is also unconscious while poisoned in this way. The target regains consciousness if it takes damage or if another creature takes an action to shake it."
}
],
"reactions": [
],
"legendaryActions": [
],
"hitDieSize": 8
},
"sharing": {
"linkSharingEnabled": false
},
"_id": "5ea4b8b763a0580dfd76d394",
"name": "Drow House Captain",
"__v": 0,
"publishedBestiaryId": "5ea4b8b463a0580dfd76d379"
},
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Medium",
"race": "Humanoid (elf)",
"alignment": "Neutral Evil",
"armorType": "Breastplate",
"armorClass": 16,
"numHitDie": 22,
"speed": "30 ft.",
"abilityScores": {
"strength": 12,
"dexterity": 15,
"constitution": 14,
"intelligence": 16,
"wisdom": 21,
"charisma": 20
},
"proficiencyBonus": 5,
"damageVulnerabilities": [
],
"damageResistances": [
],
"damageImmunities": [
],
"conditionImmunities": [
"Frightened"
],
"senses": [
"darkvision 120 ft."
],
"languages": [
"Elvish",
"Undercommon"
],
"challengeRating": 14,
"experiencePoints": 11500,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "",
"savingThrows": [
{
"ability": "constitution",
"proficient": true
},
{
"ability": "wisdom",
"proficient": true
},
{
"ability": "charisma",
"proficient": true
}
],
"skills": [
{
"name": "Insight",
"proficient": true
},
{
"name": "Perception",
"proficient": true
},
{
"name": "Religion",
"proficient": true
},
{
"name": "Stealth",
"proficient": true
}
],
"additionalAbilities": [
{
"name": "Discern Lie",
"description": "The drow knows when she hears a creature speak a lie in a language she knows."
},
{
"name": "Fey Ancestry",
"description": "The drow inquisitor has advantage on saving throws against being charmed, and magic can't put the drow inquisitor to sleep."
},
{
"name": "Innate Spellcasting",
"description": "The drow inquisitor's innate spellcasting ability is Charisma (spell save DC 18, +10 to hit with spell attacks). It can innately cast the following spells, requiring no material components:\n\nAt will: <i>dancing lights</i>, <i>detect magic</i>\n1/day: <i>clairvoyance</i>, <i>darkness</i>, <i>detect thoughts</i>, <i>dispel magic</i>, <i>faerie fire</i>, <i>levitate</i> (self only), <i>suggestion</i>"
},
{
"name": "Spellcasting",
"description": "The drow inquisitor is a 12th-level spellcaster. The drow inquisitor's spellcasting ability is Wisdom (spell save DC 18, +10 to hit with spell attacks). The drow inquisitor has the following cleric spells prepared:\n\nCantrip (at will): <i>guidance</i>, <i>message</i>, <i>poison spray</i>, <i>resistance</i>, <i>thaumaturgy</i>\n1st level (4 slots): <i>bane</i>, <i>cure wounds</i>, <i>inflict wounds</i>\n2nd level (3 slots): <i>blindness/deafness</i>, <i>silence</i>, <i>spiritual weapon</i>\n3rd level (3 slots): <i>bestow curse</i>, <i>dispel magic</i>, <i>magic circle</i>\n4th level (3 slots): <i>banishment</i>, <i>divination</i>, <i>freedom of movement</i>\n5th level (2 slots): <i>contagion</i>, <i>dispel evil and good</i>, <i>insect plague</i>\n6th level (1 slots): <i>harm</i>, <i>true seeing</i>"
},
{
"name": "Sunlight Sensitivity",
"description": "While in sunlight, the drow inquisitor has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight."
}
],
"actions": [
{
"name": "Multiattack",
"description": "The drow makes three death lance attacks."
},
{
"name": "Death Lance",
"description": "<i>Melee Weapon Attack:</i> +10 to hit, reach 5 ft., one target. <i>Hit:</i> 8 (1d6 + 5) piercing damage plus 18 (4d8) necrotic damage. The target's hit point maximum is reduced by an amout equal to the necrotic damage it takes. This reduction lasts until the target finishes a long rest. The target dies if this reduces its hit point maximum to 0."
},
{
"name": "Variant: Summon Demon (1/Day)",
"description": "The drow attempts to magically summon a yochlol, with a 50 percent chance of success. If the attempt fails, the drow takes 5 (1d10) psychic damage. Otherwise, the summoned demon appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other demons. It remains for 10 minutes, until it or its summoner dies, or until its summoner dismisses it as an action."
}
],
"reactions": [
],
"legendaryActions": [
],
"hitDieSize": 8
},
"sharing": {
"linkSharingEnabled": false
},
"_id": "5ea4b8b863a0580dfd76d39c",
"name": "Drow Inquisitor",
"__v": 0,
"publishedBestiaryId": "5ea4b8b463a0580dfd76d379"
},
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Medium",
"race": "Humanoid (elf)",
"alignment": "Neutral Evil",
"armorType": "Half plate",
"armorClass": 17,
"numHitDie": 35,
"speed": "30 ft.",
"abilityScores": {
"strength": 12,
"dexterity": 18,
"constitution": 16,
"intelligence": 17,
"wisdom": 21,
"charisma": 22
},
"proficiencyBonus": 6,
"damageVulnerabilities": [
],
"damageResistances": [
],
"damageImmunities": [
],
"conditionImmunities": [
"Charmed",
"Frightened",
"Poisoned"
],
"senses": [
"darkvision 120 ft."
],
"languages": [
"Elvish",
"Undercommon"
],
"challengeRating": 20,
"experiencePoints": 25000,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "The drow can take 3 legendary actions, choosing from the options below. Only one legendary action option can be used at a time and only at the end of another creature's turn. The drow regains spent legendary actions at the start of its turn.",
"savingThrows": [
{
"ability": "constitution",
"proficient": true
},
{
"ability": "wisdom",
"proficient": true
},
{
"ability": "charisma",
"proficient": true
}
],
"skills": [
{
"name": "Insight",
"proficient": true
},
{
"name": "Perception",
"proficient": true
},
{
"name": "Religion",
"proficient": true
},
{
"name": "Stealth",
"proficient": true
}
],
"additionalAbilities": [
{
"name": "Fey Ancestry",
"description": "The drow matron mother has advantage on saving throws against being charmed, and magic can't put the drow matron mother to sleep."
},
{
"name": "Innate Spellcasting",
"description": "The drow matron mother's innate spellcasting ability is Charisma (spell save DC 20, +12 to hit with spell attacks). It can innately cast the following spells, requiring no material components:\n\nAt will: <i>dancing lights</i>, <i>detect magic</i>\n1/day: <i>clairvoyance</i>, <i>darkness</i>, <i>detect thoughts</i>, <i>dispel magic</i>, <i>faerie fire</i>, <i>levitate</i> (self only), <i>suggestion</i>"
},
{
"name": "Lolth's Fickle Fervor",
"description": "As a bonus action, the matron can bestow the Spider Queen's blessing on one ally she can see within 30 feet of her. The ally takes 7 (2d6) psychic damage but has advantage on the next attack roll it makes until the end of its next turn."
},
{
"name": "Magic Resistance",
"description": "The drow matron mother has advantage on saving throws against spells and other magical effects."
},
{
"name": "Spellcasting",
"description": "The drow matron mother is a 20th-level spellcaster. The drow matron mother's spellcasting ability is Wisdom (spell save DC 19, +11 to hit with spell attacks). The drow matron mother has the following cleric spells prepared:\n\nCantrip (at will): <i>guidance</i>, <i>mending</i>, <i>resistance</i>, <i>sacred flame</i>, <i>thaumaturgy</i>\n1st level (4 slots): <i>bane</i>, <i>command</i>, <i>cure wounds</i>, <i>guiding bolt</i>\n2nd level (3 slots): <i>hold person</i>, <i>silence</i>, <i>spiritual weapon</i>\n3rd level (3 slots): <i>bestow curse</i>, <i>clairvoyance</i>, <i>dispel magic</i>, <i>spirit guardians</i>\n4th level (3 slots): <i>banishment</i>, <i>death ward</i>, <i>freedom of movement</i>, <i>guardian of faith</i>\n5th level (2 slots): <i>contagion</i>, <i>flame strike</i>, <i>geas</i>, <i>mass cure wounds</i>\n6th level (1 slots): <i>blade barrier</i>, <i>harm</i>\n7th level (1 slots): <i>divine word</i>, <i>plane shift</i>\n8th level (1 slots): <i>holy aura</i>\n9th level (1 slots): <i>gate</i>"
},
{
"name": "Sunlight Sensitivity",
"description": "While in sunlight, the drow matron mother has disadvantage on attack rolls, as well as on Wisdom (Perception) checks that rely on sight."
}
],
"actions": [
{
"name": "Multiattack",
"description": "The matron mother makes two demon staff attacks or three tentacle rod attacks."
},
{
"name": "Demon Staff",
"description": "<i>Melee Weapon Attack:</i> +10 to hit, reach 5 ft., one target. <i>Hit:</i> 7 (1d6 + 4) bludgeoning damage, or 8 (1d8 + 4) bludgeoning damage if used with two hands, plus 14 (4d6) psychic damage. In addition, the target must succeed on a DC 19 Wisdom saving throw or become frightened of the drow for 1 minute. The frightened target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success."
},
{
"name": "Tentacle Rod",
"description": "<i>Melee Weapon Attack:</i> +9 to hit, reach 15 ft., one target. <i>Hit:</i> 3 (1d6) bludgeoning damage. If the target is hit three times by the rod on the one turn, the target must succeed on a DC 15 Constitution saving throw or suffer the following effects for 1 minute: the target's speed is halved, it has disadvantage on Dexterity saving throws, and it can't take reactions. Moreover, on each of its turns, it can either an action or a bonus action, but not both. At the end of each of its turns, it can repeat the saving throw, ending the effect on itself on a success."
},
{
"name": "Summon Servant (1/Day)",
"description": "The drow magically summons a retriever or a yochlol. The summoned creature appears in an unoccupied space within 60 feet of its summoner, acts as an ally of its summoner, and can't summon other demons. It remains for 10 minutes, until it or its summoner dies, or until its summoner dismisses it as an action."
}
],
"reactions": [
],
"legendaryActions": [
{
"name": "Demon Staff",
"description": "The drow makes one attack with her demon staff."
},
{
"name": "Compel Demon (Costs 2 Actions)",
"description": "An allied demon within 30 feet of the drow uses its reaction to make one attack against a target of the drow's choice that she can see."
},
{
"name": "Cast a Spell (Costs 1-3 Actions)",
"description": "The drow expends a spell slot to cast a 1st-, 2nd-, or 3rd-level spell that she has prepared. Doing so costs 1 legendary action per level of the spell."
}
],
"hitDieSize": 8
},
"sharing": {
"linkSharingEnabled": false
},
"_id": "5ea4b8b863a0580dfd76d39b",
"name": "Drow Matron Mother",
"__v": 0,
"publishedBestiaryId": "5ea4b8b463a0580dfd76d379"
},
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Medium",
"race": "Humanoid (elf)",
"alignment": "Neutral Evil",
"armorType": "Studded leather",
"armorClass": 17,
"numHitDie": 20,
"speed": "30 ft.",
"abilityScores": {
"strength": 14,
"dexterity": 21,
"constitution": 16,
"intelligence": 12,
"wisdom": 14,
"charisma": 13
},
"proficiencyBonus": 4,
"damageVulnerabilities": [
],
"damageResistances": [
],
"damageImmunities": [
],
"conditionImmunities": [
],
"senses": [
"darkvision 120 ft."
],
"languages": [
"Elvish",
"Undercommon"
],
"challengeRating": 11,
"experiencePoints": 7200,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "",
"savingThrows": [
{
"ability": "dexterity",
"proficient": true
},
{
"ability": "constitution",
"proficient": true
},
{
"ability": "wisdom",
"proficient": true
}
],
"skills": [
{
"name": "Perception",
"proficient": true
},
{
"name": "Stealth",
"proficient": true
}
],
"additionalAbilities": [
{
"name": "Fey Ancestry",
"description": "The drow shadowblade has advantage on saving throws against being charmed, and magic can't put the drow shadowblade to sleep."
},
{
"name": "Innate Spellcasting",
"description": "The drow shadowblade's innate spellcasting ability is Charisma (spell save DC 13, +5 to hit with spell attacks). It can innately cast the following spells, requiring no material components:\n\nAt will: <i>dancing lights</i>\n1/day: <i>darkness</i>, <i>faerie fire</i>, <i>levitate</i> (self only)"
},
{
"name": "Shadow Step",
"description": "While in dim light or darkness, the drow can teleport as a bonus action up to 60 feet to an unoccupied space it can see that is also in dim light or darkness. It then has advantage on the first melee attack it makes before the end of the turn."
},