forked from TheGiddyLimit/homebrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStoneStrix; Monster a Day Compendium.json
12562 lines (12562 loc) · 257 KB
/
StoneStrix; Monster a Day Compendium.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
{
"_meta": {
"sources": [
{
"json": "MaDSS",
"abbreviation": "MaDSS",
"full": "Reddit Monster a Day Compendium",
"authors": [
"u/StoneStrix"
],
"convertedBy": [
"matteraByte",
"Zombiekiller101"
],
"version": "1.1",
"url": "https://www.reddit.com/r/monsteraday/",
"targetSchema": "1.9.2"
}
],
"dateAdded": 1555128410,
"dateLastModified": 1555128410
},
"monster": [
{
"source": "MaDSS",
"name": "Winter Sprite",
"size": "T",
"type": "fey",
"alignment": [
"N"
],
"ac": [
15
],
"hp": {
"average": 7,
"formula": "2d4 + 2"
},
"speed": {
"walk": 10,
"fly": 30
},
"str": 2,
"dex": 20,
"con": 12,
"int": 10,
"wis": 14,
"cha": 15,
"skill": {
"perception": "+4",
"stealth": "+7"
},
"passive": 14,
"immune": [
"cold"
],
"languages": [
"sylvan"
],
"cr": "1",
"trait": [
{
"name": "Magic Resistance",
"entries": [
"The sprite has advantage on saving throws against spells and other magical effects."
]
},
{
"name": "Flyby",
"entries": [
"The sliver doesn't provoke opportunity attacks when it flies out of an enemy's reach."
]
}
],
"spellcasting": [
{
"name": "Innate Spellcasting",
"headerEntries": [
"The sprite's innate spellcasting ability is Charisma (spell save {@dc 12}, {@hit 4} to hit with spell attacks). It can innately cast the following spells, requiring no material components:"
],
"will": [
"{@spell druidcraft}",
"{@spell frostbite|XGE}"
],
"daily": {
"1e": [
"{@spell blur}",
"{@spell counterspell}",
"{@spell fog cloud}",
"{@spell ice knife|XGE}",
"{@spell sleet storm}",
"{@spell snilloc's Snowball Swarm|XGE}"
]
},
"ability": "cha"
}
],
"action": [
{
"name": "Icesickle",
"entries": [
"{@atk mw} {@hit 7} to hit, reach 5 ft., one creature. {@h}1 slashing damage, and the target must succeed on a {@dc 10} Constitution saving throw or take 3 ({@damage 1d6}) cold damage and then be {@condition paralyzed} until the end of the sprite's next turn."
]
}
],
"traitTags": [
"Flyby",
"Magic Resistance"
],
"spellcastingTags": [
"I"
],
"damageTags": [
"C",
"S"
],
"miscTags": [
"MW"
],
"conditionInflicted": [
"paralyzed"
],
"conditionInflict": [
"paralyzed"
],
"conditionInflictSpell": [
"prone"
]
},
{
"source": "MaDSS",
"name": "Winged Sliver",
"size": "L",
"type": {
"type": "monstrosity",
"tags": [
"sliver"
]
},
"alignment": [
"N",
"E"
],
"ac": [
12
],
"hp": {
"average": 60,
"formula": "8d10 + 16"
},
"speed": {
"walk": 30,
"fly": 60
},
"str": 18,
"dex": 14,
"con": 14,
"int": 11,
"wis": 12,
"cha": 10,
"skill": {
"perception": "+3"
},
"passive": 13,
"senses": [
"darkvision 60 ft."
],
"languages": [
"Sliver (see Hive Mind)"
],
"cr": "3",
"trait": [
{
"name": "Hive Mind",
"entries": [
"All slivers within 100 miles of their queen are in constant communication via a telepathic bond. If one sliver is aware of a threat, they all are."
]
},
{
"name": "Flight of the Hive",
"entries": [
"All slivers within 120 feet of the winged sliver have a fly speed of 60 ft. and the Flyby feature."
]
},
{
"name": "Flyby",
"entries": [
"The sliver doesn't provoke opportunity attacks when it flies out of an enemy's reach."
]
}
],
"action": [
{
"name": "Multiattack",
"entries": [
"The silver makes two claw attacks."
]
},
{
"name": "Claw",
"entries": [
"{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 4}) slashing damage."
]
}
],
"traitTags": [
"Flyby"
],
"actionTags": [
"Multiattack"
],
"senseTags": [
"D"
],
"damageTags": [
"S"
],
"miscTags": [
"MW"
]
},
{
"source": "MaDSS",
"name": "Winged Ape",
"size": "M",
"type": "monstrosity",
"alignment": [
"N"
],
"ac": [
{
"ac": 13,
"from": [
"natural armor"
]
}
],
"hp": {
"average": 39,
"formula": "6d8 + 12"
},
"speed": {
"walk": 30,
"climb": 30,
"fly": 50
},
"str": 16,
"dex": 14,
"con": 14,
"int": 10,
"wis": 12,
"cha": 9,
"skill": {
"athletics": "+5",
"perception": "+3"
},
"passive": 13,
"languages": [
"Common"
],
"cr": "2",
"trait": [
{
"name": "Dive Attack",
"entries": [
"If the ape is flying and dives at least 30 feet straight toward a target and then hits it with a melee weapon attack, the attack deals an extra 7 ({@dice 2d6}) damage to the target."
]
},
{
"name": "Monkey Crip",
"entries": [
"The ape can wield a two-handed weapon in one hand."
]
}
],
"action": [
{
"name": "Multiattack",
"entries": [
"The ape makes two attacks: one with its fist and one with its greatsword."
]
},
{
"name": "Fist",
"entries": [
"{@atk mw} {@hit 5} to hit, reach 5 ft., one target. Hit 6 ({@damage 1d6 + 3}) bludgeoning damage."
]
},
{
"name": "Greatsword",
"entries": [
"{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}10 ({@dice 2d6 + 3}} slashing damage."
]
},
{
"name": "Rock",
"entries": [
"{@atk rw} {@hit 5} to hit, range 25/50 ft., one target. {@h}6 ({@damage 1d6 + 3}) bludgeoning damage."
]
}
],
"actionTags": [
"Multiattack"
],
"languageTags": [
"C"
],
"damageTags": [
"B"
],
"miscTags": [
"MW",
"RW"
]
},
{
"source": "MaDSS",
"name": "Wight Walker",
"size": "M",
"type": "undead",
"alignment": [
"N",
"E"
],
"ac": [
{
"ac": 16,
"from": [
"natural armor"
]
}
],
"hp": {
"average": 112,
"formula": "15d8 + 45"
},
"speed": {
"walk": 30
},
"str": 16,
"dex": 15,
"con": 16,
"int": 10,
"wis": 14,
"cha": 16,
"skill": {
"perception": "+5",
"stealth": "+5"
},
"passive": 15,
"resist": [
"cold",
"necrotic",
{
"resist": [
"bludgeoning",
"piercing",
"slashing"
],
"note": "from nonmagical weapons that aren't silvered",
"cond": true
}
],
"immune": [
"poison"
],
"conditionImmune": [
"exhaustion",
"poisoned"
],
"senses": [
"darkvision 60 ft."
],
"languages": [
"the languages it knew in life"
],
"cr": "6",
"trait": [
{
"name": "Chilled Body",
"entries": [
"A creature that touches the wight or hits it with a melee attack while within 5 feet of it takes 7 ({@damage 2d6}) cold damage."
]
}
],
"action": [
{
"name": "Multiattack",
"entries": [
"The wight makes two battieaxe attacks. It can use its Life Drain in place of one battieaxe attack."
]
},
{
"name": "Battieaxe",
"entries": [
"{@atk mw} {@hit 6} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage plus 7 ({@damage 2d6}) cold damage, or 8 ({@damage 1d10 + 3}) slashing damage plus 7 ({@damage 2d6}) cold damage if used with two hands."
]
},
{
"name": "Life Drain",
"entries": [
"{@atk mw} {@hit 6} to hit, reach 5 ft., one creature. {@h}10 ({@dice 2d6 + 3}} necrotic damage. The target must succeed on a {@dc 15} Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken, This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. A humanoid slain by this attack rises 24 hours later as a zombie under the wight's control, unless the humanoid is restored to life or its body is destroyed. The wight can have no more than twelve zombies under its control at one time."
]
},
{
"name": "Frost Breath (Recharge 5-6)",
"entries": [
"The wight exhales a biast of frosty wind in a 15-foot cone. Each creature in that area must make a {@dc 15} Dexterity saving throw, taking 27 ({@damage 6d8}) cold damage on a failed save, or half as much damage on a successful one."
]
}
],
"actionTags": [
"Breath Weapon",
"Multiattack"
],
"senseTags": [
"D"
],
"damageTags": [
"S",
"C"
],
"miscTags": [
"MW",
"AOE"
],
"languageTags": [
"LF"
]
},
{
"source": "MaDSS",
"name": "Werewolf Alpha",
"size": "M",
"type": {
"type": "humanoid",
"tags": [
"human",
"shapechanger"
]
},
"alignment": [
"C",
"E"
],
"ac": [
{
"ac": 14,
"condition": "in humanoid form",
"from": [
"armor scraps"
]
},
{
"ac": 16,
"from": [
"natural armor"
],
"condition": "in wolf or hybrid form"
}
],
"hp": {
"average": 119,
"formula": "14d8 + 56"
},
"speed": {
"walk": {
"number": 30,
"condition": "(40 ft. in wolf form)"
}
},
"str": 20,
"dex": 15,
"con": 18,
"int": 11,
"wis": 14,
"cha": 15,
"save": {
"str": "+9",
"con": "+8",
"wis": "+6"
},
"skill": {
"athletics": "+9",
"perception": "+6"
},
"passive": 16,
"immune": [
{
"immune": [
"bludgeoning",
"piercing",
"slashing damage"
],
"note": "from nonmagical weapons that aren't silvered",
"cond": true
}
],
"languages": [
"Common (can't speak in wolf form)"
],
"cr": "9",
"trait": [
{
"name": "Legendary Resistance (3/day)",
"entries": [
"If the werewolf fails a saving throw, it can choose to succeed instead."
]
},
{
"name": "Keen Hearing and Smell",
"entries": [
"The werewolf has advantage on Wisdom (Perception) checks that rely on hearing or smell."
]
},
{
"name": "Pack Leader",
"entries": [
"The werewolf's allies have advantage on melee attack rolls against any hostile creature within 5 feet of the werewolf."
]
},
{
"name": "Shapechanger",
"entries": [
"The werewolf can use its action to polymorph into a wolf-humanoid hybrid or into a wolf, or back into its true form, which is humanoid. Its statistics, other than its AC, are the same in each form. Any equipment it is wearing or carrying isn't transformed. It reverts to its true form if it dies."
]
}
],
"action": [
{
"name": "Multiattack (Hybrid Form Only)",
"entries": [
"The werewolf makes three attacks: one with its bite and two with its claws."
]
},
{
"name": "Bite (Wolfor Hybrid Form Only)",
"entries": [
"{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}14 ({@damage 2d8 + 5}) piercing damage. If the target is a humanoid, it must succeed on a {@dc 14} Constitution saving throw or be cursed with werewolf lycanthropy."
]
},
{
"name": "Claws (Hybrid Form Only)",
"entries": [
"{@atk mw} {@hit 9} to hit, reach 5 ft., one target. {@h}16 ({@damage 2d10 + 5}) slashing damage."
]
}
],
"reaction": [
{
"name": "Parry",
"entries": [
"The titan adds 5 to its AC against one melee attack that would hit it. To do so, the titan must see the attacker and be wielding a melee weapon."
]
}
],
"legendary": [
{
"name": "Leap",
"entries": [
"The werewolf moves up to its speed without provoking opportunity attacks."
]
},
{
"name": "Bark Orders",
"entries": [
"The werewolf chooses a friendly creature who can see or hear it. That creature can use its reaction to move up to its speed without provoking opportunity attacks."
]
},
{
"name": "Frenzy (Costs 2 Actions)",
"entries": [
"The werewolf can make one claw attack against each creature within 5 feet of it."
]
}
],
"traitTags": [
"Keen Senses",
"Legendary Resistances",
"Shapechanger"
],
"actionTags": [
"Multiattack",
"Parry"
],
"languageTags": [
"C",
"CS"
],
"damageTags": [
"P",
"S"
],
"miscTags": [
"MW"
]
},
{
"source": "MaDSS",
"name": "War Titan",
"size": "H",
"type": {
"type": "fiend",
"tags": [
"titan"
]
},
"alignment": [
"C",
"G",
"NY",
"E"
],
"ac": [
{
"ac": 18,
"from": [
"natural armor"
]
}
],
"hp": {
"average": 207,
"formula": "18d12 + 90"
},
"speed": {
"walk": 40
},
"str": 25,
"dex": 10,
"con": 20,
"int": 7,
"wis": 10,
"cha": 16,
"passive": 10,
"save": {
"str": "+12",
"con": "+10"
},
"resist": [
{
"resist": [
"bludgeoning",
"piercing",
"slashing"
],
"note": "from nonmagical weapons",
"cond": true
}
],
"immune": [
"exhaustion",
"frightened",
"stunned"
],
"senses": [
"darkvision 120 ft."
],
"languages": [
"Celestial",
"Infernal",
"Abyssal"
],
"cr": "16",
"trait": [
{
"name": "Legendary Resistance (3/day)",
"entries": [
"If the titan fails a saving throw, it can choose to succeed instead."
]
},
{
"name": "Magic Resistance",
"entries": [
"The titan has advantage on saving throws against spells and other magical effects."
]
},
{
"name": "Magic Weapons",
"entries": [
"The titan's weapon attacks are magical."
]
},
{
"name": "Well-Armed",
"entries": [
"The titan can take one reaction on every turn in a combat."
]
}
],
"action": [
{
"name": "Multiattack",
"entries": [
"The titan makes two melee weapon attacks."
]
},
{
"name": "Longsword",
"entries": [
"{@atk mw} {@hit 12} to hit, reach 10 ft., one target. {@h}18 ({@damage 2d10 + 7}) slashing damage."
]
},
{
"name": "Blade Storm (Recharge 5-6)",
"entries": [
"The titan swings its weapons in a whirlwind of steel. Each creature within 10 feet of the titan must make a {@dc 20} Dexterity saving throw, taking 18 ({@damage 4d8}) bludgeoning damage, 18 ({@damage 4d8}) piercing damage, and 18 ({@damage 4d8}) slashing damage on a failed save, or half as much damage on a successful one."
]
}
],
"reaction": [
{
"name": "Parry",
"entries": [
"The titan adds 5 to its AC against one melee attack that would hit it. To do so, the titan must see the attacker and be wielding a melee weapon."
]
}
],
"legendary": [
{
"name": "Attack",
"entries": [
"The titan makes one attack."
]
},
{
"name": "War Cry (Costs 2 Actions)",
"entries": [
"Each creature within 120 feet of the titan that can hear it must succeed on a {@dc 16} Wisdom saving throw or take 10 ({@damage 4d4}) psychic damage and have disadvantage on the next attack roll it makes before the end of its next turn."
]
},
{
"name": "Hold the Line (Costs 2 Actions)",
"entries": [
"The titan gains 26 ({@dice 4d12}) temporary hit points."
]
}
],
"traitTags": [
"Legendary Resistances",
"Magic Resistance",
"Magic Weapons"
],
"actionTags": [
"Multiattack",
"Parry"
],
"languageTags": [
"CE",
"I",
"AB"
],
"senseTags": [
"SD"
],
"damageTags": [
"S",
"B",
"P",
"Y"
],
"miscTags": [
"MW",
"RCH"
]
},
{
"source": "MaDSS",
"name": "Vodyanoy",
"size": "M",
"type": "monstrosity",
"alignment": [
"C",
"N"
],
"ac": [
{
"ac": 16,
"from": [
"natural armor"
]
}
],
"hp": {
"average": 119,
"formula": "14d8 + 56"
},
"speed": {
"walk": 30,
"swim": 50
},
"str": 18,
"dex": 16,
"con": 18,
"int": 11,
"wis": 20,
"cha": 12,
"skill": {
"athletics": "+7",
"perception": "+8",
"insight": "+8"
},
"passive": 18,
"senses": [
"darkvision 60 ft."
],
"languages": [
"Aquan",
"Common",
"Sylvan"
],
"cr": "5",
"trait": [
{
"name": "Amphibious",
"entries": [
"The vodyanoy can breathe air and water."
]
}
],
"spellcasting": [
{
"name": "Innate Spellcasting",
"headerEntries": [
"The Vodyanoy's spellcasting ability is Wisdom (save {@dc 16}). The vodyanoy can innately cast the following spells, requiring only verbal components:"
],
"will": [
"{@spell druidcraft}",
"{@spell shape water|XGE}"
],
"daily": {
"3e": [
"{@spell fog cloud}",
"{@spell tidal wave|XGE}"
],
"1e": [
"{@spell divination}",
"{@spell watery sphere|XGE}"
]
},
"ability": "wis"
}
],
"action": [
{
"name": "Multiattack",
"entries": [
"The vodyanoy makes two slam attacks. If both attacks hit a Medium or smaller target, the target is {@condition grappled} (escape {@dc 15}). Until this {@condition grappled} ends, the target is {@condition restrained} and has disadvantage on Strength checks and Strength saving throws, the vodyanoy tries to drown it, and the vodyanoy can't slam another target."
]
},
{
"name": "Slam",
"entries": [
"{@atk mw} {@hit 7} to hit, reach 5 ft., one target. {@h}13 ({@damage 2d8 + 4}) bludgeoning damage."
]
}
],
"traitTags": [
"Amphibious"
],
"actionTags": [
"Multiattack"
],
"languageTags": [
"AQ",
"C",
"S"
],
"senseTags": [
"D"
],
"spellcastingTags": [
"I"
],
"damageTags": [
"B"
],
"miscTags": [
"MW"
],
"conditionInflicted": [
"grappled",
"restrained"
],
"conditionInflict": [
"grappled",
"restrained"
],
"conditionInflictSpell": [
"prone",
"restrained"
]
},
{
"source": "MaDSS",
"name": "Virulent Sliver",
"size": "L",
"type": {
"type": "monstrosity",
"tags": [
"sliver"
]
},
"alignment": [
"N",
"E"
],
"ac": [
12
],
"hp": {
"average": 52,
"formula": "7d10 + 14"
},
"speed": {
"walk": 30
},
"str": 16,
"dex": 14,
"con": 14,
"int": 11,
"wis": 12,
"cha": 10,
"skill": {
"perception": "+3"
},
"passive": 13,
"senses": [
"darkvision 60 ft."
],
"languages": [
"Sliver (see Hive Mind)"
],
"cr": "3",
"trait": [
{
"name": "Hive Mind",
"entries": [
"All slivers within 100 miles of their queen are in constant communication via a telepathic bond. If one sliver is aware of a threat, they all are."
]
},
{
"name": "Virulence of the Hive",
"entries": [
"All slivers within 120 feet of the virulent sliver have the Poison Claw feature."
]
},
{
"name": "Poison Claw",
"entries": [
"When the sliver hits a creature with a claw attack, the target must succeed on a {@dc 12} Constitution saving throw or become {@condition poisoned}. While {@condition poisoned} in this way, a target takes 5 (1dl0) poison damage at the start of each of its turns. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success."
]
}
],
"action": [
{
"name": "Multiattack",
"entries": [
"The silver makes two claw attacks."
]
},
{
"name": "Claw",
"entries": [
"{@atk mw} {@hit 5} to hit, reach 5 ft., one target. {@h}7 ({@damage 1d8 + 3}) slashing damage."
]
}
],
"actionTags": [
"Multiattack"
],
"senseTags": [
"D"
],
"damageTags": [
"S"
],
"miscTags": [
"MW"
],
"conditionInflicted": [
"poisoned"
],
"conditionInflict": [
"poisoned"
]
},
{
"source": "MaDSS",
"name": "Verdalin",
"size": "S",
"type": "fey",
"alignment": [
"N"
],
"ac": [
13
],
"hp": {
"average": 18,