forked from Sklore/HL_DD_5e_Colab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCOM_5ePack_PHB - Classes.user
2865 lines (2770 loc) · 126 KB
/
COM_5ePack_PHB - Classes.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="c5CBbnTotW" name="Path of the Totem Warrior" description="Placeholder..." compset="CustomSpec" summary="Placeholder..." uniqueness="unique">
<tag group="SpecSource" tag="cHelpBbn"/>
<tag group="SpecType" tag="Attack"/>
<tag group="AbilType" tag="Extra"/>
<tag group="Custom" tag="cAnimFury" name="Animal Fury" abbrev="Animal Fury"/>
<tag group="abAction" tag="None"/>
<tag group="abRange" tag="Personal"/>
<tag group="abDuration" tag="ConstRage"/>
<tag group="abCategory" tag="BbnPriPath" name="Barbarian Primal Path"/>
<bootstrap thing="c5CBbnSpiS">
<autotag group="ClSpecWhen" tag="3"/>
</bootstrap>
<bootstrap thing="c5CBbnSpiW">
<autotag group="ClSpecWhen" tag="10"/>
</bootstrap>
<bootstrap thing="cfg5CTotWa"></bootstrap>
<eval phase="PostLevel" priority="10000"><![CDATA[
doneif (tagis[Helper.Disable] <> 0)
if (field[xTotalLev].value >= 14) then
hero.childfound[cfg5CTotWa].field[cfgMax3].value += 1
endif
if (field[xTotalLev].value >= 6) then
hero.childfound[cfg5CTotWa].field[cfgMax2].value += 1
endif
if (field[xTotalLev].value >= 3) then
hero.childfound[cfg5CTotWa].field[cfgMax1].value += 1
endif]]></eval>
</thing>
<thing id="c5CBbnSpiS" name="Spirit Seeker" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<tag group="abAction" tag="None"/>
<tag group="abRange" tag="Personal"/>
<tag group="abDuration" tag="Constant"/>
<bootstrap thing="spSpeaAnim">
<assignval field="livename" value="Speak with Animals (Ritual only)"/>
</bootstrap>
<bootstrap thing="sp5CBeastS">
<assignval field="livename" value="Beast Sense (Ritual only)"/>
</bootstrap>
</thing>
<thing id="c5CBbnSpiW" name="Spirit Walker" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<tag group="abAction" tag="None"/>
<tag group="abRange" tag="Personal"/>
<tag group="abDuration" tag="Constant"/>
<bootstrap thing="spCommNatu">
<assignval field="livename" value="Commune with Nature (Ritual only)"/>
</bootstrap>
</thing>
<thing id="cfg5CTotWa" name="Totem Warrior Abilities" compset="Configure" uniqueness="unique">
<fieldval field="cfgObject1" value="Totem Spirits"/>
<fieldval field="cfgObject2" value="Aspects of the Beast"/>
<fieldval field="cfgObject3" value="Totemic Attunements"/>
</thing>
<thing id="c5CBbnTSBe" name="Bear" description="Placeholder..." compset="CustomSpec" summary="Placeholder..." uniqueness="unique">
<tag group="SpecType" tag="Attack"/>
<tag group="AbilType" tag="Extra"/>
<tag group="abAction" tag="None"/>
<tag group="abRange" tag="Personal"/>
<tag group="abDuration" tag="ConstRage"/>
<tag group="Helper" tag="Primary"/>
<tag group="AllowRCust" tag="cfg5CTotWa"/>
<tag group="abCategory" tag="BbnTotSpi" name="Barbarian Totem Spirit"/>
<eval phase="PostLevel" priority="10000"><![CDATA[
doneif (hero.tagis[Hero.Raging] = 0)
doneif (tagis[Helper.Disable] <> 0)
~ Foreach through all types of damage and pull the Resistance tags from them.
foreach thing in DamageType where "!thingid.dtPsychic"
perform eachthing.pulltags[DamageRes.?]
nexteach
perform forward[DamageRes.?]]]></eval>
</thing>
<thing id="c5CBbnTSEa" name="Eagle" description="Placeholder..." compset="CustomSpec" summary="Placeholder..." uniqueness="unique">
<tag group="AllowRCust" tag="cfg5CTotWa"/>
<tag group="SpecType" tag="Attack"/>
<tag group="AbilType" tag="Extra"/>
<tag group="abAction" tag="None"/>
<tag group="abRange" tag="Personal"/>
<tag group="abDuration" tag="ConstRage"/>
<tag group="Helper" tag="Primary"/>
<tag group="abCategory" tag="BbnTotSpi" name="Barbarian Totem Spirit"/>
</thing>
<thing id="c5CBbnTSWo" name="Wolf" description="Placeholder..." compset="CustomSpec" summary="Placeholder..." uniqueness="unique">
<tag group="AllowRCust" tag="cfg5CTotWa"/>
<tag group="SpecType" tag="Attack"/>
<tag group="AbilType" tag="Extra"/>
<tag group="abAction" tag="None"/>
<tag group="abRange" tag="Personal"/>
<tag group="abDuration" tag="ConstRage"/>
<tag group="Helper" tag="Primary"/>
<tag group="abCategory" tag="BbnTotSpi" name="Barbarian Totem Spirit"/>
</thing>
<thing id="c5CBbnABBe" name="Bear" description="Placeholder..." compset="CustomSpec" summary="Placeholder..." uniqueness="unique">
<tag group="SpecType" tag="Attack"/>
<tag group="AbilType" tag="Extra"/>
<tag group="abAction" tag="None"/>
<tag group="abRange" tag="Personal"/>
<tag group="abDuration" tag="ConstRage"/>
<tag group="Helper" tag="Secondary"/>
<tag group="AllowRCust" tag="cfg5CTotWa"/>
<tag group="abCategory" tag="BbnAspBeas" name="Barbarian Aspect of the Beast"/>
<eval phase="PostLevel" priority="10000"><![CDATA[
doneif (tagis[Helper.Disable] <> 0)
~ double our encumbrance
herofield[tEncum].value *= 2]]></eval>
<eval phase="Render" priority="10000" index="2"><![CDATA[
doneif (tagis[Helper.Disable] <> 0)
#situational[hero.child[aSTR], "Advantage on checks made to push, pull, lift, or break objects", field[thingname].text]]]></eval>
</thing>
<thing id="c5CBbnABEa" name="Eagle" description="Placeholder..." compset="CustomSpec" summary="Placeholder..." uniqueness="unique">
<tag group="SpecType" tag="Attack"/>
<tag group="AbilType" tag="Extra"/>
<tag group="abAction" tag="None"/>
<tag group="abRange" tag="Personal"/>
<tag group="abDuration" tag="ConstRage"/>
<tag group="Helper" tag="Secondary"/>
<tag group="AllowRCust" tag="cfg5CTotWa"/>
<tag group="abCategory" tag="BbnAspBeas" name="Barbarian Aspect of the Beast"/>
<eval phase="Render" priority="10000">doneif (tagis[Helper.Disable] <> 0)
#situational[hero.childfound[skPercep], "Dim light doesn’t impose disadvantage", field[thingname].text]</eval>
</thing>
<thing id="c5CBbnABWo" name="Wolf" description="Placeholder..." compset="CustomSpec" summary="Placeholder..." uniqueness="unique">
<tag group="SpecType" tag="Attack"/>
<tag group="AbilType" tag="Extra"/>
<tag group="abAction" tag="None"/>
<tag group="abRange" tag="Personal"/>
<tag group="abDuration" tag="ConstRage"/>
<tag group="Helper" tag="Secondary"/>
<tag group="AllowRCust" tag="cfg5CTotWa"/>
<tag group="abCategory" tag="BbnAspBeas" name="Barbarian Aspect of the Beast"/>
</thing>
<thing id="c5CBbnTAWo" name="Wolf" description="Placeholder..." compset="CustomSpec" summary="Placeholder..." uniqueness="unique">
<tag group="SpecType" tag="Attack"/>
<tag group="AbilType" tag="Extra"/>
<tag group="abAction" tag="None"/>
<tag group="abRange" tag="Personal"/>
<tag group="abDuration" tag="ConstRage"/>
<tag group="Helper" tag="Tertiary"/>
<tag group="AllowRCust" tag="cfg5CTotWa"/>
<tag group="abCategory" tag="BbnTotAttn" name="Barbarian Totemic Attunement"/>
</thing>
<thing id="c5CBbnTABe" name="Bear" description="Placeholder..." compset="CustomSpec" summary="Placeholder..." uniqueness="unique">
<tag group="SpecType" tag="Attack"/>
<tag group="AbilType" tag="Extra"/>
<tag group="abAction" tag="None"/>
<tag group="abRange" tag="Personal"/>
<tag group="abDuration" tag="ConstRage"/>
<tag group="Helper" tag="Tertiary"/>
<tag group="AllowRCust" tag="cfg5CTotWa"/>
<tag group="abCategory" tag="BbnTotAttn" name="Barbarian Totemic Attunement"/>
</thing>
<thing id="c5CBbnTAEa" name="Eagle" description="Placeholder..." compset="CustomSpec" summary="Placeholder..." uniqueness="unique">
<tag group="SpecType" tag="Attack"/>
<tag group="AbilType" tag="Extra"/>
<tag group="abAction" tag="None"/>
<tag group="abRange" tag="Personal"/>
<tag group="abDuration" tag="ConstRage"/>
<tag group="Helper" tag="Tertiary"/>
<tag group="AllowRCust" tag="cfg5CTotWa"/>
<tag group="abCategory" tag="BbnTotAttn" name="Barbarian Totemic Attunement"/>
</thing>
<thing id="c5CBrdColV" name="College of Valor" description="Placeholder..." compset="CustomSpec" uniqueness="unique">
<tag group="SpecSource" tag="cHelpBrd"/>
<tag group="abCategory" tag="BrdCollege" name="Bardic College"/>
<tag group="Helper" tag="Primary"/>
<bootstrap thing="c5CBrdBoPV">
<autotag group="ClSpecWhen" tag="3"/>
</bootstrap>
<bootstrap thing="c5CBrdComI">
<autotag group="ClSpecWhen" tag="3"/>
</bootstrap>
<bootstrap thing="cExtraAtt">
<autotag group="ClSpecWhen" tag="6"/>
</bootstrap>
<bootstrap thing="c5CBrdBatM">
<autotag group="ClSpecWhen" tag="14"/>
</bootstrap>
</thing>
<thing id="c5CBrdBoPV" name="Bonus Proficiencies" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<tag group="abAction" tag="None"/>
<tag group="abRange" tag="Personal"/>
<tag group="abDuration" tag="Constant"/>
<eval phase="PostLevel" priority="10000"><![CDATA[
doneif (tagis[Helper.ShowSpec] = 0)
doneif (tagis[Helper.Disable] <> 0)
perform root.linkage[table].assign[ArmProfGrp.ArmorMed]
perform root.linkage[table].assign[ArmProfGrp.Shields]
perform root.linkage[table].assign[ArmProfGrp.WepMartial]]]></eval>
</thing>
<thing id="c5CBrdComI" name="Combat Inspiration" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<tag group="abAction" tag="None"/>
<tag group="abRange" tag="Personal"/>
<tag group="abDuration" tag="Constant"/>
</thing>
<thing id="c5CBrdBatM" name="Battle Magic" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<tag group="abAction" tag="Bonus"/>
<tag group="abRange" tag="Attack"/>
<tag group="abDuration" tag="Instant"/>
</thing>
<thing id="c5CClrKnow" name="Knowledge" description="Placeholder..." compset="CustomSpec" summary="Placeholder..." uniqueness="unique">
<tag group="SpecSource" tag="cHelpClr"/>
<tag group="abCategory" tag="ClrDomain" name="Cleric Domain"/>
<bootstrap thing="c5CClrBleK">
<autotag group="ClSpecWhen" tag="1"/>
</bootstrap>
<bootstrap thing="c5CClrKnoA">
<autotag group="ClSpecWhen" tag="2"/>
</bootstrap>
<bootstrap thing="c5CClrReaT">
<autotag group="ClSpecWhen" tag="6"/>
</bootstrap>
<bootstrap thing="c5CClrPotS">
<autotag group="ClSpecWhen" tag="8"/>
</bootstrap>
<bootstrap thing="c5CClrVisP">
<autotag group="ClSpecWhen" tag="17"/>
</bootstrap>
<bootstrap thing="spCommand">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="1"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spIdentify">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="1"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spAugury">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="3"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spSuggesti">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="3"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spNondetec">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="5"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spSpeaDead">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="5"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spArcaEye">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="7"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spConfusio">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="7"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spLegeLore">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="9"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spScrying">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="9"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
</thing>
<thing id="c5CClrBleK" name="Blessings of Knowledge" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<fieldval field="abValue" value="2"/>
<fieldval field="usrCandid1" value="component.BaseSkill & (Reference.skArcana | Reference.skHistory | Reference.skNature | Reference.skReligion)"/>
<fieldval field="usrCandid2" value="component.BaseSkill & (Reference.skArcana | Reference.skHistory | Reference.skNature | Reference.skReligion)"/>
<tag group="abRange" tag="Personal"/>
<tag group="abDuration" tag="Constant"/>
<tag group="abAction" tag="None"/>
<tag group="ChooseSrc1" tag="Hero"/>
<tag group="ChooseSrc2" tag="Hero"/>
<eval phase="PostLevel" priority="10000"><![CDATA[
doneif (tagis[Helper.ShowSpec] = 0)
doneif (tagis[Helper.Disable] <> 0)
if (field[usrChosen1].ischosen <> 0) then
perform field[usrChosen1].chosen.pulltags[ProfSkill.?]
perform field[usrChosen1].chosen.assign[Helper.ProfDouble]
endif
if (field[usrChosen2].ischosen <> 0) then
perform field[usrChosen2].chosen.pulltags[ProfSkill.?]
perform field[usrChosen2].chosen.assign[Helper.ProfDouble]
endif
perform forward[ProfSkill.?]
doneif (isroot = 0)
doneif (root.islinkage[table] = 0)
perform root.linkage[table].setfocus
~ Set our bonus languages in the first empty table we find
if (focus.field[cLangMax].value = 0) then
focus.field[cLangMax].value += field[abValue].value
focus.field[cLaCandExp].text = "component.BaseLang"
elseif (focus.field[cLangMax2].value = 0) then
focus.field[cLangMax2].value += field[abValue].value
focus.field[cLaCandEx2].text = "component.BaseLang"
elseif (focus.field[cLangMax3].value = 0) then
focus.field[cLangMax3].value += field[abValue].value
focus.field[cLaCandEx3].text = "component.BaseLang"
endif]]>
<before name="Calc skProfBon"/>
</eval>
</thing>
<thing id="c5CClrKnoA" name="Channel Divinity: Knowledge of the Ages" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<fieldval field="usrCandid1" value="component.BaseSkill | component.Tool & !(Helper.Helper | Helper.Obsolete)"/>
<fieldval field="abDuration" value="10"/>
<tag group="abCategory" tag="ClrChanDiv" name="Cleric Channel Divinity Ability"/>
<tag group="abRange" tag="Personal"/>
<tag group="abDuration" tag="Minute"/>
<tag group="User" tag="Activation"/>
<tag group="ChooseSrc1" tag="Thing"/>
<tag group="abAction" tag="Action"/>
<eval phase="PostLevel" priority="10000"><![CDATA[
doneif (tagis[Helper.ShowSpec] = 0)
doneif (tagis[Helper.Disable] <> 0)
doneif (field[abilActive].value = 0)
if (field[usrChosen1].ischosen <> 0) then
perform field[usrChosen1].chosen.pulltags[ProfSkill.?]
perform field[usrChosen1].chosen.pulltags[ProfTool.?]
endif
perform forward[ProfSkill.?]
perform forward[ProfTool.?]]]></eval>
</thing>
<thing id="c5CClrReaT" name="Channel Divinity: Read Thoughts" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<fieldval field="abRange" value="60"/>
<fieldval field="abDuration" value="1"/>
<tag group="abRange" tag="Feet"/>
<tag group="abCategory" tag="ClrChanDiv" name="Cleric Channel Divinity Ability"/>
<tag group="abDuration" tag="Minute"/>
<tag group="StandardDC" tag="aWIS"/>
<tag group="abSave" tag="aWIS"/>
<tag group="abAction" tag="Action"/>
<tag group="SpInfo" tag="spSuggesti"/>
</thing>
<thing id="c5CClrPotS" name="Potent Spellcasting" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<tag group="abAction" tag="None"/>
<tag group="abRange" tag="Personal"/>
<tag group="abDuration" tag="Constant"/>
</thing>
<thing id="c5CClrVisP" name="Visions of the Past" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<tag group="abRange" tag="Touch"/>
<tag group="abDuration" tag="Minute"/>
<tag group="abAction" tag="Minute"/>
</thing>
<thing id="c5CClrLig" name="Light" description="Placeholder..." compset="CustomSpec" summary="Placeholder..." uniqueness="unique">
<tag group="SpecSource" tag="cHelpClr"/>
<tag group="abCategory" tag="ClrDomain"/>
<bootstrap thing="c5CClrBonC">
<autotag group="ClSpecWhen" tag="1"/>
</bootstrap>
<bootstrap thing="c5CClrWarF">
<autotag group="ClSpecWhen" tag="1"/>
</bootstrap>
<bootstrap thing="c5CClrRadD">
<autotag group="ClSpecWhen" tag="2"/>
</bootstrap>
<bootstrap thing="c5CClrImpF">
<autotag group="ClSpecWhen" tag="6"/>
</bootstrap>
<bootstrap thing="c5CClrPotS">
<autotag group="ClSpecWhen" tag="8"/>
</bootstrap>
<bootstrap thing="c5CClrCorL">
<autotag group="ClSpecWhen" tag="17"/>
</bootstrap>
<bootstrap thing="spBurnHand">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="1"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spFaerFire">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="1"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spFlamSphe">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="3"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spScorRay">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="3"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spDaylight">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="5"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spFireball">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="5"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="sp5CGuardF">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="7"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spWallFire">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="7"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spFlamStri">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="9"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spScrying">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="9"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
</thing>
<thing id="c5CClrBonC" name="Bonus Cantrip" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<tag group="abAction" tag="None"/>
<tag group="abRange" tag="Personal"/>
<tag group="abDuration" tag="Constant"/>
<bootstrap thing="spLight">
<autotag group="Helper" tag="Free"/>
<autotag group="Helper" tag="Cantrip"/>
<autotag group="SpellType" tag="cHelpClr"/>
</bootstrap>
</thing>
<thing id="c5CClrWarF" name="Warding Flare" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<fieldval field="abRange" value="30"/>
<tag group="abDuration" tag="Instant"/>
<tag group="abAction" tag="Reaction"/>
<tag group="abRange" tag="Feet"/>
<tag group="User" tag="Tracker"/>
<tag group="ChargeCalc" tag="AttrOnly"/>
<tag group="ChargeCalc" tag="Minimum1"/>
<tag group="Usage" tag="Day"/>
<tag group="ChargeAttr" tag="aWIS"/>
</thing>
<thing id="c5CClrRadD" name="Channel Divinity: Radiance of the Dawn" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<fieldval field="abRange" value="30"/>
<fieldval field="abValue" value="2"/>
<fieldval field="abValue2" value="10"/>
<fieldval field="abText" value="radiant damage"/>
<tag group="abAction" tag="Action"/>
<tag group="StandardDC" tag="aWIS"/>
<tag group="abSave" tag="aCON"/>
<tag group="abRange" tag="Feet"/>
<tag group="abCategory" tag="ClrChanDiv" name="Cleric Channel Divinity Ability"/>
<tag group="abDuration" tag="Instant"/>
<tag group="SbNamePar" tag="DieCntVal"/>
<tag group="SbNamePar" tag="AppText"/>
<tag group="SbNamePar" tag="AppValue3"/>
<tag group="SbNamePar" tag="SignAppVal"/>
<tag group="SbNamePar" tag="DieSizVal2"/>
<eval phase="PostLevel" priority="10000">field[abValue3].value += field[xAllLev].value</eval>
</thing>
<thing id="c5CClrImpF" name="Improved Flare" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<fieldval field="abRange" value="30"/>
<tag group="abDuration" tag="Instant"/>
<tag group="abAction" tag="Reaction"/>
<tag group="abRange" tag="Feet"/>
<tag group="User" tag="Tracker"/>
<tag group="ChargeCalc" tag="AttrOnly"/>
<tag group="ChargeCalc" tag="Minimum1"/>
<tag group="Usage" tag="Day"/>
<tag group="ChargeAttr" tag="aWIS"/>
</thing>
<thing id="c5CClrCorL" name="Corona of Light" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<fieldval field="abRange" value="60"/>
<fieldval field="abDuration" value="1"/>
<tag group="abRange" tag="Feet"/>
<tag group="User" tag="Tracker"/>
<tag group="ChargeCalc" tag="AttrOnly"/>
<tag group="ChargeCalc" tag="Minimum1"/>
<tag group="Usage" tag="Day"/>
<tag group="ChargeAttr" tag="aWIS"/>
<tag group="abAction" tag="Action"/>
<tag group="abDuration" tag="Minute"/>
</thing>
<thing id="c5CClrNatu" name="Nature" description="Placeholder..." compset="CustomSpec" summary="Placeholder..." uniqueness="unique">
<tag group="SpecSource" tag="cHelpClr"/>
<tag group="abCategory" tag="ClrDomain"/>
<bootstrap thing="c5CClrAcoN">
<autotag group="ClSpecWhen" tag="1"/>
</bootstrap>
<bootstrap thing="cClrLiBoPr">
<autotag group="ClSpecWhen" tag="1"/>
</bootstrap>
<bootstrap thing="c5CClrChAP">
<autotag group="ClSpecWhen" tag="2"/>
</bootstrap>
<bootstrap thing="c5CClrDamE">
<autotag group="ClSpecWhen" tag="6"/>
</bootstrap>
<bootstrap thing="cClrDivStr">
<autotag group="ClSpecWhen" tag="14"/>
</bootstrap>
<bootstrap thing="cClrDivStr">
<autotag group="ClSpecWhen" tag="8"/>
<assignval field="abText" value="cold, fire, or lightning damage"/>
</bootstrap>
<bootstrap thing="c5CClrMasN">
<autotag group="ClSpecWhen" tag="17"/>
</bootstrap>
<bootstrap thing="sp5CAnimFr">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="1"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spSpeaAnim">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="1"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spBarkskin">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="3"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spSpikGrow">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="3"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spPlanGrow">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="5"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spWindWall">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="5"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spDomiBeas">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="7"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="sp5CGraspV">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="7"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spInsePlag">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="9"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spTreeStri">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="9"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
</thing>
<thing id="c5CClrAcoN" name="Acolyte of Nature" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<fieldval field="usrCandid1" value="component.BaseSkill & (Target.skAnimHand | Target.skNature | Target.skSurvival)"/>
<fieldval field="usrCandid2" value="component.BaseSpell & sClass.cHelpDrd & sLevel.0"/>
<tag group="ChooseSrc2" tag="Thing"/>
<tag group="ChooseSrc1" tag="Hero"/>
<tag group="abAction" tag="None"/>
<tag group="abRange" tag="Personal"/>
<tag group="abDuration" tag="Constant"/>
<eval phase="PostLevel" priority="10000"><![CDATA[
doneif (tagis[Helper.ShowSpec] = 0)
doneif (tagis[Helper.Disable] <> 0)
if (field[usrChosen1].ischosen <> 0) then
perform field[usrChosen1].chosen.pulltags[ProfSkill.?]
endif
if (field[usrChosen2].ischosen <> 0) then
perform field[usrChosen2].chosen.pulltags[ClsAllowSp.?]
endif
perform root.linkage[table].pushtags[ClsAllowSp.?]
perform forward[ProfSkill.?]]]>
<before name="Assign Helper.Proficient based on ProfSkill tags on Hero"/>
</eval>
<evalrule phase="PostLevel" priority="10000" message="Must add chosen cantrip to cantrips known"><![CDATA[
validif (tagis[Helper.ShowSpec] = 0)
validif (tagis[Helper.Disable] <> 0)
var spellname2 as string
var searchexpr as string
var messnames as string
var foundone as number
@valid = 1
if (field[usrChosen2].ischosen <> 0) then
foundone = 0
searchexpr = "KnowSpell." & field[usrChosen2].chosen.idstring & " & SpellType.cHelpClr & Helper.Cantrip"
foreach pick in hero from BaseSpell where searchexpr
foundone = 1
perform eachpick.assign[Helper.Free]
nexteach
if (foundone = 0) then
spellname2 = field[usrChosen2].chosen.field[name].text
@valid = 0
endif
endif
if (@valid = 0) then
messnames = splice(messnames, spellname2, ", ")
@message = "You have selected the following cantrips for Acolyte of Nature but not added them to your Cleric cantrips known: " & messnames
endif]]></evalrule>
</thing>
<thing id="c5CClrChAP" name="Channel Divinity: Charm Animals and Plant" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<fieldval field="abRange" value="30"/>
<fieldval field="abDuration" value="1"/>
<tag group="abRange" tag="Feet"/>
<tag group="abCategory" tag="ClrChanDiv" name="Cleric Channel Divinity Ability"/>
<tag group="abDuration" tag="Minute"/>
<tag group="abAction" tag="Action"/>
<tag group="abSave" tag="aWIS"/>
<tag group="StandardDC" tag="aWIS"/>
</thing>
<thing id="c5CClrDamE" name="Dampen Elements" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<fieldval field="abRange" value="30"/>
<tag group="abRange" tag="Feet"/>
<tag group="abAction" tag="Reaction"/>
<tag group="abDuration" tag="Attack"/>
</thing>
<thing id="c5CClrMasN" name="Master of Nature" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<fieldval field="abRange" value="30"/>
<tag group="abRange" tag="Feet"/>
<tag group="abDuration" tag="Attack"/>
<tag group="abAction" tag="Bonus"/>
</thing>
<thing id="c5CClrTemp" name="Tempest" description="Placeholder..." compset="CustomSpec" summary="Placeholder..." uniqueness="unique">
<tag group="abCategory" tag="ClrDomain"/>
<tag group="SpecSource" tag="cHelpClr"/>
<bootstrap thing="c5CClrTeBP">
<autotag group="ClSpecWhen" tag="1"/>
</bootstrap>
<bootstrap thing="c5CClrDesW">
<autotag group="ClSpecWhen" tag="2"/>
</bootstrap>
<bootstrap thing="c5CClrThuS">
<autotag group="ClSpecWhen" tag="6"/>
</bootstrap>
<bootstrap thing="cClrDivStr">
<autotag group="ClSpecWhen" tag="14"/>
</bootstrap>
<bootstrap thing="cClrDivStr">
<autotag group="ClSpecWhen" tag="8"/>
<assignval field="abText" value="thunder damage"/>
</bootstrap>
<bootstrap thing="c5CClrStor">
<autotag group="ClSpecWhen" tag="17"/>
</bootstrap>
<bootstrap thing="spFogClou">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="1"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spThunderw">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="1"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spGustWind">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="3"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spShatter">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="3"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spCallLigh">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="5"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spSleeStor">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="5"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spContWate">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="7"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spIceStor">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="7"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="sp5CDestrS">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="9"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spInsePlag">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="9"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="c5CClrWraS">
<autotag group="ClSpecWhen" tag="1"/>
</bootstrap>
</thing>
<thing id="c5CClrTeBP" name="Bonus Proficiency" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<tag group="abAction" tag="None"/>
<tag group="abRange" tag="Personal"/>
<tag group="abDuration" tag="Constant"/>
<eval phase="PostLevel" priority="10000"><![CDATA[
doneif (tagis[Helper.ShowSpec] = 0)
doneif (tagis[Helper.Disable] <> 0)
perform root.linkage[table].assign[ArmProfGrp.ArmorHeavy]
perform root.linkage[table].assign[ArmProfGrp.WepMartial]]]></eval>
</thing>
<thing id="c5CClrWraS" name="Wrath of the Storm" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<fieldval field="abRange" value="5"/>
<fieldval field="abText" value="lightning or thunder damage"/>
<fieldval field="abValue" value="2"/>
<fieldval field="abValue2" value="8"/>
<tag group="ChargeCalc" tag="Minimum1"/>
<tag group="Usage" tag="Day"/>
<tag group="ChargeAttr" tag="aWIS"/>
<tag group="abDuration" tag="Instant"/>
<tag group="abAction" tag="Reaction"/>
<tag group="abSave" tag="aDEX"/>
<tag group="StandardDC" tag="aWIS"/>
<tag group="abRange" tag="Feet"/>
<tag group="User" tag="Tracker"/>
<tag group="ChargeCalc" tag="AttrOnly"/>
<tag group="LvNamePar" tag="DieCntVal"/>
<tag group="LvNamePar" tag="AppText"/>
<tag group="LvNamePar" tag="AppValue3"/>
<tag group="LvNamePar" tag="SignAppVal"/>
<tag group="LvNamePar" tag="DieSizVal2"/>
</thing>
<thing id="c5CClrDesW" name="Channel Divinity: Destructive Wrath" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<tag group="abRange" tag="Personal"/>
<tag group="abCategory" tag="ClrChanDiv" name="Cleric Channel Divinity Ability"/>
<tag group="abDuration" tag="Instant"/>
<tag group="abAction" tag="None"/>
</thing>
<thing id="c5CClrThuS" name="Thunderbolt Strike" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<tag group="abAction" tag="None"/>
<tag group="abRange" tag="Personal"/>
<tag group="abDuration" tag="Constant"/>
</thing>
<thing id="c5CClrStor" name="Stormborn" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<tag group="abAction" tag="None"/>
<tag group="abRange" tag="Personal"/>
<tag group="abDuration" tag="Constant"/>
</thing>
<thing id="c5CClrTric" name="Trickery" description="Placeholder..." compset="CustomSpec" summary="Placeholder..." uniqueness="unique">
<tag group="SpecSource" tag="cHelpClr"/>
<tag group="abCategory" tag="ClrDomain"/>
<bootstrap thing="c5CClrBleT">
<autotag group="ClSpecWhen" tag="1"/>
</bootstrap>
<bootstrap thing="c5CClrInvD">
<autotag group="ClSpecWhen" tag="2"/>
</bootstrap>
<bootstrap thing="c5CClrCloS">
<autotag group="ClSpecWhen" tag="6"/>
</bootstrap>
<bootstrap thing="cClrDivStr">
<autotag group="ClSpecWhen" tag="14"/>
</bootstrap>
<bootstrap thing="cClrDivStr">
<autotag group="ClSpecWhen" tag="8"/>
<assignval field="abText" value="poison damage"/>
</bootstrap>
<bootstrap thing="c5CClrImpD">
<autotag group="ClSpecWhen" tag="17"/>
</bootstrap>
<bootstrap thing="spCharPers">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="1"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spDisgSelf">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="1"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spMirrImag">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="3"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spPassTrac">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="3"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spBlink">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="5"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spDispMagi">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="5"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spDimeDoor">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="7"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spPolymorp">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="7"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spDomiPers">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="9"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spModiMemo">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="9"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
</thing>
<thing id="c5CClrBleT" name="Blessing of the Trickster" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<fieldval field="abDuration" value="1"/>
<tag group="abRange" tag="Touch"/>
<tag group="abAction" tag="Action"/>
<tag group="abDuration" tag="Hour"/>
</thing>
<thing id="c5CClrInvD" name="Channel Divinity: Invoke Duplicity" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<fieldval field="abRange" value="30"/>
<fieldval field="abDuration" value="1"/>
<tag group="abRange" tag="Feet"/>
<tag group="abCategory" tag="ClrChanDiv" name="Cleric Channel Divinity Ability"/>
<tag group="abDuration" tag="Minute"/>
<tag group="abAction" tag="Action"/>
</thing>
<thing id="c5CClrCloS" name="Channel Divinity: Cloak of Shadows" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<fieldval field="abDuration" value="1"/>
<tag group="abRange" tag="Personal"/>
<tag group="abCategory" tag="ClrChanDiv" name="Cleric Channel Divinity Ability"/>
<tag group="abDuration" tag="Round"/>
<tag group="abAction" tag="Action"/>
</thing>
<thing id="c5CClrImpD" name="Improved Duplicity" description="Placeholder..." compset="ClSpecial" summary="Placeholder...">
<fieldval field="abRange" value="120"/>
<tag group="abRange" tag="Feet"/>
<tag group="abDuration" tag="Instant"/>
<tag group="abAction" tag="Bonus"/>
</thing>
<thing id="c5CClrWar" name="War" description="Placeholder..." compset="CustomSpec" summary="Placeholder..." uniqueness="unique">
<tag group="SpecSource" tag="cHelpClr"/>
<tag group="abCategory" tag="ClrDomain"/>
<bootstrap thing="c5CClrTeBP">
<autotag group="ClSpecWhen" tag="1"/>
</bootstrap>
<bootstrap thing="c5CClrWarP">
<autotag group="ClSpecWhen" tag="2"/>
</bootstrap>
<bootstrap thing="c5CClrGuiS">
<autotag group="ClSpecWhen" tag="6"/>
</bootstrap>
<bootstrap thing="c5CClrWaGB">
<autotag group="ClSpecWhen" tag="6"/>
</bootstrap>
<bootstrap thing="cClrDivStr">
<autotag group="ClSpecWhen" tag="8"/>
<assignval field="abText" value="same damage as weapon"/>
</bootstrap>
<bootstrap thing="cClrDivStr">
<autotag group="ClSpecWhen" tag="14"/>
</bootstrap>
<bootstrap thing="c5CClrAvaB">
<autotag group="ClSpecWhen" tag="17"/>
</bootstrap>
<bootstrap thing="spDiviFavo">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="1"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spShieFait">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="1"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spMagiWeap">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="3"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spSpirWeap">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="3"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="sp5CCrusMa">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="5"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spSpirGuar">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="5"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>
<bootstrap thing="spFreeMove">
<autotag group="SpellType" tag="cHelpClr"/>
<autotag group="BonusSplAt" tag="7"/>
<autotag group="Helper" tag="Memorized"/>
<autotag group="Helper" tag="Free"/>
</bootstrap>