forked from BSData/wh40k-9e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Chaos - Chaos Knights.cat
11043 lines (11038 loc) · 845 KB
/
Chaos - Chaos Knights.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 id="5d84-5102-f22c-14d4" name="Chaos - Chaos Knights" revision="87" battleScribeVersion="2.03" authorName="BSData Developers" authorContact="@Mad_Spy" authorUrl="https://www.bsdata.net/contact" library="false" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="248" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<profileTypes>
<profileType id="3f2c-38d3-b6df-df27" name="D3 Roll">
<characteristicTypes>
<characteristicType id="430e-a735-6e59-c8dd" name="Daemonic Surge"/>
</characteristicTypes>
</profileType>
<profileType id="b2ce-7355-8075-feac" name="Fell Bond">
<characteristicTypes>
<characteristicType id="11c8-2cd6-bd89-48be" name="Ability"/>
</characteristicTypes>
</profileType>
<profileType id="8da4-571f-3517-0df9" name="Favour of the Dark Gods">
<characteristicTypes>
<characteristicType id="8415-27e8-bbac-4ee6" name="Standard"/>
<characteristicType id="ae49-cab9-00a9-52bf" name="Favoured"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="edad-bca8-8b56-14f1" name="Faction: Dreadblade" hidden="false"/>
<categoryEntry id="0982-3556-d477-7b2c" name="Faction: Iconoclast Household" hidden="false"/>
<categoryEntry id="14fa-557d-c5e1-9b16" name="Faction: Infernal Household" hidden="false"/>
<categoryEntry id="4be4-2c06-0d3d-3968" name="Knight Despoiler" hidden="false"/>
<categoryEntry id="b737-d1c7-5bbb-5e13" name="Knight Tyrant" hidden="false"/>
<categoryEntry id="2443-cfcb-999d-83dc" name="Knight Desecrator" hidden="false"/>
<categoryEntry id="fb72-d3ae-92ce-f234" name="Knight Rampager" hidden="false"/>
<categoryEntry id="a9c3-b78d-032c-7a74" name="Acastus Class" hidden="false"/>
<categoryEntry id="b412-4018-9801-9770" name="Knight Porphyrion" hidden="false"/>
<categoryEntry id="eb78-fad4-a5b8-55f8" name="Knight Asterius" hidden="false"/>
<categoryEntry id="b085-e0f1-625b-4df0" name="Cerastus Class" hidden="false"/>
<categoryEntry id="6cda-0b68-b611-45fa" name="Knight-Acheron" hidden="false"/>
<categoryEntry id="07bf-b062-fdf3-091f" name="Knight-Atrapos" hidden="false"/>
<categoryEntry id="76eb-5dd7-314b-5d02" name="Knight-Castigator" hidden="false"/>
<categoryEntry id="429b-9f1f-1983-79fa" name="Knight-Lancer" hidden="false"/>
<categoryEntry id="5773-89fe-4de9-f538" name="Questoris Class" hidden="false"/>
<categoryEntry id="fcbf-86ff-3a8f-baa2" name="Knight Magaera" hidden="false"/>
<categoryEntry id="79cb-8b18-48ee-4550" name="Knight Styrix" hidden="false"/>
<categoryEntry id="64bd-f43f-ffda-8ed0" name="War Dog Moirax" hidden="false"/>
<categoryEntry id="5f47-d9fc-bb6e-4b72" name="Faction: House Lucaris" hidden="false"/>
<categoryEntry id="5d43-9fd0-e47e-ac30" name="Faction: House Herpetrax" hidden="false"/>
<categoryEntry id="2a8c-f96a-55bd-abf7" name="Faction: House Khymere" hidden="false"/>
<categoryEntry id="5afd-b796-cedf-5dcd" name="Faction: House Vextrix" hidden="false"/>
<categoryEntry id="9bb7-97a4-987d-5b4f" name="Faction: House Khomentis" hidden="false"/>
<categoryEntry id="2b6b-eda9-76b0-368f" name="Pterrorshades" hidden="false"/>
<categoryEntry id="a9ef-fe5f-e524-b85f" name="Knight Abominant" hidden="false"/>
<categoryEntry id="8303-1608-5fb5-99b3" name="Tyrant-Class" hidden="false"/>
<categoryEntry id="86e4-6a8a-19e0-822e" name="Faction: House Korvax" hidden="false"/>
<categoryEntry id="3af3-0985-1639-eaee" name="Faction: <Dread Household>" hidden="false"/>
<categoryEntry id="91ad-6187-7869-5d01" name="Herpetrax Heredity" hidden="false"/>
<categoryEntry id="e928-e19e-cb03-79a4" name="Khomentis Vassal" hidden="false"/>
<categoryEntry id="0575-466c-90a5-1686" name="Khymere Heredity" hidden="false"/>
<categoryEntry id="7113-ca44-a8d0-88b4" name="Korvax Vassal" hidden="false"/>
<categoryEntry id="a6b4-ff26-5a30-165b" name="Lucaris Heredity" hidden="false"/>
<categoryEntry id="7541-aa17-a6e6-6e4b" name="Vextrix Vassal" hidden="false"/>
<categoryEntry id="7eb7-17ad-139b-4c57" name="Agent of Chaos" hidden="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="48b8-c8c2-60ec-c53b" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="4a3d-582d-f31c-d71c" name="Khorne" hidden="false"/>
<categoryEntry id="aecd-93b4-d1a1-c67c" name="Nurgle" hidden="false"/>
<categoryEntry id="2ee7-e16f-17fc-eae3" name="Slaanesh" hidden="false"/>
<categoryEntry id="22a8-6612-761d-2903" name="Tzeentch" hidden="false"/>
<categoryEntry id="5012-4734-1b9d-68e9" name="Pantheon Undivided" hidden="false"/>
<categoryEntry id="ba4d-d62c-b4dc-609a" name="Armiger Class" hidden="false"/>
<categoryEntry id="8f1a-61e5-2a27-9c5e" name="Disciples of Be'lakor" hidden="false"/>
</categoryEntries>
<selectionEntries>
<selectionEntry id="7369-b019-44aa-f0ab" name="Chaos Cerastus Knight Acheron" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="add" field="category" value="7eb7-17ad-139b-4c57">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="edad-bca8-8b56-14f1" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="224b-1070-218f-fdf4" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="add" field="category" value="8f1a-61e5-2a27-9c5e">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="88b1-c697-e840-2850" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="bc61-00e6-8dc6-e4eb" name="Chaos Acheron 1 (14+ wounds remaining)" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">12"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">26</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="29da-8cc2-fe83-c5cb" name="Chaos Acheron 2 (7-13 wounds remaining)" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">10"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">N/A</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="843f-fed2-018c-2434" name="Chaos Acheron 3 (1-6 wounds remaining)" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">8"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">5+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">5+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">N/A</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="8e62-c6eb-9ef1-d575" name="Super-heavy Walker" hidden="false" targetId="53d0-ab53-d94e-5dcd" type="rule"/>
<infoLink id="6d00-937e-c986-db5e" name="Ion Shields" hidden="false" targetId="977d-25bc-3918-a164" type="rule"/>
<infoLink id="376f-5c3a-797b-9e3c" name="Explodes (New)" hidden="false" targetId="765d-d065-c648-55aa" type="profile"/>
<infoLink id="d6c1-129c-d7d3-50c5" name="Conquerors Without Mercy" hidden="false" targetId="e377-2fb9-9d46-013e" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="7369-b019-44aa-f0ab" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="057f-3b1e-fdf6-3a24" type="equalTo"/>
<condition field="selections" scope="7369-b019-44aa-f0ab" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e1af-47ba-b849-0a40" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
<infoLink id="fd6d-5cad-e934-8669" name="Daemonic Surge" hidden="false" targetId="4687-50b6-bc4e-e9e2" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="7369-b019-44aa-f0ab" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dda8-83fc-2616-8e6d" type="equalTo"/>
<condition field="selections" scope="7369-b019-44aa-f0ab" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="986c-8ce4-b0ec-dddb" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
<infoLink id="f43b-92f4-0bf0-ed70" name="Daemonic Surge" hidden="false" targetId="b124-8780-8c0b-419e" type="infoGroup">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="7369-b019-44aa-f0ab" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dda8-83fc-2616-8e6d" type="equalTo"/>
<condition field="selections" scope="7369-b019-44aa-f0ab" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="986c-8ce4-b0ec-dddb" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
<infoLink id="621d-51bf-56cb-84d6" name="Towering Foe" hidden="false" targetId="352d-29de-01af-0dad" type="rule"/>
<infoLink id="26c0-8420-1b15-52d0" name="Harbingers of Dread" hidden="false" targetId="b409-3556-7d5e-d4c3" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="8f38-d08a-a8ae-ce2b" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
<categoryLink id="e68b-bcbd-94e8-8f29" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="f5ff-cd54-a7ce-ac74" name="Faction: Chaos Knights" hidden="false" targetId="492c-9ae1-0205-c13f" primary="false"/>
<categoryLink id="9313-8a60-75b2-b60d" name="Titanic" hidden="false" targetId="bdda-36f0-4f32-1639" primary="false"/>
<categoryLink id="dfa4-a5ff-6406-b37f" name="Vehicle" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="488a-d429-192e-c904" name="Ceratus Class" hidden="false" targetId="b085-e0f1-625b-4df0" primary="false"/>
<categoryLink id="8c4c-1921-6515-dc48" name="Knight-Acheron" hidden="false" targetId="6cda-0b68-b611-45fa" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="aa95-3e72-0a1e-2e48" name="Acheron flame cannon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5d16-b897-0542-e9ff" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0509-aa5b-91b5-d3b2" type="max"/>
</constraints>
<profiles>
<profile id="e5d1-fa72-9c82-fcb0" name="Acheron flame cannon" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">18"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 2D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">7</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each time an attack is made with this weapon, that attack automatically hits the target.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="298b-8390-c938-6547" name="Reaper chainfist" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="87bd-178e-b8ae-1ad2" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ecc9-f1bc-8341-ec12" type="min"/>
</constraints>
<profiles>
<profile id="bb26-8a2d-2b0a-b547" name="Reaper chainfist - Saw" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">x2</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-4</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">6</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
<profile id="9773-0ab3-ccf0-12db" name="Reaper chainfist - Sweep" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">User</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each time an attack is made with this weapon profile, make 3 hit rolls instead of 1.</characteristic>
</characteristics>
</profile>
<profile id="2c81-c32e-32bf-f942" name="Reaper chainfist" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Before selecting targets, select one of the profiles below to make attacks with.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="262c-9d94-4dc7-ba08" name="Titanic feet" hidden="false" collective="false" import="true" targetId="b873-b5d1-e25a-0b35" type="selectionEntry"/>
<entryLink id="e34d-165c-e56c-b0bc" name="Warlord" hidden="false" collective="false" import="true" targetId="c50f-9cc4-a751-6707" type="selectionEntry"/>
<entryLink id="bbe7-590c-0ff1-50b0" name="Artefacts of Tyranny" hidden="false" collective="false" import="true" targetId="b64a-6b3c-e424-afb3" type="selectionEntryGroup"/>
<entryLink id="aa6f-966d-b99f-46c4" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="076d-e9d1-ae0c-e60d" type="selectionEntryGroup"/>
<entryLink id="a1b2-d462-f147-90ea" name="Twin heavy bolter" hidden="false" collective="false" import="true" targetId="09d8-7790-ed3f-4d6d" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="0.0"/>
<modifier type="set" field="name" value="Acheron twin heavy bolter"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ce45-4ea1-9c9f-32e1" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="391e-a944-20f4-2894" type="max"/>
</constraints>
</entryLink>
<entryLink id="e0c4-f090-390e-1799" name="Dread Household" hidden="false" collective="false" import="true" targetId="4f6a-0a86-fd1c-0486" type="selectionEntryGroup"/>
<entryLink id="6e66-d8f3-9f4b-8453" name="Fell Bonds (Household)" hidden="false" collective="false" import="true" targetId="a44b-c8f0-e81f-8e49" type="selectionEntryGroup"/>
<entryLink id="8373-f31b-f5ee-e571" name="Arch-Tyrant" hidden="false" collective="false" import="true" targetId="a8ab-483c-34d6-7474" type="selectionEntry"/>
<entryLink id="36e7-e4ea-fdbe-9442" name="Character (Tyrannical Court)" hidden="false" collective="false" import="true" targetId="6a6f-6b25-8347-4c3e" type="selectionEntry"/>
<entryLink id="6209-5696-b6ad-aa42" name="Corrupted Heirloom" hidden="false" collective="false" import="true" targetId="5f95-2d49-2a64-4f9b" type="selectionEntry"/>
<entryLink id="242f-b40d-46e9-d2bf" name="Corrupted Heirloom" hidden="false" collective="false" import="true" targetId="f2fd-4bf8-c56a-8a94" type="selectionEntryGroup"/>
<entryLink id="4c0f-c8c1-d1ec-cc1b" name="Fell Bond (Dreadblade)" hidden="false" collective="false" import="true" targetId="4d87-149c-58c0-4d3c" type="selectionEntryGroup"/>
<entryLink id="9184-ddae-4443-1205" name="Chosen by the Gods" hidden="false" collective="false" import="true" targetId="205a-133d-d406-6c30" type="selectionEntry"/>
<entryLink id="d2c5-04a7-abb0-057c" name="Stratagem: Relic" hidden="false" collective="false" import="true" targetId="c470-54ac-0863-8848" type="selectionEntry"/>
<entryLink id="79d2-f288-7cf9-5088" name="Battle Honours" hidden="false" collective="false" import="true" targetId="4b7a-cfc9-7911-8eda" type="selectionEntryGroup"/>
<entryLink id="50cb-1ea7-cdca-cbbe" name="Damned" hidden="false" collective="false" import="true" targetId="c29c-52f8-71cb-1300" type="selectionEntry"/>
<entryLink id="3208-71af-5e74-c06e" name="Battle Scars" hidden="false" collective="false" import="true" targetId="6400-1980-2c09-b385" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="24.0"/>
<cost name="pts" typeId="points" value="480.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7171-5531-20dc-f1a4" name="Chaos Cerastus Knight Atrapos" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="add" field="category" value="7eb7-17ad-139b-4c57">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="edad-bca8-8b56-14f1" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="224b-1070-218f-fdf4" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="add" field="category" value="8f1a-61e5-2a27-9c5e">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="88b1-c697-e840-2850" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="683b-ddb9-30de-4cca" name="Chaos Atropos 1 (14+ wounds remaining)" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">12"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">26</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="07e2-4b7a-58ad-ae68" name="Macro-extinction Protocols" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Each time an attack is made by this model against a TITANIC unit, add 1 to that attack's hit roll.</characteristic>
</characteristics>
</profile>
<profile id="54eb-6e2f-75bf-1c68" name="Chaos Atropos 2 (7-13 wounds remaining)" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">10"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">N/A</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="8ab2-2e0c-c42d-0be9" name="Chaos Atropos 3 (1-6 wounds remaining)" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">8"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">5+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">5+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">N/A</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2ebf-a00f-9b46-7936" name="Super-heavy Walker" hidden="false" targetId="53d0-ab53-d94e-5dcd" type="rule"/>
<infoLink id="1279-f579-3761-76c2" name="Ionic Flare Shield" hidden="false" targetId="b1dc-a30e-3733-f116" type="profile"/>
<infoLink id="b64c-c4eb-421a-8d45" name="Explodes (New)" hidden="false" targetId="765d-d065-c648-55aa" type="profile"/>
<infoLink id="5cf2-3c51-6cdf-a904" name="Towering Foe" hidden="false" targetId="352d-29de-01af-0dad" type="rule"/>
<infoLink id="668d-f2ad-ee66-7686" name="Conquerors Without Mercy" hidden="false" targetId="e377-2fb9-9d46-013e" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="7171-5531-20dc-f1a4" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="057f-3b1e-fdf6-3a24" type="equalTo"/>
<condition field="selections" scope="7171-5531-20dc-f1a4" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e1af-47ba-b849-0a40" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
<infoLink id="d5fb-b0c3-4589-2195" name="Daemonic Surge" hidden="false" targetId="4687-50b6-bc4e-e9e2" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="7171-5531-20dc-f1a4" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dda8-83fc-2616-8e6d" type="equalTo"/>
<condition field="selections" scope="7171-5531-20dc-f1a4" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="986c-8ce4-b0ec-dddb" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
<infoLink id="d935-f4c0-bc23-dd27" name="Harbingers of Dread" hidden="false" targetId="b409-3556-7d5e-d4c3" type="rule"/>
<infoLink id="cd02-71a7-9b46-7ea4" name="Daemonic Surge" hidden="false" targetId="b124-8780-8c0b-419e" type="infoGroup">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="7171-5531-20dc-f1a4" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dda8-83fc-2616-8e6d" type="equalTo"/>
<condition field="selections" scope="7171-5531-20dc-f1a4" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="986c-8ce4-b0ec-dddb" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="8f49-f100-a56c-5581" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
<categoryLink id="0da4-5a07-2bbc-a6bc" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="24a3-c906-33a0-1b48" name="New CategoryLink" hidden="false" targetId="bdda-36f0-4f32-1639" primary="false"/>
<categoryLink id="e0c9-3dbf-bd61-23b8" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="7a52-10be-c643-f8a4" name="Faction: Questor Traitoris" hidden="false" targetId="1481-ffc3-f85a-eb36" primary="false"/>
<categoryLink id="38b3-1b36-417f-1e2e" name="Ceratus Class" hidden="false" targetId="b085-e0f1-625b-4df0" primary="false"/>
<categoryLink id="735d-3612-0462-1233" name="Knight-Atrapos" hidden="false" targetId="07bf-b062-fdf3-091f" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="3144-847a-3d76-3982" name="Atrapos lascutter" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d547-daee-da81-000e" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5731-85e2-675c-3afd" type="min"/>
</constraints>
<profiles>
<profile id="0ee6-ff33-7f4d-fba6" name="Atrapos lascutter (shooting) " hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">9"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 1</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">12</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-4</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">6</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each time an attack is made with this weapon against a VEHICLE or MONSTER unit, you can re-roll the wound roll.</characteristic>
</characteristics>
</profile>
<profile id="bd01-0072-4db8-17cc" name="Atrapos lascutter (melee) - Crush" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">12</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-4</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">6</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each time an attack is made with this weapon profile against a VEHICLE or MONSTER unit, you can re-roll the wound roll.</characteristic>
</characteristics>
</profile>
<profile id="13c0-7102-260e-b66c" name="Atrapos lascutter (melee) - Sweep" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">6</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each time an attack is made with this weapon profile, make 3 hit rolls instead of 1.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4e1c-7f2c-cd12-3f5e" name="Graviton singularity cannon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f4a4-807d-e321-51c4" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7429-0f79-81a9-d3c3" type="min"/>
</constraints>
<profiles>
<profile id="20a0-3e16-ea1b-08d6" name="Graviton singularity cannon - Contained" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">36"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 4</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">8</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
<profile id="9540-c5c0-63f9-cdfb" name="Graviton singularity cannon" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">-</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">-</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">-</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">-</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Before selecting targets, select one of the profiles below to make attacks with.</characteristic>
</characteristics>
</profile>
<profile id="8fd4-2891-8c0d-140a" name="Graviton singularity cannon - Singularity" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">36"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy D6+4</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">14</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-4</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each time you select this profile to shoot with roll one D6; on a 1-3, the bearer suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="9ee6-d5fb-97d1-f684" name="Titanic feet" hidden="false" collective="false" import="true" targetId="b873-b5d1-e25a-0b35" type="selectionEntry"/>
<entryLink id="5641-b697-837b-1eba" name="Warlord" hidden="false" collective="false" import="true" targetId="c50f-9cc4-a751-6707" type="selectionEntry"/>
<entryLink id="41a6-3e00-f874-2f2c" name="Artefacts of Tyranny" hidden="false" collective="false" import="true" targetId="b64a-6b3c-e424-afb3" type="selectionEntryGroup"/>
<entryLink id="0d0f-3019-5a6b-2770" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="076d-e9d1-ae0c-e60d" type="selectionEntryGroup"/>
<entryLink id="6593-fc2a-9f04-bc4b" name="Dread Household" hidden="false" collective="false" import="true" targetId="4f6a-0a86-fd1c-0486" type="selectionEntryGroup"/>
<entryLink id="43de-5b95-8ed5-6d0b" name="Fell Bonds (Household)" hidden="false" collective="false" import="true" targetId="a44b-c8f0-e81f-8e49" type="selectionEntryGroup"/>
<entryLink id="efbb-352e-a921-e9c5" name="Arch-Tyrant" hidden="false" collective="false" import="true" targetId="a8ab-483c-34d6-7474" type="selectionEntry"/>
<entryLink id="af27-fe2c-99a0-26ec" name="Character (Tyrannical Court)" hidden="false" collective="false" import="true" targetId="6a6f-6b25-8347-4c3e" type="selectionEntry"/>
<entryLink id="1c1d-0fe5-afee-19b8" name="Corrupted Heirloom" hidden="false" collective="false" import="true" targetId="5f95-2d49-2a64-4f9b" type="selectionEntry"/>
<entryLink id="640e-7c3c-f640-e151" name="Corrupted Heirloom" hidden="false" collective="false" import="true" targetId="f2fd-4bf8-c56a-8a94" type="selectionEntryGroup"/>
<entryLink id="d428-d39f-2198-8969" name="Fell Bond (Dreadblade)" hidden="false" collective="false" import="true" targetId="4d87-149c-58c0-4d3c" type="selectionEntryGroup"/>
<entryLink id="c747-7fad-4f9c-910c" name="Chosen by the Gods" hidden="false" collective="false" import="true" targetId="205a-133d-d406-6c30" type="selectionEntry"/>
<entryLink id="f553-b962-4a5a-603a" name="Stratagem: Relic" hidden="false" collective="false" import="true" targetId="c470-54ac-0863-8848" type="selectionEntry"/>
<entryLink id="86a9-5e93-c1f7-7f47" name="Battle Honours" hidden="false" collective="false" import="true" targetId="4b7a-cfc9-7911-8eda" type="selectionEntryGroup"/>
<entryLink id="a997-9f04-5a07-b699" name="Damned" hidden="false" collective="false" import="true" targetId="c29c-52f8-71cb-1300" type="selectionEntry"/>
<entryLink id="e363-8912-1031-ca31" name="Battle Scars" hidden="false" collective="false" import="true" targetId="6400-1980-2c09-b385" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="26.0"/>
<cost name="pts" typeId="points" value="520.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9bb8-3f81-d887-6ee1" name="Chaos Cerastus Knight Castigator" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="add" field="category" value="7eb7-17ad-139b-4c57">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="edad-bca8-8b56-14f1" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="224b-1070-218f-fdf4" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="add" field="category" value="8f1a-61e5-2a27-9c5e">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="88b1-c697-e840-2850" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="8bd8-ceeb-ddf0-0d16" name="Chaos Castigator 1 (14+ wounds remaining)" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">12"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">26</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="6974-46a2-d188-e2e6" name="Chaos Castigator 2 (7-13 wounds remaining)" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">10"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">N/A</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="5d5d-511f-e01d-d285" name="Chaos Castigator 3 (1-6 wounds remaining)" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">8"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">5+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">5+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">N/A</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1f7f-384a-3fe5-b1b9" name="Super-heavy Walker" hidden="false" targetId="53d0-ab53-d94e-5dcd" type="rule"/>
<infoLink id="7b63-4791-97d5-0a47" name="Ion Shields" hidden="false" targetId="977d-25bc-3918-a164" type="rule"/>
<infoLink id="a1bd-a5e3-e2d0-2fc4" name="Explodes (New)" hidden="false" targetId="765d-d065-c648-55aa" type="profile"/>
<infoLink id="2393-a349-fb9c-c3ef" name="Conquerors Without Mercy" hidden="false" targetId="e377-2fb9-9d46-013e" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="9bb8-3f81-d887-6ee1" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="057f-3b1e-fdf6-3a24" type="equalTo"/>
<condition field="selections" scope="9bb8-3f81-d887-6ee1" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e1af-47ba-b849-0a40" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
<infoLink id="5abc-2ca6-c770-7bfa" name="Daemonic Surge" hidden="false" targetId="4687-50b6-bc4e-e9e2" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="9bb8-3f81-d887-6ee1" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dda8-83fc-2616-8e6d" type="equalTo"/>
<condition field="selections" scope="9bb8-3f81-d887-6ee1" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="986c-8ce4-b0ec-dddb" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
<infoLink id="3205-6f72-c2fc-40c2" name="Daemonic Surge" hidden="false" targetId="b124-8780-8c0b-419e" type="infoGroup">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="9bb8-3f81-d887-6ee1" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dda8-83fc-2616-8e6d" type="equalTo"/>
<condition field="selections" scope="9bb8-3f81-d887-6ee1" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="986c-8ce4-b0ec-dddb" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
<infoLink id="61f2-f817-4f89-3249" name="Towering Foe" hidden="false" targetId="352d-29de-01af-0dad" type="rule"/>
<infoLink id="ab38-ece2-36c7-3806" name="Harbingers of Dread" hidden="false" targetId="b409-3556-7d5e-d4c3" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="0eca-107b-cf43-c1ba" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
<categoryLink id="84e3-f1c4-8ea8-901a" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="c51f-5a1b-f4ad-c1a4" name="Faction: Chaos Knights" hidden="false" targetId="492c-9ae1-0205-c13f" primary="false"/>
<categoryLink id="12ab-edb7-c119-1625" name="Titanic" hidden="false" targetId="bdda-36f0-4f32-1639" primary="false"/>
<categoryLink id="498c-c9b9-0ea0-06b4" name="Vehicle" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="a576-97c6-5a5a-98d0" name="Ceratus Class" hidden="false" targetId="b085-e0f1-625b-4df0" primary="false"/>
<categoryLink id="e5db-e04e-4094-c70e" name="Knight-Castigator" hidden="false" targetId="76eb-5dd7-314b-5d02" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="4473-8c4e-fa1c-4fee" name="Castigator bolt cannon" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="80e0-bebb-9a91-49b7" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4822-40d0-ef87-3c2f" type="max"/>
</constraints>
<profiles>
<profile id="662c-d6b1-5d0d-dfb6" name="Castigator bolt cannon" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">36"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 16</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">6</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="581b-fc25-4b16-18c3" name="Tempest warblade" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="65d7-b568-d6ed-2dcd" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f60c-d7df-02a9-8a08" type="min"/>
</constraints>
<profiles>
<profile id="4280-c3e4-4efc-6e00" name="Tempest warblade" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">+6</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Make 2 hit rolls for each attack made with this weapon, instead of 1.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="98c0-a363-a611-e7a4" name="Titanic feet" hidden="false" collective="false" import="true" targetId="b873-b5d1-e25a-0b35" type="selectionEntry"/>
<entryLink id="9f55-11d5-4d26-5970" name="Warlord" hidden="false" collective="false" import="true" targetId="c50f-9cc4-a751-6707" type="selectionEntry"/>
<entryLink id="c1d8-98cf-6634-4fb9" name="Artefacts of Tyranny" hidden="false" collective="false" import="true" targetId="b64a-6b3c-e424-afb3" type="selectionEntryGroup"/>
<entryLink id="f3ad-8d57-fd47-a4bc" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="076d-e9d1-ae0c-e60d" type="selectionEntryGroup"/>
<entryLink id="ae21-97e1-7dea-21d1" name="Dread Household" hidden="false" collective="false" import="true" targetId="4f6a-0a86-fd1c-0486" type="selectionEntryGroup"/>
<entryLink id="9d11-5927-da40-b773" name="Fell Bonds (Household)" hidden="false" collective="false" import="true" targetId="a44b-c8f0-e81f-8e49" type="selectionEntryGroup"/>
<entryLink id="aed4-69e5-429d-bd2c" name="Arch-Tyrant" hidden="false" collective="false" import="true" targetId="a8ab-483c-34d6-7474" type="selectionEntry"/>
<entryLink id="a5e6-6e52-5315-ae7b" name="Character (Tyrannical Court)" hidden="false" collective="false" import="true" targetId="6a6f-6b25-8347-4c3e" type="selectionEntry"/>
<entryLink id="c856-08f7-936e-d418" name="Corrupted Heirloom" hidden="false" collective="false" import="true" targetId="5f95-2d49-2a64-4f9b" type="selectionEntry"/>
<entryLink id="7042-31ee-a611-e49f" name="Corrupted Heirloom" hidden="false" collective="false" import="true" targetId="f2fd-4bf8-c56a-8a94" type="selectionEntryGroup"/>
<entryLink id="1535-e056-ea24-2125" name="Fell Bond (Dreadblade)" hidden="false" collective="false" import="true" targetId="4d87-149c-58c0-4d3c" type="selectionEntryGroup"/>
<entryLink id="ad1c-ee8d-c531-826c" name="Chosen by the Gods" hidden="false" collective="false" import="true" targetId="205a-133d-d406-6c30" type="selectionEntry"/>
<entryLink id="35b6-d60c-044e-c01f" name="Stratagem: Relic" hidden="false" collective="false" import="true" targetId="c470-54ac-0863-8848" type="selectionEntry"/>
<entryLink id="ecee-fff6-baad-2d01" name="Battle Honours" hidden="false" collective="false" import="true" targetId="4b7a-cfc9-7911-8eda" type="selectionEntryGroup"/>
<entryLink id="a21a-b51b-faed-151a" name="Damned" hidden="false" collective="false" import="true" targetId="c29c-52f8-71cb-1300" type="selectionEntry"/>
<entryLink id="1409-bdc5-4d3e-a388" name="Battle Scars" hidden="false" collective="false" import="true" targetId="6400-1980-2c09-b385" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="23.0"/>
<cost name="pts" typeId="points" value="460.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="582b-4724-4799-d426" name="Chaos Cerastus Knight Lancer" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="add" field="category" value="7eb7-17ad-139b-4c57">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="edad-bca8-8b56-14f1" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="224b-1070-218f-fdf4" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="add" field="category" value="8f1a-61e5-2a27-9c5e">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="88b1-c697-e840-2850" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="faf0-abd3-160c-da9c" name="Chaos Lancer 1 (14+ wounds remaining)" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">14"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">26</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">5</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="2ed2-d7ef-d0c3-8e0e" name="Chaos Lancer 2 (7-13 wounds remaining)" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">12"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">N/A</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">5</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="bbb1-6650-4bb8-d2d3" name="Chaos Lancer 3 (1-6 wounds remaining)" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">10"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">5+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">5+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">N/A</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">5</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="04f4-ea84-dd8d-9177" name="Ion Gauntlet Shield" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">This model has a 5+ invulnerable save. This model has a 4+ invulnerable save against melee attacks. Each time a TITANIC unit makes a melee attack that targets this model, subtract 1 from that attack's hit roll.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="4480-f8ef-8bf2-fe34" name="Super-heavy Walker" hidden="false" targetId="53d0-ab53-d94e-5dcd" type="rule"/>
<infoLink id="1501-8713-b3fc-0f51" name="Explodes (New)" hidden="false" targetId="765d-d065-c648-55aa" type="profile"/>
<infoLink id="73a4-bfec-5c7c-0163" name="Conquerors Without Mercy" hidden="false" targetId="e377-2fb9-9d46-013e" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="582b-4724-4799-d426" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="057f-3b1e-fdf6-3a24" type="equalTo"/>
<condition field="selections" scope="582b-4724-4799-d426" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e1af-47ba-b849-0a40" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
<infoLink id="475d-b5cc-ad79-17fd" name="Daemonic Surge" hidden="false" targetId="4687-50b6-bc4e-e9e2" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="582b-4724-4799-d426" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dda8-83fc-2616-8e6d" type="equalTo"/>
<condition field="selections" scope="582b-4724-4799-d426" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="986c-8ce4-b0ec-dddb" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
<infoLink id="ab90-33f6-fa06-a836" name="Daemonic Surge" hidden="false" targetId="b124-8780-8c0b-419e" type="infoGroup">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="582b-4724-4799-d426" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dda8-83fc-2616-8e6d" type="equalTo"/>
<condition field="selections" scope="582b-4724-4799-d426" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="986c-8ce4-b0ec-dddb" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
<infoLink id="8701-d621-e759-c313" name="Towering Foe" hidden="false" targetId="352d-29de-01af-0dad" type="rule"/>
<infoLink id="82ee-4702-38c5-b024" name="Harbingers of Dread" hidden="false" targetId="b409-3556-7d5e-d4c3" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a0a1-77b5-5f4b-cc3a" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
<categoryLink id="8db5-eca1-b883-9180" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="ca20-635a-ed85-4a06" name="Faction: Chaos Knights" hidden="false" targetId="492c-9ae1-0205-c13f" primary="false"/>
<categoryLink id="52c8-9057-3b39-22e0" name="Titanic" hidden="false" targetId="bdda-36f0-4f32-1639" primary="false"/>
<categoryLink id="86cc-fddc-5659-1a19" name="Vehicle" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="4952-86cc-9c2f-1b00" name="Cerastus Class" hidden="false" targetId="b085-e0f1-625b-4df0" primary="false"/>
<categoryLink id="068c-745a-3913-a540" name="Knight-Lancer" hidden="false" targetId="429b-9f1f-1983-79fa" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="97ea-80bd-c73d-652a" name="Cerastus shock lance" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ac05-48b7-2aaf-bdca" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5d76-d764-41a8-738f" type="min"/>
</constraints>
<profiles>
<profile id="1d84-52d2-d79d-ba28" name="Cerastus shock lance (melee) - Standard" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">+6</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-4</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">6</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
<profile id="f099-7823-5ac6-2b08" name="Cerastus shock lance (shooting)" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464"> 18"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">6</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-1</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
<profile id="52eb-185e-5da2-fd57" name="Cerastus shock lance (melee) - Charged" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">x2</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-4</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">8</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
<profile id="6743-84a6-2870-3617" name="Cerastus shock lance (melee)" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Before selecting targets, select one of the profiles below to make attacks with. You can only select the charged profile if the bearer made a charge move this turn.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="e2e6-a6d0-5034-0db7" name="Titanic feet" hidden="false" collective="false" import="true" targetId="b873-b5d1-e25a-0b35" type="selectionEntry"/>
<entryLink id="0c63-5e16-f036-4e98" name="Warlord" hidden="false" collective="false" import="true" targetId="c50f-9cc4-a751-6707" type="selectionEntry"/>
<entryLink id="8a6d-90da-fe6b-e5d6" name="Artefacts of Tyranny" hidden="false" collective="false" import="true" targetId="b64a-6b3c-e424-afb3" type="selectionEntryGroup"/>
<entryLink id="6a20-1c6d-ee20-35c6" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="076d-e9d1-ae0c-e60d" type="selectionEntryGroup"/>
<entryLink id="42ee-443d-9695-0bfa" name="Dread Household" hidden="false" collective="false" import="true" targetId="4f6a-0a86-fd1c-0486" type="selectionEntryGroup"/>
<entryLink id="ebcd-baed-f4d5-419a" name="Fell Bonds (Household)" hidden="false" collective="false" import="true" targetId="a44b-c8f0-e81f-8e49" type="selectionEntryGroup"/>
<entryLink id="30b3-bdaa-402e-f7fe" name="Arch-Tyrant" hidden="false" collective="false" import="true" targetId="a8ab-483c-34d6-7474" type="selectionEntry"/>
<entryLink id="2baa-2c09-2c77-6e76" name="Character (Tyrannical Court)" hidden="false" collective="false" import="true" targetId="6a6f-6b25-8347-4c3e" type="selectionEntry"/>
<entryLink id="6462-390d-3f52-90e2" name="Corrupted Heirlooms" hidden="false" collective="false" import="true" targetId="5f95-2d49-2a64-4f9b" type="selectionEntry"/>
<entryLink id="340f-4257-a24e-8f27" name="Corrupted Heirloom" hidden="false" collective="false" import="true" targetId="f2fd-4bf8-c56a-8a94" type="selectionEntryGroup"/>
<entryLink id="f181-1126-9245-1777" name="Fell Bond (Dreadblade)" hidden="false" collective="false" import="true" targetId="4d87-149c-58c0-4d3c" type="selectionEntryGroup"/>
<entryLink id="79f2-ca13-daad-450d" name="Chosen by the Gods" hidden="false" collective="false" import="true" targetId="205a-133d-d406-6c30" type="selectionEntry"/>
<entryLink id="e60d-e087-387c-9fd2" name="Stratagem: Relic" hidden="false" collective="false" import="true" targetId="c470-54ac-0863-8848" type="selectionEntry"/>
<entryLink id="a485-6133-d0ca-3da4" name="Battle Honours" hidden="false" collective="false" import="true" targetId="4b7a-cfc9-7911-8eda" type="selectionEntryGroup"/>
<entryLink id="9840-9067-9f37-f253" name="Damned" hidden="false" collective="false" import="true" targetId="c29c-52f8-71cb-1300" type="selectionEntry"/>
<entryLink id="bdfa-8de1-0a45-c956" name="Battle Scars" hidden="false" collective="false" import="true" targetId="6400-1980-2c09-b385" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="22.0"/>
<cost name="pts" typeId="points" value="440.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ed25-5bed-2c50-0a8b" name="Chaos Questoris Knight Magaera" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="add" field="category" value="7eb7-17ad-139b-4c57">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="edad-bca8-8b56-14f1" type="equalTo"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="224b-1070-218f-fdf4" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="add" field="category" value="8f1a-61e5-2a27-9c5e">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="88b1-c697-e840-2850" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="b7d8-13d9-a621-7aef" name="Chaos Magaera 1 (13+ wounds remaining)" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">12"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">24</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="8263-73fa-e713-d747" name="Chaos Magaera 2 (7-12 wounds remaining)" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">9"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">N/A</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="7d17-90b7-be13-560d" name="Chaos Magaera 3 (1-6 wounds remaining)" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">5+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">5+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">N/A</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="4216-040d-ac13-57ec" name="Super-heavy Walker" hidden="false" targetId="53d0-ab53-d94e-5dcd" type="rule"/>
<infoLink id="153f-d0a1-5c0d-18da" name="Explodes (New)" hidden="false" targetId="765d-d065-c648-55aa" type="profile"/>
<infoLink id="a3d2-e565-63e3-ba48" name="Empyreal Preysight" hidden="false" targetId="bde1-472d-b412-265f" type="profile"/>
<infoLink id="ed6a-a089-6fca-c4c4" name="Ionic Flare Shield" hidden="false" targetId="b1dc-a30e-3733-f116" type="profile"/>
<infoLink id="003e-a1cc-2cb9-f7ff" name="Conquerors Without Mercy" hidden="false" targetId="e377-2fb9-9d46-013e" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ed25-5bed-2c50-0a8b" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="057f-3b1e-fdf6-3a24" type="equalTo"/>
<condition field="selections" scope="ed25-5bed-2c50-0a8b" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e1af-47ba-b849-0a40" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
<infoLink id="66f8-1d6c-6a89-2065" name="Daemonic Surge" hidden="false" targetId="4687-50b6-bc4e-e9e2" type="rule">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ed25-5bed-2c50-0a8b" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dda8-83fc-2616-8e6d" type="equalTo"/>
<condition field="selections" scope="ed25-5bed-2c50-0a8b" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="986c-8ce4-b0ec-dddb" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
<infoLink id="403b-0419-ca53-0293" name="Daemonic Surge" hidden="false" targetId="b124-8780-8c0b-419e" type="infoGroup">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>