generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Slaves to Darkness - Library.cat
6185 lines (6185 loc) · 446 KB
/
Slaves to Darkness - Library.cat
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" standalone="yes"?>
<catalogue library="true" id="c580-f07a-aa35-f79f" name="Slaves to Darkness - Library" gameSystemId="e51d-b1a3-75fc-dc3g" gameSystemRevision="2" revision="1" battleScribeVersion="2.03" type="catalogue" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<sharedSelectionEntries>
<selectionEntry type="unit" import="true" name="Archaon the Everchosen" hidden="false" id="8f2a-58f3-5fab-a1a" publicationId="eb12-18be-ab22-c391">
<categoryLinks>
<categoryLink name="UNIQUE" hidden="false" id="d6a3-16ba-1e1-ea62" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="HERO" hidden="false" id="3155-c4d3-358d-280f" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="MONSTER" hidden="false" id="f4b8-30b3-2c9e-b3a7" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="WARD (5+)" hidden="false" id="84ae-8e4b-124e-fe00" targetId="52cc-95fd-6cd3-8f72" primary="false"/>
<categoryLink name="FLY" hidden="false" id="7b4e-a8d8-a381-cac" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="WARMASTER" hidden="false" id="1c-aa02-2908-92aa" targetId="c203-51a0-3d44-6b07" primary="false"/>
<categoryLink name="WIZARD (2)" hidden="false" id="e188-f9ab-332a-375d" targetId="8179-697a-9f4c-91d4" primary="false"/>
<categoryLink name="SLAVES TO DARKNESS" hidden="false" id="f24d-d251-4d68-af69" targetId="94d9-cc36-9083-1bea" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="b713-7f08-dc84-d78c" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="UNDIVIDED" hidden="false" id="4d95-ca3f-9637-7179" targetId="9ff6-420e-8f6d-f6dd" primary="false"/>
<categoryLink name="WARRIORS OF CHAOS" hidden="false" id="4eac-3ec3-5e9d-4dde" targetId="e06-cc4d-8589-c273" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="c50c-f551-bfae-7b13" targetId="319b-38ee-d10d-e800" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="1b6a-4f4b-3b82-e767" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Archaon the Everchosen" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="a000-4484-2bbf-bee1">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">14"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">25</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">10</characteristic>
</characteristics>
</profile>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="3c98-be0b-7de4-a11">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of **Dorghar’s Claws and Tails** is 4.</characteristic>
</characteristics>
</profile>
<profile name="The Slayer of Kings" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="fd9b-b309-2cdb-6c79">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Each time this unit uses a **^^Fight^^** ability, if the unmodified wound roll for 2 or more attacks made with **The Slayer of Kings** that target the same **^^Hero^^** is 6, that **^^Hero^^** is automatically destroyed.</characteristic>
</characteristics>
</profile>
<profile name="The Eye of Sheerian" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="de4a-c2a-953a-405b">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle, Your Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. This roll replaces the priority roll of the next battle round. On a 1-3, your opponent must take the first turn of that battle round. On a 4-6, you must take the first turn of that battle round. This ability cannot be used if there is an enemy **Archaon** on the battlefield.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="The Favoured Warlord" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="4acd-4088-5079-1f0c">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle, Your Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Pick 1 of the following keywords: **^^Khorne^^**, **^^Tzeentch^^**, **^^Nurgle^^** or **^^Slaanesh^^**. This unit has that keyword in addition to Undivided.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Three-headed Titan" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="3745-897b-efcd-5338">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Pick 1 of the following effects:
***Filth-spewer:*** Pick an enemy unit within 6" of this unit and roll a number of dice equal to the number of models in that unit, to a maximum of 7. For each 3+, inflict 1 mortal damage on that unit.
***Skull-gorger:*** Pick an enemy unit in combat with this unit and roll a dice. If the roll exceeds that unit’s Health characteristic, 1 model in that unit is slain and you can **Heal (X)** this unit, where **X** is that unit’s Health characteristic.
***Spell-eater:*** Pick a **^^Manifestation^^** within 12" of this unit and roll a dice. On a 2+, it is banished and inflict D3 mortal damage on the unit that summoned it.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="c302-2c70-2b22-f0ae" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Archaon the Everchosen" hidden="false" id="4287-e583-8488-195d">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="The Slayer of Kings" hidden="false" id="a66b-3fcb-25a1-d933">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="71db-d5dd-972c-e01b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a775-a61-c09b-de30"/>
</constraints>
<profiles>
<profile name="The Slayer of Kings" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="c372-823f-a8ee-cee9">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">2+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Crit (Mortal)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Dorghar’s Heads" hidden="false" id="d5e6-ebaa-7d90-fa46">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="94ca-d451-2a8a-fb29"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="80d3-b1ca-327d-2b76"/>
</constraints>
<profiles>
<profile name="Dorghar’s Heads" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="1957-aa48-8d56-c2e8">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">5</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Dorghar’s Claws and Tails" hidden="false" id="d463-ebae-cea9-23fd">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b0b5-11e7-8e4e-4dfd"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="967a-4b1e-d8cd-b734"/>
</constraints>
<profiles>
<profile name="Dorghar’s Claws and Tails" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="5b86-9dbf-51b1-7472">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="bf13-8918-c2ff-8e7c"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="58af-2a4b-1664-e724"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Daemon Prince" hidden="false" id="22ef-99c8-eb17-973f" publicationId="eb12-18be-ab22-c391">
<profiles>
<profile name="Daemon Prince" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="6333-c969-921e-7a32">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">10"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">10</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Ruinous Favour" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="c9b3-faa-b5f7-2564">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Your Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly non-**^^Unique^^** unit wholly within 12" of this unit that shares a Mark of Chaos keyword with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+, the target can immediately use the ‘Eye of the Gods’ ability as if it were the end of the turn and they had destroyed an enemy unit this turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="be78-c8b1-ec8f-cc32" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="INFANTRY" hidden="false" id="49d9-b51-967e-57ec" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="a0c0-2015-379-24dd" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="cca3-e5ef-475d-c0e3" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="SLAVES TO DARKNESS" hidden="false" id="8dcf-709f-ea75-a349" targetId="94d9-cc36-9083-1bea" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="2b63-8a04-aea3-3c33" targetId="dc0b-e417-51f4-10f0" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="529d-bbe2-1613-885e" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
<entryLink import="true" name="Mark of Chaos" hidden="false" id="b76e-2315-1d6-b775" type="selectionEntryGroup" targetId="c38-e3f0-8e63-3da7"/>
</entryLinks>
<selectionEntries>
<selectionEntry type="model" import="true" name="Daemon Prince" hidden="false" id="cd2e-ed36-8ed4-807e">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Hellforged Weapons" hidden="false" id="2ac2-c28-6b47-d69f">
<profiles>
<profile name="Hellforged Weapons" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="9d8c-f1c9-9861-81b">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Crit (Mortal)</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3ada-6c99-63b3-940a"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8adf-f079-13e9-b7fd"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a326-b6af-de2c-be8a"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c27-c6c5-cadf-98b2"/>
</constraints>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup name="Wargear Options" id="21cd-e07-5951-dd28" hidden="false" flatten="true">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Wings" hidden="false" id="2cfa-ba62-574d-bd53">
<profiles>
<profile name="Airborne Horror" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="ab60-30b8-f632-68c7">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If this unit has **Wings**, it has a Move characteristic of 10" and has **^^Fly^^**.</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7a9f-2cbd-7745-de67"/>
</constraints>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Trophy Rack" hidden="false" id="ad30-6e8a-518f-d7ce">
<profiles>
<profile name="The Mounted Skulls of the Fallen" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="f87-5e2-fcc-5f7e">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">If this unit has a **Trophy Rack**, its **Hellforged Weapons** also have Anti-**^^Hero^^** (+1 Rend).</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f0da-6589-3366-e756"/>
</constraints>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="fc0a-574a-45c2-8642"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="65e9-3405-dea2-5258"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Varanguard" hidden="false" id="3f86-7961-558c-50aa" publicationId="eb12-18be-ab22-c391">
<profiles>
<profile name="Varanguard" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="5401-b933-8211-c86a">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">10"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Relentless Killers" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="21a8-7275-cd0f-9354">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle, Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">This unit can use 2 **^^Fight^^** abilities this phase. After the first is used, however, this unit has **^^Strike-last^^** for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="CAVALRY" hidden="false" id="2e0e-df6b-888f-78ae" targetId="926c-df8c-6841-d49e" primary="true"/>
<categoryLink name="CHAOS" hidden="false" id="b61c-8cf1-9342-6919" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="SLAVES TO DARKNESS" hidden="false" id="d7f-dff2-67a5-f42" targetId="94d9-cc36-9083-1bea" primary="false"/>
<categoryLink name="WARRIORS OF CHAOS" hidden="false" id="c924-a45c-d3c6-ed9f" targetId="e06-cc4d-8589-c273" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Mark of Chaos" hidden="false" id="5acd-fca5-6d29-7058" type="selectionEntryGroup" targetId="c38-e3f0-8e63-3da7"/>
</entryLinks>
<costs>
<cost name="" id="1f75-1323-6921-b1a6" hidden="false" typeId="1dd2-2af7-76a2-2423" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="model" import="true" name="Varanguard" hidden="false" id="1604-ec13-580-f003">
<constraints>
<constraint type="min" value="3" field="selections" scope="parent" shared="true" id="d629-716d-dae-8f3d"/>
<constraint type="max" value="3" field="selections" scope="parent" shared="true" id="c44f-5502-3a7e-103b"/>
</constraints>
<modifiers>
<modifier type="increment" value="3" field="d629-716d-dae-8f3d">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="3" field="c44f-5502-3a7e-103b">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Daemonforged Blades" hidden="false" id="20b2-18f6-2a8a-b8e">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="c8ac-eb1f-10af-c67b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="4e58-d0c4-1729-2e0c"/>
</constraints>
<profiles>
<profile name="Daemonforged Blades" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="3776-c65b-fb9a-3ba9">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Charge (+1 Damage), Crit (Mortal)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Steed’s Tearing Fangs" hidden="false" id="db81-a4d5-2db5-2a75">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="4ccd-ce9e-348c-a7f6"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="fbdb-2ac2-9025-2d5f"/>
</constraints>
<profiles>
<profile name="Steed’s Tearing Fangs" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="c61d-969b-b68f-a2bc">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Gaunt Summoner" hidden="false" id="6d8c-8fd5-7276-ea" publicationId="eb12-18be-ab22-c391">
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="2a5a-936f-5143-b0dd" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="SLAVES TO DARKNESS" hidden="false" id="ec09-1cac-a086-5fae" targetId="94d9-cc36-9083-1bea" primary="false"/>
<categoryLink name="WIZARD (2)" hidden="false" id="523b-15fb-4444-6a3d" targetId="8179-697a-9f4c-91d4" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="9da7-783c-b2c3-a2ac" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="954d-c75f-8f2e-5eea" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="TZEENTCH" hidden="false" id="f640-59b0-dfe3-c038" targetId="111a-ba91-f34b-d71e" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="25a2-e5d3-2eb0-8295" targetId="75d6-6995-dfcc-3898" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="aced-f852-f697-ee2e" targetId="319b-38ee-d10d-e800" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="ec6f-8ac3-6a51-ac33" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Gaunt Summoner" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="9167-98a1-2ddf-d955">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">5"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">6+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Minions of the Silver Tower" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="53ac-5fbc-bfb1-6505">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Deployment Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly unit that has not been deployed to be the target</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">The target is set up in reserve **in a Silver Tower**. It has now been deployed.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Deploy^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Book of Profane Secrets" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="f7ce-7d49-1c14-158">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Your Movement Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly unit **in a Silver Tower** to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Set up the target on the battlefield wholly within 12" of this unit and more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Divert Realmgate" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="e179-7d9-ae12-ca86">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">7</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Make a casting roll of 2D6</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">Units set up this turn using this unit’s ‘Book of Profane Secrets’ ability can be set up wholly within 18" of this unit and more than 7" from all enemy units instead of the distances in the ability.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Gaunt Summoner" hidden="false" id="e6f1-4aa-b0e-547d">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Warptongue Blade" hidden="false" id="7a8a-7ae2-7f50-22b7">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3333-f6b0-adba-b31c"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1fd-4447-5297-a624"/>
</constraints>
<profiles>
<profile name="Warptongue Blade" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="c34e-81b8-ec0a-340c">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Changestaff" hidden="false" id="7a3c-e43b-253a-250d">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3a92-2aa6-e4da-8638"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f566-f337-8bc5-b63b"/>
</constraints>
<profiles>
<profile name="Changestaff" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="547c-9dd8-fca0-38c1">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">12"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">3</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">4+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">D3</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Crit (Mortal)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ede-4598-e23f-a4eb"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="444d-1a4a-55f1-823"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Be'lakor, the Dark Master" hidden="false" id="672f-33c8-1e61-cead" publicationId="eb12-18be-ab22-c391">
<categoryLinks>
<categoryLink name="UNIQUE" hidden="false" id="674f-deb1-3971-405e" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="HERO" hidden="false" id="5a30-9178-2275-9e29" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="MONSTER" hidden="false" id="79ff-313a-2cbb-7912" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="FLY" hidden="false" id="aba6-5bbe-ffe-7809" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="WARMASTER" hidden="false" id="e779-fbfb-c02f-bb44" targetId="c203-51a0-3d44-6b07" primary="false"/>
<categoryLink name="WIZARD (2)" hidden="false" id="4754-f9d-2ca7-946d" targetId="8179-697a-9f4c-91d4" primary="false"/>
<categoryLink name="SLAVES TO DARKNESS" hidden="false" id="ba5e-b71d-f910-df29" targetId="94d9-cc36-9083-1bea" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="3eb3-1e75-c9aa-726f" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="UNDIVIDED" hidden="false" id="375f-2f95-4129-c8dc" targetId="9ff6-420e-8f6d-f6dd" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="bd64-34e6-f0ef-34" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="c933-d720-4f44-bd16" targetId="319b-38ee-d10d-e800" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="87f2-8912-abcd-9360" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Be'lakor, the Dark Master" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="eee2-cc5c-16aa-bf79">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">14"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">14</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">10</characteristic>
</characteristics>
</profile>
<profile name="Battle Damaged" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="3b2f-5e55-694c-8771">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">While this unit has 10 or more damage points, the Attacks characteristic of its **Blade of Shadows** is 6.</characteristic>
</characteristics>
</profile>
<profile name="Shadow Form" typeId="907f-a48-6a04-f788" typeName="Ability (Passive)" hidden="false" id="491b-cbad-aed9-facc">
<characteristics>
<characteristic name="Keywords" typeId="b977-7c5e-33b2-428e"/>
<characteristic name="Effect" typeId="fd7f-888d-3257-a12b">Ignore modifiers to save rolls for this unit (positive and negative).</characteristic>
</characteristics>
</profile>
<profile name="The Dark Master" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="508c-ba24-f059-b44a">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle, Enemy Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a visible enemy unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Until the start of your next turn, each time the target is picked to use an ability, roll a dice as a reaction. On a 3+, that ability has no effect.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Enfeeble Foe" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="4ab4-d239-7e38-1b77">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">6</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick a visible enemy unit within 18" of this unit to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">• Subtract 1 from hit rolls from the target's combat attacks.
• The target’s combat attacks cannot score critical hits (treat them as regular hits instead).</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
<profile name="Deadly Trap" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="dd0c-6584-68c8-3964">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Enemy Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick this unit and up to 2 friendly **^^Slaves to Darkness^^** units within this unit’s combat range to be the targets.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice for each target. On a 4+, that target has **^^Strike-first^^** for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="58d5-77d3-329c-8160" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Be'lakor, the Dark Master" hidden="false" id="b4c4-1abc-299a-f187">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Blade of Shadows" hidden="false" id="78de-bfac-2168-c7c8">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="89db-4549-131b-9b98"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="da10-4c44-c4c6-7923"/>
</constraints>
<profiles>
<profile name="Blade of Shadows" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="efab-7e76-5e53-d979">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">8</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Crit (Auto-wound)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Fell Claw and Spearing Tail" hidden="false" id="3a4b-e8af-e178-98b7">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="269d-ca79-7515-2c2f"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="7b8e-9ca7-b507-abf4"/>
</constraints>
<profiles>
<profile name="Fell Claw and Spearing Tail" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="6c2e-d3c7-4315-a52e">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">2+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">2</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Charge (+1 Damage)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="714e-7145-4073-d83d"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8f3f-dc44-393f-8677"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Eternus, Blade of the First Prince" hidden="false" id="de49-6e72-d443-42c0" publicationId="eb12-18be-ab22-c391">
<categoryLinks>
<categoryLink name="UNIQUE" hidden="false" id="24e9-76cd-dff3-2f61" targetId="72ce-2188-70bf-2dbd" primary="false"/>
<categoryLink name="HERO" hidden="false" id="227d-6cce-18fb-b92b" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="SLAVES TO DARKNESS" hidden="false" id="4d25-97b5-a543-8afb" targetId="94d9-cc36-9083-1bea" primary="false"/>
<categoryLink name="UNDIVIDED" hidden="false" id="335a-fc4a-d3f1-f21c" targetId="9ff6-420e-8f6d-f6dd" primary="false"/>
<categoryLink name="CAVALRY" hidden="false" id="6010-8f3c-cc34-dd4d" targetId="926c-df8c-6841-d49e" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="a361-442d-4554-d36d" targetId="319b-38ee-d10d-e800" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="b251-bc08-f97b-3d65" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Eternus, Blade of the First Prince" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="c494-71a3-23ac-6517">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">9"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">9</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">3+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Network of Spies" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="431b-c628-a242-4a9b">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Reaction: Opponent declared a command for a unit within 12" of this unit</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. Add 1 to the roll if the enemy unit is in combat with a friendly **Chaos Legionnaires** or **Chaos Furies** unit. On a 5+, that command has no effect. The command still counts as having been used and the command points spent to use the command are still lost.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Veins of Black Lightning" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="924e-d020-f5-b7fb">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Any Movement Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">This unit can use this ability if it has been destroyed.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll 2D6. Add 1 to the roll if a friendly **Be’lakor** is on the battlefield. On an 8+, set up a replacement unit on the battlefield more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Core^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="5c-3329-f5ea-965a" includeChildSelections="true"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Eternus, Blade of the First Prince" hidden="false" id="cda4-acab-4fb6-eeb8">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Death Glaive and Skull Flail" hidden="false" id="4c91-2a10-7710-5064">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8582-3429-6079-a87"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9b60-a0f4-7df2-fc46"/>
</constraints>
<profiles>
<profile name="Death Glaive and Skull Flail" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="f7c6-e49e-689a-3869">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Charge (+1 Damage)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Drakocephalus’s Fangs" hidden="false" id="c081-a71d-bf23-13d9">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="fed6-b1da-c231-671c"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c8c-46f2-a6d0-6a9a"/>
</constraints>
<profiles>
<profile name="Drakocephalus’s Fangs" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="e3c4-2c80-ba73-e2d">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">-</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">1</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="16b5-c09f-6640-b29"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9d3a-e889-de36-ec79"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Chaos Sorcerer Lord on Manticore" hidden="false" id="38cd-f1b0-8c08-b511" publicationId="eb12-18be-ab22-c391">
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="1549-faa3-ec85-dc11" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="SLAVES TO DARKNESS" hidden="false" id="4722-e8b6-e7a1-eaf" targetId="94d9-cc36-9083-1bea" primary="false"/>
<categoryLink name="MONSTER" hidden="false" id="dee8-3fdc-a181-2039" targetId="6d54-625c-d063-13e2" primary="false"/>
<categoryLink name="WIZARD (1)" hidden="false" id="2b4-b5d7-3e4e-ceb0" targetId="6f28-c3f6-4b1b-8aff" primary="false"/>
<categoryLink name="FLY" hidden="false" id="ee22-b60-d1bb-b113" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="c849-7b60-290f-7200" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="WARRIORS OF CHAOS" hidden="false" id="8e17-1b84-2c3a-13ac" targetId="e06-cc4d-8589-c273" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="f236-9d5f-3118-79db" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
<entryLink import="true" name="Mark of Chaos" hidden="false" id="f963-13c5-e992-faf3" type="selectionEntryGroup" targetId="c38-e3f0-8e63-3da7"/>
</entryLinks>
<profiles>
<profile name="Chaos Sorcerer Lord on Manticore" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="ac-aa6a-9d6b-1ea4">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">12"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">12</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">5</characteristic>
</characteristics>
</profile>
<profile name="Oracular Visions" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="dc61-d4a6-5995-14aa">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Your Hero Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly **^^Warriors of Chaos^^** unit wholly within 12" of this unit to be the target and roll a dice.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">On a 3+, the target has **^^Ward (5+)^^** until the start of your next turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Venomous Tail Strike" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="e2ce-9f8e-8863-7735">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Turn (Army), Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick an enemy **^^Monster^^** in combat with this unit to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Roll a dice. On a 3+, the target has **^^Strike-last^^**^^** for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Rampage^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Chaos Sorcerer Lord on Manticore" hidden="false" id="3889-d14c-2cab-3438">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Sorcerous Reaping Staff" hidden="false" id="1cc9-a730-c4db-d91a">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3d41-2111-c89d-bfe0"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="71da-a0a5-d91f-3efc"/>
</constraints>
<profiles>
<profile name="Sorcerous Reaping Staff" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="33ff-f60-b73f-481c">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Manticore’s Claws and Fangs" hidden="false" id="7236-cc55-9aa0-8b25">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5088-9d14-4657-10a8"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2a59-44b2-1a6e-ba97"/>
</constraints>
<profiles>
<profile name="Manticore’s Claws and Fangs" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="5513-2871-992c-f170">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Anti-**^^Monster^^** (+1 Rend), Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8b69-7b1f-4ac6-725e"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="894c-d496-d512-2820"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Gaunt Summoner on Disc of Tzeentch" hidden="false" id="de-30dc-2385-d1d1" publicationId="eb12-18be-ab22-c391">
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="5a9f-8643-f704-cca9" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="SLAVES TO DARKNESS" hidden="false" id="9118-f76f-789b-d6b8" targetId="94d9-cc36-9083-1bea" primary="false"/>
<categoryLink name="CAVALRY" hidden="false" id="f685-d0da-c65c-6d06" targetId="926c-df8c-6841-d49e" primary="false"/>
<categoryLink name="WIZARD (2)" hidden="false" id="1ad1-3032-412-9a60" targetId="8179-697a-9f4c-91d4" primary="false"/>
<categoryLink name="FLY" hidden="false" id="9235-77d7-9006-a8a8" targetId="b979-4c3e-7d0e-6921" primary="false"/>
<categoryLink name="WARD (6+)" hidden="false" id="bf9-c043-1120-53ae" targetId="70a4-383f-421f-52cd" primary="false"/>
<categoryLink name="DAEMON" hidden="false" id="1885-1296-ce43-f029" targetId="dc0b-e417-51f4-10f0" primary="false"/>
<categoryLink name="TZEENTCH" hidden="false" id="fd33-e229-40bf-5074" targetId="111a-ba91-f34b-d71e" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="98ef-a80a-abcf-f76b" targetId="319b-38ee-d10d-e800" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="fe20-bf09-b08e-f8e2" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Gaunt Summoner on Disc of Tzeentch" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="52b0-4717-df14-9dfe">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">14"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">6</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Minions of the Silver Tower" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="bdd9-da8f-ec1c-5574">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Deployment Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly unit that has not been deployed to be the target</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">The target is set up in reserve **in a Silver Tower**. It has now been deployed.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f">**^^Deploy^^**</characteristic>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Book of Profane Secrets" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="14ab-ce70-c4ae-f897">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Your Movement Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb">Pick a friendly unit **in a Silver Tower** to be the target.</characteristic>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Set up the target on the battlefield wholly within 12" of this unit and more than 9" from all enemy units.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
<profile name="Arcane Imprisonment" typeId="7312-8367-c171-f2ef" typeName="Ability (Spell)" hidden="false" id="ebbe-d0e3-b2bd-6d5a">
<characteristics>
<characteristic name="Timing" typeId="de6f-d57b-248a-83be">Your Hero Phase</characteristic>
<characteristic name="Casting Value" typeId="9fc7-b0f6-d018-a608">7</characteristic>
<characteristic name="Declare" typeId="24f8-3803-4ab1-3b6c">Pick an enemy Hero in combat with this unit to be the target, then make a casting roll of 2D6.</characteristic>
<characteristic name="Effect" typeId="1cb9-a-1345-907f">If the unmodified casting roll exceeds the target’s Health characteristic, it is automatically destroyed. For the rest of the battle, that unit cannot be picked to be the target of an ability that allows a replacement unit to be set up.</characteristic>
<characteristic name="Keywords" typeId="353f-565e-c351-1cf2">**^^Spell^^**</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Gaunt Summoner on Disc of Tzeentch" hidden="false" id="212b-129d-1fdf-2137">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Warptongue Blade" hidden="false" id="ef26-47c6-4a87-1678">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a45a-4414-ebe6-1918"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="d585-6796-2900-35cf"/>
</constraints>
<profiles>
<profile name="Warptongue Blade" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="fb63-3ce2-3649-921">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">3</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Changestaff" hidden="false" id="57ed-8ad7-4f39-ec85">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1f2e-7a16-56a-9e90"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e2c4-df3-5805-c629"/>
</constraints>
<profiles>
<profile name="Changestaff" typeId="1fd-a42f-41d3-fe05" typeName="Ranged Weapon" hidden="false" id="3196-3716-8abf-de6f">
<characteristics>
<characteristic name="Rng" typeId="c6b5-908c-a604-1a98">12"</characteristic>
<characteristic name="Atk" typeId="aa17-4296-2887-e05d">3</characteristic>
<characteristic name="Hit" typeId="194d-aeb6-5ba7-83b4">4+</characteristic>
<characteristic name="Wnd" typeId="d3d5-9dc6-13de-8d1">3+</characteristic>
<characteristic name="Rnd" typeId="d03f-a9ae-3eec-755">1</characteristic>
<characteristic name="Dmg" typeId="96c2-d0a5-ea1e-653b">D3</characteristic>
<characteristic name="Ability" typeId="d793-3dd7-9c13-741e">Crit (Mortal)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Disc’s Teeth and Horns" hidden="false" id="fc9d-c8e-d6f0-ef02">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ea7f-8547-ffa8-f66e"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="dcf9-b5a9-d4e9-250d"/>
</constraints>
<profiles>
<profile name="Disc’s Teeth and Horns" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="e9a9-de6f-8892-a1c6">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">2</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">3+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">D3</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Companion</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="50e1-41fa-96a2-be47"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="613c-ea7b-d7ad-bdd8"/>
</constraints>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Ogroid Theridons" hidden="false" id="dc36-25e9-9522-971e" publicationId="eb12-18be-ab22-c391">
<profiles>
<profile name="Ogroid Theridons" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="a00b-3779-e3b6-dcfa">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">6"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">5</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Unleashed Savagery" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="ec56-d1b6-5e6c-34a1">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">Once Per Battle, Any Combat Phase</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Add 1 to the Damage characteristic of this unit’s melee weapons for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink name="CHAOS" hidden="false" id="bd0d-897f-3fe6-588" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="SLAVES TO DARKNESS" hidden="false" id="bca0-1e4d-1f6d-c988" targetId="94d9-cc36-9083-1bea" primary="false"/>
<categoryLink name="INFANTRY" hidden="false" id="9013-a721-7657-66a3" targetId="75d6-6995-dfcc-3898" primary="true"/>
<categoryLink name="MUSICIAN (1/3)" hidden="false" id="1300-a7de-fdbc-c71b" targetId="6cae-9aa2-6245-ab11" primary="false"/>
<categoryLink name="STANDARD BEARER (1/3)" hidden="false" id="bc5c-77ca-325f-d096" targetId="9072-b48-3dd7-2cbc" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Mark of Chaos" hidden="false" id="6cb0-3883-1ffd-2c0c" type="selectionEntryGroup" targetId="c38-e3f0-8e63-3da7"/>
</entryLinks>
<costs>
<cost name="" id="1435-73-5274-ab6b" hidden="false" typeId="1dd2-2af7-76a2-2423" value="0"/>
</costs>
<selectionEntries>
<selectionEntry type="model" import="true" name="Ogroid Theridon" hidden="false" id="cdee-d959-79b4-59fd" defaultAmount="1,1,1">
<constraints>
<constraint type="min" value="3" field="selections" scope="parent" shared="true" id="65ba-e027-25df-b4d"/>
<constraint type="max" value="3" field="selections" scope="parent" shared="true" id="d311-cfc5-bb7b-904a"/>
</constraints>
<modifiers>
<modifier type="increment" value="3" field="65ba-e027-25df-b4d">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" value="3" field="d311-cfc5-bb7b-904a">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Goroan Weapons" hidden="false" id="4590-37d3-f71c-fb6a">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6c63-75c8-832d-9081"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f43d-b2f8-e088-d88c"/>
</constraints>
<profiles>
<profile name="Goroan Weapons" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="3991-5a0d-f33-69b1">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">4</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">4+</characteristic>
<characteristic name="Wnd" typeId="61c1-22cc-40af-2847">2+</characteristic>
<characteristic name="Rnd" typeId="eccc-10fa-6958-fb73">1</characteristic>
<characteristic name="Dmg" typeId="e948-9c71-12a6-6be4">2</characteristic>
<characteristic name="Ability" typeId="eda3-7332-5db1-4159">Anti-Infantry (+1 Rend)</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup name="Command Models" id="1381-d2b6-c7c0-672e" hidden="false">
<entryLinks>
<entryLink import="true" name="Musician" hidden="false" id="33c1-affc-9419-1fe7" type="selectionEntry" targetId="2475-183b-3802-4431" defaultAmount="0,1,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="dc36-25e9-9522-971e" shared="true" id="afd6-e20-8ef3-f2f7" includeChildSelections="true"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="993f-a86c-e2fb-f859"/>
</constraints>
<modifiers>
<modifier type="increment" value="1" field="afd6-e20-8ef3-f2f7">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
<entryLink import="true" name="Champion" hidden="false" id="eb23-2c9b-e872-1c89" type="selectionEntry" targetId="9c21-1746-9873-a5b5" defaultAmount="1,0,0">
<constraints>
<constraint type="max" value="1" field="selections" scope="dc36-25e9-9522-971e" shared="true" id="28be-c707-b3d5-5c6d" includeChildSelections="true"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3d3a-4a7d-63e6-85bf"/>
</constraints>
</entryLink>
<entryLink import="true" name="Standard Bearer" hidden="false" id="fd72-cf0d-ef97-b756" type="selectionEntry" targetId="7f34-77c9-597-62c3" defaultAmount="0,0,1">
<constraints>
<constraint type="max" value="1" field="selections" scope="dc36-25e9-9522-971e" shared="true" id="62ad-b427-9414-3e46" includeChildSelections="true"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8cfd-babc-f099-d2be"/>
</constraints>
<modifiers>
<modifier type="increment" value="1" field="62ad-b427-9414-3e46">
<repeats>
<repeat value="1" repeats="1" field="selections" scope="root-entry" childId="1b37-82b8-c062-eb82" shared="true" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="145d-5f98-654e-7b40"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Centaurion Marshal" hidden="false" id="4c43-1634-6d7f-2705" publicationId="eb12-18be-ab22-c391">
<categoryLinks>
<categoryLink name="HERO" hidden="false" id="880c-4777-1c59-e257" targetId="6e72-1656-d554-528a" primary="true"/>
<categoryLink name="SLAVES TO DARKNESS" hidden="false" id="8eed-5e83-2d2b-3c5d" targetId="94d9-cc36-9083-1bea" primary="false"/>
<categoryLink name="CAVALRY" hidden="false" id="44f2-2a8f-99bd-87ac" targetId="926c-df8c-6841-d49e" primary="false"/>
<categoryLink name="CHAOS" hidden="false" id="9bb6-c152-874c-440d" targetId="319b-38ee-d10d-e800" primary="false"/>
<categoryLink name="UNDIVIDED" hidden="false" id="d57b-c6b-168c-4ed4" targetId="9ff6-420e-8f6d-f6dd" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="General" hidden="false" id="79ac-763e-a58a-94c3" type="selectionEntry" targetId="a56b-952e-ad15-7868"/>
</entryLinks>
<profiles>
<profile name="Centaurion Marshal" typeId="ff03-376e-972f-8ab2" typeName="Unit" hidden="false" id="e8b6-f023-110c-2f89">
<characteristics>
<characteristic name="Move" typeId="fed0-d1b3-1bb8-c501">8"</characteristic>
<characteristic name="Health" typeId="96be-54ae-ce7b-10b7">10</characteristic>
<characteristic name="Save" typeId="1981-ef09-96f6-7aa9">4+</characteristic>
<characteristic name="Control" typeId="6c6f-8510-9ce1-fc6e">2</characteristic>
</characteristics>
</profile>
<profile name="Marshal of the Legions" typeId="59b6-d47a-a68a-5dcc" typeName="Ability (Activated)" hidden="false" id="cc55-5fa7-884-b90b">
<characteristics>
<characteristic name="Timing" typeId="652c-3d84-4e7-14f4">You declared a **^^Fight^^** ability for this unit</characteristic>
<characteristic name="Declare" typeId="bad3-f9c5-ba46-18cb"/>
<characteristic name="Effect" typeId="b6f1-ba36-6cd-3b03">Pick a friendly non-**^^Hero Undivided^^** unit that has not used a **^^Fight^^** ability this turn and is within this unit’s combat range to be the target. The target can be picked to use a **^^Fight^^** ability immediately after the **^^Fight^^** ability used by this unit has been resolved. If it is picked to do so, add 1 to hit rolls for the target’s attacks for the rest of the turn.</characteristic>
<characteristic name="Keywords" typeId="12e8-3214-7d8f-1d0f"/>
<characteristic name="Used By" typeId="1b32-c9d6-3106-166b"/>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Centaurion Marshal" hidden="false" id="75d8-60d2-c92f-309e">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Mauling Spear, Skull Bludgeon and Varanspire Gladius" hidden="false" id="8849-fa6b-d0c3-ab98">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="a9ed-436-d63f-62f0"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e360-b12c-8d98-fe7d"/>
</constraints>
<profiles>
<profile name="Mauling Spear, Skull Bludgeon and Varanspire Gladius" typeId="9074-76b6-9e2f-81e3" typeName="Melee Weapon" hidden="false" id="79e5-f529-f330-9d1b">
<characteristics>
<characteristic name="Atk" typeId="60e-35aa-31ed-e488">6</characteristic>
<characteristic name="Hit" typeId="26dc-168-b2fd-cb93">3+</characteristic>