This repository has been archived by the owner on Oct 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 452
/
Imperium - Grey Knights.cat
10164 lines (10156 loc) · 786 KB
/
Imperium - Grey 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="0cc2-3545-6762-a3f7" name="Imperium - Grey Knights" revision="120" battleScribeVersion="2.03" authorName="BSData Developers" authorContact="@Tekton" authorUrl="https://www.bsdata.net/contact" library="false" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="249" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="0cc2-3545-pubN112001" name="Codex: Grey Knights"/>
</publications>
<categoryEntries>
<categoryEntry id="31b6-b037-4c7a-f850" name="Faction: Grey Knights" hidden="false"/>
<categoryEntry id="ed14-046b-12ea-4e1d" name="Strike Squad" hidden="false"/>
<categoryEntry id="2821-762a-49dc-5a17" name="Terminator" hidden="false"/>
<categoryEntry id="d7f3-e85c-9e30-c44c" name="Lord Kaldor Draigo" hidden="false"/>
<categoryEntry id="3a3f-d525-511f-0b7a" name="Grand Master" hidden="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="47ae-a64d-bcc3-1625" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="15f0-19f4-d5b2-9102" name="Brother-Captain" hidden="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bb38-c9be-73c5-cc90" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="ff8b-de2b-ba78-fe91" name="Ancient" hidden="false"/>
<categoryEntry id="78e6-44b3-63ea-504e" name="Brotherhood Ancient" hidden="false"/>
<categoryEntry id="602f-db93-3bfb-1d3e" name="Brotherhood Champion" hidden="false"/>
<categoryEntry id="bfaf-d2e3-ea37-d0a1" name="Voldus" hidden="false"/>
<categoryEntry id="2dee-488a-0b2d-7187" name="Interceptor Squad" hidden="false"/>
<categoryEntry id="93ce-c53b-02d5-24f5" name="Paladin" hidden="false"/>
<categoryEntry id="c78d-e495-4b56-c15b" name="Nemesis Dreadknight" hidden="false"/>
<categoryEntry id="8897-680b-dbc0-0289" name="Land Raider" hidden="false"/>
<categoryEntry id="23bc-575c-6245-d064" name="Land Raider Crusader" hidden="false"/>
<categoryEntry id="34fe-b4c8-64ce-402d" name="Land Raider Redeemer" hidden="false"/>
<categoryEntry id="180a-06b2-af90-6ee0" name="Stormraven Gunship" hidden="false"/>
<categoryEntry id="7050-d223-264f-f46d" name="Dreadnought" hidden="false"/>
<categoryEntry id="e180-8655-ddcc-69cc" name="Venerable Dreadnought" hidden="false"/>
<categoryEntry id="6ad6-41f2-c4c4-e200" name="Servitors" hidden="false"/>
<categoryEntry id="b6fc-4377-2f38-1842" name="Brotherhood Librarian" hidden="false"/>
<categoryEntry id="79a9-2fca-fdf0-9699" name="Grey Knights" hidden="false"/>
<categoryEntry id="5f54-ad56-a036-640f" name="Grey Knights Vortimer Pattern Razorback" hidden="false"/>
<categoryEntry id="a3fa-58fb-89d6-eb7c" name="Grey Knights Doomglaive Pattern Dreadnought" hidden="false"/>
<categoryEntry id="c0db-0846-37b8-cb4f" name="Dreadnought" hidden="false"/>
<categoryEntry id="9d88-c10f-a509-d631" name="Razorback" hidden="false"/>
<categoryEntry id="3099-4bb3-af23-358e" name="Land Raider" hidden="false"/>
<categoryEntry id="4641-ddc0-e56b-44e3" name="Grey Knights Thunderhawk Gunship" hidden="false"/>
<categoryEntry id="ed3a-5a1a-9b60-ab37" name="Grey Knights Vortimer Pattern Land Raider Redeemer" hidden="false"/>
<categoryEntry id="14bb-2de9-464a-22b5" name="Stormtalon Gunship" hidden="false"/>
<categoryEntry id="d072-1a10-52c7-15c9" name="Stormhawk Interceptor" hidden="false"/>
<categoryEntry id="b9bb-cadc-5dad-170b" name="Brotherhood Chaplain" hidden="false"/>
<categoryEntry id="92b9-9c2f-f83a-d6e8" name="Castellan Crowe" hidden="false"/>
<categoryEntry id="dcb2-8f51-3849-e06d" name="Stern" hidden="false"/>
<categoryEntry id="2a13-c803-fbe2-96e0" name="Brotherhood Techmarine" hidden="false"/>
<categoryEntry id="f486-7ad1-1d08-195f" name="Brotherhood Terminator Squad" hidden="false"/>
<categoryEntry id="e126-9580-f366-7bae" name="Brotherhood Apothecary" hidden="false"/>
<categoryEntry id="599b-fb10-960a-a29f" name="Paladin Squad" hidden="false"/>
<categoryEntry id="7a99-89d3-27de-98f9" name="Purifier Squad" hidden="false"/>
<categoryEntry id="d05b-e3e3-0b58-424a" name="Purgation Squad" hidden="false"/>
<categoryEntry id="651b-4132-1395-d3a9" name="Rhino" hidden="false"/>
<categoryEntry id="fb14-eb8f-867b-3ac9" name="Priest" publicationId="5c2d-db9f-58ca-e7b2" page="67" hidden="false"/>
<categoryEntry id="392f-c3be-9f7a-c861" name="Legends" hidden="false"/>
<categoryEntry id="bb46-a10a-ef92-c764" name="Faction: Sanctic Astartes" hidden="false"/>
<categoryEntry id="e374-dae1-2185-9562" name="Teleporter" hidden="false"/>
<categoryEntry id="4a9f-dcb0-00e7-1fcc" name="<Brotherhood>" hidden="false"/>
<categoryEntry id="bb42-0f99-3913-936c" name="Brotherhood: Wardmakers" hidden="false"/>
<categoryEntry id="737b-9264-8fdf-1156" name="Smokescreen" hidden="false"/>
<categoryEntry id="e08a-4705-eaae-e4c2" name="Psyk-out Grenades" hidden="false"/>
<categoryEntry id="9ce0-0fd3-af22-505a" name="Paladin Ancient" hidden="false"/>
<categoryEntry id="736c-5b2d-201e-6df9" name="Honoured Knight" hidden="false"/>
<categoryEntry id="b448-7c07-dcf2-60db" name="Purifier" hidden="false"/>
<categoryEntry id="dc07-cdfa-1d32-bb8a" name="Blades of Victory Grand Master" hidden="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="fcce-6de2-61d4-0154" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="dc07-cdfa-1d32-bb8b" name="Blades of Victory Brother-Captain" hidden="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="37ba-1c97-9080-d5aa" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="dc07-cdfa-1d32-bb81" name="Exactor Grand Master" hidden="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="43e1-6836-ce96-d986" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="dc07-cdfa-1d32-bb82" name="Exactor Brother-Captain" hidden="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="e7f0-bc5e-538a-80cc" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="dc07-cdfa-1d32-bb83" name="Precient Brethern Grand Master" hidden="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="253c-e273-ea1b-1966" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="dc07-cdfa-1d32-bb84" name="Precient Brethern Brother-Captain" hidden="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="7a24-fbe4-6f80-afc7" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="dc07-cdfa-1d32-bb85" name="Preservers Grand Master" hidden="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="b8a3-1c4c-f514-b5c3" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="dc07-cdfa-1d32-bb86" name="Preservers Brother-Captain" hidden="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="b222-d162-5fe2-6964" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="dc07-cdfa-1d32-bb87" name="Rapiers Grand Master" hidden="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="f63d-de15-90b0-ad3c" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="dc07-cdfa-1d32-bb88" name="Rapiers Brother-Captain" hidden="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="86a1-c809-1805-13af" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="dc07-cdfa-1d32-bb89" name="Silverblades Grand Master" hidden="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="1e83-6980-33e9-5c29" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="dc07-cdfa-1d32-bb80" name="Silverblades Brother-Captain" hidden="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="db69-7868-bbf4-ee14" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="dc07-cdfa-1d32-bb8z" name="Swordbearers Grand Master" hidden="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="5e26-dd84-035e-4e25" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="dc07-cdfa-1d32-bb8y" name="Swordbearers Brother-Captain" hidden="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="bd1a-c1ab-631a-b61a" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="7bb9-e306-4cce-f09w" name="Wardmakers Grand Master" hidden="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="2671-5324-0a0b-c20f" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="7bb9-e306-4cce-f09u" name="Wardmakers Brother-Captain" hidden="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="325d-3111-4b43-c031" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="6d43-b348-0035-8106" name="No Brotherhood Grand Master" hidden="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="570d-0750-662e-3fe8" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="dc07-cdfa-1d32-bb8c" name="No Brotherhood Brother-Captain" hidden="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="a951-7f8c-dce6-e59e" type="max"/>
</constraints>
</categoryEntry>
<categoryEntry id="0988-208f-0cd1-3ce2" name="Brother-Captain Stern" hidden="false"/>
</categoryEntries>
<selectionEntries>
<selectionEntry id="6f2a-590a-c7ae-1f89" name="Detachment Bonuses" 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="c90f-03c0-d184-acdc" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="91b8-6330-7453-3c25" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="d88f-7c5a-45b7-7c97" name="Show Bonuses" 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="870c-668d-fae3-fb16" type="max"/>
</constraints>
<rules>
<rule id="f389-393b-1f38-8ad5" name="The Aegis" hidden="false">
<description>- Each time a model in this unit would lose a wound as a result of a mortal wound, roll one D6; on a 5+ that wound is not lost
- If this unit is a Psyker, add 1 to Deny the Witch test taken for this unit</description>
</rule>
</rules>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="38f4-615d-f35e-da9c" name="Pre Game Enforcement" hidden="false" collective="false" import="true" type="upgrade">
<categoryLinks>
<categoryLink id="0494-bae4-73d8-1235" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</categoryLinks>
<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="0244-9f38-1f40-4689" name="Strike Squad" hidden="false" collective="false" import="true" targetId="e012-a289-720d-a36c" type="selectionEntry"/>
<entryLink id="6cb7-4e4d-9811-a18f" name="Brother-Captain" hidden="false" collective="false" import="true" targetId="f4b7-6f8e-448d-9c3b" type="selectionEntry"/>
<entryLink id="e7b9-75a0-5700-eb0e" name="Lord Kaldor Draigo" hidden="false" collective="false" import="true" targetId="630a-1d50-0a37-a639" type="selectionEntry"/>
<entryLink id="db00-b971-96ba-1ba7" name="Brother-Captain Stern" hidden="false" collective="false" import="true" targetId="c701-7188-c97c-cce6" type="selectionEntry"/>
<entryLink id="e653-39ff-b13a-74b5" name="New EntryLink" hidden="false" collective="false" import="true" targetId="1cb4-ee5e-e756-5299" type="selectionEntry"/>
<entryLink id="cd08-22f1-42d1-b0e2" name="New EntryLink" hidden="false" collective="false" import="true" targetId="c122-d85d-f519-81ae" type="selectionEntry"/>
<entryLink id="c1a2-ba3e-b4dc-d16f" name="Grand Master" hidden="false" collective="false" import="true" targetId="ae77-bbb6-8a07-c24b" type="selectionEntry"/>
<entryLink id="92eb-aba6-a177-dad3" name="New EntryLink" hidden="false" collective="false" import="true" targetId="30b4-cee3-1edf-7ee5" type="selectionEntry"/>
<entryLink id="97e1-b5b9-a016-70a9" name="Interceptor Squad" hidden="false" collective="false" import="true" targetId="d8c1-ae2a-0ca5-88df" type="selectionEntry"/>
<entryLink id="135d-5b8f-17dd-d344" name="New EntryLink" hidden="false" collective="false" import="true" targetId="b7af-7b03-7dfa-e4b5" type="selectionEntry"/>
<entryLink id="ea50-9c74-d6e2-d797" name="New EntryLink" hidden="false" collective="false" import="true" targetId="5254-e74b-2380-e119" type="selectionEntry"/>
<entryLink id="b4da-1c17-3d75-4dc9" name="Paladin Ancient" hidden="false" collective="false" import="true" targetId="9790-e0f9-5343-81bc" type="selectionEntry"/>
<entryLink id="05bc-4c32-0e62-f81e" name="Paladin Squad" hidden="false" collective="false" import="true" targetId="feb0-e13f-7b59-7e07" type="selectionEntry"/>
<entryLink id="4d61-f94b-94f1-936d" name="Brotherhood Apothecary" hidden="false" collective="false" import="true" targetId="6ad2-bcea-a5bd-6da8" type="selectionEntry"/>
<entryLink id="4f7a-efc4-0181-c9f4" name="New EntryLink" hidden="false" collective="false" import="true" targetId="45ea-60a2-7f7e-06c7" type="selectionEntry"/>
<entryLink id="5e19-e5b2-201f-b30d" name="New EntryLink" hidden="false" collective="false" import="true" targetId="0db5-e1aa-6692-1f98" type="selectionEntry"/>
<entryLink id="79fb-ade6-e3c1-eebb" name="Nemesis Dreadknight" hidden="false" collective="false" import="true" targetId="7c6d-f81e-621d-f141" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="a207-a133-6adb-25f3" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="89e2-a82c-83da-7cf6" name="Land Raider" hidden="false" collective="false" import="true" targetId="5a45-57d9-82b8-a715" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="a207-a133-6adb-25f3" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="c6b3-9338-e684-42b2" name="Land Raider Crusader" hidden="false" collective="false" import="true" targetId="42dd-aa19-1dd5-80b8" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="a207-a133-6adb-25f3" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="c74d-cb4a-7fb2-0456" name="Land Raider Redeemer" hidden="false" collective="false" import="true" targetId="312c-43a3-f95a-3ec9" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="a207-a133-6adb-25f3" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="a5ad-37ea-e594-ef20" name="Stormraven Gunship" hidden="false" collective="false" import="true" targetId="9db6-778a-09ce-4084" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="a207-a133-6adb-25f3" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="2202-e3f3-c019-6240" name="Dreadnought" hidden="false" collective="false" import="true" targetId="38ba-4407-1cdf-bd8b" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="a207-a133-6adb-25f3" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="46e1-6156-4979-ff52" name="Venerable Dreadnought" hidden="false" collective="false" import="true" targetId="4623-e156-ac81-26cd" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="a207-a133-6adb-25f3" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="1350-c4c8-e22c-b9fa" name="Techmarine" hidden="false" collective="false" import="true" targetId="e15c-3096-8468-aa26" type="selectionEntry"/>
<entryLink id="5431-bb0a-200c-05f9" name="Servitors" hidden="false" collective="false" import="true" targetId="ab50-d8e5-a340-28fa" type="selectionEntry">
<categoryLinks>
<categoryLink id="ff47-404a-b9fc-7a9d" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6659-db85-50fa-2f32" name="Librarian" hidden="false" collective="false" import="true" targetId="1345-340b-cee3-c05e" type="selectionEntry"/>
<entryLink id="1dd7-deca-146d-81f9" name="Razorback" hidden="false" collective="false" import="true" targetId="ba4b-b779-f04d-63fd" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="a207-a133-6adb-25f3" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="f744-c1c1-1ec1-c9db" name="Rhino" hidden="false" collective="false" import="true" targetId="3489-1d03-b75e-5218" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="a207-a133-6adb-25f3" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="725a-9d5c-dfd2-e5e6" name="Grey Knights Thunderhawk Gunship" hidden="false" collective="false" import="true" targetId="ad4f-aef9-b95b-10f3" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="a207-a133-6adb-25f3" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="54b9-0e46-2eaa-5820" name="Stormhawk Interceptor" hidden="false" collective="false" import="true" targetId="dada-96a4-e83b-257f" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="a207-a133-6adb-25f3" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="210b-0941-6039-3965" name="Stormtalon Gunship" hidden="false" collective="false" import="true" targetId="546a-1474-e2e0-989a" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="a207-a133-6adb-25f3" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="ef78-5ea8-6010-5d2c" name="Grand Master in Nemesis Dreadknight" hidden="false" collective="false" import="true" targetId="0abf-b3fb-43c9-08d2" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="a207-a133-6adb-25f3" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="f1b9-7c3b-b86d-8d26" name="Chaplain" hidden="false" collective="false" import="true" targetId="b6ec-8c15-3e7d-bb6a" type="selectionEntry"/>
<entryLink id="784f-bfc9-b09f-c671" name="Land Raider Variant (Open Play)" hidden="false" collective="false" import="true" targetId="5ea6-c789-f6b9-5c00" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cfc5-43e4-b02e-d1f9" type="lessThan"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="a207-a133-6adb-25f3" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="bceb-2fd8-bd33-6304" name="Stratagem: Shadow Assignment" hidden="false" collective="false" import="true" targetId="0b7d-bfe1-b63e-ecb6" type="selectionEntry"/>
<entryLink id="b82e-6fae-2b20-9a82" name="Hide Legends Options" hidden="false" collective="false" import="true" targetId="d2c5-d7cc-f564-ac1f" type="selectionEntry"/>
<entryLink id="d575-2ebf-ba53-99b3" name="Land Raider Banisher" hidden="false" collective="false" import="true" targetId="015d-e419-1dd0-0319" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="a207-a133-6adb-25f3" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="20c5-1511-2b2a-ffea" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="833a-7d38-836c-f157" name="Brotherhood" hidden="false" collective="false" import="true" targetId="b3b9-70f1-126f-4bcc" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3499-a20c-3dd2-1026" type="min"/>
</constraints>
<categoryLinks>
<categoryLink id="f4c8-ab8f-18ad-2255" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b61f-6fe9-821c-e34a" name="Servitors" hidden="false" collective="false" import="true" targetId="ab50-d8e5-a340-28fa" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="2a13-c803-fbe2-96e0" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="f0e3-e7a5-0a8f-6931" value="1.0">
<repeats>
<repeat field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="2a13-c803-fbe2-96e0" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="f0e3-e7a5-0a8f-6931" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="5ef3-8f10-0e35-22b7" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="2cb3-7c1c-7f94-a060" name="Stratagem: Warlord Trait" hidden="false" collective="false" import="true" targetId="6771-6ab3-1672-6a39" type="selectionEntry">
<categoryLinks>
<categoryLink id="7db1-ea2f-9403-646d" name="New CategoryLink" hidden="false" targetId="c845-c72c-6afe-3fc2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="4afe-214f-0a9b-f3fc" name="Stratagem: Heroic Support" hidden="false" collective="false" import="true" targetId="cbd4-34fb-6ba6-9593" type="selectionEntry">
<categoryLinks>
<categoryLink id="e120-54bf-c6f1-575f" name="New CategoryLink" hidden="false" targetId="c845-c72c-6afe-3fc2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="81f3-d1b4-9623-25d8" name="Hide Imperial Agents" hidden="false" collective="false" import="true" targetId="b734-1c2c-054d-4867" type="selectionEntry">
<categoryLinks>
<categoryLink id="a019-a63f-3feb-1118" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
<sharedSelectionEntries>
<selectionEntry id="b6c2-018d-fcba-6b95" name="The Black Blade of Antwyr" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="b575-68d9-f438-b29b" name="The Black Blade of Antwyr" 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">+1</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each time an attack is made with this weapon, an unmodified wound roll of 6 inflicts D3 mortal wounds on the target in addition to any normal damage</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c97e-2928-fc16-ddc3" name="Dreadfist" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="70dc-ea63-61e4-f38a" name="Dreadfist" 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">-3</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="6320-0ff7-489d-a576" name="Malleus Argyrum" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="170f-5bef-2b47-5092" name="Malleus Argyrum" 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">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410"/>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b2c2-86a8-13e9-6290" name="Nemesis Daemon Greathammer" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="5d52-b575-7dc4-ff8b" name="Nemesis Daemon Greathammer" 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">D3+3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each time an attack is made with this weapon, subtract 1 from that attack's hit roll</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="10.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9beb-5ba2-8317-4b82" name="Nemesis Falchion" hidden="false" collective="true" import="true" type="upgrade">
<infoLinks>
<infoLink id="3b45-5376-733a-9050" name="Nemesis Falchion" hidden="false" targetId="8dda-c08b-39ae-a8f3" type="profile"/>
</infoLinks>
<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="bbe1-df34-13d0-7ed1" name="Nemesis Force Halberd" hidden="false" collective="true" import="true" type="upgrade">
<infoLinks>
<infoLink id="2595-3113-0720-3a70" name="New InfoLink" hidden="false" targetId="b638-a7b3-9eab-00bd" type="profile"/>
</infoLinks>
<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="9b71-6e0f-e71f-eacc" name="Nemesis Force Sword" hidden="false" collective="true" import="true" type="upgrade">
<infoLinks>
<infoLink id="0e2a-2983-22bf-6e39" name="Nemesis Force Sword" hidden="false" targetId="ad6d-a483-9837-233a" type="profile"/>
</infoLinks>
<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="58fb-9127-cea0-b46a" name="Nemesis Greatsword" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="0bbc-f430-3018-6f40" name="Mighty Strike" 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">+4</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D6</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410"/>
</characteristics>
</profile>
<profile id="7b0d-bd93-58c8-f6af" name="Sweeping Blow" 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">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Make 2 hit rolls for each attack made with this profile, instead of 1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="15.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9dc6-e559-0099-005a" name="Nemesis Warding Stave" hidden="false" collective="true" import="true" type="upgrade">
<infoLinks>
<infoLink id="1c6e-a442-5010-aaaa" name="Nemesis Warding Stave" hidden="false" targetId="a04b-a0df-30b1-9339" type="profile"/>
</infoLinks>
<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="f442-9be2-7fd2-2a94" name="The Titansword" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="c448-314d-0175-5d77" name="The Titansword" 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">+4</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"/>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="76fd-e479-a97b-469e" name="Gatling Psilencer" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="152c-e891-1fa5-8443" name="Gatling Psilencer" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">24"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 12</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">5</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-1</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410"/>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="20.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4699-2140-a461-203b" name="Heavy Incinerator" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="4d87-357e-a3f3-75ef" name="Heavy Incinerator" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">12"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 2D6</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">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">This weapon automatically hits its targets.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="15.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a939-ef50-ff7f-636d" name="Heavy Psycannon" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="1fbd-a97f-0771-069b" name="Heavy Psycannon" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">24"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">8</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"/>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="20.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6650-9429-ac09-255d" name="Incinerator" hidden="false" collective="true" import="true" type="upgrade">
<infoLinks>
<infoLink id="954f-a451-c28a-f5da" name="Incinerator" hidden="false" targetId="16b6-e15c-6301-dfee" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="5.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="94c1-7cb5-a934-687a" name="Psilencer" hidden="false" collective="true" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="11be-2bc6-677b-97a9" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4f6d-7e5b-d7b6-4ea5" type="max"/>
</constraints>
<infoLinks>
<infoLink id="d621-acd4-5387-cd9c" name="New InfoLink" hidden="false" targetId="f7d8-8d94-0a86-534b" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="5.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c047-6362-b1bb-1ffd" name="Psycannon" hidden="false" collective="true" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8e4c-dddd-19dd-b7b5" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fd2d-33f1-061a-a6e5" type="max"/>
</constraints>
<infoLinks>
<infoLink id="d050-b028-8a5a-5402" name="New InfoLink" hidden="false" targetId="a63a-ec88-3dc0-f3cd" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="10.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e012-a289-720d-a36c" name="Strike Squad" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="e356-c769-5920-6e14" value="6.0">
<conditions>
<condition field="selections" scope="e012-a289-720d-a36c" value="4.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="9939-4098-d186-7d33" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="f5b0-77e7-a206-5a81" name="Teleport Strike" hidden="false" targetId="a29c-ad1e-441b-2167" type="rule"/>
<infoLink id="181a-c718-dfd7-7b6a" name="Combat Squads" hidden="false" targetId="c046-073b-7a50-c436" type="rule"/>
<infoLink id="8b4a-a4c6-0a07-8e2a" name="Psyker" hidden="false" targetId="100e-a5f5-4af4-8c40" type="profile"/>
<infoLink id="2c54-c0bf-6bf7-b820" name="Smite" hidden="false" targetId="84d6-49a4-a9ff-162b" type="profile"/>
<infoLink id="bd98-cc12-361d-aa19" name="Knights of Titan" hidden="false" targetId="a26c-3bc4-cd1f-10bf" type="rule"/>
<infoLink id="8fb3-d428-cdd4-c8d6" name="Hammerhand" hidden="false" targetId="ded7-680d-4084-5679" type="profile"/>
<infoLink id="19b4-079e-5835-7178" name="Objective Secured" hidden="false" targetId="e07e-8dbf-0b15-7485" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5d5b-974f-55d0-7536" name="New CategoryLink" hidden="false" targetId="31b6-b037-4c7a-f850" primary="false"/>
<categoryLink id="ea4a-dca4-00c7-e7e2" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="67e4-0fb7-09f1-ae31" name="New CategoryLink" hidden="false" targetId="e691-aad7-d21c-1023" primary="false"/>
<categoryLink id="8a86-b659-ce19-bb2e" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
<categoryLink id="474b-fa13-9d5c-791c" name="New CategoryLink" hidden="false" targetId="ed14-046b-12ea-4e1d" primary="false"/>
<categoryLink id="8d44-e359-ca28-cbbd" name="Faction: Imperium" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="c981-0085-0aca-5f20" name="<Brotherhood>" hidden="false" targetId="4a9f-dcb0-00e7-1fcc" primary="false"/>
<categoryLink id="848f-ac1e-bab0-0f3a" name="Faction: Sanctic Astartes" hidden="false" targetId="bb46-a10a-ef92-c764" primary="false"/>
<categoryLink id="2688-9e1e-a269-e406" name="Core" hidden="false" targetId="08f1-d244-eb44-7e01" primary="false"/>
<categoryLink id="8213-f932-ab98-3f05" name="Psyk-out Grenades" hidden="false" targetId="e08a-4705-eaae-e4c2" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="9939-4098-d186-7d33" name="Grey Knights" hidden="false" collective="false" import="true" defaultSelectionEntryId="9253-70bc-b620-f22f">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dac9-ab51-5e89-c3a9" type="min"/>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9638-8040-606e-e169" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="1123-be87-fca2-f102" name="Grey Knight (Daemon Hammer)" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fce2-981c-aeff-ca82" type="max"/>
</constraints>
<infoLinks>
<infoLink id="6ec6-2485-3f16-57df" name="Grey Knight" hidden="false" targetId="1037-1f6f-bee5-b1ea" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="19eb-8686-c09b-7d18" name="Storm Bolter" hidden="false" collective="false" import="true" targetId="fded-edb8-1d1e-99a5" type="selectionEntry"/>
<entryLink id="beb2-6803-3166-085f" name="Nemesis Daemon Hammer" hidden="false" collective="false" import="true" targetId="8fba-9c8d-73bd-fe8e" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="030a-2d90-bd64-8b59" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9750-9cfe-34c1-3aea" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b220-54cb-ba4a-7043" name="Grey Knight (Falchions)" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9cfc-6fdb-6325-7bc2" type="max"/>
</constraints>
<infoLinks>
<infoLink id="47c3-d153-5f99-ae12" name="New InfoLink" hidden="false" targetId="1037-1f6f-bee5-b1ea" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="690b-3cc7-b7c2-e7f3" name="New EntryLink" hidden="false" collective="false" import="true" targetId="fded-edb8-1d1e-99a5" type="selectionEntry"/>
<entryLink id="d2be-46c9-ea53-15f5" name="Nemesis Falchion" hidden="false" collective="false" import="true" targetId="9beb-5ba2-8317-4b82" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4325-d660-7e0e-854a" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ebd3-228e-3667-16bf" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6bcd-f4c5-d359-9671" name="Grey Knight (Halberd)" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="11d9-88a9-91fd-89f3" type="max"/>
</constraints>
<infoLinks>
<infoLink id="1b0d-2c65-9cb0-21d4" name="New InfoLink" hidden="false" targetId="1037-1f6f-bee5-b1ea" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="bf65-05ae-807e-5b52" name="New EntryLink" hidden="false" collective="false" import="true" targetId="fded-edb8-1d1e-99a5" type="selectionEntry"/>
<entryLink id="0888-83c3-a90b-ae84" name="New EntryLink" hidden="false" collective="false" import="true" targetId="bbe1-df34-13d0-7ed1" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f6b9-0be9-ff2e-19ad" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d716-b58d-fd49-8603" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9253-70bc-b620-f22f" name="Grey Knight (Sword)" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0494-890e-a2da-a881" type="max"/>
</constraints>
<infoLinks>
<infoLink id="83ae-30d3-cb23-4dea" name="New InfoLink" hidden="false" targetId="1037-1f6f-bee5-b1ea" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="d266-29e7-1cd3-506e" name="New EntryLink" hidden="false" collective="false" import="true" targetId="fded-edb8-1d1e-99a5" type="selectionEntry"/>
<entryLink id="46a5-729c-5cdb-eec9" name="Nemesis Force Sword" hidden="false" collective="false" import="true" targetId="9b71-6e0f-e71f-eacc" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9d11-e011-e04b-c55b" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="df64-25d6-1b58-fa00" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1271-d9a1-50d2-6af3" name="Grey Knight (Warding Stave)" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="58eb-f81e-e28b-b013" type="max"/>
</constraints>
<infoLinks>
<infoLink id="0375-e644-a83e-0ad2" name="New InfoLink" hidden="false" targetId="1037-1f6f-bee5-b1ea" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="5755-f360-74b4-11b8" name="New EntryLink" hidden="false" collective="false" import="true" targetId="fded-edb8-1d1e-99a5" type="selectionEntry"/>
<entryLink id="e191-5aef-49dc-295e" name="New EntryLink" hidden="false" collective="false" import="true" targetId="9dc6-e559-0099-005a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2244-3d0f-9e77-1ad7" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="35b5-7195-0d95-8d60" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="4449-0bb7-3409-60c8" name="Special Weapons" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="increment" field="df0e-0c95-bf8c-492a" value="1.0">
<conditions>
<condition field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="9939-4098-d186-7d33" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="df0e-0c95-bf8c-492a" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="17ee-24e8-af43-f4ef" name="Grey Knight (Incinerator)" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9813-7fbb-9bea-e300" type="max"/>
</constraints>
<infoLinks>
<infoLink id="0b54-380a-91b7-4c1c" name="New InfoLink" hidden="false" targetId="1037-1f6f-bee5-b1ea" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="96bd-8e9c-5d41-b61e" name="Incinerator" hidden="false" collective="false" import="true" targetId="6650-9429-ac09-255d" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="0.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a5b4-2545-7b23-3536" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="433f-d35c-629f-8f5a" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a459-a0b7-91c4-2e99" name="Grey Knight (Psycannon)" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fda8-3d40-425e-f3ae" type="max"/>
</constraints>
<infoLinks>
<infoLink id="4637-eee6-d32b-19b5" name="New InfoLink" hidden="false" targetId="1037-1f6f-bee5-b1ea" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="282c-728a-6183-2ebd" name="Psycannon" hidden="false" collective="false" import="true" targetId="c047-6362-b1bb-1ffd" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="0.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a703-4ab6-edc2-92cb" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cbe8-b7fc-e3ff-6b2b" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="66ab-7ff3-f2ce-9430" name="Grey Knight (Psilencer)" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4987-7065-1188-1a9f" type="max"/>
</constraints>
<infoLinks>
<infoLink id="2599-b0a6-81e7-b2e8" name="New InfoLink" hidden="false" targetId="1037-1f6f-bee5-b1ea" type="profile"/>
</infoLinks>
<entryLinks>
<entryLink id="0584-76b5-4144-352b" name="Psilencer" hidden="false" collective="false" import="true" targetId="94c1-7cb5-a934-687a" type="selectionEntry">
<modifiers>
<modifier type="set" field="points" value="0.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5356-3f32-c860-5220" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e619-812a-26de-85f9" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="20.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="6bed-fae1-6fb0-5dbc" name="Grey Knight Justicar" hidden="false" collective="false" import="true" targetId="767b-e555-311f-cdbe" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="403a-512a-3225-44ed" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3e03-77ff-3b4d-b0b4" type="min"/>
</constraints>
</entryLink>
<entryLink id="6f18-42b7-9b30-140e" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="cddf-945e-1335-e681" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f4d7-7d56-5de1-a796" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1e3b-5f04-18e9-d0f4" type="max"/>
</constraints>
</entryLink>
<entryLink id="05da-7b0a-b566-483b" name="Brotherhood Psyker Power" hidden="false" collective="false" import="true" targetId="d6ae-fe14-202c-6351" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="6.0"/>
<cost name="pts" typeId="points" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="767b-e555-311f-cdbe" name="Grey Knight Justicar" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="9d07-0d02-74cf-b462" name="Grey Knight Justicar" 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">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">2</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink id="fb52-5a60-2169-0454" name="Grey Knight Melee Weapons" hidden="false" collective="false" import="true" targetId="2619-cbc9-7327-dc75" type="selectionEntryGroup"/>
<entryLink id="da8e-18b3-b989-2026" name="Storm Bolter" hidden="false" collective="false" import="true" targetId="fded-edb8-1d1e-99a5" type="selectionEntry"/>
<entryLink id="dbdf-6ae0-4772-2bb9" name="Endowment in Extremis" hidden="false" collective="false" import="true" targetId="506e-52fd-0e8c-9276" type="selectionEntry"/>
<entryLink id="ae7b-ee6a-eb64-c1e4" name="Endowment in Extremis" hidden="false" collective="false" import="true" targetId="cf42-d211-9712-83c1" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="20.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f4b7-6f8e-448d-9c3b" name="Brother-Captain" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="6cf3-e6f1-4e1f-8ff5" name="Brother Captain" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">5"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">6</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">2+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="8121-0606-ef1f-48a6" name="Teleport Strike" hidden="false" targetId="a29c-ad1e-441b-2167" type="rule"/>
<infoLink id="9e94-85fa-d140-7733" name="Psyker" hidden="false" targetId="100e-a5f5-4af4-8c40" type="profile"/>
<infoLink id="6127-962c-21f8-7ebb" name="Knights of Titan" hidden="false" targetId="a26c-3bc4-cd1f-10bf" type="rule"/>
<infoLink id="86a5-52b6-0a4a-e3c7" name="Tactical Precision (Aura)" hidden="false" targetId="9cc9-13ac-646b-713e" type="profile"/>
<infoLink id="ebeb-4871-eaf7-af57" name="Smite" hidden="false" targetId="84d6-49a4-a9ff-162b" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="83c5-d3a7-b4a1-8436" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="fe67-6682-1620-efe8" name="New CategoryLink" hidden="false" targetId="31b6-b037-4c7a-f850" primary="false"/>
<categoryLink id="31db-41cd-6eee-725a" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="cc38-e292-1b54-d321" name="New CategoryLink" hidden="false" targetId="15f0-19f4-d5b2-9102" primary="false"/>
<categoryLink id="bb37-9d1f-c6d6-aa9d" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="92a1-05eb-b087-56d2" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="39a1-84b9-f313-1504" name="New CategoryLink" hidden="false" targetId="e691-aad7-d21c-1023" primary="false"/>
<categoryLink id="d450-3887-a797-6ac7" name="New CategoryLink" hidden="false" targetId="2821-762a-49dc-5a17" primary="false"/>
<categoryLink id="61fd-154d-12b5-801d" name="<Brotherhood>" hidden="false" targetId="4a9f-dcb0-00e7-1fcc" primary="false"/>
<categoryLink id="bcc3-47cd-4b29-8fff" name="Psyk-out Grenades" hidden="false" targetId="e08a-4705-eaae-e4c2" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="a7bd-111b-edbd-4e2d" name="Brother-Captain" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="add" field="category" value="dc07-cdfa-1d32-bb8b">