-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathCOM_5ePack_CotN - Monsters.user
3520 lines (3520 loc) · 171 KB
/
COM_5ePack_CotN - Monsters.user
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
<?xml version="1.0" encoding="UTF-8"?>
<document signature="Hero Lab Data">
<thing id="ra5CFrttdN" name="Fortitude" description="If damage reduces [abText] to 0 hit points, [abText2] can make a Constitution save with a DC equaling 5 + the damage taken. On a successful save, [abText] drops to 1 hit point instead." compset="RaceSpec">
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
<tag group="Helper" tag="ShowSpec" name="Show Spec" abbrev="Show Spec"/>
<eval phase="Final" priority="50000"><![CDATA[field[CustDesc].text = "If damage reduces " & field[abText].text & " to 0 hit points, " & field[abText2].text & " can make a Constitution save with a DC equaling 5 + the damage taken. On a successful save, " & field[abText].text & " drops to 1 hit point instead."]]></eval>
</thing>
<thing id="ra5CRetStrkN" name="Retaliating Strike" description="When a creature within [abValue] feet of [abText] hits or misses [abText] with a melee attack, [abText] makes one Unarmed Strike attack against that attacker." compset="RaceSpec">
<tag group="FeatureTyp" tag="Reaction"/>
<tag group="abAction" tag="Reaction"/>
<tag group="Helper" tag="ShowSpec" name="Show Spec" abbrev="Show Spec"/>
<eval phase="Final" priority="50000"><![CDATA[field[CustDesc].text = "When a creature within " & field[abValue].value & " feet of " & field[abText].text & " hits or misses " & field[abText].text & " with a melee attack, " & field[abText].text & " makes one Unarmed Strike attack against that attacker."]]></eval>
</thing>
<thing id="ra5CAbSAblVsl" name="Abolethic Vessel" description="The spawn must obey its aboleth master." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
</thing>
<thing id="ra5COcSAlnMnd" name="Alien Mind" description="If a creature attempts to read the silvertongue's thoughts or deals psychic damage to the silvertongue, that creature must succeed on a DC 16 Intelligence save or be stunned until the beginning of its next turn." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
<tag group="StandardDC" tag="aCHA"/>
<tag group="abSave" tag="aINT"/>
</thing>
<thing id="ra5CAlxApthRej" name="Apotheonic Rejuvenation" description="When Alyxian the Callous drops to 0 hit points, his body dies and sheds its wings, and he rises to his feet in his third form, {b}Alyxian the Dispossessed{/b}. He keeps his place in the initiative order." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
</thing>
<thing id="ra5CAlxApthRej2" name="Apotheonic Rejuvenation" description="When Alyxian drops to 0 hit points, his body dies, cracking open like a cocoon. Alyxian immediately emerges from the cocoon in his second form, {b}Alyxian the Callous{/b}, in the space where his previous form died. He keeps his place in the initiative order." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
</thing>
<thing id="ra5COcIArcBlst" name="Arcane Blast" description="The initiate creates an explosion of magical force centered on a point it can see within 120 feet of itself. Each creature in a 20-foot-radius sphere around that point must make a DC 13 Dexterity save. On a failed save, the creature takes 10 (3d6) force damage and is pushed 10 feet away from the center of the area. On a successful save, it takes half the damage and isn't pushed." compset="RaceSpec">
<fieldval field="trkMax" value="1"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="User" tag="Tracker"/>
<tag group="FeatureTyp" tag="Action"/>
<tag group="abAction" tag="Action"/>
<tag group="StandardDC" tag="aCHA"/>
<tag group="abSave" tag="aDEX"/>
<tag group="Recharge" tag="5"/>
</thing>
<thing id="ra5CAlxArHrtS" name="Arch Heart's Strike" description="Alyxian makes one Spear attack. All damage from this attack is radiant." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Legendary"/>
<tag group="abAction" tag="Action"/>
<tag group="LegenAct" tag="1"/>
</thing>
<thing id="ra5CAlxBlndTl" name="Blinding Teleport" description="Alyxian teleports, along with his worn and carried equipment, to an open space he can see within 120 feet of himself. Each creature within 5 feet of his new location must succeed on a DC 17 Constitution save or be blinded until the end of its next turn." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Action"/>
<tag group="abAction" tag="Action"/>
<tag group="StandardDC" tag="aCHA"/>
<tag group="abSave" tag="aCON"/>
</thing>
<thing id="ra5CDemBdyShld" name="Body Shield" description="When the death embrace is hit by an attack, one creature the death embrace has grappled (chosen by the death embrace) takes the damage instead." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Reaction"/>
<tag group="abAction" tag="Reaction"/>
</thing>
<thing id="ra5CMHCBrnBrn" name="Brain Burn" description="The high curator targets up to two creatures it can see within 30 feet of itself. Each target must make a DC 18 Constitution save. On a failure, the target suffers 28 (8d6) psychic damage and can't use reactions until the beginning of its next turn. On a successful save, the target takes half the damage and suffers no other effect." compset="RaceSpec">
<fieldval field="trkMax" value="1"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="User" tag="Tracker"/>
<tag group="FeatureTyp" tag="Action"/>
<tag group="abAction" tag="Action"/>
<tag group="StandardDC" tag="aWIS"/>
<tag group="abSave" tag="aCON"/>
<tag group="Recharge" tag="4"/>
</thing>
<thing id="ra5CAlxClChns" name="Celestial Chains" description="Alyxian targets one creature he can see within 120 feet of himself. The target must succeed on a DC 17 Strength save or be restrained by magical chains for 1 minute. While so restrained, the target can't leave the space by any means. A creature can repeat the save at the end of each of its turns, ending the effect for itself on a success." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Legendary"/>
<tag group="abAction" tag="Action"/>
<tag group="StandardDC" tag="aCHA"/>
<tag group="abSave" tag="aSTR"/>
<tag group="LegenAct" tag="1"/>
</thing>
<thing id="ra5CSlBDthBrst" name="Death Burst" description="When the bloodfin dies, it explodes into a cloud of toxic blood. Each creature in a 10-foot-radius sphere centered on the exploding bloodfin, including any creature swallowed by the bloodfin, must succeed on a DC 15 Constitution save or suffer 10 (3d6) poison damage. A creature inside the bloodfin when it explodes falls prone in the space formerly occupied by the bloodfin and is no longer blinded or restrained by it." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
<tag group="StandardDC" tag="aCON"/>
<tag group="abSave" tag="aCON"/>
</thing>
<thing id="ra5CGArDeflct" name="Deflection" description="Galsariad warps gravity around himself, magically deflecting attacks. While Galsariad is wearing no armor and is not incapacitated, his AC includes his Intelligence modifier." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
<eval phase="PostAttr" priority="10000">hero.child[ArmorClass].field[tACUnarDef].value = #attrmod[aINT]</eval>
</thing>
<thing id="ra5CSoSDslDrn" name="Desolate Drain" description="Each creature in the swarm's space must make a DC 13 Wisdom save. On a failure, a creature takes 24 (7d6) psychic damage and is stunned until the end of its next turn. The effect ends on a creature if the swarm moves out of the creature's space or if another creature within 5 feet of the swarm uses an action to make a DC 14 Strength check, pulling the affected creature out of the swarm on a successful check. On a successful saving throw, a creature takes half the damage and suffers no other effects." compset="RaceSpec">
<fieldval field="trkMax" value="1"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="User" tag="Tracker"/>
<tag group="FeatureTyp" tag="Action"/>
<tag group="abAction" tag="Action"/>
<tag group="StandardDC" tag="aSTR"/>
<tag group="abSave" tag="aSTR"/>
<tag group="Recharge" tag="5"/>
</thing>
<thing id="ra5CGArDstGrvt" name="Distort Gravity" description="Galsariad targets himself or one willing creature that he can see within 60 feet of himself. Any creature within 5 feet of the chosen creature takes 14 (4d6) force damage. Additionally, the target can use a reaction to float upward, up to 20 feet, without provoking attacks of opportunity. When this effect ends at the beginning of Galsariad's next turn, the target floats gently down up to 20 feet." compset="RaceSpec">
<fieldval field="trkMax" value="1"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="User" tag="Tracker"/>
<tag group="FeatureTyp" tag="Reaction"/>
<tag group="abAction" tag="Reaction"/>
<tag group="Usage" tag="Day"/>
<eval phase="First"><![CDATA[field[CustDesc].text = "Galsariad targets himself or one willing creature that he can see within 60 feet of himself. Any creature within 5 feet of the chosen creature takes " & field[abText].text & " force damage. Additionally, the target can use a reaction to float upward, up to 20 feet, without provoking attacks of opportunity. When this effect ends at the beginning of Galsariad's next turn, the target floats gently down up to 20 feet."]]></eval>
</thing>
<thing id="ra5CAlxDivBls" name="Divinely Blessed" description="Alyxian can't be surprised and can't be changed into another form unless he wills it." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
</thing>
<thing id="ra5COcSElmSrv" name="Elemental Servitor (Bonus)" description="The silvertongue uses a bonus action to magically summon an earth elemental, which appears in an open space the silvertongue can see within 60 feet of itself. The earth elemental takes its turn immediately after the silvertongue, on the same initiative count, and obeys the silvertongue's orders. The earth elemental disappears after 1 minute or when it or the silvertongue dies." compset="RaceSpec">
<fieldval field="trkMax" value="1"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="User" tag="Tracker"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="Bonus"/>
<tag group="Usage" tag="Day"/>
</thing>
<thing id="ra5CAabEnslv" name="Enslave (Bonus)" description="The aboleth uses a bonus action to target one creature it can see within 30 feet of itself. The target must succeed on a DC 14 Wisdom save or be magically charmed by the aboleth until the aboleth dies or until it moves to a different plane of existence from the target. The charmed target is controlled by the aboleth and can't use reactions, and the aboleth and the target can communicate telepathically with each other over any distance.\nThe charmed target can repeat the save whenever it takes damage, ending the effect for itself on a success. No more than once every 24 hours, the target can repeat the save when it is at least 1 mile away from the aboleth." compset="RaceSpec">
<fieldval field="trkMax" value="1"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="User" tag="Tracker"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="Bonus"/>
<tag group="StandardDC" tag="aCON"/>
<tag group="abSave" tag="aWIS"/>
<tag group="Recharge" tag="4"/>
</thing>
<thing id="ra5CAlxFlare" name="Flare" description="Alyxian targets one creature he can see within 30 feet of himself. Light flares around the target, dealing 17 (5d6) radiant damage to it and to creatures within 10 feet of it." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Legendary"/>
<tag group="abAction" tag="Action"/>
<tag group="LegenAct" tag="2"/>
</thing>
<thing id="ra5CAlxFrcWv" name="Force Wave" description="Alyxian strikes the ground, creating an outward-rippling blast of energy. Each creature he chooses within a 30-foot-radius sphere centered on himself must succeed on a DC 17 Constitution save or take 35 (10d6) force damage and be knocked prone. A creature that succeeds on the saving throw takes half the damage and isn't knocked prone." compset="RaceSpec">
<fieldval field="trkMax" value="1"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="User" tag="Tracker"/>
<tag group="FeatureTyp" tag="Action"/>
<tag group="abAction" tag="Action"/>
<tag group="StandardDC" tag="aCHA"/>
<tag group="abSave" tag="aCON"/>
<tag group="Usage" tag="Day"/>
</thing>
<thing id="ra5CScAGlyShld" name="Glyph of Shielding" description="The agent gains +2 to its AC against one attack that would hit it. To do so, the agent must be able to see the attacker and have a free hand." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Reaction"/>
<tag group="abAction" tag="Reaction"/>
</thing>
<thing id="ra5CGArGrvWv1" name="Gravity Wave" description="Galsariad causes a magical, rippling wave of gravity at a point he can see within 120 feet of himself. Each creature in a 10-foot-radius sphere centered on that point must make a DC 13 Strength save. On a failed save, the creature takes 17 (5d6) force damage and is pulled up to 10 feet toward the center of the sphere. On a successful save, the creature takes half the damage and isn't pulled." compset="RaceSpec">
<fieldval field="trkMax" value="1"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="User" tag="Tracker"/>
<tag group="FeatureTyp" tag="Action"/>
<tag group="abAction" tag="Action"/>
<tag group="StandardDC" tag="aINT"/>
<tag group="abSave" tag="aSTR"/>
<tag group="Recharge" tag="5"/>
</thing>
<thing id="ra5CGArGrvWv2" name="Gravity Wave" description="Galsariad causes a magical, rippling wave of gravity at a point he can see within 100 feet of himself. Each creature in a 20-foot-radius sphere centered on that point must make a DC 15 Strength save. On a failed save, the creature takes 35 (10d6) force damage, is pulled up to 20 feet toward the center of the sphere, and is knocked prone. On a successful save, the creature takes half the damage and isn't pulled or knocked prone." compset="RaceSpec">
<fieldval field="trkMax" value="1"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="User" tag="Tracker"/>
<tag group="FeatureTyp" tag="Action"/>
<tag group="abAction" tag="Action"/>
<tag group="StandardDC" tag="aINT"/>
<tag group="abSave" tag="aSTR"/>
<tag group="Recharge" tag="5"/>
</thing>
<thing id="ra5CGArGrvWv3" name="Gravity Wave" description="Galsariad causes a magical, rippling wave of gravity at a point he can see within 100 feet of himself. Each creature in a 30-foot-radius sphere centered on that point must make a DC 16 Strength save. On a failed save, the creature takes 42 (12d6) force damage and is restrained for 1 minute. On a successful save, the creature takes half the damage and isn't restrained. A creature restrained by the sphere can repeat the saving throw at the end of each of its turns, ending the restraint for itself on a success." compset="RaceSpec">
<fieldval field="trkMax" value="1"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="User" tag="Tracker"/>
<tag group="FeatureTyp" tag="Action"/>
<tag group="abAction" tag="Action"/>
<tag group="StandardDC" tag="aINT"/>
<tag group="abSave" tag="aSTR"/>
<tag group="Recharge" tag="5"/>
</thing>
<thing id="ra5CMnIGrdMnd" name="Guarded Mind" description="Spells and other effects can't read the infiltrator's thoughts or discern whether the infiltrator is lying. Creatures can communicate telepathically with the infiltrator only if it allows such contact." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
</thing>
<thing id="ra5CAlxHvnDst" name="Heavenly Destruction" description="Each creature of Alyxian's choice in a 60-foot cone emanating from him must make a DC 17 Constitution save. On a failure, the creature takes 31 (7d8) radiant damage and is knocked prone. On a successful save, a creature takes half the damage and isn't knocked prone." compset="RaceSpec">
<fieldval field="trkMax" value="1"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="User" tag="Tracker"/>
<tag group="FeatureTyp" tag="Action"/>
<tag group="abAction" tag="Action"/>
<tag group="StandardDC" tag="aCHA"/>
<tag group="abSave" tag="aCON"/>
<tag group="Usage" tag="Day"/>
</thing>
<thing id="ra5CLtDLgtAbs" name="Light Absorption" description="If the light devourer spends any portion of its turn in an area of bright light or is subjected to radiant damage, it radiates dim light in a 10-foot radius for 1 hour." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
</thing>
<thing id="ra5CVrnMnfEcho" name="Manifest Echo (Bonus)" description="Verin uses a bonus action to magically create an echo. The echo, a translucent, gray object that resembles Verin, appears in an open space Verin can see within 15 feet of himself. While the echo exists, Verin chooses whether each of his attacks originates from either his space or the echo's. On Verin's turn, the echo can move as Verin wishes. The echo has AC 17 and 1 hit point. It otherwise uses Verin's statistics. The echo lasts for 1 minute or until it is destroyed, until Verin ends his turn more than 30 feet away from it, until Verin manifests another echo, or until Verin is incapacitated." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="Bonus"/>
</thing>
<thing id="ra5CAlxMnWvVl" name="Moon Weaver's Veil" description="Alyxian becomes invisible until the end of his next turn. All of his worn and carried equipment turns invisible with him." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Legendary"/>
<tag group="abAction" tag="Action"/>
<tag group="LegenAct" tag="2"/>
</thing>
<thing id="ra5CAabMcsCld" name="Mucous Cloud" description="While underwater, the aboleth is surrounded by a cloud of sticky mucus. Any creature that touches the aboleth or hits it with a melee attack while within 5 feet of it must make a DC 14 Strength save. On a failure, it is restrained until the end of the aboleth's next turn." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
<tag group="StandardDC" tag="aCON"/>
<tag group="abSave" tag="aWIS"/>
</thing>
<thing id="ra5CDemPtrTndr" name="Petrifying Tendrils" description="Any creature that begins its turn in the death embrace's space must make a DC 16 Constitution save. On a failure, the creature is restrained. A creature restrained in this way must repeat the save at the end of its next turn, becoming petrified on a failed saving throw or ending the effect on a successful one. The petrified condition lasts until the effect is ended by the {i}greater restoration{/i} spell or similar magic." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
<tag group="StandardDC" tag="aCON"/>
<tag group="abSave" tag="aCON"/>
</thing>
<thing id="ra5CAabPrbTlp" name="Probing Telepathy" description="If a creature the aboleth can see communicates telepathically with the aboleth, the aboleth discerns the creature's greatest desires." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
</thing>
<thing id="ra5CAabPsyDrn" name="Psychic Drain" description="One creature charmed by the aboleth suffers 10 (3d6) psychic damage, and the aboleth regains hit points equaling the damage dealt." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Legendary"/>
<tag group="abAction" tag="Action"/>
<tag group="LegenAct" tag="2"/>
</thing>
<thing id="ra5CCGSPsyMael" name="Psychic Maelstrom" description="Any creature that begins its turn within 15 feet of the shark must succeed on a DC 17 Wisdom save or take 11 (2d10) psychic damage." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
<tag group="StandardDC" tag="aCON"/>
<tag group="abSave" tag="aWIS"/>
</thing>
<thing id="ra5CMgKPush" name="Push" description="Once during each of her turns, after hitting a creature with an attack, Maggie can force the target to make a DC #StandardDC# Strength save. On a failure, the target is pushed up to 10 feet horizontally away from Maggie and is knocked prone." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
<tag group="StandardDC" tag="aSTR"/>
<tag group="abSave" tag="aSTR"/>
</thing>
<thing id="ra5CLtDRdtDsch" name="Radiant Discharge (Bonus)" description="If the light devourer is radiating light (see Light Absorption), it can use a bonus action to release the light stored in its body in a 20-foot-radius sphere centered on itself, then ceases to radiate light. Each creature in that sphere must make a DC 15 Constitution save, taking 24 (7d6) radiant damage on a failure or half that on a success." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="Bonus"/>
<tag group="StandardDC" tag="aCON"/>
<tag group="abSave" tag="aCON"/>
</thing>
<thing id="ra5CMgKRally" name="Rally (Bonus)" description="Maggie uses a bonus action to target one creature she can see within 30 feet of herself and speak words of encouragement. If the target can see or hear Maggie, it gains 15 temporary hit points." compset="RaceSpec">
<fieldval field="trkMax" value="1"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="User" tag="Tracker"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="Bonus"/>
<tag group="Usage" tag="Day"/>
</thing>
<thing id="ra5CDemReel" name="Reel" description="At the beginning of each of its turns, the death embrace can pull each creature it has grappled up to 20 feet toward it (no action needed)." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
</thing>
<thing id="ra5COcERefAgny" name="Reflect Agony" description="When the extollant is damaged by a creature within 60 feet of it, that creature must make a DC 15 Wisdom save, taking 16 (3d10) psychic damage on a failure or half that on a success." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Reaction"/>
<tag group="abAction" tag="Reaction"/>
<tag group="StandardDC" tag="aCHA"/>
<tag group="abSave" tag="aWIS"/>
</thing>
<thing id="ra5CAyoRepstn" name="Reposition (Bonus)" description="Ayo uses a bonus action to speak orders to one ally she can see within 30 feet of herself. If the target can see or hear Ayo, it can use its reaction to move up to its speed without provoking opportunity attacks." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="Bonus"/>
</thing>
<thing id="ra5CVrnRepstn" name="Reposition (Bonus)" description="Verin uses a bonus action to magically swap places with his echo." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="Bonus"/>
</thing>
<thing id="ra5CAlxRuidShr" name="Ruidium Shard" description="A ruidium shard the size of a gem appears at a point Alyxian can see within 120 feet of himself, then explodes. Each creature (other than Alyxian) in a 10-foot-radius sphere centered on that point must succeed on a DC 18 Charisma save or take 1 level of exhaustion. If a creature isn't already suffering from ruidium corruption, it becomes corrupted when it fails the saving throw." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Legendary"/>
<tag group="abAction" tag="Action"/>
<tag group="StandardDC" tag="aCHA"/>
<tag group="abSave" tag="aCHA"/>
<tag group="LegenAct" tag="2"/>
</thing>
<thing id="ra5CAlxSumDag" name="Summon Dagger (Bonus)" description="Alyxian uses a bonus action to teleport his Stoneheart Dagger into his free hand, provided he has one." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="Bonus"/>
</thing>
<thing id="ra5CSoSSwarm" name="Swarm" description="The swarm can occupy another creature's space and vice versa, and the swarm can move through an opening as narrow as 1 foot wide. The swarm cannot regain hit points or benefit from temporary hit points." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
</thing>
<thing id="ra5CMgKTactRdy" name="Tactical Readiness" description="Maggie and any of her allies within 30 feet of her have advantage on initiative rolls, so long as Maggie isn't incapacitated." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
</thing>
<thing id="ra5CScETlkToss" name="Telekinetic Toss (Bonus)" description="The excavator uses a bonus action to target one Medium or smaller creature or an object weighing 300 pounds or less that isn't currently being worn or carried. The target, which must be within 30 feet of the excavator and visible to it, is magically pushed up to 20 feet horizontally in a direction chosen by the excavator. If the target is a creature, it can make a DC 13 Strength save, and is not pushed on a successful save." compset="RaceSpec">
<fieldval field="trkMax" value="1"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="User" tag="Tracker"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="Bonus"/>
<tag group="StandardDC" tag="aCON"/>
<tag group="abSave" tag="aSTR"/>
<tag group="Recharge" tag="5"/>
</thing>
<thing id="ra5CRdETrmpChg" name="Trampling Charge" description="If the elephant moves at least 20 feet directly toward a creature and then hits it with a Gore attack on the same turn, that target must succeed on a DC 16 Strength save or be knocked prone. If the target is prone, the elephant can use a bonus action to make one Stomp attack against it." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
<tag group="StandardDC" tag="aCON"/>
<tag group="abSave" tag="aSTR"/>
</thing>
<thing id="ra5CSoSVrlSrw" name="Virulent Sorrow" description="Each time the swarm is damaged, any creature within 5 feet of it must make a DC 13 Wisdom save. On a failure, the creature suffers these effects until the end of its next turn: it has disadvantage on its attack rolls, it can't use reactions, and its speed is halved." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
<tag group="StandardDC" tag="aCON"/>
<tag group="abSave" tag="aWIS"/>
</thing>
<thing id="ra5CAlxVoidEye" name="Void Eyes" description="Alyxian targets up to two creatures visible to and within 120 feet of himself. Each target must make a DC 17 Constitution save, taking 28 (8d6) necrotic damage on a failure or half that on a success." compset="RaceSpec">
<fieldval field="trkMax" value="1"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="User" tag="Tracker"/>
<tag group="FeatureTyp" tag="Action"/>
<tag group="abAction" tag="Action"/>
<tag group="StandardDC" tag="aCHA"/>
<tag group="abSave" tag="aCON"/>
<tag group="Recharge" tag="5"/>
</thing>
<thing id="ra5CAlxWpnsYr" name="Weapons of Yore" description="Alyxian has ancient weapons embedded in his hide. They detach and fly around in a 10-foot-radius sphere centered on a point Alyxian can see within 60 feet of himself. A creature suffers 18 (4d8) slashing damage when it enters that area for the first time on a turn or begins its turn there. The effect lasts until the end of Alyxian's next turn, at which time the weapons return to Alyxian and embed themselves back in his hide. They do not harm him when they return." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Legendary"/>
<tag group="abAction" tag="Action"/>
<tag group="LegenAct" tag="2"/>
</thing>
<thing id="r5CYngHznbk" name="Young Horizonback Tortoise" compset="Race">
<fieldval field="rHitDice" value="8"/>
<fieldval field="rHDSides" value="12"/>
<fieldval field="rHPStart" value="68"/>
<fieldval field="rCR" value="2"/>
<fieldval field="rSTR" value="9"/>
<fieldval field="rDEX" value="1"/>
<fieldval field="rCON" value="5"/>
<fieldval field="rINT" value="-8"/>
<fieldval field="rWIS" value="2"/>
<fieldval field="rCHA" value="-5"/>
<fieldval field="rAC" value="5"/>
<usesource source="5eCotNA"/>
<tag group="Alignment" tag="BeyondMora" name="BeyondMora" abbrev="None"/>
<tag group="RaceSize" tag="Huge2" name="Huge" abbrev="Huge"/>
<tag group="RaceType" tag="NPC" name="NPC Race" abbrev="NPC Race"/>
<bootstrap thing="wBite">
<autotag group="AttackTarg" tag="1Target"/>
<autotag group="DamTypeOvr" tag="dtPiercing"/>
<assignval field="wAttackEff" value="If the target is a creature, it must succeed on a DC 14 Strength saving throw or be knocked prone."/>
<assignval field="wDieCount" value="4"/>
<assignval field="wDieSize" value="6"/>
<assignval field="wReach" value="10"/>
<assignval field="wAttack" value="1"/>
</bootstrap>
<bootstrap thing="tpBeast"></bootstrap>
<bootstrap thing="lGoblin">
<autotag group="Helper" tag="CantSpeak"/>
</bootstrap>
<bootstrap thing="ra5CMMAmph">
<assignval field="abText" value="tortoise"/>
</bootstrap>
</thing>
<thing id="min5CYHznbk" name="Young Horizonback Tortoise" compset="Minion" stacking="never">
<usesource source="5eCotNA"/>
<tag group="GearType" tag="gt5CWilSha" name="Wild Shape" abbrev="Wild Shape"/>
<minion id="Mount">
<tag group="Hero" tag="FixedRace" name="FixedRace" abbrev="FixedRace"/>
<bootstrap thing="r5CYngHznbk"></bootstrap>
</minion>
</thing>
<thing id="r5CNthDncF" name="Dancing Flame" compset="Race">
<fieldval field="rHitDice" value="12"/>
<fieldval field="rHPStart" value="66"/>
<fieldval field="rCR" value="4.0"/>
<fieldval field="rSTR" value="-2"/>
<fieldval field="rDEX" value="7"/>
<fieldval field="rCON" value="3"/>
<fieldval field="rINT" value="5"/>
<fieldval field="rWIS" value="2"/>
<fieldval field="rCHA" value="10"/>
<fieldval field="rAC" value="2"/>
<usesource source="5eCotNA"/>
<tag group="RaceType" tag="NPC" name="NPC Race" abbrev="NPC Race"/>
<tag group="DamComRes" tag="dcAtkNonMa" name="Bludgeoning, piercing, and slashing from nonmagical attacks" abbrev="Bludgeoning, piercing, and slashing from nonmagical attacks"/>
<tag group="DamageRes" tag="dtCold" name="Cold" abbrev="Cold"/>
<tag group="DamageRes" tag="dtFire" name="Fire" abbrev="Fire"/>
<tag group="DamageRes" tag="dtLightnin" name="Lightning" abbrev="Lightning"/>
<tag group="DamageRes" tag="dtPoison" name="Poison" abbrev="Poison"/>
<tag group="ProfDouble" tag="skDecept" name="Deception" abbrev="Deception"/>
<tag group="ProfDouble" tag="skInsight" name="Insight" abbrev="Insight"/>
<tag group="ProfDouble" tag="skPercep" name="Perception" abbrev="Perception"/>
<tag group="ProfDouble" tag="skPersuas" name="Persuasion" abbrev="Persuasion"/>
<tag group="ProfDouble" tag="skStealth" name="Stealth" abbrev="Stealth"/>
<tag group="RaceSize" tag="Medium0" name="Medium" abbrev="Medium"/>
<bootstrap thing="lInfernal"></bootstrap>
<bootstrap thing="raDarkVis">
<autotag group="Value" tag="60"/>
</bootstrap>
<bootstrap thing="xFly">
<autotag group="Maneuver" tag="Average"/>
<autotag group="Value" tag="60"/>
</bootstrap>
<bootstrap thing="raSucTeBon"></bootstrap>
<bootstrap thing="raSucCharm"></bootstrap>
<bootstrap thing="raSucDrKis"></bootstrap>
<bootstrap thing="wClaw">
<autotag group="AttackTarg" tag="1Target"/>
<autotag group="DamageOver" tag="aDEX"/>
<autotag group="DamageType" tag="dtSlashing"/>
<autotag group="MelAttOver" tag="aDEX"/>
<autotag group="DamTypeOvr" tag="dtFire"/>
<assignval field="sbName" value="Claw (Fiend Form Only)"/>
<assignval field="wDieCount" value="1"/>
<assignval field="wDieSize" value="6"/>
<assignval field="livename" value="Claw (Fiend Form Only)"/>
</bootstrap>
<bootstrap thing="tpFiend"></bootstrap>
<bootstrap thing="lAbyssal"></bootstrap>
<bootstrap thing="xTelepathy">
<autotag group="Value" tag="60"/>
</bootstrap>
<bootstrap thing="lCommon"></bootstrap>
<bootstrap thing="ra5CIllumM">
<assignval field="abText" value="fiend"/>
<assignval field="abValue" value="20"/>
</bootstrap>
<bootstrap thing="ra5CBndExst"></bootstrap>
</thing>
<thing id="ra5CBndExst" name="Bound Existence" description="The fiend is destroyed if it leaves its hall or if it is reduced to 0 hit points. It can re-form 24 hours later." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
</thing>
<thing id="r5CShira" name="Shira" compset="Race">
<fieldval field="rHitDice" value="1"/>
<fieldval field="rHPStart" value="4"/>
<fieldval field="rCR" value="0.125"/>
<fieldval field="rLanguages" value="1"/>
<fieldval field="rLangPromp" value="any one language (usually common)"/>
<usesource source="5eCotNA"/>
<tag group="RaceSize" tag="Medium0" name="Medium" abbrev="Medium"/>
<tag group="RaceType" tag="NPC" name="NPC Race" abbrev="NPC Race"/>
<tag group="WepProf" tag="wClub" name="Club" abbrev="Club"/>
<bootstrap thing="tpHumanoid"></bootstrap>
<bootstrap thing="x5CSpellCast">
<assignval field="abText" value="Shira"/>
</bootstrap>
<bootstrap thing="spChilTouc">
<autotag group="Helper" tag="RaceSpell"/>
<autotag group="Usage" tag="AtWill"/>
</bootstrap>
<bootstrap thing="spBlinDeaf">
<autotag group="Helper" tag="RaceSpell"/>
<autotag group="Usage" tag="Day"/>
<assignval field="trkMax" value="1"/>
</bootstrap>
<bootstrap thing="sp5CRaySi">
<autotag group="Helper" tag="RaceSpell"/>
<autotag group="Usage" tag="Day"/>
<assignval field="trkMax" value="1"/>
</bootstrap>
<link linkage="castattr" thing="aCHA"/>
</thing>
<thing id="r5CRuidGlm" name="Ruidium Golem" compset="Race">
<fieldval field="rHitDice" value="17"/>
<fieldval field="rHPStart" value="178"/>
<fieldval field="rCR" value="10.0"/>
<fieldval field="rMultiatt" value="The golem makes two slam attacks."/>
<fieldval field="rSTR" value="12"/>
<fieldval field="rDEX" value="-1"/>
<fieldval field="rCON" value="10"/>
<fieldval field="rINT" value="-7"/>
<fieldval field="rWIS" value="1"/>
<fieldval field="rCHA" value="-9"/>
<fieldval field="rLangPromp" value="the languages of its creator"/>
<fieldval field="rAC" value="8"/>
<fieldval field="rHDSides" value="10"/>
<usesource source="5eCotNA"/>
<tag group="CondImm" tag="pcnCharmed" name="Charmed" abbrev="Charmed"/>
<tag group="CondImm" tag="pcnExhaust" name="Exhaustion" abbrev="Exhaustion"/>
<tag group="CondImm" tag="pcnFright" name="Frightened" abbrev="Frightened"/>
<tag group="CondImm" tag="pcnParaly" name="Paralyzed" abbrev="Paralyzed"/>
<tag group="CondImm" tag="pcnPetri" name="Petrified" abbrev="Petrified"/>
<tag group="CondImm" tag="pcnPoison" name="Poisoned" abbrev="Poisoned"/>
<tag group="DamComImm" tag="dcAtkNonAd" name="Bludgeoning, piercing, and slashing from nonmagical attacks that aren't adamantine" abbrev="Bludgeoning, piercing, and slashing from nonmagical attacks that aren't adamantine"/>
<tag group="DamageImm" tag="dtPoison" name="Poison" abbrev="Poison"/>
<tag group="DamageImm" tag="dtPsychic" name="Psychic" abbrev="Psychic"/>
<tag group="Helper" tag="CantSpeak" name="Cannot Speak" abbrev="Cannot Speak"/>
<tag group="RaceSize" tag="Medium0"/>
<tag group="Alignment" tag="Unaligned" name="Unaligned" abbrev="UN"/>
<tag group="RaceType" tag="NPC" name="NPC Race" abbrev="NPC Race"/>
<bootstrap thing="raCGoImFor"></bootstrap>
<bootstrap thing="raCGoMaRes"></bootstrap>
<bootstrap thing="raCGoMaWea"></bootstrap>
<bootstrap thing="xMultiatt"></bootstrap>
<bootstrap thing="raSGoSlRec"></bootstrap>
<bootstrap thing="wSlam">
<autotag group="AttackTarg" tag="1Target"/>
<assignval field="wDieCount" value="3"/>
<assignval field="wDieSize" value="8"/>
</bootstrap>
<bootstrap thing="tpConst"></bootstrap>
<bootstrap thing="raDarkVis">
<autotag group="Value" tag="120"/>
</bootstrap>
<bootstrap thing="xSwim">
<autotag group="Value" tag="30"/>
</bootstrap>
<bootstrap thing="ra5CRuiDart"></bootstrap>
</thing>
<thing id="ra5CRuiDart" name="Ruidium Dart" description="The golem conjures a magical, ruidium dart and throws it at another creature it can see within 120 feet of itself. The dark hits without error, then instantly vanishes. The target must then make a DC 17 Charisma save. On a failure, the target suffers 24 (7d6) psychic damage and takes 1 level of exhaustion. If the target is not already suffering from ruidium corruption, it becomes corrupted when it fails the saving throw. On a successful save, the target takes half the damage and suffers no other efffects." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Action"/>
<tag group="abAction" tag="Action"/>
<tag group="StandardDC" tag="aCON"/>
<tag group="abSave" tag="aCHA"/>
</thing>
<thing id="t5CGoliath" name="Goliath" compset="Template" uniqueness="unique">
<bootstrap thing="ra5CMntnBrn"></bootstrap>
<bootstrap thing="tt5CGoliath"></bootstrap>
<bootstrap thing="ra5CPwrfBld">
<assignval field="abText" value="the goliath"/>
<assignval field="abText2" value="it"/>
</bootstrap>
<eval phase="First">perform hero.findchild[BaseRace].assign[ProfSkill.skAthletic]
perform hero.findchild[BaseRace].assign[DamageRes.dtCold]</eval>
</thing>
<thing id="ra5CMntnBrn" name="Mountain Born" description="The goliath is used to high altitude, including elevations over 20,000 feet. It is resistant to cold damage." compset="RaceSpec">
<tag group="FeatureTyp" tag="Special" name="Special" abbrev="Special"/>
<tag group="Helper" tag="ShowSpec" name="Show Spec" abbrev="Show Spec"/>
<tag group="abAction" tag="None" name="No action" abbrev="None"/>
</thing>
<thing id="t5CFirbolg" name="Firbolg" compset="Template" uniqueness="unique">
<bootstrap thing="ra5CPwrfBld">
<assignval field="abText" value="the firbolg"/>
<assignval field="abText2" value="it"/>
</bootstrap>
<bootstrap thing="tt5CFirbolg"></bootstrap>
<bootstrap thing="ra5CFrbSpch"></bootstrap>
</thing>
<thing id="tt5CFirbolg" name="Firbolg" compset="TypeTag" uniqueness="unique"></thing>
<thing id="ra5CFrbSpch" name="Speech of Beast and Leaf" description="The firbolg has the ability to communicate in a limited manner with beasts and plants. They can understand the meaning of the firbolg's words, though the firbolg has no special ability to understand them in return. The firbolg has advantage on all Charisma checks it makes to influence them." compset="RaceSpec">
<tag group="FeatureTyp" tag="Special" name="Special" abbrev="Special"/>
<tag group="Helper" tag="ShowSpec" name="Show Spec" abbrev="Show Spec"/>
<tag group="abAction" tag="None" name="No action" abbrev="None"/>
</thing>
<thing id="r5CIchClkr" name="Ichorous Cloaker" compset="Race">
<fieldval field="rHitDice" value="12"/>
<fieldval field="rHPStart" value="78"/>
<fieldval field="rCR" value="8.0"/>
<fieldval field="rMultiatt" value="The cloaker makes two attacks: one with its bite and one with its tail."/>
<fieldval field="rSpeed" value="10"/>
<fieldval field="rSTR" value="7"/>
<fieldval field="rDEX" value="5"/>
<fieldval field="rCON" value="2"/>
<fieldval field="rINT" value="3"/>
<fieldval field="rWIS" value="2"/>
<fieldval field="rCHA" value="4"/>
<fieldval field="rAC" value="2"/>
<usesource source="5eCotNA"/>
<tag group="RaceSize" tag="Large1" name="Large" abbrev="Large"/>
<tag group="RaceType" tag="NPC" name="NPC Race" abbrev="NPC Race"/>
<tag group="Alignment" tag="Chaotic" name="Chaotic" abbrev="C"/>
<tag group="Alignment" tag="NeutralGE" name="Neutral" abbrev="N"/>
<tag group="ProfSkill" tag="skStealth" name="Stealth" abbrev="Stealth"/>
<bootstrap thing="lDeepSpeec"></bootstrap>
<bootstrap thing="lUndercomm"></bootstrap>
<bootstrap thing="raDarkVis">
<autotag group="Value" tag="60"/>
</bootstrap>
<bootstrap thing="xFly">
<autotag group="Maneuver" tag="Average"/>
<autotag group="Value" tag="40"/>
</bootstrap>
<bootstrap thing="raCloDaTra"></bootstrap>
<bootstrap thing="raCloFaApp"></bootstrap>
<bootstrap thing="raCloLiSen"></bootstrap>
<bootstrap thing="xMultiatt"></bootstrap>
<bootstrap thing="raCloMoan"></bootstrap>
<bootstrap thing="raCloPhRec"></bootstrap>
<bootstrap thing="wBite">
<autotag group="AttackTarg" tag="1Creature"/>
<assignval field="wAttackEff" value="and if the target is Large or smaller, the cloaker attaches to it. If the cloaker has advantage against the target, the cloaker attaches to the target’s head, and the target is blinded and unable to breathe while the cloaker is attached. While attached, the cloaker can make this attack only against the target and has advantage on the attack roll. The cloaker can detach itself by spending 5 feet of its movement. A creature, including the target, can take its action to detach the cloaker by succeeding on a DC 16 Strength check."/>
<assignval field="wDieCount" value="2"/>
<assignval field="wDieSize" value="6"/>
</bootstrap>
<bootstrap thing="wTail">
<autotag group="AttackTarg" tag="1Creature"/>
<autotag group="DamTypeOvr" tag="dtSlashing"/>
<assignval field="wDieCount" value="1"/>
<assignval field="wDieSize" value="8"/>
</bootstrap>
<bootstrap thing="xSwim">
<autotag group="Value" tag="40"/>
</bootstrap>
<bootstrap thing="ra5CMMAmph">
<assignval field="abText" value="cloaker"/>
</bootstrap>
<bootstrap thing="tpAberr"></bootstrap>
</thing>
<thing id="r5CAblSpwn" name="Aboleth Spawn" compset="Race">
<fieldval field="rHitDice" value="11"/>
<fieldval field="rHDSides" value="8"/>
<fieldval field="rHPStart" value="93"/>
<fieldval field="rSTR" value="9"/>
<fieldval field="rDEX" value="1"/>
<fieldval field="rCON" value="8"/>
<fieldval field="rINT" value="-3"/>
<fieldval field="rWIS" value="2"/>
<fieldval field="rCHA" value="-1"/>
<fieldval field="rAC" value="4"/>
<fieldval field="rCR" value="5"/>
<fieldval field="rMultiatt" value="The spawn makes one Spear attack, two Tentacle attacks, and one Psychic Lash attack."/>
<usesource source="5eCotNA"/>
<tag group="ProfSkill" tag="skPercep"/>
<tag group="RaceType" tag="NPC"/>
<tag group="Alignment" tag="Lawful"/>
<tag group="Alignment" tag="Evil"/>
<tag group="RaceSize" tag="Medium0"/>
<tag group="DamageRes" tag="dtPsychic"/>
<tag group="CondImm" tag="pcnCharmed"/>
<tag group="CondImm" tag="pcnFright"/>
<tag group="ArmProfGrp" tag="WepSimple"/>
<bootstrap thing="raDarkVis">
<autotag group="Value" tag="120"/>
</bootstrap>
<bootstrap thing="wOtherMel">
<autotag group="AttackTarg" tag="1Creature"/>
<autotag group="DamTypeOvr" tag="dtBludgeon"/>
<assignval field="wDamBonus" value="-4"/>
<assignval field="livename" value="Tentacle"/>
<assignval field="sbName" value="Tentacle"/>
<assignval field="wReach" value="10"/>
<assignval field="wAttackEff" value="The target is grappled with an escape DC of 14 and takes 9 (2d8) psychic damage at the beginning of each of its turns until the grapple ends. The spawn has four tentacles, which can each grapple one creature."/>
<assignval field="wDieCount" value="0"/>
<assignval field="wDieSize" value="0"/>
</bootstrap>
<bootstrap thing="wOtherRng">
<autotag group="wProperty" tag="Spell"/>
<autotag group="RanAttOpt" tag="aSTR"/>
<autotag group="AttackTarg" tag="1Creature"/>
<autotag group="DamTypeOvr" tag="dtPsychic"/>
<assignval field="wDamBonus" value="-0"/>
<assignval field="livename" value="Psychic Lash"/>
<assignval field="sbName" value="Psychic Lash"/>
<assignval field="wRangeNorm" value="120"/>
<assignval field="wDieCount" value="4"/>
<assignval field="wDieSize" value="8"/>
</bootstrap>
<bootstrap thing="ra5CMMAmph">
<assignval field="abText" value="spawn"/>
</bootstrap>
<bootstrap thing="ra5CWatDepN">
<assignval field="abText" value="The spawn"/>
<assignval field="abText2" value="it"/>
<assignval field="abValue" value="6"/>
<assignval field="abValue2" value="1"/>
<assignval field="abValue3" value="12"/>
<assignval field="abValue4" value="10"/>
</bootstrap>
<bootstrap thing="tpAberr"></bootstrap>
<bootstrap thing="xMultiatt"></bootstrap>
<bootstrap thing="lCommon"></bootstrap>
<bootstrap thing="lDeepSpeec"></bootstrap>
<bootstrap thing="xTelepathy">
<autotag group="Value" tag="60"/>
</bootstrap>
<bootstrap thing="xSwim">
<autotag group="Value" tag="30"/>
</bootstrap>
<bootstrap thing="ra5CAbSAblVsl"></bootstrap>
</thing>
<thing id="r5CAlyxAblt" name="Alyxian Aboleth" compset="Race">
<fieldval field="rHitDice" value="18"/>
<fieldval field="rHDSides" value="10"/>
<fieldval field="rHPStart" value="135"/>
<fieldval field="rSTR" value="11"/>
<fieldval field="rDEX" value="-1"/>
<fieldval field="rCON" value="5"/>
<fieldval field="rINT" value="8"/>
<fieldval field="rWIS" value="8"/>
<fieldval field="rCHA" value="8"/>
<fieldval field="rSpeed" value="10"/>
<fieldval field="rAC" value="8"/>
<fieldval field="rCR" value="12"/>
<fieldval field="rMultiatt" value="The aboleth makes two Tentacle attacks."/>
<usesource source="5eCotNA"/>
<tag group="ProfSave" tag="svCON"/>
<tag group="ProfSave" tag="svINT"/>
<tag group="ProfSave" tag="svWIS"/>
<tag group="ProfDouble" tag="skHistory"/>
<tag group="ProfDouble" tag="skPercep"/>
<tag group="RaceType" tag="NPC"/>
<tag group="Alignment" tag="Lawful"/>
<tag group="Alignment" tag="Evil"/>
<tag group="RaceSize" tag="Large1"/>
<bootstrap thing="raDarkVis">
<autotag group="Value" tag="120"/>
</bootstrap>
<bootstrap thing="wOtherMel">
<autotag group="AttackTarg" tag="1Target"/>
<autotag group="DamTypeOvr" tag="dtBludgeon"/>
<assignval field="wDamBonus" value="0"/>
<assignval field="livename" value="Tentacle"/>
<assignval field="sbName" value="Tentacle"/>
<assignval field="wReach" value="10"/>
<assignval field="wDamExtra" value=" plus 3 (1d6) psychic"/>
<assignval field="wDieCount" value="2"/>
<assignval field="wDieSize" value="6"/>
</bootstrap>
<bootstrap thing="wOtherMel">
<autotag group="AttackTarg" tag="1Target"/>
<autotag group="DamTypeOvr" tag="dtBludgeon"/>
<assignval field="wDamBonus" value="0"/>
<assignval field="livename" value="Tail"/>
<assignval field="sbName" value="Tail"/>
<assignval field="wReach" value="10"/>
<assignval field="wDieCount" value="2"/>
<assignval field="wDieSize" value="8"/>
</bootstrap>
<bootstrap thing="ra5CMMAmph">
<assignval field="abText" value="aboleth"/>
</bootstrap>
<bootstrap thing="ra5CLegAttack">
<assignval field="abText" value="The aboleth"/>
<assignval field="abText2" value="Tail"/>
<assignval field="livename" value="Tail Swipe"/>
<assignval field="sbName" value="Tail Swipe"/>
</bootstrap>
<bootstrap thing="tpAberr"></bootstrap>
<bootstrap thing="xMultiatt"></bootstrap>
<bootstrap thing="lDeepSpeec"></bootstrap>
<bootstrap thing="xTelepathy">
<autotag group="Value" tag="120"/>
</bootstrap>
<bootstrap thing="xSwim">
<autotag group="Value" tag="30"/>
</bootstrap>
<bootstrap thing="ra5CAabEnslv"></bootstrap>
<bootstrap thing="ra5CAabMcsCld"></bootstrap>
<bootstrap thing="ra5CAabPrbTlp"></bootstrap>
<bootstrap thing="ra5CAabPsyDrn"></bootstrap>
</thing>
<thing id="r5CAlyxAbs" name="Alyxian the Absolved" compset="Race">
<fieldval field="rHDSides" value="8"/>
<fieldval field="rHPStart" value="161"/>
<fieldval field="rSTR" value="9"/>
<fieldval field="rDEX" value="5"/>
<fieldval field="rCON" value="8"/>
<fieldval field="rINT" value="3"/>
<fieldval field="rWIS" value="4"/>
<fieldval field="rCHA" value="9"/>
<fieldval field="rCR" value="14"/>
<fieldval field="rMultiatt" value="Alyxian makes two Spear attacks."/>
<fieldval field="rHitDice" value="19"/>
<usesource source="5eCotNA"/>
<tag group="ProfSave" tag="svCON"/>
<tag group="ProfSave" tag="svWIS"/>
<tag group="ProfSkill" tag="skAthletic"/>
<tag group="ProfSkill" tag="skInsight"/>
<tag group="ProfSkill" tag="skPercep"/>
<tag group="ProfSkill" tag="skPersuas"/>
<tag group="RaceType" tag="NPC"/>
<tag group="Alignment" tag="Lawful"/>
<tag group="Alignment" tag="Good"/>
<tag group="RaceSize" tag="Medium0"/>
<tag group="ArmProfGrp" tag="WepSimple"/>
<tag group="ArmProfGrp" tag="ArmorLight"/>
<tag group="ArmProfGrp" tag="Shields"/>
<tag group="ProfSave" tag="svSTR"/>
<bootstrap thing="wOtherMel">
<autotag group="wProperty" tag="Versatile"/>
<autotag group="wCategory" tag="RangeThrow"/>
<autotag group="wProperty" tag="Thrown"/>
<autotag group="AttackTarg" tag="1Target"/>
<autotag group="DamTypeOvr" tag="dtPiercing"/>
<assignval field="wDamBonus" value="0"/>
<assignval field="livename" value="Spear"/>
<assignval field="sbName" value="Spear"/>
<assignval field="wDCntVers" value="1"/>
<assignval field="wDSizVers" value="8"/>
<assignval field="wReach" value="5"/>
<assignval field="wRangeNorm" value="20"/>
<assignval field="wRangeLong" value="60"/>
<assignval field="wDamExtra" value=" plus 9 (2d8) radiant"/>
<assignval field="wDieCount" value="1"/>
<assignval field="wDieSize" value="6"/>
</bootstrap>
<bootstrap thing="ra5CLegResN">
<assignval field="abText" value="Alyxian"/>
<assignval field="abText2" value="he"/>
<assignval field="trkMax" value="2"/>
</bootstrap>
<bootstrap thing="ra5CParryN">
<assignval field="abText" value="Alyxian"/>
<assignval field="abText2" value="3"/>
</bootstrap>
<bootstrap thing="ra5CMoveOpN">
<assignval field="abText" value="Alyxian"/>
<assignval field="livename" value="Change Bringer's Dance"/>
<assignval field="sbName" value="Change Bringer's Dance"/>
</bootstrap>
<bootstrap thing="tpHumanoid"></bootstrap>
<bootstrap thing="ttHuman"></bootstrap>
<bootstrap thing="x5CSpellCast">
<assignval field="abText" value="Alyxian"/>
</bootstrap>
<bootstrap thing="xMultiatt"></bootstrap>
<bootstrap thing="lCommon"></bootstrap>
<bootstrap thing="lElvish"></bootstrap>
<bootstrap thing="ra5CAlxArHrtS"></bootstrap>
<bootstrap thing="ra5CAlxDivBls"></bootstrap>
<bootstrap thing="ra5CAlxFrcWv"></bootstrap>
<bootstrap thing="ra5CAlxMnWvVl"></bootstrap>
<bootstrap thing="spLessRest">
<autotag group="Helper" tag="RaceSpell"/>
<autotag group="Usage" tag="Day"/>
<assignval field="trkMax" value="1"/>
</bootstrap>
<bootstrap thing="spRemoCurs">
<autotag group="Helper" tag="RaceSpell"/>
<autotag group="Usage" tag="Day"/>
<assignval field="trkMax" value="1"/>
</bootstrap>
<bootstrap thing="spWateBrea">
<autotag group="Helper" tag="RaceSpell"/>
<autotag group="Usage" tag="Day"/>
<assignval field="trkMax" value="1"/>
</bootstrap>
<bootstrap thing="spGuidance">
<autotag group="Helper" tag="RaceSpell"/>
<autotag group="Usage" tag="AtWill"/>
</bootstrap>
<bootstrap thing="spLight">
<autotag group="Helper" tag="RaceSpell"/>
<autotag group="Usage" tag="AtWill"/>
</bootstrap>
<bootstrap thing="raDarkVis">
<autotag group="Value" tag="120"/>
</bootstrap>
<bootstrap thing="ra5CAlxLrAvGr">
<containerreq phase="First" priority="100"><![CDATA[hero#Custom.LairActions <> 0]]></containerreq>
</bootstrap>
<bootstrap thing="ra5CAlxLrCrCh">
<containerreq phase="First" priority="100"><![CDATA[hero#Custom.LairActions <> 0]]></containerreq>
</bootstrap>
<bootstrap thing="ra5CAlxLrShTr">
<containerreq phase="First" priority="100"><![CDATA[hero#Custom.LairActions <> 0]]></containerreq>
</bootstrap>
<bootstrap thing="ra5CMPLrHdr">
<containerreq phase="First" priority="100"><![CDATA[hero#Custom.LairActions <> 0]]></containerreq>
<assignval field="abText" value="Alyxian"/>
</bootstrap>
<link linkage="castattr" thing="aCHA"/>
</thing>
<thing id="r5CAlyxCal" name="Alyxian the Callous" compset="Race">
<fieldval field="rHitDice" value="15"/>
<fieldval field="rHDSides" value="10"/>
<fieldval field="rHPStart" value="157"/>
<fieldval field="rSTR" value="13"/>
<fieldval field="rDEX" value="8"/>
<fieldval field="rCON" value="11"/>
<fieldval field="rINT" value="5"/>
<fieldval field="rWIS" value="6"/>
<fieldval field="rCHA" value="10"/>
<fieldval field="rCR" value="12"/>
<fieldval field="rMultiatt" value="Alyxian makes two Radiant Spear attacks. He can chosoe to replace one attack with Blinding Teleport."/>
<usesource source="5eCotNA"/>
<tag group="ProfSave" tag="svSTR"/>
<tag group="ProfSave" tag="svCON"/>
<tag group="ProfSave" tag="svWIS"/>
<tag group="ProfSkill" tag="skInsight"/>
<tag group="ProfSkill" tag="skPercep"/>
<tag group="ProfSkill" tag="skDecept"/>
<tag group="RaceType" tag="NPC"/>
<tag group="Alignment" tag="Lawful"/>
<tag group="Alignment" tag="Evil"/>
<tag group="RaceSize" tag="Large1"/>
<tag group="DamageImm" tag="dtRadiant"/>
<tag group="CondImm" tag="pcnCharmed"/>
<tag group="CondImm" tag="pcnExhaust"/>
<tag group="CondImm" tag="pcnFright"/>
<tag group="CondImm" tag="pcnGrapple"/>
<tag group="CondImm" tag="pcnParaly"/>
<tag group="CondImm" tag="pcnPetri"/>
<tag group="CondImm" tag="pcnRestr"/>
<tag group="CondImm" tag="pcnStunned"/>
<tag group="ArmProfGrp" tag="ArmorMed"/>
<bootstrap thing="raTruesigh">
<autotag group="Value" tag="120"/>
</bootstrap>
<bootstrap thing="wOtherMel">
<autotag group="wCategory" tag="RangeThrow"/>
<autotag group="wProperty" tag="Thrown"/>
<autotag group="AttackTarg" tag="1Target"/>
<autotag group="DamTypeOvr" tag="dtRadiant"/>
<assignval field="livename" value="Radiant Spear"/>
<assignval field="sbName" value="Radiant Spear"/>
<assignval field="wReach" value="5"/>
<assignval field="wDieCount" value="2"/>
<assignval field="wDieSize" value="8"/>
<assignval field="wRangeNorm" value="120"/>
</bootstrap>
<bootstrap thing="ra5CLegAttack">
<assignval field="abText" value="Alyxian"/>
<assignval field="abText2" value="Radiant Spear"/>
</bootstrap>
<bootstrap thing="ra5CLegResN">
<assignval field="abText" value="Alyxian"/>
<assignval field="abText2" value="he"/>
<assignval field="trkMax" value="2"/>
</bootstrap>
<bootstrap thing="tpCelestia"></bootstrap>
<bootstrap thing="xMultiatt"></bootstrap>
<bootstrap thing="lCelestial"></bootstrap>
<bootstrap thing="lCommon"></bootstrap>
<bootstrap thing="lElvish"></bootstrap>
<bootstrap thing="xTelepathy">
<autotag group="Value" tag="120"/>
</bootstrap>
<bootstrap thing="xFly">
<autotag group="Value" tag="90"/>
</bootstrap>
<bootstrap thing="ra5CAlxApthRej"></bootstrap>
<bootstrap thing="ra5CAlxBlndTl"></bootstrap>
<bootstrap thing="ra5CAlxClChns"></bootstrap>
<bootstrap thing="ra5CAlxDivBls"></bootstrap>
<bootstrap thing="ra5CAlxFlare"></bootstrap>
<bootstrap thing="ra5CAlxHvnDst"></bootstrap>
<bootstrap thing="ra5CAlxLrAvGr">
<containerreq phase="First" priority="100"><![CDATA[hero#Custom.LairActions <> 0]]></containerreq>
</bootstrap>
<bootstrap thing="ra5CAlxLrCrCh">
<containerreq phase="First" priority="100"><![CDATA[hero#Custom.LairActions <> 0]]></containerreq>
</bootstrap>
<bootstrap thing="ra5CAlxLrShTr">
<containerreq phase="First" priority="100"><![CDATA[hero#Custom.LairActions <> 0]]></containerreq>
</bootstrap>
<bootstrap thing="ra5CMPLrHdr">
<containerreq phase="First" priority="100"><![CDATA[hero#Custom.LairActions <> 0]]></containerreq>
<assignval field="abText" value="Alyxian"/>
</bootstrap>
</thing>
<thing id="r5CAlyxDsp" name="Alyxian the Dispossessed" compset="Race">
<fieldval field="rHitDice" value="18"/>
<fieldval field="rHDSides" value="8"/>
<fieldval field="rHPStart" value="153"/>
<fieldval field="rSTR" value="9"/>
<fieldval field="rDEX" value="5"/>
<fieldval field="rCON" value="8"/>
<fieldval field="rINT" value="3"/>
<fieldval field="rWIS" value="4"/>
<fieldval field="rCHA" value="10"/>
<fieldval field="rCR" value="13"/>
<fieldval field="rMultiatt" value="Alyxian makes two Spear attacks."/>
<usesource source="5eCotNA"/>
<tag group="ProfSave" tag="svSTR"/>
<tag group="ProfSave" tag="svCON"/>
<tag group="ProfSave" tag="svWIS"/>
<tag group="ProfSkill" tag="skInsight"/>
<tag group="ProfSkill" tag="skPercep"/>
<tag group="ProfSkill" tag="skPersuas"/>
<tag group="RaceType" tag="NPC"/>
<tag group="Alignment" tag="Lawful"/>
<tag group="Alignment" tag="Evil"/>
<tag group="RaceSize" tag="Medium0"/>
<tag group="CondImm" tag="pcnCharmed"/>
<tag group="CondImm" tag="pcnExhaust"/>
<tag group="CondImm" tag="pcnFright"/>
<tag group="CondImm" tag="pcnParaly"/>
<tag group="CondImm" tag="pcnPetri"/>