-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathCOM_5ePack_DSotDQ - Monsters.user
3185 lines (3085 loc) · 157 KB
/
COM_5ePack_DSotDQ - 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="ra5CGnrBnPrf" name="Bonus Proficiencies" 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="ra5CDrcDevN" name="Draconic Devotion" description="[abText] has advantage on attack rolls while able to see a Dragon, so long as the dragon is not hostile to [abText2]." 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 = field[abText].text & " has advantage on attack rolls while able to see a Dragon, so long as the dragon is not hostile to " & field[abText2].text & "."]]></eval>
</thing>
<thing id="ra5CElusvN" name="Elusive (Bonus)" description="[abText] can use a bonus action to take the Disengage or Hide action." compset="RaceSpec">
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="Bonus"/>
<tag group="Helper" tag="ShowSpec" name="Show Spec" abbrev="Show Spec"/>
<eval phase="Final" priority="50000"><![CDATA[field[CustDesc].text = field[abText].text & " can use a bonus action to take the Disengage or Hide action."]]></eval>
</thing>
<thing id="tt5CKender" name="Kender" compset="TypeTag" uniqueness="unique">
<usesource source="5eDSotDQA"/>
</thing>
<thing id="tt5CUnicorn" name="Unicorn" compset="TypeTag" uniqueness="unique"></thing>
<thing id="ra5CAurAurCom" name="Aura of Command" description="The draconian radiates a commanding presence. A draconian within a 20-foot-radius sphere centered on the aurak that can see or hear the aurak can't be charmed and has advantage on saves made to avoid or end the frightened condition on itself." compset="RaceSpec">
<fieldval field="abRange" value="20"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="abRange" tag="Feet"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
</thing>
<thing id="ra5CAurDthThr" name="Death Throes" description="When the draconian is reduced to 0 hit points, its magical essence lashes out as a ball of lightning at the nearest creature within 30 feet of it before arcing out to up to two other creatures within 15 feet of the first. Each creature must make a DC 14 Dexterity save. On a failed save, the creature takes 9 (2d8) lightning damage and is stunned until the end of its next turn. On a successful save, the creature takes half the damage and is not stunned." compset="RaceSpec">
<fieldval field="abRange" value="30"/>
<fieldval field="wDieCount" value="2"/>
<fieldval field="wDieSize" value="8"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="abRange" tag="Feet"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
<tag group="StandardDC" tag="aCHA"/>
<tag group="abSave" tag="aDEX"/>
<tag group="DamageType" tag="dtLightnin"/>
</thing>
<thing id="ra5CAurNoxBrt" name="Noxious Breath" description="The draconian exhales noxious gas. Each creature in a 15-foot cone must make a DC 14 Constitution save. On a failed save, the creature takes 21 (6d6) poison damage and gains 1 level of exhaustion. On a successful save, the creature takes half the damage, doesn't gain exhaustion, and is immune to all draconians' Noxious Breath for 24 hours." compset="RaceSpec">
<fieldval field="trkMax" value="1"/>
<fieldval field="abRange" value="15"/>
<fieldval field="wDieCount" value="6"/>
<fieldval field="wDieSize" value="6"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="User" tag="Tracker"/>
<tag group="abRange" tag="Feet"/>
<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"/>
<tag group="DamageType" tag="dtPoison"/>
</thing>
<thing id="ra5CBaaDthThr" name="Death Throes" description="When the draconian is reduced to 0 hit points, its body turns to stone and releases a petrifying gas. Each creature within 5 feet of the draconian must succeed on a DC 11 Constitution save or be restrained as it begins turning to stone. The restrained creature must repeat the save at the end of its next turn. On a success, the effect ends; otherwise the creature is petrified for 1 minute. After 1 minute, the body of the draconian crumbles to dust." compset="RaceSpec">
<fieldval field="abRange" value="5"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="abRange" tag="Feet"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
<tag group="StandardDC" tag="aCON"/>
<tag group="abSave" tag="aCON"/>
</thing>
<thing id="ra5CBozDthThr" name="Death Throes" description="When the draconian is reduced to 0 hit points, its scales and flesh shrivel away, and then its bones explode. Each creature within 10 feet of it must succeed on a DC 10 Dexterity save or take 9 (2d8) force damage." compset="RaceSpec">
<fieldval field="abRange" value="10"/>
<fieldval field="wDieCount" value="2"/>
<fieldval field="wDieSize" value="8"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="abRange" tag="Feet"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
<tag group="StandardDC" tag="aCON"/>
<tag group="abSave" tag="aDEX"/>
<tag group="DamageType" tag="dtForce"/>
</thing>
<thing id="ra5CCarBndHnt" name="Bound Haunting" description="Caradoc's spirit is bound to Dargaard Keep. At the beginning of his turn, if he's outside the keep's walls and not possessing a creature using his Possession action, he must succeed on a DC 15 Charisma save or vanish and reappear in an unoccupied space within the keep." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
</thing>
<thing id="ra5CCarDivWhs" name="Divisive Whispers (Bonus)" description="Caradoc uses a bonus action to magically whisper to one creature within 60 feet of himself. The target must succeed on a DC 15 Wisdom save, or the target must immediately use its reaction to make a melee attack against another creature of Caradoc's choice (wasting its reaction if there aren't any other creatures within reach)." compset="RaceSpec">
<fieldval field="abRange" value="60"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="abRange" tag="Feet"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="Bonus"/>
<tag group="StandardDC" tag="aCHA"/>
<tag group="abSave" tag="aWIS"/>
</thing>
<thing id="ra5CCarPosses" name="Possession" description="One Humanoid that Caradoc can see within 5 feet of himself must succeed on a DC 15 Charisma save or be possessed by him; he then disappears, and the target is incapacitated and loses control of its body. Caradoc now controls the body, but the target is still aware. Caradoc can't be targeted by any attack, spell, or other effect, except ones that turn Undead, and he retains his alignment, Intelligence, Wisdom, and Charisma, immunity to being charmed and frightened, and his Divisive Whispers bonus action. He otherwise uses the possessed target's statistics but doesn't gain access to the target's knowledge, class features, or proficiencies.\nThe possession lasts until the body drops to 0 hit points, Caradoc uses a bonus action to end it, or he is turned or forced out by an effect like {i}dispel evil and good{/i}. When the possession ends, Caradoc reappears in an open space within 5 feet of the body. The target is immune to Caradoc's Possession for 24 hours after succeeding on the saving throw or after the possession ends." 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="aCHA"/>
<tag group="Recharge" tag="5"/>
</thing>
<thing id="ra5CCarRejuv" name="Rejuvenation" description="If Caradoc dies, he reforms inside Dargaard Keep in 2d6 days." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
</thing>
<thing id="ra5CDraAssOrd" name="Assault Orders" description="The officer shouts orders, targeting up to two other creatures within 60 feet of itself. If a target has the Draconic Devotion trait and can hear the officer, the target can use its reaction to make a single melee attack." compset="RaceSpec">
<fieldval field="trkMax" value="1"/>
<fieldval field="abRange" value="60"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="User" tag="Tracker"/>
<tag group="abRange" tag="Feet"/>
<tag group="FeatureTyp" tag="Action"/>
<tag group="abAction" tag="Action"/>
<tag group="Recharge" tag="5"/>
</thing>
<thing id="ra5CGreCatBrt" name="Cataclysmic Breath" description="The dragon exhales a ghostly purple fire. Each creature in a 60-foot cone must make a DC 18 Dexterity save, taking 45 (10d8) necrotic damage on a failure or half that on a success. A creature dies if the breath reduces it to 0 hit points. Additionally, any Medium or smaller Humanoid killed by the breath's damage, as well as every corpse of such a creatures within the cone, becomes a zombie (see the Monster Manual) controlled by the dragon. The zombie acts on the dragon's initiative but immediately after the dragon's turn. Barring any other command, the zombie tries to kill any non-Undead creature it encounters." compset="RaceSpec">
<fieldval field="trkMax" value="1"/>
<fieldval field="abRange" value="60"/>
<fieldval field="wDieCount" value="10"/>
<fieldval field="wDieSize" value="8"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="User" tag="Tracker"/>
<tag group="abRange" tag="Feet"/>
<tag group="FeatureTyp" tag="Action"/>
<tag group="abAction" tag="Action"/>
<tag group="StandardDC" tag="aCON"/>
<tag group="abSave" tag="aDEX"/>
<tag group="Recharge" tag="5"/>
<tag group="DamageType" tag="dtNecrotic"/>
</thing>
<thing id="ra5CGreCatRsh" name="Cataclysmic Rush" description="The dragon moves up to half its flying speed without provoking attacks of opportunity, carrying with it any creatures it is grappling. During this move, if it enters the space of a Medium or smaller creature, that creature suffers 4 (1d8) necrotic damage. A creature can take this damage only once per turn." 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="ra5CIstCrySpt" name="Crystalline Spit" description="The drone spits crackling gel in a line. Each creature in the 5 foot wide, 20 foot long line must make a DC 15 Dexterity save. On a failed save, the creature takes 14 (4d6) lightning damage and is restrained by the gel, which hardens into crystal. The creature is restrained until the crystal is destroyed. The crystal has AC 15, 15 hit points, immunity to poison and psychic damage, and vulnerability to thunder damage. On a successful save, the creature takes half the damage and isn't restrained." compset="RaceSpec">
<fieldval field="trkMax" value="1"/>
<fieldval field="abRange" value="20"/>
<fieldval field="wDieCount" value="4"/>
<fieldval field="wDieSize" value="6"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="User" tag="Tracker"/>
<tag group="abRange" tag="Feet"/>
<tag group="FeatureTyp" tag="Action"/>
<tag group="abAction" tag="Action"/>
<tag group="StandardDC" tag="aCON"/>
<tag group="abSave" tag="aDEX"/>
<tag group="Recharge" tag="5"/>
<tag group="DamageType" tag="dtLightnin"/>
</thing>
<thing id="ra5CKalHldLin" name="Hold the Line" description="If an ally within 5 feet of the soldier must make a saving throw, the soldier grants advantage on the roll." compset="RaceSpec">
<fieldval field="abRange" value="5"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="abRange" tag="Feet"/>
<tag group="FeatureTyp" tag="Reaction"/>
<tag group="abAction" tag="Reaction"/>
</thing>
<thing id="ra5CKanDrQnFv" name="Dragon Queen's Favor (Bonus)" description="Kansaldi uses a bonus action to cause herself or one creature she can see within 60 feet of herself to magically regain 17 (2d12 + 4) hit points." compset="RaceSpec">
<fieldval field="abRange" value="60"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="abRange" tag="Feet"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="Bonus"/>
</thing>
<thing id="ra5CKanFlmBrs" name="Flame Burst" description="Kansaldi throws magical flames at a creature she can see within 60 feet of herself. The target must make a DC 16 Dexterity save. On a failed save, the target takes 11 (2d10) fire damage and catches fire; until a creature takes an action to put out the fire, the target takes 5 (1d10) fire damage at the beginning of each of its turns. On a successful save, the target takes half the damage and doesn't catch fire." compset="RaceSpec">
<fieldval field="abRange" value="60"/>
<fieldval field="wDieCount" value="2"/>
<fieldval field="wDieSize" value="10"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="abRange" tag="Feet"/>
<tag group="FeatureTyp" tag="Action"/>
<tag group="abAction" tag="Action"/>
<tag group="StandardDC" tag="aWIS"/>
<tag group="abSave" tag="aDEX"/>
<tag group="DamageType" tag="dtFire"/>
</thing>
<thing id="ra5CKapDthThr" name="Death Throes" description="When the draconian is reduced to 0 hit points, it dissolves into acid that splashes on those around it. Each creature within 5 feet of the draconian must succeed on a DC 12 Dexterity save or be covered in acid for 1 minute. A creature covered in the acid takes 7 (2d6) acid damage at the beginning of each of its turns. A creature can use its action to scrape or wash the acid off itself or another creature." compset="RaceSpec">
<fieldval field="abRange" value="5"/>
<fieldval field="wDieCount" value="2"/>
<fieldval field="wDieSize" value="6"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="abRange" tag="Feet"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
<tag group="StandardDC" tag="aCON"/>
<tag group="abSave" tag="aDEX"/>
<tag group="DamageType" tag="dtAcid"/>
</thing>
<thing id="ra5CKenTaunt" name="Taunt" description="The kender spouts insults at a creature she can see within 60 feet of her. If the target can hear Tem, it must succeed on a DC 12 Wisdom save or have disadvantage on attack rolls until the end of its next turn." compset="RaceSpec">
<fieldval field="abRange" value="60"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="abRange" tag="Feet"/>
<tag group="FeatureTyp" tag="Action"/>
<tag group="abAction" tag="Action"/>
<tag group="StandardDC" tag="aCHA"/>
<tag group="abSave" tag="aWIS"/>
</thing>
<thing id="ra5CLesCatBrt" name="Cataclysmic Breath" description="The dragon exhales a ghostly purple fire. Each creature in a 30-foot cone must make a DC 16 Dexterity save, taking 36 (8d8) necrotic damage on a failure or half that on a success. A creature dies if the breath reduces it to 0 hit points. Additionally, any Medium or smaller Humanoid killed by the breath's damage, as well as every corpse of such a creatures within the cone, becomes a zombie (see the Monster Manual), controlled by the dragon. The zombie acts on the dragon's initiative but immediately after the dragon's turn. Barring any other command, the zombie tries to kill any non-Undead creature it encounters." compset="RaceSpec">
<fieldval field="trkMax" value="1"/>
<fieldval field="abRange" value="30"/>
<fieldval field="wDieCount" value="8"/>
<fieldval field="wDieSize" value="8"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="User" tag="Tracker"/>
<tag group="abRange" tag="Feet"/>
<tag group="FeatureTyp" tag="Action"/>
<tag group="abAction" tag="Action"/>
<tag group="StandardDC" tag="aCON"/>
<tag group="abSave" tag="aDEX"/>
<tag group="Recharge" tag="5"/>
<tag group="DamageType" tag="dtNecrotic"/>
</thing>
<thing id="ra5CLohMiasma" name="Miasma" description="Lohezet magically conjures a purple fog cloud in a 20-foot-radius sphere centered on a point within 120 feet of himself. The area within the sphere is heavily obscured, and when a creature begins its turn in the sphere or enters the sphere for the first time on a turn, it must make a DC 17 Constitution save. On a failed save, the creature takes 39 (6d12) poison damage and is poisoned until the beginning of its next turn. On a successful save, the creature takes half as much damage and isn't poisoned. The cloud lasts for 1 minute, until Lohezet ends it early (no action needed), or until Lohezet uses this action again. A strong wind can disperse the cloud." compset="RaceSpec">
<fieldval field="trkMax" value="1"/>
<fieldval field="abRange" value="120"/>
<fieldval field="wDieCount" value="6"/>
<fieldval field="wDieSize" value="12"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="User" tag="Tracker"/>
<tag group="abRange" tag="Feet"/>
<tag group="FeatureTyp" tag="Action"/>
<tag group="abAction" tag="Action"/>
<tag group="StandardDC" tag="aINT"/>
<tag group="abSave" tag="aCON"/>
<tag group="Recharge" tag="4"/>
<tag group="DamageType" tag="dtPoison"/>
</thing>
<thing id="ra5CLohNoxRbk" name="Noxious Rebuke" description="When a creature within 60 feet of Lohezet damages him, Lohezet magically retaliates by spraying gross, purple mist. The creature must make a DC 17 Constitution save, taking 16 (2d10 + 5) poison damage on a failure or half that on a success." compset="RaceSpec">
<fieldval field="trkMax" value="3"/>
<fieldval field="abRange" value="60"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="User" tag="Tracker"/>
<tag group="abRange" tag="Feet"/>
<tag group="FeatureTyp" tag="Reaction"/>
<tag group="abAction" tag="Reaction"/>
<tag group="StandardDC" tag="aINT"/>
<tag group="abSave" tag="aCON"/>
<tag group="Usage" tag="Day"/>
</thing>
<thing id="ra5CLohTxcMst" name="Toxic Mastery" description="Lohezet ignores a creature's poison damage resistance." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
</thing>
<thing id="ra5CLorCatFir" name="Cataclysmic Fire" description="Soth throws a magical ball of fire that explodes at a point he can see within 120 feet of himself. Each creature in a 20-foot-radius sphere centered on that point must make a DC 19 Dexterity save. A creature takes 35 (10d6) fire damage and 35 (10d6) necrotic damage on a failure, or half that on a success.\nAdditionally, any Medium or smaller Humanoid killed by this damage, as well as every corpse of such a creature within the sphere, becomes a skeleton (see the Monster Manual) controlled by Soth. The skeleton acts on Soth's initiative but immediately after his turn. Barring any other command, the skeleton tries to kill any non-Undead creature it encounters." compset="RaceSpec">
<fieldval field="trkMax" value="1"/>
<fieldval field="abRange" value="120"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="User" tag="Tracker"/>
<tag group="abRange" tag="Feet"/>
<tag group="FeatureTyp" tag="Action"/>
<tag group="abAction" tag="Action"/>
<tag group="StandardDC" tag="aCHA"/>
<tag group="abSave" tag="aDEX"/>
<tag group="Usage" tag="Day"/>
</thing>
<thing id="ra5CLorImpMan" name="Implacable Maneuver" description="Soth moves up to his speed or commands a mount he is riding to move up to its speed, without provoking attacks of opportunity. If he or his mount moves within 5 feet of a creature during this movement, he can force the creature to make a DC 20 Strength save. The creature is knocked prone unless it succeeds on the saving throw." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Legendary"/>
<tag group="abAction" tag="Action"/>
<tag group="StandardDC" tag="aSTR"/>
<tag group="abSave" tag="aSTR"/>
<tag group="LegenAct" tag="1"/>
</thing>
<thing id="ra5CLorWrdDth" name="Word of Death" description="Soth points at a creature he can see within 60 feet of himself and magically instructs it to die. The target must make a DC 19 Constitution save, taking 100 necrotic damage on a failure or half that on a success. If this damage reduces the target to 0 hit points, the target dies." 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="ra5CRedExHnCr" name="Explosive Hand Crossbow" description="Red Ruin fires an explosive crossbow bolt at a point she can see within 120 feet of herself. When the bolt reaches that point, or if it hits an object en route, it detonates in a 20-foot-radius sphere. Each creature in that area must make a DC 15 Dexterity save, taking 35 (10d6) fire damage on a failure or half that on a success." compset="RaceSpec">
<fieldval field="trkMax" value="1"/>
<fieldval field="abRange" value="120"/>
<fieldval field="wDieCount" value="10"/>
<fieldval field="wDieSize" value="6"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="User" tag="Tracker"/>
<tag group="abRange" tag="Feet"/>
<tag group="FeatureTyp" tag="Action"/>
<tag group="abAction" tag="Action"/>
<tag group="StandardDC" tag="aCON"/>
<tag group="abSave" tag="aDEX"/>
<tag group="Recharge" tag="5"/>
<tag group="DamageType" tag="dtFire"/>
</thing>
<thing id="ra5CRedMoCoMa" name="Mounted Combat Master" description="While Red Ruin is mounted and a creature targets her mount with an attack, Red Ruin can cause the attack to instead target her." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
</thing>
<thing id="ra5CRedMntEvs" name="Mounted Evasion" description="When Red Ruin or her mount makes a Dexterity save to take half damage from an effect, they instead take no damage on a success and half damage on a failure." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
</thing>
<thing id="ra5CSivDthThr" name="Death Throes" description="When the draconian is reduced to 0 hit points by a creature that is Large or smaller, the draconian crumbles into dust that then forms a spectral, shrieking image of the creature that killed it. The image lasts for 1 minute. Each creature hostile to the draconian within 10 feet of the image must succeed on a DC 14 Wisdom save or be frightened of the spectral image for 1 minute. A frightened 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="Special"/>
<tag group="abAction" tag="None"/>
<tag group="StandardDC" tag="aCON"/>
<tag group="abSave" tag="aWIS"/>
</thing>
<thing id="ra5CSivShpThf" name="Shape Theft" description="After the draconian kills a Medium or smaller Humanoid, the draconian magically cloaks itself in an illusion to look and feel like that creature. Other than size, the draconian retains its game statistics. This transformation lasts until the draconian dies or uses a bonus action to end it." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Reaction"/>
<tag group="abAction" tag="Reaction"/>
</thing>
<thing id="ra5CSkeUndFrt" name="Undead Fortitude" description="If damage reduces the skeletal knight to 0 hit points, it must make a Constitution save with a DC of 5 + the damage taken, unless the damage is bludgeoning or from a critical hit. On a success, the skeletal knight drops to 1 hit point instead." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
</thing>
<thing id="ra5CWerTrfLit" name="Terrifying Litany" description="Wersten recites names of souls slain by Soth and his company, channeling the terror of their deaths. Each creature that isn't an Undead within 30 feet of her must make a DC 16 Wisdom save. On a failed save, the creature takes 22 (4d10) psychic damage and is frightened of Wersten for 1 minute. On a successful save, the creature takes half the damage and isn't frightened. At the end of each of its turns, a frightened creature can repeat the saving throw, ending the effect for itself on a success." compset="RaceSpec">
<fieldval field="trkMax" value="1"/>
<fieldval field="abRange" value="30"/>
<fieldval field="wDieCount" value="4"/>
<fieldval field="wDieSize" value="10"/>
<tag group="Helper" tag="ShowSpec"/>
<tag group="User" tag="Tracker"/>
<tag group="abRange" tag="Feet"/>
<tag group="FeatureTyp" tag="Action"/>
<tag group="abAction" tag="Action"/>
<tag group="StandardDC" tag="aCHA"/>
<tag group="abSave" tag="aWIS"/>
<tag group="Recharge" tag="5"/>
<tag group="DamageType" tag="dtPsychic"/>
</thing>
<thing id="ra5CWerUndFrt" name="Undead Fortitude" description="If damage reduces Wersten to 0 hit points, she must make a Constitution save with a DC of 5 + the damage taken, unless the damage is bludgeoning or from a critical hit. On a success, Wersten drops to 1 hit point instead." compset="RaceSpec">
<tag group="Helper" tag="ShowSpec"/>
<tag group="FeatureTyp" tag="Special"/>
<tag group="abAction" tag="None"/>
</thing>
<thing id="r5CAnhklx" name="Anhkolox" compset="Race">
<fieldval field="rHitDice" value="15"/>
<fieldval field="rHDSides" value="12"/>
<fieldval field="rHPStart" value="157"/>
<fieldval field="rSTR" value="12"/>
<fieldval field="rDEX" value="1"/>
<fieldval field="rCON" value="8"/>
<fieldval field="rINT" value="-6"/>
<fieldval field="rWIS" value="4"/>
<fieldval field="rCHA" value="-8"/>
<fieldval field="rSpeed" value="50"/>
<fieldval field="rAC" value="5"/>
<fieldval field="rCR" value="9"/>
<fieldval field="rMultiatt" value="The anhkolox makes two Claw attacks and one Entrapping Rend attack."/>
<usesource source="5eDSotDQA"/>
<tag group="ProfSave" tag="svWIS"/>
<tag group="ProfSkill" tag="skPercep"/>
<tag group="RaceType" tag="NPC"/>
<tag group="Alignment" tag="NeutralLC"/>
<tag group="Alignment" tag="Evil"/>
<tag group="RaceSize" tag="Huge2"/>
<tag group="DamageImm" tag="dtPoison"/>
<tag group="CondImm" tag="pcnCharmed"/>
<tag group="CondImm" tag="pcnExhaust"/>
<tag group="CondImm" tag="pcnFright"/>
<tag group="CondImm" tag="pcnPoison"/>
<bootstrap thing="raDarkVis">
<autotag group="Value" tag="60"/>
</bootstrap>
<bootstrap thing="wOtherMel">
<autotag group="AttackTarg" tag="1Target"/>
<autotag group="DamTypeOvr" tag="dtPiercing"/>
<assignval field="wDamBonus" value="0"/>
<assignval field="livename" value="Claw"/>
<assignval field="sbName" value="Claw"/>
<assignval field="wReach" value="5"/>
<assignval field="wAttackEff" value="If the target is a Large or smaller creature, it must succeed on a DC 18 Strength save or be pushed up to 20 feet in a horizontal direction of the anhkolox's choice."/>
<assignval field="wDieCount" value="2"/>
<assignval field="wDieSize" value="10"/>
</bootstrap>
<bootstrap thing="wOtherMel">
<autotag group="AttackTarg" tag="1Target"/>
<autotag group="DamTypeOvr" tag="dtPiercing"/>
<assignval field="wDamBonus" value="0"/>
<assignval field="livename" value="Entrapping Rend"/>
<assignval field="sbName" value="Entrapping Rend"/>
<assignval field="wReach" value="5"/>
<assignval field="wAttackEff" value="If the target is a Large or smaller creature, the target must succeed on a DC 18 Strength save or be trapped in the anhkolox's rib cage and grappled with an escape DC of 18. Until this grapple ends, the target is restrained, and the anhkolox can't use Entrapping Rend on another target."/>
<assignval field="wDieCount" value="5"/>
<assignval field="wDieSize" value="6"/>
</bootstrap>
<bootstrap thing="ra5CUnusNat">
<assignval field="abText" value="The anhkolox"/>
</bootstrap>
<bootstrap thing="tpUndead"></bootstrap>
<bootstrap thing="xMultiatt"></bootstrap>
</thing>
<thing id="r5CArkDrc" name="Aurak Draconian" compset="Race">
<fieldval field="rHitDice" value="9"/>
<fieldval field="rHDSides" value="8"/>
<fieldval field="rHPStart" value="67"/>
<fieldval field="rSTR" value="3"/>
<fieldval field="rDEX" value="4"/>
<fieldval field="rCON" value="6"/>
<fieldval field="rINT" value="6"/>
<fieldval field="rWIS" value="1"/>
<fieldval field="rCHA" value="7"/>
<fieldval field="rSpeed" value="35"/>
<fieldval field="rAC" value="5"/>
<fieldval field="rCR" value="6"/>
<fieldval field="rMultiatt" value="The draconian makes three Rend or Energy Ray attacks."/>
<usesource source="5eDSotDQA"/>
<tag group="ProfSave" tag="svINT"/>
<tag group="ProfSave" tag="svWIS"/>
<tag group="ProfSave" tag="svCHA"/>
<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="CondImm" tag="pcnCharmed"/>
<bootstrap thing="raTruesigh">
<autotag group="Value" tag="60"/>
</bootstrap>
<bootstrap thing="wOtherMel">
<autotag group="MelAttOpt" tag="aDEX"/>
<autotag group="AttackTarg" tag="1Target"/>
<autotag group="DamTypeOvr" tag="dtSlashing"/>
<assignval field="wDamBonus" value="1"/>
<assignval field="livename" value="Rend"/>
<assignval field="sbName" value="Rend"/>
<assignval field="wReach" value="5"/>
<assignval field="wDieCount" value="1"/>
<assignval field="wDieSize" value="12"/>
</bootstrap>
<bootstrap thing="wOtherRng">
<autotag group="wProperty" tag="Spell"/>
<autotag group="RanAttOpt" tag="aCON"/>
<autotag group="AttackTarg" tag="1Target"/>
<autotag group="DamTypeOvr" tag="dtForce"/>
<assignval field="livename" value="Energy Ray"/>
<assignval field="sbName" value="Energy Ray"/>
<assignval field="wRangeNorm" value="60"/>
<assignval field="wDieCount" value="1"/>
<assignval field="wDieSize" value="10"/>
</bootstrap>
<bootstrap thing="tpMonstros"></bootstrap>
<bootstrap thing="tt5CSorcer"></bootstrap>
<bootstrap thing="x5CSpellCast"></bootstrap>
<bootstrap thing="xMultiatt"></bootstrap>
<bootstrap thing="lCommon"></bootstrap>
<bootstrap thing="lDraconic"></bootstrap>
<bootstrap thing="ra5CAurAurCom"></bootstrap>
<bootstrap thing="ra5CAurDthThr"></bootstrap>
<bootstrap thing="ra5CAurNoxBrt"></bootstrap>
<bootstrap thing="spDomiPers">
<autotag group="Helper" tag="RaceSpell"/>
<autotag group="Usage" tag="Day"/>
<assignval field="trkMax" value="1"/>
</bootstrap>
<bootstrap thing="spDimeDoor">
<autotag group="Helper" tag="RaceSpell"/>
<autotag group="Usage" tag="Day"/>
<assignval field="trkMax" value="2"/>
</bootstrap>
<bootstrap thing="spDisgSelf">
<autotag group="Helper" tag="RaceSpell"/>
<autotag group="Usage" tag="Day"/>
<assignval field="trkMax" value="2"/>
</bootstrap>
<bootstrap thing="spSending">
<autotag group="Helper" tag="RaceSpell"/>
<autotag group="Usage" tag="Day"/>
<assignval field="trkMax" value="2"/>
</bootstrap>
<bootstrap thing="spInvisibi">
<autotag group="Helper" tag="RaceSpell"/>
<autotag group="Usage" tag="AtWill"/>
</bootstrap>
<bootstrap thing="spMageHand">
<autotag group="Helper" tag="RaceSpell"/>
<autotag group="Usage" tag="AtWill"/>
</bootstrap>
<link linkage="castattr" thing="aCHA"/>
</thing>
<thing id="r5CBazDrc" name="Baaz Draconian" compset="Race">
<fieldval field="rHitDice" value="4"/>
<fieldval field="rHDSides" value="8"/>
<fieldval field="rHPStart" value="22"/>
<fieldval field="rSTR" value="3"/>
<fieldval field="rDEX" value="1"/>
<fieldval field="rCON" value="3"/>
<fieldval field="rINT" value="-2"/>
<fieldval field="rWIS" value="-2"/>
<fieldval field="rAC" value="4"/>
<fieldval field="rCR" value="0.5"/>
<fieldval field="rMultiatt" value="The draconian makes two Shortsword attacks."/>
<usesource source="5eDSotDQA"/>
<tag group="RaceType" tag="NPC"/>
<tag group="Alignment" tag="Lawful"/>
<tag group="Alignment" tag="Evil"/>
<tag group="RaceSize" tag="Medium0"/>
<tag group="ArmProfGrp" tag="WepMartial"/>
<tag group="ArmProfGrp" tag="WepSimple"/>
<bootstrap thing="raDarkVis">
<autotag group="Value" tag="60"/>
</bootstrap>
<bootstrap thing="ra5CCntFall">
<assignval field="abText" value="the draconian"/>
<assignval field="abValue" value="100"/>
</bootstrap>
<bootstrap thing="ra5CDrcDevN">
<assignval field="abText" value="The draconian"/>
<assignval field="abText2" value="the draconian"/>
</bootstrap>
<bootstrap thing="tpMonstros"></bootstrap>
<bootstrap thing="xMultiatt"></bootstrap>
<bootstrap thing="lCommon"></bootstrap>
<bootstrap thing="lDraconic"></bootstrap>
<bootstrap thing="ra5CBaaDthThr"></bootstrap>
</thing>
<thing id="r5CBzkDrc" name="Bozak Draconian" compset="Race">
<fieldval field="rHitDice" value="9"/>
<fieldval field="rHDSides" value="8"/>
<fieldval field="rHPStart" value="40"/>
<fieldval field="rSTR" value="4"/>
<fieldval field="rCON" value="1"/>
<fieldval field="rINT" value="1"/>
<fieldval field="rCHA" value="4"/>
<fieldval field="rAC" value="5"/>
<fieldval field="rCR" value="2"/>
<fieldval field="rMultiatt" value="The draconian makes two melee Trident attacks or two Lightning Discharge attacks."/>
<usesource source="5eDSotDQA"/>
<tag group="ProfSave" tag="svINT"/>
<tag group="ProfSave" tag="svWIS"/>
<tag group="ProfSave" tag="svCHA"/>
<tag group="RaceType" tag="NPC"/>
<tag group="Alignment" tag="Lawful"/>
<tag group="Alignment" tag="Evil"/>
<tag group="RaceSize" tag="Medium0"/>
<tag group="ArmProfGrp" tag="WepMartial"/>
<tag group="ArmProfGrp" tag="WepSimple"/>
<bootstrap thing="raDarkVis">
<autotag group="Value" tag="60"/>
</bootstrap>
<bootstrap thing="wOtherRng">
<autotag group="wProperty" tag="Spell"/>
<autotag group="RanAttOpt" tag="aSTR"/>
<autotag group="AttackTarg" tag="1Target"/>
<autotag group="DamTypeOvr" tag="dtLightnin"/>
<assignval field="wDamBonus" value="-0"/>
<assignval field="livename" value="Lightning Discharge"/>
<assignval field="sbName" value="Lightning Discharge"/>
<assignval field="wRangeNorm" value="60"/>
<assignval field="wDieCount" value="3"/>
<assignval field="wDieSize" value="6"/>
</bootstrap>
<bootstrap thing="tpMonstros"></bootstrap>
<bootstrap thing="tt5CSorcer"></bootstrap>
<bootstrap thing="x5CSpellCast"></bootstrap>
<bootstrap thing="xMultiatt"></bootstrap>
<bootstrap thing="lCommon"></bootstrap>
<bootstrap thing="lDraconic"></bootstrap>
<bootstrap thing="ra5CBozDthThr"></bootstrap>
<bootstrap thing="ra5CFTDGlide"></bootstrap>
<bootstrap thing="spEnlargeR">
<autotag group="Helper" tag="RaceSpell"/>
<autotag group="Usage" tag="Day"/>
<assignval field="trkMax" value="1"/>
</bootstrap>
<bootstrap thing="spInvisibi">
<autotag group="Helper" tag="RaceSpell"/>
<autotag group="Usage" tag="Day"/>
<assignval field="trkMax" value="1"/>
</bootstrap>
<bootstrap thing="spStinClou">
<autotag group="Helper" tag="RaceSpell"/>
<autotag group="Usage" tag="Day"/>
<assignval field="trkMax" value="1"/>
</bootstrap>
<bootstrap thing="spWeb">
<autotag group="Helper" tag="RaceSpell"/>
<autotag group="Usage" tag="Day"/>
<assignval field="trkMax" value="1"/>
</bootstrap>
<link linkage="castattr" thing="aCHA"/>
</thing>
<thing id="r5CCarado" name="Caradoc" compset="Race">
<fieldval field="rHitDice" value="20"/>
<fieldval field="rHDSides" value="8"/>
<fieldval field="rHPStart" value="110"/>
<fieldval field="rSTR" value="-9"/>
<fieldval field="rDEX" value="8"/>
<fieldval field="rCON" value="2"/>
<fieldval field="rINT" value="5"/>
<fieldval field="rWIS" value="3"/>
<fieldval field="rCHA" value="9"/>
<fieldval field="rSpeed" value="0"/>
<fieldval field="rCR" value="8"/>
<fieldval field="rMultiatt" value="Caradoc makes two Withering Touch attacks."/>
<usesource source="5eDSotDQA"/>
<tag group="ProfSave" tag="svINT"/>
<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="NeutralLC"/>
<tag group="Alignment" tag="Evil"/>
<tag group="RaceSize" tag="Medium0"/>
<tag group="DamageRes" tag="dtAcid"/>
<tag group="DamageRes" tag="dtFire"/>
<tag group="DamageRes" tag="dtLightnin"/>
<tag group="DamageRes" tag="dtThunder"/>
<tag group="DamComRes" tag="dcAtkNonMa"/>
<tag group="DamageImm" tag="dtCold"/>
<tag group="DamageImm" tag="dtNecrotic"/>
<tag group="DamageImm" tag="dtPoison"/>
<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="pcnPoison"/>
<tag group="CondImm" tag="pcnProne"/>
<tag group="CondImm" tag="pcnRestr"/>
<bootstrap thing="raDarkVis">
<autotag group="Value" tag="60"/>
</bootstrap>
<bootstrap thing="wOtherMel">
<autotag group="MelAttOpt" tag="aDEX"/>
<autotag group="AttackTarg" tag="1Target"/>
<autotag group="DamTypeOvr" tag="dtNecrotic"/>
<assignval field="wDamBonus" value="9"/>
<assignval field="livename" value="Withering Touch"/>
<assignval field="sbName" value="Withering Touch"/>
<assignval field="wReach" value="5"/>
<assignval field="wDieCount" value="2"/>
<assignval field="wDieSize" value="10"/>
</bootstrap>
<bootstrap thing="ra5CIncMovN">
<assignval field="abText" value="Caradoc"/>
<assignval field="abValue" value="5"/>
<assignval field="abValue2" value="1"/>
<assignval field="abValue3" value="10"/>
</bootstrap>
<bootstrap thing="ra5CUnusNat">
<assignval field="abText" value="Caradoc"/>
</bootstrap>
<bootstrap thing="tpUndead"></bootstrap>
<bootstrap thing="xMultiatt"></bootstrap>
<bootstrap thing="lCommon"></bootstrap>
<bootstrap thing="l5CDLSlmn"></bootstrap>
<bootstrap thing="xFly">
<autotag group="Value" tag="40"/>
<autotag group="AbilModify" tag="Hover"/>
</bootstrap>
<bootstrap thing="ra5CCarBndHnt"></bootstrap>
<bootstrap thing="ra5CCarDivWhs"></bootstrap>
<bootstrap thing="ra5CCarPosses"></bootstrap>
<bootstrap thing="ra5CCarRejuv"></bootstrap>
</thing>
<thing id="r5CDrArDr" name="Dragon Army Dragonnel" compset="Race">
<fieldval field="rHitDice" value="9"/>
<fieldval field="rHDSides" value="10"/>
<fieldval field="rHPStart" value="58"/>
<fieldval field="rSTR" value="6"/>
<fieldval field="rDEX" value="5"/>
<fieldval field="rCON" value="2"/>
<fieldval field="rINT" value="-2"/>
<fieldval field="rWIS" value="3"/>
<fieldval field="rCR" value="3"/>
<fieldval field="rMultiatt" value="The dragonnel makes two Rend attacks."/>
<usesource source="5eDSotDQA"/>
<tag group="ProfSkill" tag="skPercep"/>
<tag group="RaceType" tag="NPC"/>
<tag group="Alignment" tag="Lawful"/>
<tag group="Alignment" tag="Evil"/>
<tag group="RaceSize" tag="Large1"/>
<tag group="DamageRes" tag="dtFire"/>
<tag group="ArmProfGrp" tag="ArmorMed"/>
<bootstrap thing="raDarkVis">
<autotag group="Value" tag="120"/>
</bootstrap>
<bootstrap thing="wOtherMel">
<autotag group="AttackTarg" tag="1Target"/>
<autotag group="DamTypeOvr" tag="dtSlashing"/>
<assignval field="wDamBonus" value="0"/>
<assignval field="livename" value="Rend"/>
<assignval field="sbName" value="Rend"/>
<assignval field="wReach" value="5"/>
<assignval field="wDamExtra" value=" plus 3 (1d6) fire"/>
<assignval field="wDieCount" value="2"/>
<assignval field="wDieSize" value="6"/>
</bootstrap>
<bootstrap thing="ra5CFlyBy">
<assignval field="abText" value="dragonnel"/>
</bootstrap>
<bootstrap thing="tpDragon"></bootstrap>
<bootstrap thing="xMultiatt"></bootstrap>
<bootstrap thing="xFly">
<autotag group="Value" tag="60"/>
</bootstrap>
<bootstrap thing="lDraconic">
<autotag group="Helper" tag="CantSpeak"/>
</bootstrap>
<bootstrap thing="lCommon">
<autotag group="Helper" tag="CantSpeak"/>
</bootstrap>
<bootstrap thing="raBlindSi">
<autotag group="Value" tag="30"/>
</bootstrap>
</thing>
<thing id="r5CDrArOf" name="Dragon Army Officer" compset="Race">
<fieldval field="rHitDice" value="10"/>
<fieldval field="rHDSides" value="8"/>
<fieldval field="rHPStart" value="65"/>
<fieldval field="rSTR" value="6"/>
<fieldval field="rDEX" value="4"/>
<fieldval field="rCON" value="5"/>
<fieldval field="rINT" value="2"/>
<fieldval field="rWIS" value="4"/>
<fieldval field="rCHA" value="2"/>
<fieldval field="rCR" value="3"/>
<fieldval field="rMultiatt" value="The officer makes two Vicious Lance attacks and, if it's available, uses Assault Orders."/>
<usesource source="5eDSotDQA"/>
<tag group="ProfSave" tag="svDEX"/>
<tag group="ProfSave" tag="svWIS"/>
<tag group="ProfSkill" tag="skAthletic"/>
<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="ArmProfGrp" tag="WepMartial"/>
<tag group="ArmProfGrp" tag="WepSimple"/>
<tag group="ArmProfGrp" tag="Shields"/>
<tag group="ArmProfGrp" tag="ArmorHeavy"/>
<bootstrap thing="ra5CDrcDevN">
<assignval field="abText" value="The officer"/>
<assignval field="abText2" value="the officer"/>
</bootstrap>
<bootstrap thing="tpHumanoid"></bootstrap>
<bootstrap thing="xMultiatt"></bootstrap>
<bootstrap thing="lCommon"></bootstrap>
<bootstrap thing="lDraconic"></bootstrap>
<bootstrap thing="ra5CDraAssOrd"></bootstrap>
<bootstrap thing="wOtherMel">
<autotag group="AttackTarg" tag="1Target"/>
<autotag group="DamTypeOvr" tag="dtPiercing"/>
<assignval field="wDamBonus" value="0"/>
<assignval field="livename" value="Vicious Lance"/>
<assignval field="sbName" value="Vicious Lance"/>
<assignval field="wReach" value="10"/>
<assignval field="wDieCount" value="1"/>
<assignval field="wDieSize" value="10"/>
</bootstrap>
</thing>
<thing id="r5CDrArSo" name="Dragon Army Soldier" compset="Race">
<fieldval field="rHitDice" value="4"/>
<fieldval field="rHDSides" value="8"/>
<fieldval field="rHPStart" value="22"/>
<fieldval field="rSTR" value="5"/>
<fieldval field="rDEX" value="2"/>
<fieldval field="rCON" value="2"/>
<fieldval field="rCR" value="1"/>
<fieldval field="rMultiatt" value="The soldier makes two Longsword or Javelin attacks."/>
<usesource source="5eDSotDQA"/>
<tag group="ProfSkill" tag="skAthletic"/>
<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="ArmProfGrp" tag="WepMartial"/>
<tag group="ArmProfGrp" tag="WepSimple"/>
<tag group="ArmProfGrp" tag="ArmorMed"/>
<tag group="ArmProfGrp" tag="Shields"/>
<bootstrap thing="ra5CDrcDevN">
<assignval field="abText" value="The soldier"/>
<assignval field="abText2" value="the soldier"/>
</bootstrap>
<bootstrap thing="tpHumanoid"></bootstrap>
<bootstrap thing="xMultiatt"></bootstrap>
<bootstrap thing="lCommon"></bootstrap>
<bootstrap thing="lDraconic"></bootstrap>
</thing>
<thing id="r5CGrDtDr" name="Greater Death Dragon" compset="Race">
<fieldval field="rHitDice" value="20"/>
<fieldval field="rHDSides" value="12"/>
<fieldval field="rHPStart" value="230"/>
<fieldval field="rSTR" value="13"/>
<fieldval field="rCON" value="10"/>
<fieldval field="rINT" value="1"/>
<fieldval field="rWIS" value="4"/>
<fieldval field="rSpeed" value="40"/>
<fieldval field="rAC" value="6"/>
<fieldval field="rCR" value="14"/>
<fieldval field="rMultiatt" value="The dragon makes one Bite and two Claw attacks."/>
<usesource source="5eDSotDQA"/>
<tag group="ProfSave" tag="svDEX"/>
<tag group="ProfSave" tag="svWIS"/>
<tag group="ProfSkill" tag="skStealth"/>
<tag group="ProfSkill" tag="skPercep"/>
<tag group="RaceType" tag="NPC"/>
<tag group="Alignment" tag="Chaotic"/>
<tag group="Alignment" tag="Evil"/>
<tag group="RaceSize" tag="Huge2"/>
<tag group="DamageRes" tag="dtPiercing"/>
<tag group="DamageImm" tag="dtNecrotic"/>
<tag group="DamageImm" tag="dtPoison"/>
<tag group="CondImm" tag="pcnExhaust"/>
<tag group="CondImm" tag="pcnPoison"/>
<bootstrap thing="raBlindSi">
<autotag group="Value" tag="60"/>
</bootstrap>
<bootstrap thing="raDarkVis">
<autotag group="Value" tag="120"/>
</bootstrap>
<bootstrap thing="wOtherMel">
<autotag group="AttackTarg" tag="1Target"/>
<autotag group="DamTypeOvr" tag="dtPiercing"/>
<assignval field="wDamBonus" value="0"/>
<assignval field="livename" value="Bite"/>
<assignval field="sbName" value="Bite"/>
<assignval field="wReach" value="10"/>
<assignval field="wDamExtra" value=" plus 4 (1d8) necrotic"/>
<assignval field="wAttackEff" value="If the target is a Large or smaller creature, it is grappled with an escape DC of 19. Until this grapple ends, the target is restrained, and the dragon can't bite a different target."/>
<assignval field="wDieCount" value="2"/>
<assignval field="wDieSize" value="10"/>
</bootstrap>
<bootstrap thing="wOtherMel">
<autotag group="AttackTarg" tag="1Target"/>
<autotag group="DamTypeOvr" tag="dtSlashing"/>
<assignval field="wDamBonus" value="0"/>
<assignval field="livename" value="Claw"/>
<assignval field="sbName" value="Claw"/>
<assignval field="wReach" value="5"/>
<assignval field="wDieCount" value="1"/>
<assignval field="wDieSize" value="8"/>
</bootstrap>
<bootstrap thing="ra5CLegClwAtk">
<assignval field="abText" value="The dragon"/>
<assignval field="livename" value="Claw"/>
<assignval field="sbName" value="Claw"/>
</bootstrap>
<bootstrap thing="ra5CLegRes">
<assignval field="abText" value="dragon"/>
</bootstrap>
<bootstrap thing="ra5CUnusNat">
<assignval field="abText" value="The dragon"/>
</bootstrap>
<bootstrap thing="tpUndead"></bootstrap>
<bootstrap thing="xMultiatt"></bootstrap>
<bootstrap thing="lCommon"></bootstrap>
<bootstrap thing="lDraconic"></bootstrap>
<bootstrap thing="xFly">
<autotag group="Value" tag="80"/>
</bootstrap>
<bootstrap thing="ra5CGreCatBrt"></bootstrap>
<bootstrap thing="ra5CGreCatRsh"></bootstrap>
</thing>
<thing id="r5CIstDrn" name="Istarian Drone" compset="Race">
<fieldval field="rHitDice" value="15"/>
<fieldval field="rHDSides" value="8"/>
<fieldval field="rHPStart" value="127"/>
<fieldval field="rSTR" value="10"/>
<fieldval field="rCON" value="8"/>
<fieldval field="rINT" value="-6"/>
<fieldval field="rCHA" value="-6"/>
<fieldval field="rAC" value="7"/>
<fieldval field="rCR" value="6"/>
<fieldval field="rMultiatt" value="The drone makes two Claw attacks."/>
<usesource source="5eDSotDQA"/>
<tag group="RaceType" tag="NPC"/>
<tag group="Alignment" tag="Unaligned"/>
<tag group="RaceSize" tag="Medium0"/>
<tag group="DamageImm" tag="dtLightnin"/>
<tag group="DamageImm" tag="dtPoison"/>
<tag group="CondImm" tag="pcnCharmed"/>
<tag group="CondImm" tag="pcnExhaust"/>
<tag group="CondImm" tag="pcnFright"/>
<tag group="CondImm" tag="pcnParaly"/>
<tag group="CondImm" tag="pcnPoison"/>
<bootstrap thing="raBlindSi">
<autotag group="Value" tag="60"/>
<autotag group="AbilModify" tag="BlindBeyo"/>
</bootstrap>
<bootstrap thing="wOtherMel">
<autotag group="AttackTarg" tag="1Target"/>
<autotag group="DamTypeOvr" tag="dtPiercing"/>
<assignval field="wDamBonus" value="0"/>
<assignval field="livename" value="Claw"/>
<assignval field="sbName" value="Claw"/>
<assignval field="wReach" value="5"/>
<assignval field="wDamExtra" value=" plus 4 (1d8) lightning"/>
<assignval field="wAttackEff" value="If the target is a Medium or smaller creature, it is grappled with an escape DC of 15. The drone has two claws, each of which can grapple only one target."/>
<assignval field="wDieCount" value="1"/>
<assignval field="wDieSize" value="8"/>
</bootstrap>
<bootstrap thing="ra5CPieSpC">
<assignval field="abText" value="drone"/>
</bootstrap>
<bootstrap thing="ra5CUnusNat">
<assignval field="abText" value="The drone"/>
</bootstrap>
<bootstrap thing="tpConst"></bootstrap>
<bootstrap thing="xMultiatt"></bootstrap>
<bootstrap thing="xClimb">
<autotag group="Value" tag="30"/>
</bootstrap>
<bootstrap thing="ra5CIstCrySpt"></bootstrap>
<bootstrap thing="lOther">
<autotag group="Helper" tag="CantSpeak"/>
<assignval field="livename" value="Its creator's languages"/>
<assignval field="sbName" value="its creator's languages"/>
</bootstrap>
</thing>
<thing id="r5CKalSld" name="Kalaman Soldier" compset="Race">
<comment>Has +1 damage to its longsword, possibly erroneously. Using adjustment in .stock file to address this.</comment>
<fieldval field="rHDSides" value="8"/>
<fieldval field="rHPStart" value="16"/>
<fieldval field="rSTR" value="3"/>
<fieldval field="rDEX" value="2"/>
<fieldval field="rCON" value="2"/>
<fieldval field="rWIS" value="1"/>
<fieldval field="rCR" value="0.5"/>
<fieldval field="rMultiatt" value="The soldier makes two Longsword attacks."/>
<fieldval field="rHitDice" value="3"/>
<usesource source="5eDSotDQA"/>
<tag group="ProfSkill" tag="skPercep"/>
<tag group="RaceType" tag="NPC"/>
<tag group="RaceSize" tag="Medium0"/>
<tag group="ArmProfGrp" tag="WepMartial"/>
<tag group="ArmProfGrp" tag="WepSimple"/>
<tag group="ArmProfGrp" tag="ArmorHeavy"/>
<tag group="ArmProfGrp" tag="Shields"/>
<tag group="ProfSkill" tag="skAthletic"/>
<bootstrap thing="xMultiatt"></bootstrap>
<bootstrap thing="lCommon"></bootstrap>
<bootstrap thing="ra5CKalHldLin"></bootstrap>
<bootstrap thing="ra5CLinSize"></bootstrap>
<bootstrap thing="tpHumanoid"></bootstrap>
</thing>
<thing id="r5CSanFrI" name="Kansaldi Fire-Eyes" compset="Race">
<fieldval field="rHitDice" value="23"/>
<fieldval field="rHDSides" value="8"/>
<fieldval field="rHPStart" value="172"/>
<fieldval field="rSTR" value="8"/>
<fieldval field="rDEX" value="1"/>
<fieldval field="rCON" value="7"/>
<fieldval field="rINT" value="6"/>
<fieldval field="rWIS" value="9"/>
<fieldval field="rCHA" value="6"/>
<fieldval field="rCR" value="11"/>
<fieldval field="rMultiatt" value="Kansaldi makes two Pike attacks and uses Flame Burst."/>
<usesource source="5eDSotDQA"/>
<tag group="ProfSave" tag="svWIS"/>
<tag group="ProfSave" tag="svCHA"/>
<tag group="ProfSkill" tag="skReligion"/>
<tag group="ProfDouble" tag="skInsight"/>
<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="DamageImm" tag="dtFire"/>
<tag group="ArmProfGrp" tag="ArmorHeavy"/>
<bootstrap thing="raTruesigh">
<autotag group="Value" tag="120"/>
</bootstrap>
<bootstrap thing="wOtherMel">
<autotag group="AttackTarg" tag="1Target"/>
<autotag group="DamTypeOvr" tag="dtPiercing"/>
<assignval field="wDamBonus" value="0"/>
<assignval field="livename" value="Pike"/>
<assignval field="sbName" value="Pike"/>
<assignval field="wReach" value="10"/>
<assignval field="wDamExtra" value=" plus 16 (3d10) radiant"/>
<assignval field="wDieCount" value="1"/>
<assignval field="wDieSize" value="10"/>
</bootstrap>
<bootstrap thing="ra5CGnrcSpcEq">
<assignval field="CustDesc" value="Kansaldi has a glowing ruby in her left eye socket. The gem functions as her eye and provides her truesight. The gem can't be removed while Kansaldi is alive. When she dies, a creature can use an action to remove the gem. The gem then functions as a {i}gem of seeing{/i}."/>
</bootstrap>
<bootstrap thing="tpHumanoid"></bootstrap>
<bootstrap thing="tt5CCleric"></bootstrap>
<bootstrap thing="x5CSpellCast">
<assignval field="abText" value="Kansaldi"/>
</bootstrap>
<bootstrap thing="xMultiatt"></bootstrap>
<bootstrap thing="lAbyssal"></bootstrap>
<bootstrap thing="lCommon"></bootstrap>
<bootstrap thing="lDraconic"></bootstrap>
<bootstrap thing="ra5CKanDrQnFv"></bootstrap>
<bootstrap thing="ra5CKanFlmBrs"></bootstrap>
<bootstrap thing="spBladBarr">
<autotag group="Helper" tag="RaceSpell"/>
<autotag group="Usage" tag="Day"/>
<assignval field="trkMax" value="1"/>