-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMordenkainen 1.json
2854 lines (2741 loc) · 89.4 KB
/
Mordenkainen 1.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
// 20201107071936
// https://critterdb.com/api/publishedbestiaries/5ea4b8b463a0580dfd76d379/creatures/1
[
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Medium",
"race": "fiend (demon)",
"alignment": "Chaotic Evil",
"armorType": null,
"armorClass": 11,
"numHitDie": 4,
"speed": "20 ft.",
"abilityScores": {
"strength": 9,
"dexterity": 12,
"constitution": 11,
"intelligence": 5,
"wisdom": 8,
"charisma": 5
},
"proficiencyBonus": 2,
"damageVulnerabilities": [
],
"damageResistances": [
"Cold",
"Fire",
"Lightning"
],
"damageImmunities": [
"Poison"
],
"conditionImmunities": [
"Charmed",
"Frightened",
"Poisoned"
],
"senses": [
"darkvision 120 ft."
],
"languages": [
"understands Abyssal but can't speak"
],
"challengeRating": 0.25,
"experiencePoints": 50,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "",
"savingThrows": [
],
"skills": [
],
"additionalAbilities": [
],
"actions": [
{
"name": "Bite",
"description": "<i>Melee Weapon Attack:</i> +3 to hit, reach 5 ft., one target. <i>Hit:</i> 5 (1d8 + 1) slashing damage."
}
],
"reactions": [
],
"legendaryActions": [
],
"hitDieSize": 8
},
"sharing": {
"linkSharingEnabled": false
},
"_id": "5ea4b8b563a0580dfd76d37a",
"name": "Abyssal Wretch",
"__v": 0,
"publishedBestiaryId": "5ea4b8b463a0580dfd76d379"
},
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Medium",
"race": "Monstrosity",
"alignment": "Unaligned",
"armorType": "natural armor",
"armorClass": 18,
"numHitDie": 6,
"speed": "40 ft., burrow 20 ft., climb 40 ft.",
"abilityScores": {
"strength": 15,
"dexterity": 16,
"constitution": 15,
"intelligence": 7,
"wisdom": 12,
"charisma": 8
},
"proficiencyBonus": 2,
"damageVulnerabilities": [
],
"damageResistances": [
],
"damageImmunities": [
],
"conditionImmunities": [
],
"senses": [
"darkvision 60 ft.",
"tremorsense 60 ft."
],
"languages": [
"Kruthik"
],
"challengeRating": 2,
"experiencePoints": 450,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "",
"savingThrows": [
],
"skills": [
],
"additionalAbilities": [
{
"name": "Keen Smell",
"description": "The adult kruthik has advantage on Wisdom (perception) checks that rely on smell."
},
{
"name": "Pack Tactics",
"description": "The adult kruthik has advantage on an attack roll against a creature if at least one of the adult kruthik's allies is within 5 feet of the creature and the ally isn't incapacitated."
},
{
"name": "Tunneler",
"description": "The kruthik can burrow through solid rock at half its burrowing speed and leaves a 5-foot-diameter tunnel in its wake."
}
],
"actions": [
{
"name": "Multiattack",
"description": "The kruthik makes two stab attacks or two spike attacks."
},
{
"name": "Stab",
"description": "<i>Melee Weapon Attack:</i> +5 to hit, reach 5 ft., one target. <i>Hit:</i> 6 (1d6 + 3) piercing damage."
},
{
"name": "Spike",
"description": "<i>Ranged Weapon Attack:</i> +5 to hit, range 20/60 ft., one target. <i>Hit:</i> 5 (1d4 + 3) piercing damage."
}
],
"reactions": [
],
"legendaryActions": [
],
"hitDieSize": 8
},
"sharing": {
"linkSharingEnabled": false
},
"_id": "5ea4b8b563a0580dfd76d37e",
"name": "Adult Kruthik",
"__v": 0,
"publishedBestiaryId": "5ea4b8b463a0580dfd76d379"
},
{
"flavor": {
"faction": "",
"environment": "",
"description": "Choose one from Arcana, History, Nature, and Religion for the Oblex to be proficient in",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Medium",
"race": "Ooze",
"alignment": "Lawful Evil",
"armorType": null,
"armorClass": 14,
"numHitDie": 10,
"speed": "20 ft.",
"abilityScores": {
"strength": 8,
"dexterity": 19,
"constitution": 16,
"intelligence": 19,
"wisdom": 12,
"charisma": 15
},
"proficiencyBonus": 3,
"damageVulnerabilities": [
],
"damageResistances": [
],
"damageImmunities": [
],
"conditionImmunities": [
"Blinded",
"Charmed",
"Deafened",
"Exhaustion",
"Prone"
],
"senses": [
"blindsight 60 ft. (blind beyond this distance)"
],
"languages": [
"Common plus two other languages"
],
"challengeRating": 5,
"experiencePoints": 1800,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "",
"savingThrows": [
{
"ability": "intelligence",
"proficient": true
},
{
"ability": "charisma",
"proficient": true
}
],
"skills": [
{
"name": "Deception",
"proficient": true
},
{
"name": "Perception",
"proficient": true
},
{
"name": "Arcana",
"proficient": true
},
{
"name": "History",
"proficient": true
},
{
"name": "Nature",
"proficient": true
},
{
"name": "Religion",
"proficient": true
}
],
"additionalAbilities": [
{
"name": "Amorphous",
"description": "The adult oblex can move through a space as narrow as 1 inch wide without squeezing."
},
{
"name": "Aversion to Fire",
"description": "If the adult oblex takes fire damage, it has disadvantage on attack rolls and ability checks until the end of its next turn."
},
{
"name": "Innate Spellcasting",
"description": "The adult oblex's innate spellcasting ability is Intelligence (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>charm person</i> (as 5th-level spell), <i>color spray</i>, <i>detect thoughts</i>, <i>hold person</i> (as 3rd-level spell)"
},
{
"name": "Sulfurous Impersonation",
"description": "As a bonus action, the oblex can extrude a piece of itself that assumes the appearance of one Medium or smaller creature whose memories it has stolen. This simulacrum appears, feels, and sounds exactly like the creature it impersonates, though it smells faintly of sulfur. The oblex can impersonate 1d4 + 1 different creatures, each one tethered to its body by a strand of slime that can extend up to 120 feet away. For all practical purposes, the simulacrum is the oblex, meaning that the oblex occupies its space and the simulacrum's space simultaneously. The slimy tether is immune to damage, but it is severed if there is no opening at least 1 inch wide between the oblex's main body and the simulacrum. The simulacrum disappears if the tether is severed."
}
],
"actions": [
{
"name": "Multiattack",
"description": "The oblex makes one pseudopod attack and uses Eat Memories."
},
{
"name": "Pseudopod",
"description": "<i>Melee Weapon Attack:</i> +7 to hit, reach 5 ft., one target. <i>Hit:</i> 7 (1d6 + 4) bludgeoning damage plus 5 (2d4) psychic damage."
},
{
"name": "Eat Memories",
"description": "The oblex targets one creature it can see within 5 feet of it. The target must succeed on a DC 15 Wisdom saving throw or take 18 (4d8) psychic damage and become memory drained until it finishes a short or long rest or until it benefits from the <i>greater restoration</i> or <i>heal</i> spell. Constructs, oozes, plants, and undead succeed on the save automatically. \nWhile memory drained, the target must roll a d4 and subtract the number rolled from any ability check or attack roll it makes. Each time the target is memory drained beyond the first, the die size increases by one: the d4 becomes a d6, the d6 becomes a d8, and so on until the die becomes a d20, at which point the target becomes unconscious for 1 hour. The effect then ends. \nWhen an oblex causes a target to become memory drained, the oblex learns all the languages the target knows and gains all its proficiencies, except for any saving throw proficiencies."
}
],
"reactions": [
],
"legendaryActions": [
],
"hitDieSize": 8
},
"sharing": {
"linkSharingEnabled": false
},
"_id": "5ea4b8b663a0580dfd76d380",
"name": "Adult Oblex",
"__v": 0,
"publishedBestiaryId": "5ea4b8b463a0580dfd76d379"
},
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Medium",
"race": "Elemental",
"alignment": "Neutral",
"armorType": "Plate",
"armorClass": 18,
"numHitDie": 18,
"speed": "30 ft., fly 30 ft.",
"abilityScores": {
"strength": 18,
"dexterity": 14,
"constitution": 14,
"intelligence": 9,
"wisdom": 10,
"charisma": 10
},
"proficiencyBonus": 3,
"damageVulnerabilities": [
],
"damageResistances": [
"Lightning",
"Thunder",
"Bludgeoning",
"Piercing",
"Slashing",
"from non-magical attacks"
],
"damageImmunities": [
"Poison"
],
"conditionImmunities": [
"Paralyzed",
"Petrified",
"Poisoned",
"Prone"
],
"senses": [
"darkvision 60 ft."
],
"languages": [
"Auran",
"one language of its creator's choice"
],
"challengeRating": 7,
"experiencePoints": 2900,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "",
"savingThrows": [
],
"skills": [
],
"additionalAbilities": [
{
"name": "Magic Weapons",
"description": "The air elemental myrmidon's weapon attacks are magical."
}
],
"actions": [
{
"name": "Multiattack",
"description": "The myrmidon makes three melee attacks."
},
{
"name": "Flail",
"description": "<i>Melee Weapon Attack:</i> +7 to hit, reach 5 ft., one target. <i>Hit:</i> 8 (1d8 + 4) bludgeoning damage."
},
{
"name": "Lightning Strike (Recharge 6)",
"description": "The myrmidon makes one flail attack. If the attack hits, it deals an extra 18 (4d8) lightning damage, and the target must succeed on a DC 14 Constitution saving throw or be stunned until the end of the myrmidon’s next turn."
}
],
"reactions": [
],
"legendaryActions": [
],
"hitDieSize": 8
},
"sharing": {
"linkSharingEnabled": false
},
"_id": "5ea4b8b563a0580dfd76d37b",
"name": "Air Elemental Myrmidon",
"__v": 0,
"publishedBestiaryId": "5ea4b8b463a0580dfd76d379"
},
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Medium",
"race": "fiend (demon)",
"alignment": "Chaotic Evil",
"armorType": "natural armor",
"armorClass": 17,
"numHitDie": 15,
"speed": "40 ft.",
"abilityScores": {
"strength": 12,
"dexterity": 19,
"constitution": 22,
"intelligence": 6,
"wisdom": 11,
"charisma": 7
},
"proficiencyBonus": 4,
"damageVulnerabilities": [
],
"damageResistances": [
"Acid",
"Cold",
"Fire",
"Lightning",
"Bludgeoning",
"Piercing",
"Slashing",
"from non-magical attacks"
],
"damageImmunities": [
"Poison"
],
"conditionImmunities": [
"Charmed",
"Frightened",
"Poisoned"
],
"senses": [
"darkvision 120 ft."
],
"languages": [
"understands Abyssal but can't speak"
],
"challengeRating": 11,
"experiencePoints": 7200,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "",
"savingThrows": [
{
"ability": "dexterity",
"proficient": true
},
{
"ability": "constitution",
"proficient": true
}
],
"skills": [
{
"name": "Stealth",
"proficient": true
}
],
"additionalAbilities": [
{
"name": "Amorphous",
"description": "The alkilth can move through a space as narrow as 1 inch wide without squeezing."
},
{
"name": "False Appearance",
"description": "While the alkilth is motionless, it is indistinguishable from an ordinary slime or fungus."
},
{
"name": "Forment Madness",
"description": "Any creature that isn't a demon that starts its turn within 30 feet of the alkilth must succeed on a DC 18 Wisdom saving throw, or it hears a faint buzzing in its head for a moment and has disadvantage on its next attack roll, saving throw, or ability check.\nIf the saving throw against Forment Madness fails by 5 or more, the creature is instead subjected to the <i>confusion</i> spell for 1 minute (no concentration required by the alkilth). While under the effect of that <i>confusion</i>, the creature is immune to Forment Madness."
},
{
"name": "Magic Resistance",
"description": "The alkilth has advantage on saving throws against spells and other magical effects."
}
],
"actions": [
{
"name": "Multiattack",
"description": "The alkilth makes three tentacle attacks."
},
{
"name": "Tentacle",
"description": "<i>Melee Weapon Attack:</i> +8 to hit, reach 15 ft., one target. <i>Hit:</i> 18 (4d6 + 4) acid damage."
}
],
"reactions": [
],
"legendaryActions": [
],
"hitDieSize": 8
},
"sharing": {
"linkSharingEnabled": false
},
"_id": "5ea4b8b563a0580dfd76d37c",
"name": "Alkilth",
"__v": 0,
"publishedBestiaryId": "5ea4b8b463a0580dfd76d379"
},
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Medium",
"race": "Undead",
"alignment": "Neutral Evil",
"armorType": null,
"armorClass": 13,
"numHitDie": 9,
"speed": "fly 40 ft. (hover)",
"abilityScores": {
"strength": 6,
"dexterity": 17,
"constitution": 10,
"intelligence": 17,
"wisdom": 15,
"charisma": 16
},
"proficiencyBonus": 3,
"damageVulnerabilities": [
],
"damageResistances": [
"Acid",
"Fire",
"Lightning",
"Thunder",
"Bludgeoning",
"Piercing",
"Slashing",
"from non-magical attacks"
],
"damageImmunities": [
"Cold",
"Necrotic",
"Poison"
],
"conditionImmunities": [
"Charmed",
"Exhaustion",
"Frightened",
"Grappled",
"Paralyzed",
"Petrified",
"Poisoned",
"Prone",
"Restrained"
],
"senses": [
"darkvision 60 ft."
],
"languages": [
"the languages it knew in life"
],
"challengeRating": 5,
"experiencePoints": 1800,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "",
"savingThrows": [
{
"ability": "intelligence",
"proficient": true
},
{
"ability": "wisdom",
"proficient": true
}
],
"skills": [
{
"name": "Perception",
"proficient": true
},
{
"name": "Stealth",
"proficient": true
}
],
"additionalAbilities": [
{
"name": "Incorporeal Movement",
"description": "The allip can move through other creatures and objects as if they were difficult terrain. It takes 5 (1d10) force damage if it ends its turn inside an object."
}
],
"actions": [
{
"name": "Maddening Touch",
"description": "<i>Melee Spell Attack:</i> +6 to hit, reach 5 ft., one target. <i>Hit:</i> 17 (4d6 + 3) psychic damage."
},
{
"name": "Whispers of Madness",
"description": "The allip chooses up to three creatures it can see within 60 feet of it. Each target must succeed on a DC 14 Wisdom saving throw, or it takes 7 (1d8 + 3) psychic damage and must use its reaction to make a melee attack against one creature of the allip's choice that the allip can see. Constructs and undead are immune to this effect."
},
{
"name": "Howling Babble (Recharge 6)",
"description": "Each creature within 30 feet of the allip that can hear it must make a DC 14 Wisdom saving throw. On a failed save, a target takes 12 (2d8 + 3) psychic damage, and it is stunned until the end of its next turn. On a successful save, it takes half as much damage and isn't stunned. Constructs and undead are immune to this effect."
}
],
"reactions": [
],
"legendaryActions": [
],
"hitDieSize": 8
},
"sharing": {
"linkSharingEnabled": false
},
"_id": "5ea4b8b563a0580dfd76d37d",
"name": "Allip",
"__v": 0,
"publishedBestiaryId": "5ea4b8b463a0580dfd76d379"
},
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Medium",
"race": "fiend (devil)",
"alignment": "Lawful Evil",
"armorType": "natural armor",
"armorClass": 21,
"numHitDie": 27,
"speed": "30 ft., fly 40 ft.",
"abilityScores": {
"strength": 11,
"dexterity": 13,
"constitution": 16,
"intelligence": 20,
"wisdom": 12,
"charisma": 18
},
"proficiencyBonus": 6,
"damageVulnerabilities": [
],
"damageResistances": [
"Cold",
"Bludgeoning",
"Piercing",
"Slashing",
"from non-magical attacks"
],
"damageImmunities": [
"Fire",
"Poison"
],
"conditionImmunities": [
"Charmed",
"Poisoned"
],
"senses": [
"darkvision 120 ft."
],
"languages": [
"Common",
"Infernal",
"telepathy 1,000 ft."
],
"challengeRating": 18,
"experiencePoints": 20000,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "",
"savingThrows": [
{
"ability": "dexterity",
"proficient": true
},
{
"ability": "constitution",
"proficient": true
},
{
"ability": "wisdom",
"proficient": true
},
{
"ability": "charisma",
"proficient": true
}
],
"skills": [
{
"name": "Perception",
"proficient": true
}
],
"additionalAbilities": [
{
"name": "Devil's Sight",
"description": "Magical darkness doesn't impede the amnizu's darkvision."
},
{
"name": "Innate Spellcasting",
"description": "The amnizu's innate spellcasting ability is Intelligence (spell save DC 19, +11 to hit with spell attacks). It can innately cast the following spells, requiring no material components:\n\nAt will: <i>charm person</i>, <i>command</i>\n3/day: <i>dominate person</i>, <i>fireball</i>\n1/day: <i>dominate monster</i>, <i>feeblemind</i>"
},
{
"name": "Magic Resistance",
"description": "The amnizu has advantage on saving throws against spells and other magical effects."
}
],
"actions": [
{
"name": "Multiattack",
"description": "The amnizu uses Poison Mind. It also makes two attacks: one with its whip and one with its Disruptive Touch."
},
{
"name": "Taskmaster Whip",
"description": "<i>Melee Weapon Attack:</i> +11 to hit, reach 10 ft., one target. <i>Hit:</i> 10 (2d4 + 5) slashing damage plus 33 (6d10) force damage."
},
{
"name": "Disruptive Touch",
"description": "<i>Melee Spell Attack:</i> +11 to hit, reach 5 ft., one target. <i>Hit:</i> 44 (8d10) necrotic damage."
},
{
"name": "Poison Mind",
"description": "The amnizu targets one or two creatures it can see within 60 feet of it. Each target must succeed on a DC 19 Wisdom saving throw or take 26 (4d12) necrotic damage and be blinded until the start of the amnizu's next turn."
},
{
"name": "Forgetfulness (Recharge 6)",
"description": "The amnizu targets one creature it can see within 60 feet of it. That creature must succeed on a DC 18 Intelligence saving throw or be stunned for 1 minute. A stunned creature repeats the saving throw at the end of each of its turns, ending the effect on itself on a success. If the target is stunned for the full minute, it forgets everything it sensed, experienced, or learned during the last 5 hours."
}
],
"reactions": [
{
"name": "Instinctive Charm",
"description": "When a creature within 60 feet of the amnizu makes an attack roll against it, and another creature is within the attack's range, the attacker must make a DC 19 Wisdom saving throw. On a failed save, the attacker must target the creature that is closest to it, not including the amnizu or itself. If multiple creatures are closest, the attacker chooses which one to target. If the saving throw it successful, the attacker is immune to the amnizu's Instinctive Charm for the next 24 hours."
}
],
"legendaryActions": [
],
"hitDieSize": 8
},
"sharing": {
"linkSharingEnabled": false
},
"_id": "5ea4b8b663a0580dfd76d386",
"name": "Amnizu",
"__v": 0,
"publishedBestiaryId": "5ea4b8b463a0580dfd76d379"
},
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Large",
"race": "fiend (demon)",
"alignment": "Chaotic Evil",
"armorType": "natural armor",
"armorClass": 16,
"numHitDie": 8,
"speed": "60 ft.",
"abilityScores": {
"strength": 21,
"dexterity": 18,
"constitution": 21,
"intelligence": 8,
"wisdom": 12,
"charisma": 13
},
"proficiencyBonus": 3,
"damageVulnerabilities": [
],
"damageResistances": [
"Cold",
"Fire",
"Lightning"
],
"damageImmunities": [
"Poison"
],
"conditionImmunities": [
"Poisoned"
],
"senses": [
"darkvision 120 ft."
],
"languages": [
"Abyssal",
"telepathy 120 ft."
],
"challengeRating": 7,
"experiencePoints": 2900,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "",
"savingThrows": [
],
"skills": [
],
"additionalAbilities": [
{
"name": "Magic Resistance",
"description": "The armanite has advantage on saving throws against spells and other magical effects."
},
{
"name": "Magic Weapons",
"description": "The armanite's weapon attacks are magical."
}
],
"actions": [
{
"name": "Multiattack",
"description": "The armanite makes three attacks: one with its hooves, one with its claws, and one with its serrated tail."
},
{
"name": "Hooves",
"description": "<i>Melee Weapon Attack:</i> +8 to hit, reach 5 ft., one target. <i>Hit:</i> 12 (2d6 + 5) bludgeoning damage."
},
{
"name": "Claw",
"description": "<i>Melee Weapon Attack:</i> +8 to hit, reach 5 ft., one target. <i>Hit:</i> 10 (2d4 + 5) slashing damage."
},
{
"name": "Serrated Tail",
"description": "<i>Melee Weapon Attack:</i> +8 to hit, reach 10 ft., one target. <i>Hit:</i> 16 (2d10 + 5) slashing damage."
},
{
"name": "Lightning Lance (Recharge 5-6)",
"description": "The armanite looses a bolt of lightning in a line 60 feet long and 10 feet wide. Each creature in the line must succeed on a DC 15 Dexterity saving throw, taking 27 (6d8) lightning damage on a failed save, or half as much damage on a successful one."
}
],
"reactions": [
],
"legendaryActions": [
],
"hitDieSize": 10
},
"sharing": {
"linkSharingEnabled": false
},
"_id": "5ea4b8b663a0580dfd76d384",
"name": "Armanite",
"__v": 0,
"publishedBestiaryId": "5ea4b8b463a0580dfd76d379"
},
{
"flavor": {
"faction": "",
"environment": "",
"description": "",
"nameIsProper": false,
"imageUrl": ""
},
"stats": {
"size": "Gargantuan",
"race": "monstrosity (titan)",
"alignment": "Unaligned",
"armorType": "natural armor",
"armorClass": 20,
"numHitDie": 17,
"speed": "15 ft., fly 80 ft. (hover)",
"abilityScores": {
"strength": 28,
"dexterity": 7,
"constitution": 25,
"intelligence": 5,
"wisdom": 14,
"charisma": 18
},
"proficiencyBonus": 7,
"damageVulnerabilities": [
],
"damageResistances": [
"Bludgeoning",
"Piercing",
"Slashing",
"from non-magical attacks"
],
"damageImmunities": [
],
"conditionImmunities": [
"Charmed",
"Exhaustion",
"Frightened",
"Paralyzed",
"Petrified",
"Poisoned",
"Prone",
"Stunned"
],
"senses": [
"darkvision 120 ft."
],
"languages": [
],
"challengeRating": 21,
"experiencePoints": 33000,
"legendaryActionsPerRound": 3,
"legendaryActionsDescription": "The astral dreadnought 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 astral dreadnought regains spent legendary actions at the start of its turn.",
"savingThrows": [
{
"ability": "dexterity",
"proficient": true
},
{
"ability": "wisdom",
"proficient": true
}
],
"skills": [
{
"name": "Perception",
"proficient": true
}
],
"additionalAbilities": [
{
"name": "Antimagic Cone",
"description": "The astral dreadnought's opened eye creates an area of antimagic, as in the <i>antimagic field</i> spell, in a 150-foot cone. At the start of each of its turns, the dreadnought decides which way the cone faces. The cone doesn't function while the dreadnought's eye is closed or while the dreadnought is blinded."
},
{
"name": "Astral Entity",
"description": "The astral dreadnought can't leave the Astral Plane, nor can it be banished or otherwise transported out of the Astral Plane."
},
{
"name": "Demiplanar Donjon",
"description": "Any creature or object that the astral dreadnought swallows is transported to a demiplane that can be entered by no other means except a <i>wish</i> spell or this creature's Donjon Visit ability. A creature can leave the demiplane only by using magic that enables planar travel, such as the <i>plane shift</i> spell. The demiplane resembles a stone cave roughly 1,000 feet in diameter with a ceiling 100 feet high."
},
{
"name": "Legendary Resistance (3/Day)",
"description": "If the astral dreadnought fails a saving throw, it can choose to succeed instead."
},
{
"name": "Magic Weapons",
"description": "The astral dreadnought's weapon attacks are magical."
},
{
"name": "Sever Silver Cord",
"description": "If the astral dreadnought scores a critical hit against a creature traveling through the Astral Plane by means of the <i>astral projection</i> spell, the dreadnought can cut the creature's silver cord instead of dealing damage."
}
],
"actions": [
{
"name": "Multiattack",
"description": "The astral dreadnought makes three attacks: one with its bite and two with its claws."
},
{
"name": "Bite",
"description": "<i>Melee Weapon Attack:</i> +16 to hit, reach 10 ft., one target. <i>Hit:</i> 36 (5d10 + 9) piercing damage. If the target is a creature of Huge size or smaller and this damage reduces it to 0 hit points or it is incapacitated, the astral dreadnought swallows it. The swallowed target, along with everything it is wearing and carrying, appears in an unoccupied space on the floor of the astral dreadnought's Demiplanar Donjon."
},
{