-
Notifications
You must be signed in to change notification settings - Fork 1
/
Mordenkainen 5.json
2802 lines (2675 loc) · 91.3 KB
/
Mordenkainen 5.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
// 20201107072119
// https://critterdb.com/api/publishedbestiaries/5ea4b8b463a0580dfd76d379/creatures/5
[
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Large",
"race": "Construct",
"alignment": "Lawful Evil",
"armorType": "natural armor",
"armorClass": 20,
"numHitDie": 18,
"speed": "40 ft.",
"abilityScores": {
"strength": 24,
"dexterity": 17,
"constitution": 22,
"intelligence": 4,
"wisdom": 14,
"charisma": 6
},
"proficiencyBonus": 5,
"damageVulnerabilities": [
],
"damageResistances": [
"Cold",
"Lightning",
"Necrotic",
"Thunder"
],
"damageImmunities": [
"Poison",
"Psychic",
"Bludgeoning",
"Piercing",
"Slashing",
"from non-magical attacks"
],
"conditionImmunities": [
"Charmed",
"Exhaustion",
"Frightened",
"Paralyzed",
"Petrified",
"Poisoned",
"Stunned"
],
"senses": [
"blindsight 30 ft.",
"darkvision 60 ft."
],
"languages": [
"understands Modron and the language of its owner but can't speak"
],
"challengeRating": 6,
"experiencePoints": 2300,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "",
"savingThrows": [
],
"skills": [
{
"name": "Perception",
"proficient": true
},
{
"name": "Stealth",
"proficient": true
},
{
"name": "Survival",
"proficient": true
}
],
"additionalAbilities": [
{
"name": "Innate Spellcasting",
"description": "The steel predator's innate spellcasting ability is Wisdom (spell save DC 15, +7 to hit with spell attacks). It can innately cast the following spells, requiring no material components:\n\n3/day: <i>dimension door</i> (self only), <i>plane shift</i> (self only)"
},
{
"name": "Magic Resistance",
"description": "The steel predator has advantage on saving throws against spells and other magical effects."
},
{
"name": "Magic Weapons",
"description": "The steel predator's weapon attacks are magical."
}
],
"actions": [
{
"name": "Multiattack",
"description": "The steel predator makes three attacks: one with its bite and two with its claw."
},
{
"name": "Bite",
"description": "<i>Melee Weapon Attack:</i> +12 to hit, reach 5 ft., one target. <i>Hit:</i> 14 (2d6 + 7) piercing damage."
},
{
"name": "Claw",
"description": "<i>Melee Weapon Attack:</i> +12 to hit, reach 5 ft., one target. <i>Hit:</i> 16 (2d8 + 7) slashing damage."
},
{
"name": "Stunning Roar (Recharge 5-6)",
"description": "The steel predator emits a roar in a 60-foot cone. Each creature in that area must make a DC 19 Constitution saving throw. On a failed save, a creature takes 27 (5d10) thunder damage, drops everything it's holding, and is stunned for 1 minute. On a successful save, a creature takes half as much damage. The stunned creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success."
}
],
"reactions": [
],
"legendaryActions": [
],
"hitDieSize": 10
},
"sharing": {
"linkSharingEnabled": false
},
"_id": "5ea4b8be63a0580dfd76d3ee",
"name": "Steel Predator",
"__v": 0,
"publishedBestiaryId": "5ea4b8b463a0580dfd76d379"
},
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Medium",
"race": "Construct",
"alignment": "Lawful Evil",
"armorType": "natural armor",
"armorClass": 17,
"numHitDie": 3,
"speed": "10 ft.",
"abilityScores": {
"strength": 16,
"dexterity": 5,
"constitution": 14,
"intelligence": 5,
"wisdom": 8,
"charisma": 7
},
"proficiencyBonus": 2,
"damageVulnerabilities": [
"Bludgeoning"
],
"damageResistances": [
],
"damageImmunities": [
"Poison"
],
"conditionImmunities": [
"Charmed",
"Exhaustion",
"Frightened",
"Petrified",
"Poisoned"
],
"senses": [
],
"languages": [
"the languages it knew in life"
],
"challengeRating": 1,
"experiencePoints": 200,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "",
"savingThrows": [
],
"skills": [
],
"additionalAbilities": [
{
"name": "Cunning Opportunist",
"description": "The stone cursed has advantage on the attack rolls of opportunity attacks."
},
{
"name": "False Appearance",
"description": "While the stone cursed remains motionless, it is indistinguishable from a normal statue."
}
],
"actions": [
{
"name": "Petrifying Claws",
"description": "<i>Melee Weapon Attack:</i> +5 to hit, reach 5 ft., one target. <i>Hit:</i> 8 (1d10 + 3) slashing damage, or 14 (2d10 + 3) slashing damage if the attack roll had advantage. If the target is a creature, it must succeed on a DC 12 Constitution saving throw, or it begins to turn to stone and is restrained until the end of its next turn, when it must repeat the saving throw. The effect ends if the second save is successful; otherwise the target is petrified for 24 hours."
}
],
"reactions": [
],
"legendaryActions": [
],
"hitDieSize": 8
},
"sharing": {
"linkSharingEnabled": false
},
"_id": "5ea4b8bc63a0580dfd76d3dc",
"name": "Stone Cursed",
"__v": 0,
"publishedBestiaryId": "5ea4b8b463a0580dfd76d379"
},
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Medium",
"race": "Construct",
"alignment": "Unaligned",
"armorType": "natural armor",
"armorClass": 16,
"numHitDie": 7,
"speed": "30 ft.",
"abilityScores": {
"strength": 19,
"dexterity": 10,
"constitution": 17,
"intelligence": 3,
"wisdom": 10,
"charisma": 1
},
"proficiencyBonus": 2,
"damageVulnerabilities": [
],
"damageResistances": [
],
"damageImmunities": [
"Poison",
"Bludgeoning",
"Piercing",
"Slashing",
"from non-magical attacks that aren't adamantine"
],
"conditionImmunities": [
"Charmed",
"Exhaustion",
"Frightened",
"Paralyzed",
"Petrified",
"Poisoned"
],
"senses": [
"darkvision 60 ft."
],
"languages": [
"understands one language of its creator but can't speak"
],
"challengeRating": 4,
"experiencePoints": 1100,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "",
"savingThrows": [
],
"skills": [
],
"additionalAbilities": [
{
"name": "False Appearance",
"description": "While the stone defender remains motionless against an uneven earthen or stone surface, it is indistinguishable from that surface."
},
{
"name": "Magic Resistance",
"description": "The stone defender has advantage on saving throws against spells and other magical effects."
}
],
"actions": [
{
"name": "Slam",
"description": "<i>Melee Weapon Attack:</i> +6 to hit, reach 5 ft., one target. <i>Hit:</i> 11 (2d6 + 4) bludgeoning damage, and if the target is Large or smaller, it is knocked prone."
}
],
"reactions": [
{
"name": "Intercept Attack",
"description": "In response to another creature within 5 feet of it being hit by an attack roll, the stone defender gives that creature a +5 bonus to its AC against that attack, potentially causing a miss. To use this ability, the stone defender must be able to see the creature and the attacker."
}
],
"legendaryActions": [
],
"hitDieSize": 8
},
"sharing": {
"linkSharingEnabled": false
},
"_id": "5ea4b8bc63a0580dfd76d3de",
"name": "Stone Defender",
"__v": 0,
"publishedBestiaryId": "5ea4b8b463a0580dfd76d379"
},
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Medium",
"race": "fey (elf)",
"alignment": "Chaotic Neutral",
"armorType": "natural armor",
"armorClass": 19,
"numHitDie": 17,
"speed": "50 ft.",
"abilityScores": {
"strength": 19,
"dexterity": 21,
"constitution": 16,
"intelligence": 14,
"wisdom": 12,
"charisma": 18
},
"proficiencyBonus": 4,
"damageVulnerabilities": [
],
"damageResistances": [
"Bludgeoning",
"Piercing",
"Slashing",
"from non-magical attacks"
],
"damageImmunities": [
],
"conditionImmunities": [
],
"senses": [
"darkvision 60 ft."
],
"languages": [
"Common",
"Elvish",
"Sylvan"
],
"challengeRating": 10,
"experiencePoints": 5900,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "",
"savingThrows": [
],
"skills": [
{
"name": "Athletics",
"proficient": true
},
{
"name": "Intimidation",
"proficient": true
}
],
"additionalAbilities": [
{
"name": "Fearsome Presence",
"description": "Any non-eladrin creature that starts its turn within 60 feet of the eladrin must make on a DC 16 Wisdom saving throw. On a failed save, the creature becomes frightened of the eladrin for 1 minute. A creature can repeat the saving throw on the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature becomes immune to any eladrin's Fearsome Presence for 24 hours."
},
{
"name": "Fey Step (Recharge 4-6)",
"description": "As a bonus action, the eladrin can teleport up to 30 feet to an unoccupied space it can see."
},
{
"name": "Magic Resistance",
"description": "The eladrin has advantage on saving throws against spells and other magical effects."
}
],
"actions": [
{
"name": "Multiattack",
"description": "The eladrin makes two weapon attacks."
},
{
"name": "Longsword",
"description": "<i>Melee Weapon Attack:</i> +8 to hit, reach 5 ft., one target. <i>Hit:</i> 13 (2d8 + 4) slashing damage, or 15 (2d10 + 4) slashing damage if used with two hands, plus 4 (1d8) fire damage."
},
{
"name": "Longbow",
"description": "<i>Ranged Weapon Attack:</i> +9 to hit, range 150/600 ft., one target. <i>Hit:</i> 14 (2d8 + 5) piercing damage plus 4 (1d8) fire damage."
}
],
"reactions": [
{
"name": "Parry",
"description": "The eladrin adds 3 to its AC against one melee attack that would hit it. To do so, the eladrin must see the attacker and be wielding a melee weapon."
}
],
"legendaryActions": [
],
"hitDieSize": 8
},
"sharing": {
"linkSharingEnabled": false
},
"_id": "5ea4b8bd63a0580dfd76d3e3",
"name": "Summer Eladrin",
"__v": 0,
"publishedBestiaryId": "5ea4b8b463a0580dfd76d379"
},
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Medium",
"race": "Undead",
"alignment": "Lawful Evil",
"armorType": "breastplate, shield",
"armorClass": 18,
"numHitDie": 15,
"speed": "30 ft.",
"abilityScores": {
"strength": 18,
"dexterity": 14,
"constitution": 18,
"intelligence": 11,
"wisdom": 12,
"charisma": 14
},
"proficiencyBonus": 3,
"damageVulnerabilities": [
],
"damageResistances": [
"Necrotic",
"Bludgeoning",
"Piercing",
"Slashing",
"from non-magical attacks"
],
"damageImmunities": [
"Poison"
],
"conditionImmunities": [
"Exhaustion",
"Frightened",
"Poisoned",
"Unconscious"
],
"senses": [
"darkvision 60 ft."
],
"languages": [
"the languages it knew in life"
],
"challengeRating": 8,
"experiencePoints": 3900,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "",
"savingThrows": [
],
"skills": [
{
"name": "Perception",
"proficient": true
}
],
"additionalAbilities": [
{
"name": "Martial Fury",
"description": "As a bonus action, the sword wraith can make one weapon attack, which deals an extra 9 (2d8) necrotic damage on a hit. If it does so, attack rolls against it have advantage until the start of its next turn."
},
{
"name": "Turning Defiance",
"description": "The sword wraith and any other sword wraiths within 30 feet of it have advantage on saving throws against effects that turn undead."
}
],
"actions": [
{
"name": "Multiattack",
"description": "The sword wraith makes two weapon attacks."
},
{
"name": "Longsword",
"description": "<i>Melee Weapon Attack:</i> +7 to hit, reach 5 ft., one target. <i>Hit:</i> 8 (1d8 + 4) slashing damage, or 9 (1d10 + 4) slashing damage if used with two hands."
},
{
"name": "Longbow",
"description": "<i>Ranged Weapon Attack:</i> +5 to hit, range 150/600 ft., one target. <i>Hit:</i> 6 (1d8 + 2) piercing damage."
},
{
"name": "Call to Honor (1/Day)",
"description": "To use this action, the sword wraith must have taken damage during the current combat. If the sword wraith can use this action, it gives itself advantage on attack rolls until the end of its next turn, and 1d4 + 1 sword wraith warriors appear in unoccupied spaces within 30 feet of it. The warriors last until they drop to 0 hit points, and they take their turns immediately after the commander's turn on the same initiative count."
}
],
"reactions": [
],
"legendaryActions": [
],
"hitDieSize": 8
},
"sharing": {
"linkSharingEnabled": false
},
"_id": "5ea4b8bd63a0580dfd76d3e1",
"name": "Sword Wraith Commander",
"__v": 0,
"publishedBestiaryId": "5ea4b8b463a0580dfd76d379"
},
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Medium",
"race": "Undead",
"alignment": "Lawful Evil",
"armorType": "chain shirt, shield",
"armorClass": 16,
"numHitDie": 6,
"speed": "30 ft.",
"abilityScores": {
"strength": 18,
"dexterity": 12,
"constitution": 17,
"intelligence": 6,
"wisdom": 9,
"charisma": 10
},
"proficiencyBonus": 2,
"damageVulnerabilities": [
],
"damageResistances": [
"Necrotic",
"Bludgeoning",
"Piercing",
"Slashing",
"from non-magical attacks"
],
"damageImmunities": [
"Poison"
],
"conditionImmunities": [
"Exhaustion",
"Frightened",
"Poisoned",
"Unconscious"
],
"senses": [
"darkvision 60 ft."
],
"languages": [
"the languages in knew in life"
],
"challengeRating": 3,
"experiencePoints": 700,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "",
"savingThrows": [
],
"skills": [
],
"additionalAbilities": [
{
"name": "Martial Fury",
"description": "As a bonus action, the sword wraith can make one weapon attack. If it does so, attack rolls against it have advantage until the start of its next turn."
}
],
"actions": [
{
"name": "Longsword",
"description": "<i>Melee Weapon Attack:</i> +6 to hit, reach 5 ft., one target. <i>Hit:</i> 8 (1d8 + 4) slashing damage, or 9 (1d10 + 4) slashing damage if used with two hands."
},
{
"name": "Longbow",
"description": "<i>Ranged Weapon Attack:</i> +3 to hit, range 150/600 ft., one target. <i>Hit:</i> 5 (1d8 + 1) piercing damage."
}
],
"reactions": [
],
"legendaryActions": [
],
"hitDieSize": 8
},
"sharing": {
"linkSharingEnabled": false
},
"_id": "5ea4b8bd63a0580dfd76d3df",
"name": "Sword Wraith Warrior",
"__v": 0,
"publishedBestiaryId": "5ea4b8b463a0580dfd76d379"
},
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Medium",
"race": "monstrosity",
"alignment": "Neutral Evil",
"armorType": "natural armor",
"armorClass": 18,
"numHitDie": 30,
"speed": "30 ft.",
"abilityScores": {
"strength": 17,
"dexterity": 10,
"constitution": 19,
"intelligence": 8,
"wisdom": 13,
"charisma": 6
},
"proficiencyBonus": 5,
"damageVulnerabilities": [
],
"damageResistances": [
"Bludgeoning",
"Piercing",
"Slashing",
"while in dim light or darkness"
],
"damageImmunities": [
],
"conditionImmunities": [
],
"senses": [
"darkvision 60 ft."
],
"languages": [
"Common"
],
"challengeRating": 13,
"experiencePoints": 10000,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "",
"savingThrows": [
],
"skills": [
{
"name": "Perception",
"proficient": true
}
],
"additionalAbilities": [
{
"name": "Two Heads",
"description": "The Angry has advantage on Wisdom (Perception) checks and on saving throws against being blinded, charmed, deafened, frightened, stunned, or knocked unconscious."
},
{
"name": "Rising Anger",
"description": "If another creature deals damage to the Angry, the Angry's attack rolls have advantage until the end of its next turn, and the first time it hits with a hook attack on its next turn, the attack's target takes an extra 19 (3d12) psychic damage. \nOn its turn, the Angry has disadvantage on attack rolls if no other creature has dealt damage to it since the end of its last turn."
}
],
"actions": [
{
"name": "Multiattack",
"description": "The Angry makes two hook attacks."
},
{
"name": "Hook",
"description": "<i>Melee Weapon Attack:</i> +8 to hit, reach 5 ft., one target. <i>Hit:</i> 16 (2d12 + 3) piercing damage."
}
],
"reactions": [
],
"legendaryActions": [
],
"hitDieSize": 8
},
"sharing": {
"linkSharingEnabled": false
},
"_id": "5ea4b8bd63a0580dfd76d3e2",
"name": "The Angry",
"__v": 0,
"publishedBestiaryId": "5ea4b8b463a0580dfd76d379"
},
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Medium",
"race": "Monstrosity",
"alignment": "Neutral Evil",
"armorType": "natural armor",
"armorClass": 17,
"numHitDie": 30,
"speed": "30 ft.",
"abilityScores": {
"strength": 19,
"dexterity": 10,
"constitution": 17,
"intelligence": 6,
"wisdom": 11,
"charisma": 6
},
"proficiencyBonus": 4,
"damageVulnerabilities": [
],
"damageResistances": [
"Bludgeoning",
"Piercing",
"Slashing",
"while in dim light or darkness"
],
"damageImmunities": [
],
"conditionImmunities": [
],
"senses": [
"darkvision 60 ft."
],
"languages": [
"Common"
],
"challengeRating": 11,
"experiencePoints": 7200,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "",
"savingThrows": [
],
"skills": [
],
"additionalAbilities": [
{
"name": "Life Hunger",
"description": "If a creature the Hungry can see regains hit points, the Hungry gains two benefits until the end of its next turn: it has advantage on attack rolls, and its bite deals an extra 22 (4d10) necrotic damage on a hit."
}
],
"actions": [
{
"name": "Multiattack",
"description": "The Hungry makes two attacks: one with its bite and one with its claws."
},
{
"name": "Bite",
"description": "<i>Melee Weapon Attack:</i> +8 to hit, reach 5 ft., one target. <i>Hit:</i> 8 (1d8 + 4) piercing damage plus 13 (3d8) necrotic damage."
},
{
"name": "Claws",
"description": "<i>Melee Weapon Attack:</i> +8 to hit, reach 10 ft., one target. <i>Hit:</i> 18 (4d6 + 4) slashing damage. If the target is Medium or smaller, it is grappled (escape DC 16) and restrained until the grapple ends. While grappling a creature, the Hungry can't attack with its claws."
}
],
"reactions": [
],
"legendaryActions": [
],
"hitDieSize": 8
},
"sharing": {
"linkSharingEnabled": false
},
"_id": "5ea4b8bd63a0580dfd76d3e6",
"name": "The Hungry",
"__v": 0,
"publishedBestiaryId": "5ea4b8b463a0580dfd76d379"
},
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Medium",
"race": "Monstrosity",
"alignment": "Neutral Evil",
"armorType": "natural armor",
"armorClass": 16,
"numHitDie": 15,
"speed": "30 ft.",
"abilityScores": {
"strength": 16,
"dexterity": 12,
"constitution": 17,
"intelligence": 6,
"wisdom": 11,
"charisma": 6
},
"proficiencyBonus": 4,
"damageVulnerabilities": [
],
"damageResistances": [
"Bludgeoning",
"Piercing",
"Slashing",
"while in dim light or darkness"
],
"damageImmunities": [
],
"conditionImmunities": [
],
"senses": [
"darkvision 60 ft."
],
"languages": [
"Common"
],
"challengeRating": 9,
"experiencePoints": 5000,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "",
"savingThrows": [
],
"skills": [
],
"additionalAbilities": [
{
"name": "Psychic Leech",
"description": "At the start of each of the Lonely's turns, each creature within 5 feet of it must succeed on a DC 15 Wisdom saving throw or take 10 (3d6) psychic damage."
},
{
"name": "Thrives on Company",
"description": "The Lonely has advantage on attack rolls while it is within 30 feet of at least two other creatures. It otherwise has disadvantage on attack rolls."
}
],
"actions": [
{
"name": "Multiattack",
"description": "The Lonely makes one harpoon arm attacks and uses Sorrowful Embrace."
},
{
"name": "Harpoon Arm",
"description": "<i>Melee Weapon Attack:</i> +7 to hit, reach 60 ft., one target. <i>Hit:</i> 21 (4d8 + 3) piercing damage, and the target is grappled (escape DC 15) if it is a Large or smaller creature. The Lonely has two harpoon arms and can grapple up to two creatures at once."
},
{
"name": "Sorrowful Embrace",
"description": "Each creature grappled by the Lonely must make a DC 15 Wisdom saving throw. A creature takes 18 (4d8) psychic damage on a failed save, or half as much damage on a successful one. In either case, the Lonely pulls each creature grappled by it up to 30 feet straight toward it."
}
],
"reactions": [
],
"legendaryActions": [
],
"hitDieSize": 8
},
"sharing": {
"linkSharingEnabled": false
},
"_id": "5ea4b8bd63a0580dfd76d3e4",
"name": "The Lonely",
"__v": 0,
"publishedBestiaryId": "5ea4b8b463a0580dfd76d379"
},
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Medium",
"race": "Monstrosity",
"alignment": "Neutral Evil",
"armorType": "natural armor",
"armorClass": 15,
"numHitDie": 12,
"speed": "30 ft.",
"abilityScores": {
"strength": 17,
"dexterity": 12,
"constitution": 15,
"intelligence": 6,
"wisdom": 7,
"charisma": 5
},
"proficiencyBonus": 3,
"damageVulnerabilities": [
],
"damageResistances": [
"Bludgeoning",
"Piercing",
"Slashing",
"while in dim light or darkness"
],
"damageImmunities": [
],
"conditionImmunities": [
],
"senses": [
"darkvision 60ft."
],
"languages": [
"Common"
],
"challengeRating": 7,
"experiencePoints": 2900,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "",
"savingThrows": [
],
"skills": [
{
"name": "Athletics",
"proficient": true
}
],
"additionalAbilities": [
],
"actions": [
{
"name": "Multiattack",
"description": "The Lost makes two arm spike attacks."
},
{
"name": "Arm Spike",
"description": "<i>Melee Weapon Attack:</i> +6 to hit, reach 5 ft., one target. <i>Hit:</i> 14 (2d10 + 3) piercing damage."
},
{
"name": "Embrace",
"description": "<i>Melee Weapon Attack:</i> +6 to hit, reach 5 ft., one target. <i>Hit:</i> 25 (4d10 + 3) piercing damage, and the target is grappled (escape DC 14) if it is a Medium or smaller creature. Until the grapple ends, the target is frightened, and it takes 27 (6d8) psychic damage at the end of each of its turns. The Lost can embrace only one creature at a time."
}
],
"reactions": [
{
"name": "Tightening Embrace",
"description": "If the Lost takes damage while it has a creature grappled, that creature takes 18 (4d8) psychic damage."
}
],
"legendaryActions": [
],
"hitDieSize": 8
},
"sharing": {
"linkSharingEnabled": false