forked from BSData/wh40k-9e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Imperium - Adeptus Custodes.cat
6466 lines (6463 loc) · 475 KB
/
Imperium - Adeptus Custodes.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="0fb8-6813-9c29-a03d" name="Imperium - Adeptus Custodes" revision="58" battleScribeVersion="2.03" authorName="BSData Developers" authorContact="@WindstormSCR" authorUrl="https://discord.gg/KqPVhds" library="false" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="154" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="0fb8-6813-pubN67796" name="Supplement: Angels of Death"/>
<publication id="1a42-cfd6-c4b4-946a" name="Valerian and Aleya Box"/>
</publications>
<categoryEntries>
<categoryEntry id="c8f7-6d2e-f4b8-f7a5" name="Faction: Adeptus Custodes" hidden="false"/>
<categoryEntry id="b998-ce37-a0e6-4651" name="Custodian Guard" hidden="false"/>
<categoryEntry id="8b55-b8d3-dce6-18ee" name="Venerable Contemptor Dreadnought" hidden="false"/>
<categoryEntry id="86bf-9329-2e03-1ca4" name="Venerable Land Raider" hidden="false"/>
<categoryEntry id="648b-745c-9da9-eda3" name="Terminator" hidden="false"/>
<categoryEntry id="67bb-d4b9-db8d-480a" name="Faction: Shadowkeepers" hidden="false"/>
<categoryEntry id="d402-5ec4-3c93-bcab" name="Faction: Aquilan Shield" hidden="false"/>
<categoryEntry id="313e-c2b1-b2c6-baf4" name="Faction: Dread Host" hidden="false"/>
<categoryEntry id="f27b-7849-afb0-ee88" name="Faction: Solar Watch" hidden="false"/>
<categoryEntry id="cece-a5e1-5225-7caf" name="Faction: Emissaries Imperatus" hidden="false"/>
<categoryEntry id="de42-8706-16b0-c512" name="Aquilan Shield Warlord" hidden="false"/>
<categoryEntry id="8ee2-f166-8687-d1c2" name="Dread Host Warlord" hidden="false"/>
<categoryEntry id="4acc-6572-4a27-1de9" name="Emissaries Imperatus Warlord" hidden="false"/>
<categoryEntry id="7522-5a35-c746-0cb3" name="Shadowkeepers Warlord" hidden="false"/>
<categoryEntry id="a663-dc61-5a65-ac59" name="Solar Watch Warlord" hidden="false"/>
<categoryEntry id="1667-9ba1-0f53-51b0" name="Shield-Captain" hidden="false"/>
<categoryEntry id="4c4b-7284-2830-dfdc" name="Valerian" hidden="false"/>
<categoryEntry id="f928-9bc5-0172-1e32" name="Astra Telepathica" hidden="false"/>
<categoryEntry id="42a6-2470-dc10-b47a" name="Sisters of Silence" hidden="false"/>
<categoryEntry id="1910-d82b-f5fb-dbc8" name="Aleya" hidden="false"/>
<categoryEntry id="4cc4-c8cc-a7dc-66bb" name="Adeptus Custodes" hidden="false"/>
<categoryEntry id="b8cf-4801-186f-eb58" name="Captain-General Trajann Valoris" hidden="false"/>
<categoryEntry id="9524-2317-54db-f7b9" name="Custodian Wardens" hidden="false"/>
<categoryEntry id="3d23-30ab-7099-ce4d" name="Vexilus Praetor" hidden="false"/>
<categoryEntry id="9f25-8df3-8abc-335b" name="Allarus Custodians" hidden="false"/>
<categoryEntry id="7ef2-5be0-90f7-9ec2" name="Vertus Praetors" hidden="false"/>
</categoryEntries>
<selectionEntries>
<selectionEntry id="c5aa-0505-8895-1d7c" name="Shield Host" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c07f-d582-ff88-d976" type="min"/>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b30e-bb7b-ee32-03a8" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="b3d8-77e9-177b-e9c7" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="f6a2-574c-df64-9540" name="Shield Host" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ef0f-374c-b436-a5e0" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="07c5-beb5-199d-eba0" name="Aquilan Shield" hidden="false" collective="false" import="true" type="upgrade">
<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="b166-1b4a-01ce-3667" name="Shadowkeepers" hidden="false" collective="false" import="true" type="upgrade">
<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="2978-33b3-c6d8-1bb6" name="Dread Host" hidden="false" collective="false" import="true" type="upgrade">
<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="07ba-c869-402e-3324" name="Solar Watch" hidden="false" collective="false" import="true" type="upgrade">
<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="17d3-dd49-ecea-4c83" name="Emissaries Imperatus" hidden="false" collective="false" import="true" type="upgrade">
<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>
</selectionEntryGroup>
</selectionEntryGroups>
<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="b419-1c3f-0f83-6b62" name="Custodian Guard Squad" hidden="false" collective="false" import="true" targetId="ca9b-e195-defb-380a" type="selectionEntry">
<categoryLinks>
<categoryLink id="496d-edad-c39f-a365" name="New CategoryLink" hidden="false" targetId="c8f7-6d2e-f4b8-f7a5" primary="false"/>
<categoryLink id="051d-3262-4dac-21bb" name="New CategoryLink" hidden="false" targetId="b998-ce37-a0e6-4651" primary="false"/>
<categoryLink id="2568-97e7-d906-af9b" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="0c49-a974-7320-7684" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="98a3-9d05-f75f-af1d" name="Venerable Contemptor Dreadnought" hidden="false" collective="false" import="true" targetId="1aa5-3857-2b14-0929" type="selectionEntry">
<categoryLinks>
<categoryLink id="0b0f-92d2-a13e-10a3" name="New CategoryLink" hidden="false" targetId="c8f7-6d2e-f4b8-f7a5" primary="false"/>
<categoryLink id="edc8-7315-2dd8-92a8" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
<categoryLink id="8f4d-d04a-c132-5bc4" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="f36c-cfa7-d3d0-ab80" name="New CategoryLink" hidden="false" targetId="8b55-b8d3-dce6-18ee" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="435f-da6e-d1fa-3a6e" name="New EntryLink" hidden="false" collective="false" import="true" targetId="c436-bb9c-81f4-3529" type="selectionEntry">
<categoryLinks>
<categoryLink id="8103-54de-734f-fafd" name="New CategoryLink" hidden="false" targetId="c8f7-6d2e-f4b8-f7a5" primary="false"/>
<categoryLink id="8862-5c0e-bb32-000b" name="New CategoryLink" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="true"/>
<categoryLink id="5772-e9cf-7e0a-e1a2" name="New CategoryLink" hidden="false" targetId="6cc4-1b62-8e8a-05cd" primary="false"/>
<categoryLink id="20a1-a17a-88b1-9157" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="05ab-1f56-8525-c16d" name="New CategoryLink" hidden="false" targetId="86bf-9329-2e03-1ca4" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="3389-4e1f-bad5-1aab" name="Captain-General Trajann Valoris" hidden="false" collective="false" import="true" targetId="174b-ddd4-9558-b13d" type="selectionEntry">
<categoryLinks>
<categoryLink id="b24f-3054-ca20-a236" name="New CategoryLink" hidden="false" targetId="c8f7-6d2e-f4b8-f7a5" primary="false"/>
<categoryLink id="1826-725d-4a33-d4b6" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="ed84-286f-0596-ea20" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="43e6-cecd-2743-61c6" name="Allarus Custodians" hidden="false" collective="false" import="true" targetId="69c3-de5c-53e4-9a4a" type="selectionEntry">
<categoryLinks>
<categoryLink id="4770-1e5f-7351-f5f6" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="b860-8515-5a4d-3508" name="Vertus Praetors" hidden="false" collective="false" import="true" targetId="3274-0635-aa46-9a9a" type="selectionEntry">
<categoryLinks>
<categoryLink id="3ff6-4662-43ed-35fb" name="New CategoryLink" hidden="false" targetId="1c6f-0311-3eba-3180" primary="false"/>
<categoryLink id="f598-cb9e-d3fb-1f60" name="New CategoryLink" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="true"/>
<categoryLink id="cda6-d50c-d2d8-f69b" name="New CategoryLink" hidden="false" targetId="3117-16d8-fcef-4f56" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="5c49-0350-9917-9f59" name="Vexillus Praetor" hidden="false" collective="false" import="true" targetId="bd21-a20e-fd11-2047" type="selectionEntry">
<categoryLinks>
<categoryLink id="0525-6e25-d65b-f207" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="234c-f70e-1cc1-c689" name="Vexillus Praetor in Allarus Terminator Armor" hidden="false" collective="false" import="true" targetId="94cf-8a27-b114-90b2" type="selectionEntry">
<categoryLinks>
<categoryLink id="306d-3cc6-52d0-cdbf" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="653b-781b-46bf-8aec" name="Custodian Wardens" hidden="false" collective="false" import="true" targetId="9a29-f1a1-17c5-5a07" type="selectionEntry">
<categoryLinks>
<categoryLink id="49a0-e15c-92d8-15f5" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a7e3-6031-d473-233b" name="Shield-Captain" hidden="false" collective="false" import="true" targetId="38c5-8a43-670e-0fbb" type="selectionEntry">
<categoryLinks>
<categoryLink id="2bd9-9771-c17c-4ad1" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ec8d-63c0-a92c-2d53" name="Shield Captain in Allarus Terminator Armor" hidden="false" collective="false" import="true" targetId="65f8-eb96-e1fe-56da" type="selectionEntry">
<categoryLinks>
<categoryLink id="6f4e-4f36-a84c-ee70" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="189c-a586-3567-752c" name="Shield-Captain on Dawneagle Jetbike" hidden="false" collective="false" import="true" targetId="34c0-b378-2eac-9f3c" type="selectionEntry">
<categoryLinks>
<categoryLink id="bc8f-5b36-506d-5b71" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="feaa-bcc0-f889-8507" name="Open the Vaults (1 Relic)" hidden="false" collective="false" import="true" targetId="45bc-e6e8-4f73-a721" type="selectionEntry"/>
<entryLink id="18b1-5229-9f16-ee8f" name="Relic Stratagem (2 Relics)" hidden="false" collective="false" import="true" targetId="fa7c-2773-8d2e-dc2e" type="selectionEntry"/>
<entryLink id="d994-2d3f-b707-e8c6" name="Contemptor-Achillus Dreadnought" hidden="false" collective="false" import="true" targetId="77a2-4262-dc7b-9b16" type="selectionEntry"/>
<entryLink id="0d63-6738-02da-d2be" name="Coronus Grav-Carrier (Beta)" hidden="false" collective="false" import="true" targetId="f2f2-0f88-8c06-4416" type="selectionEntry"/>
<entryLink id="8965-49f4-428a-135f" name="Caladius Grav-tank" hidden="false" collective="false" import="true" targetId="ea94-bcab-6dd0-784a" type="selectionEntry"/>
<entryLink id="2b51-9184-6c6c-2260" name="Telemon Heavy Dreadnought" hidden="false" collective="false" import="true" targetId="61ec-5001-5fc8-999d" type="selectionEntry"/>
<entryLink id="44e6-5b4a-b827-2bba" name="Contemptor-Galatus Dreadnought (Beta)" hidden="false" collective="false" import="true" targetId="385c-bee5-b0f3-0480" type="selectionEntry"/>
<entryLink id="d869-d7bc-2141-7de8" name="Aquilon Custodians (Beta)" hidden="false" collective="false" import="true" targetId="cde1-5825-931a-2c1f" type="selectionEntry"/>
<entryLink id="823e-7e6e-0ae4-01ca" name="Custodian Guard Squad with Adrasite and Pyrithite Spears (Beta)" hidden="false" collective="false" import="true" targetId="d84b-404e-ffac-ffae" type="selectionEntry"/>
<entryLink id="a1ca-f56a-242e-9218" name="Agamatus Custodians" hidden="false" collective="false" import="true" targetId="06f5-387e-836e-7a72" type="selectionEntry"/>
<entryLink id="7e77-9a3b-1b79-fc59" name="Venatari Custodians (Beta)" hidden="false" collective="false" import="true" targetId="a136-e61b-112f-edde" type="selectionEntry"/>
<entryLink id="8375-21e0-afa3-4591" name="Pallas Grav-Attack (Beta)" hidden="false" collective="false" import="true" targetId="5150-fbf3-7d35-07c4" type="selectionEntry"/>
<entryLink id="5089-d438-8752-a264" name="Sagittarum Custodians (Beta)" hidden="false" collective="false" import="true" targetId="8b4d-4d30-e044-0b7b" type="selectionEntry"/>
<entryLink id="dc5c-1420-3625-9151" name="Orion Assault Dropship" hidden="false" collective="false" import="true" targetId="653c-9e55-a52e-5206" type="selectionEntry"/>
<entryLink id="84b4-846d-6895-fd1e" name="Ares Gunship" hidden="false" collective="false" import="true" targetId="94ed-7b82-08f2-eea8" type="selectionEntry"/>
<entryLink id="bceb-2fd8-bd33-6304" name="Operative Requisition Sanctioned" hidden="false" collective="false" import="true" targetId="0b7d-bfe1-b63e-ecb6" type="selectionEntry"/>
<entryLink id="568c-d324-e8e6-786f" name="Ephrael Stern and Kyganil of the Bloody Tears" hidden="false" collective="false" import="true" targetId="7dca-e055-7a15-4bf3" type="selectionEntry">
<categoryLinks>
<categoryLink id="2343-018c-b7fa-ca76" name="New CategoryLink" hidden="false" targetId="ff36a6f3-19bf-4f48-8956-adacfd28fe74" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a41d-d163-42af-408c" name="Valerian and Aleya" hidden="false" collective="false" import="true" targetId="a6dd-d44f-bb81-92cd" type="selectionEntry">
<categoryLinks>
<categoryLink id="59a4-2a7b-3453-4fce" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="827f-1e74-9012-87dd" name="List Stratagems" hidden="false" collective="false" import="true" targetId="f6a0-f469-09f5-24dc" type="selectionEntry">
<categoryLinks>
<categoryLink id="0621-5e6d-93eb-6ac9" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
<infoLinks>
<infoLink id="0508-3a54-f9c7-3ddb" name="Aegis of the Emperor" hidden="false" targetId="da31-ec45-c4cc-0890" type="rule"/>
<infoLink id="45c8-026b-e8e2-4aea" name="The Emperor's Chosen" hidden="false" targetId="1e71-94f5-bafc-45ba" type="rule"/>
<infoLink id="da7c-ff08-0ccb-7536" name="Sworn Guardians" hidden="false" targetId="bc51-ddc3-2d7f-c131" type="rule"/>
</infoLinks>
<sharedSelectionEntries>
<selectionEntry id="ca9b-e195-defb-380a" name="Custodian Guard Squad" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="e356-c769-5920-6e14" value="5.0">
<conditions>
<condition field="selections" scope="ca9b-e195-defb-380a" value="3.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" childId="eb5b-56dd-f6d2-0ccc" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="increment" field="e356-c769-5920-6e14" value="5.0">
<conditions>
<condition field="selections" scope="ca9b-e195-defb-380a" value="8.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" childId="eb5b-56dd-f6d2-0ccc" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="increment" field="e356-c769-5920-6e14" value="8.0">
<conditions>
<condition field="selections" scope="ca9b-e195-defb-380a" value="5.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" childId="eb5b-56dd-f6d2-0ccc" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup>
<comment>Shield Host Keywords</comment>
<modifiers>
<modifier type="add" field="category" value="313e-c2b1-b2c6-baf4">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2978-33b3-c6d8-1bb6" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="d402-5ec4-3c93-bcab">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="07c5-beb5-199d-eba0" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="cece-a5e1-5225-7caf">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="17d3-dd49-ecea-4c83" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="67bb-d4b9-db8d-480a">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b166-1b4a-01ce-3667" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="f27b-7849-afb0-ee88">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="07ba-c869-402e-3324" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
<infoLinks>
<infoLink id="be81-e844-fa67-7526" name="Aegis of The Emperor" hidden="false" targetId="55b4-45f6-4fff-93d8" type="profile"/>
</infoLinks>
<selectionEntries>
<selectionEntry id="eb5b-56dd-f6d2-0ccc" name="Custodian" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="12b5-575c-2763-53f4" type="min"/>
<constraint field="selections" scope="parent" value="10.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="adc7-645e-3db6-b855" type="max"/>
</constraints>
<profiles>
<profile id="3c92-fecb-063f-8b66" name="Custodian" 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">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">5</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">5</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">3</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">3</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">2+</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry id="3de0-2887-d103-8c8a" name="Storm Shield" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="e0db-633d-22aa-66fa" value="1.0">
<conditions>
<condition field="selections" scope="eb5b-56dd-f6d2-0ccc" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="26ba-934c-cd45-d46f" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="e0db-633d-22aa-66fa" type="max"/>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="9ee7-3dc4-4622-b092" type="min"/>
</constraints>
<infoLinks>
<infoLink id="9d27-cbcc-b229-1db5" name="Storm shield" hidden="false" targetId="541d-ade9-7496-9c62" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="5.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="e2f4-0b49-83e2-ede1" name="Weapon" hidden="false" collective="false" import="true" defaultSelectionEntryId="dc66-3dfd-dcbf-3c2d">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="15aa-d987-71a9-0427" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="00a8-fe36-849e-c46f" type="min"/>
</constraints>
<entryLinks>
<entryLink id="dc66-3dfd-dcbf-3c2d" name="Guardian Spear" hidden="false" collective="false" import="true" targetId="e823-268c-0bed-4c0a" type="selectionEntry"/>
<entryLink id="26ba-934c-cd45-d46f" name="Sentinel Blade" hidden="false" collective="false" import="true" targetId="131b-ad6f-5a72-9664" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="dee6-3e16-1586-6068" name="Misericordia" hidden="false" collective="false" import="true" targetId="77ea-4be8-f3d1-1f4d" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="3ea7-7ec6-e1e6-ff01" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="44.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="8923-238e-35bd-de93" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="e810-894a-c30c-de5a" name="Battle Honors" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="8.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1aa5-3857-2b14-0929" name="Venerable Contemptor Dreadnought" hidden="false" collective="false" import="true" type="model">
<modifierGroups>
<modifierGroup>
<comment>Shield Host Keywords</comment>
<modifiers>
<modifier type="add" field="category" value="313e-c2b1-b2c6-baf4">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2978-33b3-c6d8-1bb6" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="d402-5ec4-3c93-bcab">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="07c5-beb5-199d-eba0" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="cece-a5e1-5225-7caf">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="17d3-dd49-ecea-4c83" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="67bb-d4b9-db8d-480a">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b166-1b4a-01ce-3667" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="f27b-7849-afb0-ee88">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="07ba-c869-402e-3324" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
<profiles>
<profile id="e1b0-8b0d-840b-1820" name="Venerable Contemptor Dreadnought" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<modifiers>
<modifier type="increment" field="13fc-b29b-31f2-ab9f" value="1">
<conditions>
<condition field="selections" scope="1aa5-3857-2b14-0929" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b12b-b2bc-36a4-0ada" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">*</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">*</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">*</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">7</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">7</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">10</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">2+</characteristic>
</characteristics>
</profile>
<profile id="ef32-0542-ae9c-5ef7" name="Venerable Contemptor Dreadnought Wound Track 3" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">1-2</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">4"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">4+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">4+</characteristic>
</characteristics>
</profile>
<profile id="91ff-d389-20b4-5189" name="Venerable Contemptor Dreadnought Wound Track 2" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">3-5</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">6"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">3+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">3+</characteristic>
</characteristics>
</profile>
<profile id="15b8-44f1-834c-f9cb" name="Venerable Contemptor Dreadnought Wound Track 1" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">6-10+</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">9"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">2+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">2+</characteristic>
</characteristics>
</profile>
<profile id="2de3-0a3a-d230-dd08" name="Unyielding Ancient" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Roll a D6 each time this model loses a wound; on a 6 the damage is ignored and the wound is not lost.</characteristic>
</characteristics>
</profile>
<profile id="bde4-8add-a2de-2983" name="Explodes" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If this model is reduced to 0 wounds, roll a D6 before removing it from the battlefield and before any embarked models disembark. On a 6 it explodes, and each unit within 6" suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="1c86-a157-0c9d-2c6e" name="Atomantic Shielding" 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.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="2190-d248-a134-e45e" name="New CategoryLink" hidden="false" targetId="8b55-b8d3-dce6-18ee" primary="false"/>
<categoryLink id="213e-634f-d6de-7ffc" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="2f51-23f7-2bdb-73d7" name="New CategoryLink" hidden="false" targetId="c8f7-6d2e-f4b8-f7a5" primary="false"/>
<categoryLink id="fef6-fee5-0a09-3bc9" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="b1cb-19ca-2881-28b2" name="Dreadnought Combat Weapon" 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="fea5-5c69-ad03-e671" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b10e-61c5-2008-9c2f" type="min"/>
</constraints>
<infoLinks>
<infoLink id="4d52-a0aa-bd8a-cd69" name="Dreadnought combat weapon" hidden="false" targetId="3b26-3098-155f-0e58" 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="5141-27f9-73a2-7cba" name="Combi-bolter" 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="ec18-02eb-f6bf-87d6" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cbc5-4aae-cffd-3467" type="min"/>
</constraints>
<infoLinks>
<infoLink id="b2fb-83f0-5a07-858f" name="New InfoLink" hidden="false" targetId="0655-6c08-6402-46bf" 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>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="4851-4da1-5562-9bc7" name="Right Arm" hidden="false" collective="false" import="true" defaultSelectionEntryId="7097-e9d7-0000-f829">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="5b5c-44ec-8b0b-eca1" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="e5fa-1aa1-d8c1-3680" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="cb7e-eb79-f96d-a0be" name="Kheres Pattern Assault Cannon" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="e55f-51d8-d674-8e39" name="Kheres Pattern Assault Cannon" publicationId="0fb8-6813-pubN67796" 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">7</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="pts" typeId="points" value="25.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="7097-e9d7-0000-f829" name="Multi-Melta" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="bf14-0393-83d9-161c" name="New InfoLink" hidden="false" targetId="1768-d7b9-37ba-f3bf" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="25.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>
<entryLinks>
<entryLink id="a4f8-0db7-12a3-a7da" name="Unit has battle honors?" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="d5d5-a550-366c-377f" name="Battle Honors" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
<entryLink id="459b-4383-521f-d31a" name="Eternal Penitent" hidden="false" collective="false" import="true" targetId="b12b-b2bc-36a4-0ada" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="130.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="8.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c436-bb9c-81f4-3529" name="Venerable Land Raider" hidden="false" collective="false" import="true" type="model">
<modifierGroups>
<modifierGroup>
<comment>Shield Host Keywords</comment>
<modifiers>
<modifier type="add" field="category" value="313e-c2b1-b2c6-baf4">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2978-33b3-c6d8-1bb6" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="d402-5ec4-3c93-bcab">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="07c5-beb5-199d-eba0" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="cece-a5e1-5225-7caf">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="17d3-dd49-ecea-4c83" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="67bb-d4b9-db8d-480a">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b166-1b4a-01ce-3667" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="f27b-7849-afb0-ee88">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="07ba-c869-402e-3324" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
<profiles>
<profile id="6d25-136d-cf53-3ecf" name="Venerable Land Raider" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">*</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">6+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">*</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">16</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">*</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">2+</characteristic>
</characteristics>
</profile>
<profile id="31fd-47bf-e3b5-f8f2" name="Venerable Land Raider (Transport)" hidden="false" typeId="b3a8-0452-7436-44d1" typeName="Transport">
<characteristics>
<characteristic name="Capacity" typeId="15aa-1916-a38b-d223">5 ADEPTUS CUSTODES INFANTRY models</characteristic>
</characteristics>
</profile>
<profile id="0593-35d9-8ae5-2612" name="Venerable Land Raider Wound Track 2" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">5-8</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">5"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">3+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">D6</characteristic>
</characteristics>
</profile>
<profile id="2e04-686d-0673-7999" name="Venerable Land Raider Wound Track 1" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">9-16+</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">10"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">2+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">6</characteristic>
</characteristics>
</profile>
<profile id="12fc-223e-40ae-f8d3" name="Venerable Land Raider Wound Track 3" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">1-4</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">3"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">4+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">1</characteristic>
</characteristics>
</profile>
<profile id="925f-11d8-249f-07f2" name="Unyielding Ancient" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Roll a D6 each time this model loses a wound; on a 6 the damage is ignored and the wound is not lost.</characteristic>
</characteristics>
</profile>
<profile id="492e-4974-66b0-5b07" name="Explodes" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If this model is reduced to 0 wounds, roll a D6 before removing it from the battlefield and before any embarked models disembark. On a 6 it explodes, and each unit within 6" suffers D6 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="ebb4-2a82-fc85-7af2" name="Smoke Launchers" hidden="false" targetId="c883-3078-1367-cc2c" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="119b-3cc5-3edb-8226" name="New CategoryLink" hidden="false" targetId="c8f7-6d2e-f4b8-f7a5" primary="false"/>
<categoryLink id="5566-66b8-e6a0-8391" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="081f-b620-ee38-0e70" name="New CategoryLink" hidden="false" targetId="86bf-9329-2e03-1ca4" primary="false"/>
<categoryLink id="3825-7f05-0af4-1463" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="e986-a517-cfa4-843e" name="New CategoryLink" hidden="false" targetId="6cc4-1b62-8e8a-05cd" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="c045-0e77-3d43-5b31" name="Twin Heavy Bolter" 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="6aba-95a5-ed1f-59f4" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cf3e-b160-4eda-6ef1" type="min"/>
</constraints>
<infoLinks>
<infoLink id="8bdd-fb11-bf26-de84" name="Twin heavy bolter" hidden="false" targetId="6644-7150-c910-865d" 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="6267-e693-6992-6a0a" name="Twin Lascannons" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e7bd-24f0-6f2d-c29d" type="max"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5f90-5fc9-ca7a-f735" type="min"/>
</constraints>
<infoLinks>
<infoLink id="2749-33e7-0a00-37aa" name="Twin lascannon" hidden="false" targetId="1662-54b9-46da-fefc" 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>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="a08c-2405-2718-5b0f" name="May take any:" hidden="false" collective="false" import="true">
<selectionEntries>
<selectionEntry id="487b-ddef-309e-49f6" name="Storm Bolter" 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="2e48-f9d3-0b34-19d7" type="max"/>
</constraints>
<infoLinks>
<infoLink id="9ab6-f8f7-6360-bb41" name="New InfoLink" hidden="false" targetId="505e-a5aa-edab-6d5b" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="3.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="b560-5ec8-d4cc-f920" name="Hunter-Killer Missile" 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="5d04-42a2-7484-70de" type="max"/>
</constraints>
<infoLinks>
<infoLink id="0a3e-7150-4a1f-eee8" name="New InfoLink" hidden="false" targetId="e2a9-e8fc-3a6b-2eec" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="5.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>
<entryLinks>
<entryLink id="cd89-b41b-8d3c-39be" name="Unit has battle honors?" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="a0b8-21fd-c91b-0de1" name="Battle Honors" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="300.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="16.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="174b-ddd4-9558-b13d" name="Captain-General Trajann Valoris" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="0d60-8abf-47d2-904f" type="max"/>
</constraints>
<profiles>
<profile id="f11d-7447-15bf-f95f" name="Captain-General Trajann Valoris" 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">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">5</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">5</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">7</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">5</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">10</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">2+</characteristic>
</characteristics>
</profile>
<profile id="2ffb-c8a3-ba14-ef3e" name="Moment Shackle" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Once per battle, if Trajann Valoris is on the battlefield, you can do one of the following: - Regain D3 wounds lost by Trajann Valoris during this phase (you cannot do this during an attack or if Trajann Valoris is slain) - At the end of the Fight phase, pile in and attack with Trajann Valoris an additional time - The next Stratagem you use this phase costs 0 Command Points.</characteristic>
</characteristics>
</profile>
<profile id="4116-0d0e-993f-2eeb" name="Auramite Halo" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Trajann Valoris has a 3+ invulnerable save.</characteristic>
</characteristics>
</profile>
<profile id="34ae-6449-46ac-23af" name="Legendary Commander" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">You can re-roll hit rolls and wound rolls of 1 made for friendly ADEPTUS CUSTODES units within 6" of Trajann Valoris.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="9b4c-38b7-27c9-f668" name="Aegis of The Emperor" hidden="false" targetId="55b4-45f6-4fff-93d8" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="ca0a-1954-794d-c04f" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="3c12-0bdb-0ce9-f387" name="New CategoryLink" hidden="false" targetId="c8f7-6d2e-f4b8-f7a5" primary="false"/>
<categoryLink id="bda4-f390-3de0-e13b" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="ebc5-1e64-780e-38f0" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="51ff-e0d7-3f50-a94f" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="b8e2-6bec-5613-8ced" name="Captain-General Trajann Valoris" hidden="false" targetId="b8cf-4801-186f-eb58" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="6864-9e38-3abc-1a5e" name="Watcher's Axe" 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="5bd0-0224-eadc-0df1" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eb2d-dcef-4ccf-54bf" type="min"/>
</constraints>
<profiles>
<profile id="6922-c5d2-a439-9bbb" name="Watcher's Axe (Shooting)" 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">Rapid Fire 1</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">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410"/>
</characteristics>
</profile>
<profile id="c86f-d39f-6a58-5970" name="Watcher's Axe (Melee)" 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">D3</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>
</selectionEntries>
<entryLinks>
<entryLink id="06e2-2b7b-7b1a-5339" name="Misericordia" hidden="false" collective="false" import="true" targetId="77ea-4be8-f3d1-1f4d" 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="a91f-e1b8-f90b-dd19" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bbac-a331-3638-5748" type="min"/>
</constraints>
</entryLink>
<entryLink id="f964-4027-22a4-d76e" name="Champion of the Imperium" hidden="true" collective="false" import="true" targetId="44d4-e9d8-7319-7037" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="7cf0-8a24-879c-2194" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="7cf0-8a24-879c-2194" name="Warlord" hidden="false" collective="false" import="true" targetId="2471-0b95-738c-edd9" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2c77-ba1a-be8d-be4e" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="10.0"/>
<cost name="pts" typeId="points" value="190.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="77ea-4be8-f3d1-1f4d" name="Misericordia" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="36ca-b0ff-1762-4b8c" name="Misericordia" 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">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">When the model fights, it may make 1 additional attack with this weapon unless using a storm shield</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="3.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="38c5-8a43-670e-0fbb" name="Shield-Captain" hidden="false" collective="false" import="true" type="model">
<modifierGroups>
<modifierGroup>
<comment>Shield Host Keywords</comment>
<modifiers>
<modifier type="add" field="category" value="313e-c2b1-b2c6-baf4">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2978-33b3-c6d8-1bb6" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="d402-5ec4-3c93-bcab">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="07c5-beb5-199d-eba0" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="cece-a5e1-5225-7caf">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="17d3-dd49-ecea-4c83" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="67bb-d4b9-db8d-480a">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b166-1b4a-01ce-3667" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="f27b-7849-afb0-ee88">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="07ba-c869-402e-3324" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
<modifierGroup>
<comment>Host Warlord Keywords to unlock Relics</comment>
<modifiers>
<modifier type="add" field="category" value="de42-8706-16b0-c512">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d402-5ec4-3c93-bcab" type="instanceOf"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2471-0b95-738c-edd9" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="add" field="category" value="7522-5a35-c746-0cb3">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="67bb-d4b9-db8d-480a" type="instanceOf"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2471-0b95-738c-edd9" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="add" field="category" value="4acc-6572-4a27-1de9">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="cece-a5e1-5225-7caf" type="instanceOf"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2471-0b95-738c-edd9" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="add" field="category" value="a663-dc61-5a65-ac59">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="f27b-7849-afb0-ee88" type="instanceOf"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2471-0b95-738c-edd9" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="add" field="category" value="8ee2-f166-8687-d1c2">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="313e-c2b1-b2c6-baf4" type="instanceOf"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="2471-0b95-738c-edd9" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
<profiles>
<profile id="b205-21af-a94b-4d08" name="Shield-Captain" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<modifiers>
<modifier type="increment" field="f330-5e6e-4110-0978" value="2">
<conditions>
<condition field="selections" scope="38c5-8a43-670e-0fbb" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cc7a-8356-fb8d-ad56" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="0bdf-a96e-9e38-7779" value="7"">
<conditions>
<condition field="selections" scope="38c5-8a43-670e-0fbb" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7406-b0eb-6989-b7ac" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</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">5</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">5</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>
<profile id="ad9a-517a-3184-32d2" name="Inspirational Fighter" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">You can re-roll hit rolls of 1 made for friendly ADEPTUS CUSTODES units within 6" of this model.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="befa-c6a2-1768-1350" name="Aegis of The Emperor" hidden="false" targetId="55b4-45f6-4fff-93d8" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="11f9-94a3-abf3-30aa" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="6d26-a3d3-2b16-4e64" name="New CategoryLink" hidden="false" targetId="c8f7-6d2e-f4b8-f7a5" primary="false"/>
<categoryLink id="bdea-b60f-3142-1a7f" name="New CategoryLink" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
<categoryLink id="99a8-4f10-86d4-8250" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="23d9-890b-0714-4cdc" name="Shield-Captain" hidden="false" targetId="1667-9ba1-0f53-51b0" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="95e9-af1c-2e8a-358f" name="Primary Weapon" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="d0e0-b92e-976d-6913" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="d852-61e8-0dab-b417" type="min"/>
</constraints>
<entryLinks>
<entryLink id="bafc-8d15-4554-b310" name="Guardian Spear" hidden="false" collective="false" import="true" targetId="e823-268c-0bed-4c0a" type="selectionEntry">
<modifiers>
<modifier type="set" field="70e6-faf2-3a17-94f8" value="0.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="8882-9e19-6680-1529" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="70e6-faf2-3a17-94f8" type="min"/>
</constraints>
</entryLink>
<entryLink id="f588-a153-e308-38ab" name="Sentinel Blade" hidden="false" collective="false" import="true" targetId="131b-ad6f-5a72-9664" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="2d56-9c22-5f05-fd8f" type="max"/>
</constraints>
</entryLink>
<entryLink id="e0b1-62c2-4667-d52e" name="Castellan Axe" hidden="false" collective="false" import="true" targetId="9154-524f-c1b0-2fff" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e0bb-f88b-680f-2101" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="e16e-2d49-9a28-7065" name="Storm Shield" hidden="false" collective="false" import="true" targetId="b8f1-bd1d-b276-f229" type="selectionEntry">
<modifiers>
<modifier type="set" field="d7be-7930-7b8b-b767" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="38c5-8a43-670e-0fbb" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bafc-8d15-4554-b310" type="equalTo"/>
<condition field="selections" scope="38c5-8a43-670e-0fbb" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e0b1-62c2-4667-d52e" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" field="points" value="10.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="d7be-7930-7b8b-b767" type="max"/>
</constraints>
</entryLink>
<entryLink id="782c-c563-8658-9d7e" name="Misericordia" hidden="false" collective="false" import="true" targetId="77ea-4be8-f3d1-1f4d" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="b8e0-49ed-8772-e94a" type="max"/>