generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 94
/
Imperium - Ultramarines.cat
1380 lines (1365 loc) · 95.9 KB
/
Imperium - Ultramarines.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 xmlns="http://www.battlescribe.net/schema/catalogueSchema" library="false" id="4029-9237-e8db-af55" name="Imperium - Adeptus Astartes - Ultramarines" gameSystemId="sys-352e-adc2-7639-d6a9" gameSystemRevision="1" revision="23" battleScribeVersion="2.03" type="catalogue">
<entryLinks>
<entryLink import="true" name="Captain Sicarius" hidden="false" type="selectionEntry" id="7740-af66-ac4f-68b6" targetId="2ae8-40ec-ba34-dfe5"/>
<entryLink import="true" name="Chaplain Cassius [Legends]" hidden="false" type="selectionEntry" id="e1e-1c6b-bb62-f9c8" targetId="b180-3cac-9124-b818"/>
<entryLink import="true" name="Chief Librarian Tigurius" hidden="false" type="selectionEntry" id="5909-4c97-aba1-e481" targetId="3ef1-1647-cd7b-a40b"/>
<entryLink import="true" name="Marneus Calgar" hidden="false" type="selectionEntry" id="388d-198a-29f-d03e" targetId="5380-5757-2c46-31cc">
<categoryLinks>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="2cc7-6dbe-3530-9949" primary="true" name="Epic Hero"/>
</categoryLinks>
</entryLink>
<entryLink import="true" name="Roboute Guilliman" hidden="false" type="selectionEntry" id="49fb-cb39-f830-9ee" targetId="4aea-b1cc-6c69-1c44"/>
<entryLink import="true" name="Sergeant Chronus [Legends]" hidden="false" type="selectionEntry" id="64be-7146-5008-3e1d" targetId="2263-82ee-3db6-8be9"/>
<entryLink import="true" name="Sergeant Telion [Legends]" hidden="false" type="selectionEntry" id="e77f-29fb-5f25-9bed" targetId="696a-899e-514b-4a04"/>
<entryLink import="true" name="Tyrannic War Veterans [Legends]" hidden="false" type="selectionEntry" id="8561-6da9-fb56-15f" targetId="8770-b0eb-f430-1dda"/>
<entryLink import="true" name="Uriel Ventris" hidden="false" type="selectionEntry" id="22c4-3e9d-987f-d338" targetId="169a-7229-ea50-1c4f"/>
<entryLink import="true" name="Ultramarines Honour Guard [Legends]" hidden="false" type="selectionEntry" id="35b8-60b6-a5ab-9318" targetId="f4a3-1616-2f8e-59a3"/>
</entryLinks>
<catalogueLinks>
<catalogueLink name="Imperium - Space Marines" id="da8e-75bd-17ec-90f8" targetId="e0af-67df-9d63-8fb7" importRootEntries="true" type="catalogue"/>
<catalogueLink type="catalogue" name="Imperium - Imperial Knights - Library" id="4797-b324-7691-9186" targetId="1b6d-dc06-5db9-c7d1" importRootEntries="true"/>
<catalogueLink type="catalogue" name="Imperium - Agents of the Imperium" id="fc79-7373-2e12-276b" targetId="b00-cd86-4b4c-97ba" importRootEntries="true"/>
</catalogueLinks>
<sharedSelectionEntries>
<selectionEntry type="model" import="true" name="Captain Sicarius" hidden="false" id="2ae8-40ec-ba34-dfe5">
<infoLinks>
<infoLink name="Oath of Moment" hidden="false" type="rule" id="7fa2-ca76-701f-d8ca" targetId="3b76-4053-ece9-6e7d"/>
<infoLink name="Leader" hidden="false" type="rule" id="841a-efeb-e75b-247f" targetId="b4dd-3e1f-41cb-218f"/>
<infoLink name="Invulnerable Save" hidden="false" type="profile" id="4913-1cd2-5b31-a3ea" targetId="db19-dee7-9530-ef0e"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="85"/>
</costs>
<categoryLinks>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="2840-e248-d65e-a81e" primary="true" name="Epic Hero"/>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="5cb0-fc69-7c77-b3d4" primary="false" name="Character"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="f1c7-6c84-2ff8-3ac6" primary="false" name="Infantry"/>
<categoryLink targetId="2d7f-1892-2fd0-e29c" id="2c29-503c-e3f0-f4d2" primary="false" name="Captain"/>
<categoryLink targetId="aff3-d6a3-2a95-9dc" id="368e-719b-48d0-8542" primary="false" name="Imperium"/>
<categoryLink targetId="6e7-40c-58d9-e402" id="9db-b60f-38b0-5a90" primary="false" name="Faction: Adeptus Astartes"/>
<categoryLink targetId="1a2d-2f00-c054-4dcb" id="283e-3f47-9a32-5c8a" primary="false" name="Faction: Ultramarines"/>
<categoryLink targetId="8fee-e096-4a53-3790" id="1d78-f882-80d0-34e0" primary="false" name="Sicarius"/>
</categoryLinks>
<profiles>
<profile name="Lead From the Front" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="5553-620a-d5da-ecb1">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, models in that unit have the Scouts 6" ability and ranged weapons equipped by models in that unit have the [ASSAULT] ability.</characteristic>
</characteristics>
</profile>
<profile name="Captain Sicarius" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="aeb4-b4da-9ad8-5d91">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">4</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">5</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
<profile name="Knight Champion of Macragge" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="c742-ab19-d4ed-607e">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Once per turn, when an enemy unit ends a Normal, Advance or Fall Back move within 9" of this model, if this model’s unit is not within Engagement Range of one or more enemy units, it can make a Normal move of up to 6".</characteristic>
</characteristics>
</profile>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="a3-79c9-601-8467">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following units:
■ Assault Intercessor Squad
■ Bladeguard Veteran Squad
■ Company Heroes
■ Sternguard Veteran Squad
■ Tactical Squad</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Artisan Plasma Pistol" hidden="false" id="9855-a302-b6f-5d15">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="e1dd-9aba-98ef-bee"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f5d-a42d-e498-bb7d"/>
</constraints>
<profiles>
<profile name="Artisan Plasma Pistol" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="c943-6018-ba17-c608">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">8</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-3</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Pistol</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Pistol" hidden="false" type="rule" id="b54d-93ee-584d-11dc" targetId="8bf7-8812-923d-29e4"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Talassarian Tempest Blade" hidden="false" id="9a28-8c88-5392-1c98">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="8cfb-97e4-4e66-ed39"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5f5-7363-158d-6387"/>
</constraints>
<profiles>
<profile name="Talassarian Tempest Blade" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="701b-551d-5480-eb67">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">6</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">5</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Lethal Hits</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Lethal Hits" hidden="false" type="rule" id="8360-7d7d-398f-29f9" targetId="d1d1-611e-5191-1095"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="ce41-274c-76b4-2dc8"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="bc92-d482-99ab-6c98" targetId="caa-f869-3cbd-b48e"/>
</entryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Chaplain Cassius [Legends]" hidden="false" id="b180-3cac-9124-b818">
<infoLinks>
<infoLink name="Leader" hidden="false" type="rule" id="5d50-5e33-55d4-f01b" targetId="b4dd-3e1f-41cb-218f"/>
<infoLink name="Oath of Moment" hidden="false" type="rule" id="d0b4-8085-80de-997" targetId="3b76-4053-ece9-6e7d"/>
<infoLink name="Invulnerable Save" hidden="false" type="profile" id="e9d8-e845-e025-d199" targetId="db19-dee7-9530-ef0e"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="80"/>
</costs>
<categoryLinks>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="3bb7-bfeb-830a-579d" primary="true" name="Epic Hero"/>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="2a84-c3bd-24cb-737e" primary="false" name="Character"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="13b1-9ffe-f565-9e98" primary="false" name="Infantry"/>
<categoryLink targetId="feca-2b5b-3c14-547f" id="2914-609f-11d9-f250" primary="false" name="Chaplain Cassius"/>
<categoryLink targetId="aff3-d6a3-2a95-9dc" id="fce9-c9a9-388f-4938" primary="false" name="Imperium"/>
<categoryLink targetId="6e7-40c-58d9-e402" id="cf91-b273-bfe3-a455" primary="false" name="Faction: Adeptus Astartes"/>
<categoryLink targetId="1a2d-2f00-c054-4dcb" id="45f0-7056-48a3-d2c1" primary="false" name="Faction: Ultramarines"/>
</categoryLinks>
<profiles>
<profile name="Chaplain Cassius" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="81d0-8039-515-9d8e">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">4</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">3+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">4</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">5+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
<profile name="Catechism of Death" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="e4a5-bf61-572d-569b">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, melee weapons equipped by models in that unit have the [DEVASTATING WOUNDS] ability.</characteristic>
</characteristics>
</profile>
<profile name="Inspired Retribution" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="d58e-1e52-6332-2f71">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, each time a model in that unit is destroyed by a melee attack, if that model has not fought this phase, roll one D6. On a 4+, do not remove it from play; that destroyed model can fight after the attacking model’s unit has finished making its attacks, and is then removed from play.</characteristic>
</characteristics>
</profile>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="e2c1-7cbf-bfcd-716a">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following units:
■ Assault Squad
■ Command Squad
■ Sternguard Veteran Squad
■ Tactical Squad
■ Tyrannic War Veterans
■ Vanguard Veteran Squad</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Infernus" hidden="false" id="29d6-c305-6ff-e055">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="53bb-6e2e-558f-7bee"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e473-df53-1fa-21cf"/>
</constraints>
<profiles>
<profile name="Infernus" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="ec78-f42f-bbda-b8ad">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">D6</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">N/A</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">4</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-1</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Anti-Infantry 4+, Devastating Wounds, Ignores Cover, Torrent</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Anti-" hidden="false" type="rule" id="60be-a23b-1158-5057" targetId="4111-82e3-9444-e942"/>
<infoLink name="Devastating Wounds" hidden="false" type="rule" id="421-9d9-1a6c-8b39" targetId="be1e-ac8e-1e2c-3528"/>
<infoLink name="Ignores Cover" hidden="false" type="rule" id="2cb-92f6-44ee-4ef7" targetId="4640-43e7-30b-215a"/>
<infoLink name="Torrent" hidden="false" type="rule" id="46f7-550e-f18c-9e2a" targetId="5edf-d619-23e0-9b56"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Artificer Crozius" hidden="false" id="fd26-e418-17b8-7c0a">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6c71-2849-e206-8f5c"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="fd72-293d-8455-f30e"/>
</constraints>
<profiles>
<profile name="Artificer Crozius" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="3430-d143-3b86-a365">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">5</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">6</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-1</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="85f6-5be8-d8e9-f7c6"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="a24d-8bc5-1668-721e" targetId="caa-f869-3cbd-b48e"/>
</entryLinks>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="9ed-cbf4-bfe5-90bf" shared="true" id="7935-90d4-3683-faa3" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="model" import="true" name="Chief Librarian Tigurius" hidden="false" id="3ef1-1647-cd7b-a40b">
<infoLinks>
<infoLink name="Leader" hidden="false" type="rule" id="9235-eccd-784c-2ef8" targetId="b4dd-3e1f-41cb-218f"/>
<infoLink name="Oath of Moment" hidden="false" type="rule" id="820d-2d59-522c-c62d" targetId="3b76-4053-ece9-6e7d"/>
<infoLink name="Invulnerable Save" hidden="false" type="profile" id="f6b7-65b6-fabe-c676" targetId="db19-dee7-9530-ef0e"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="75"/>
</costs>
<categoryLinks>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="6344-c0ab-95ea-c513" primary="false" name="Character"/>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="1c77-30b8-9e92-b837" primary="true" name="Epic Hero"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="6d7c-2a3a-961e-4e3" primary="false" name="Infantry"/>
<categoryLink targetId="aff3-d6a3-2a95-9dc" id="6fc3-3d3a-7764-f633" primary="false" name="Imperium"/>
<categoryLink targetId="13bf-2bee-3ae0-b414" id="1ae7-a004-de10-19e2" primary="false" name="Psyker"/>
<categoryLink targetId="2d6b-f80f-ac70-ecc7" id="a4a1-f9aa-a4f1-2060" primary="false" name="Chief Librarian Tigurius"/>
<categoryLink targetId="6e7-40c-58d9-e402" id="9257-36a2-e9f2-edaf" primary="false" name="Faction: Adeptus Astartes"/>
<categoryLink targetId="1a2d-2f00-c054-4dcb" id="af-ed2c-ee3b-7b1c" primary="false" name="Faction: Ultramarines"/>
</categoryLinks>
<profiles>
<profile name="Chief Librarian Tigurius" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="9080-53c7-c334-b989">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">4</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">3+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">4</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
<profile name="Hood of Hellfire" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="6d80-d11e-231d-1014">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, models in that unit have the Feel No Pain 4+ ability against Psychic Attacks and mortal wounds.</characteristic>
</characteristics>
</profile>
<profile name="Master of Prescience (Psychic)" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="712b-2536-4360-4d74">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, each time an attack targets that unit, subtract 1 from the Hit roll. In addition, once per battle round, you can target that unit with one of the following Stratagems for 0CP: Counter-offensive; Fire Overwatch; Go to Ground;
Heroic Intervention.</characteristic>
</characteristics>
</profile>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="af75-67b0-4fcb-d9e8">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following units:
■ Assault Intercessor Squad
■ Bladeguard Veteran Squad
■ Desolation Squad
■ Devastator Squad
■ Intercessor Squad
■ Sternguard Veteran Squad
■ Tactical Squad</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Bolt Pistol" hidden="false" type="selectionEntry" id="26f9-c721-b564-d38e" targetId="b273-b85e-4018-a0cd">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="55bb-ab92-bb25-e1f6"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="50b-f958-61b5-ea24"/>
</constraints>
</entryLink>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="eec5-5f37-c9bd-889" targetId="caa-f869-3cbd-b48e"/>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Storm of the Emperor’s Wrath" hidden="false" id="4aab-43dc-b23-cff">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="cac2-53f4-6340-4a4"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9bd6-1a73-16be-ac64"/>
</constraints>
<profiles>
<profile name="➤ Storm of the Emperor’s Wrath - Witchfire" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="dcf9-9637-5df4-dc5e">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">18"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">D6</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">6</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-2</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Blast, Psychic</characteristic>
</characteristics>
</profile>
<profile name="➤ Storm of the Emperor’s Wrath - Focused Witchfire" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="72f9-1db7-ac4d-9fe2">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">18"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">2D6</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">6</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-2</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Blast, Hazardous, Psychic</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Blast" hidden="false" type="rule" id="555f-d4e-6484-dea6" targetId="6c1f-1cf7-ff25-c99e"/>
<infoLink name="Hazardous" hidden="false" type="rule" id="a9ea-1518-7b4b-9efb" targetId="8367-374c-f87-c627"/>
<infoLink name="Psychic" hidden="false" type="rule" id="b2b-5a0c-7140-55dd" targetId="e9c4-2bb8-12ee-cd1b"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Rod of Tigurius" hidden="false" id="c6ea-3c75-3e25-90aa">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3ebe-4780-3664-820d"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c41c-2241-e829-f6a9"/>
</constraints>
<profiles>
<profile name="Rod of Tigurius" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="969e-a31a-4eb6-4f0c">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">5</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">3+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">7</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">D3</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Psychic</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Psychic" hidden="false" type="rule" id="8f55-d2c4-b473-18b0" targetId="e9c4-2bb8-12ee-cd1b"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="971a-45c9-4d1c-1fc"/>
</constraints>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Marneus Calgar" hidden="false" id="5380-5757-2c46-31cc">
<infoLinks>
<infoLink name="Leader" hidden="false" type="rule" id="5cb2-408a-1f6-3bd6" targetId="b4dd-3e1f-41cb-218f"/>
<infoLink name="Oath of Moment" hidden="false" type="rule" id="a2f4-78b2-55de-a579" targetId="3b76-4053-ece9-6e7d"/>
<infoLink name="Invulnerable Save" hidden="false" type="profile" id="8606-4035-22c1-ba02" targetId="db19-dee7-9530-ef0e"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="185"/>
</costs>
<profiles>
<profile name="Marneus Calgar" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="dd59-fc60-ed57-4936">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">6</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">6</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
<profile name="Victrix Honour Guard" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="1e8a-bb9c-65cf-6b32">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">4</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">3</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
<profile name="Inspiring Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="aa9c-84b5-b51-8755">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, that unit is eligible to shoot and declare a charge in a turn in which it Advanced or Fell Back.</characteristic>
</characteristics>
</profile>
<profile name="Master Tactician" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="7370-225b-feb9-5d86">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">At the start of your Command phase, if this unit’s Marneus Calgar model is on the battlefield, you gain 1CP.</characteristic>
</characteristics>
</profile>
<profile name="Honour Guard of Macragge" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="5bb-e17c-f1ac-9efc">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this unit contains one or more Victrix Honour Guard models, this unit’s Marneus Calgar model has the Feel No Pain 4+ ability.</characteristic>
</characteristics>
</profile>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="19d7-a45d-830a-99">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This unit can be attached to the following units:
■ Aggressor Squad
■ Assault Intercessor Squad
■ Bladeguard Veteran Squad
■ Company Heroes
■ Eradicator Squad
■ Heavy Intercessor Squad
■ Infernus Squad
■ Intercessor Squad
■ Sternguard Veteran Squad
■ Tactical Squad</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="model" import="true" name="Marneus Calgar" hidden="false" id="9ee9-60dc-e65-b0c5">
<categoryLinks>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="c855-4504-4bdb-b7dd" primary="true" name="Epic Hero"/>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="f5ff-3e6e-99bf-e710" primary="false" name="Character"/>
<categoryLink targetId="81f0-f40e-c36c-5a30" id="3ac-fe0c-b486-d4a8" primary="false" name="Gravis"/>
<categoryLink targetId="5bd8-882d-302b-48f3" id="5bac-672d-533-1427" primary="false" name="Chapter Master"/>
<categoryLink targetId="4623-32ee-a055-6db3" id="c4e7-68d6-edb2-9b1a" primary="false" name="Marneus Calgar"/>
<categoryLink targetId="6e7-40c-58d9-e402" id="40b1-c86e-5360-e96b" primary="false" name="Faction: Adeptus Astartes"/>
<categoryLink targetId="1a2d-2f00-c054-4dcb" id="ec3b-bbe2-8a2-ed56" primary="false" name="Faction: Ultramarines"/>
</categoryLinks>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="e121-8138-bc71-4480"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8435-7ba8-1c49-a3ef"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Gauntlets of Ultramar" hidden="false" id="482e-2b4f-616-d783">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5f7e-bc36-604-144e"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="51d0-3108-dc95-c1c2"/>
</constraints>
<profiles>
<profile name="Gauntlets of Ultramar" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="118c-765f-f6a9-c983">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">18"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">4</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">4</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-1</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Pistol, Twin-linked</characteristic>
</characteristics>
</profile>
<profile name="Gauntlets of Ultramar" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="d126-71fe-a7b1-b32e">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">6</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">8</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-3</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">3</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Twin-linked</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Pistol" hidden="false" type="rule" id="f13e-ce0-2276-b2b0" targetId="8bf7-8812-923d-29e4"/>
<infoLink name="Twin-linked" hidden="false" type="rule" id="efbd-ceb6-4896-79b4" targetId="cf93-ad4d-2f08-a79d"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Victrix Honour Guard" hidden="false" id="3719-2013-c91c-1838">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Victrix Power Sword" hidden="false" id="639c-f60f-581e-71d" collective="true">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1a5d-5408-3a9f-1760"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="1075-7f1f-ab46-8b4d"/>
</constraints>
<profiles>
<profile name="Victrix Power Sword" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="8782-c965-4294-6766">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">5</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">5</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="min" value="2" field="selections" scope="parent" shared="true" id="f42e-e626-6412-8613"/>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="394f-1ae5-91dd-3b08"/>
</constraints>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink targetId="aff3-d6a3-2a95-9dc" id="f299-1703-3cc5-66e3" primary="false" name="Imperium"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="7252-c269-18e9-9a11" primary="false" name="Infantry"/>
</categoryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="f645-ed9f-3464-84a0"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="3dd7-6ab0-2cbc-fe02" targetId="caa-f869-3cbd-b48e"/>
</entryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Roboute Guilliman" hidden="false" id="4aea-b1cc-6c69-1c44">
<infoLinks>
<infoLink name="Oath of Moment" hidden="false" type="rule" id="2dfe-84f1-109b-8bf0" targetId="3b76-4053-ece9-6e7d"/>
<infoLink name="Invulnerable Save" hidden="false" type="profile" id="9773-9a10-7e7a-3bea" targetId="db19-dee7-9530-ef0e"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="285"/>
<cost name="Crusade Points" typeId="b03b-c239-15a5-da55" value="0"/>
<cost name="Crusade: Battle Honours" typeId="75bb-ded1-c86d-bdf0" value="0"/>
<cost name="Crusade: Experience" typeId="a623-fe74-1d33-cddf" value="0"/>
<cost name="Crusade: Weapon Modifications" typeId="716d-91b7-d55a-1022" value="0"/>
</costs>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="23e1-7f8c-138e-c249"/>
</constraints>
<profiles>
<profile name="Roboute Guilliman" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="f7d-cd2b-639b-4c7e">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">8"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">9</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">10</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">5+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">4</characteristic>
</characteristics>
</profile>
<profile name="Author of the Codex" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="12af-5519-836-3ca5">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">In your Command phase, select one Author of the Codex ability (see left). Until the start of your next Command phase, this model has that ability.
Primarch of the XIII (Aura): While a friendly Adeptus Astartes unit is within 6" of this model, add 1 to the Objective Control characteristic of models in that unit and you can re-roll Battle-shock and Leadership tests taken for that unit.
Master of Battle: After you have selected an enemy unit using the Oath of Moment ability, select a second enemy unit. Until the start of your next Command phase, if your Oath of Moment target is destroyed, that second enemy unit becomes your Oath of Moment target until you select a new one.
Supreme Strategist: Once per turn, you can target one friendly ADEPTUS ASTARTES unit within 12" of this model with a Stratagem. If it does, reduce the CP cost of that use of that Stratagem by 1CP.</characteristic>
</characteristics>
</profile>
<profile name="Ultramarines Bodyguard" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="7a88-482-fa96-f382">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is within 3" of one or more friendly Adeptus Astartes Infantry units, this model has the Lone Operative ability</characteristic>
</characteristics>
</profile>
<profile name="Armour of Fate" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="72ce-755f-7843-e428">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">The first time this model is destroyed, roll one D6 at the end of the phase: on a 3+, set this model back up on the battlefield as close as possible to where it was destroyed and not within Engagement Range of any enemy models, with 6 wounds remaining.</characteristic>
</characteristics>
</profile>
<profile name="Supreme Commander" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="ef49-87ed-43b1-1644">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">If this model is in your army, it must be your Warlord.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="7c1d-94d1-3f67-959f" primary="true" name="Epic Hero"/>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="7ed-e91a-147d-e83c" primary="false" name="Character"/>
<categoryLink targetId="aff3-d6a3-2a95-9dc" id="be23-fd46-c5f7-1218" primary="false" name="Imperium"/>
<categoryLink targetId="6474-0ce3-6b5a-120c" id="9c24-ba2-577d-740d" primary="false" name="Primarch"/>
<categoryLink targetId="8149-45c1-62c1-ff2a" id="915e-d660-ce66-308d" primary="false" name="Roboute Guilliman"/>
<categoryLink targetId="6e7-40c-58d9-e402" id="6aa7-4191-badd-e46a" primary="false" name="Faction: Adeptus Astartes"/>
<categoryLink targetId="1a2d-2f00-c054-4dcb" id="3c82-4f7c-b4ff-ba08" primary="false" name="Faction: Ultramarines"/>
<categoryLink targetId="9693-cf84-fe69-37a9" id="2b80-60dc-eae6-7049" primary="false" name="Monster"/>
</categoryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Hand of Dominion" hidden="false" id="b5b2-5c6-e593-69a7">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="199f-e592-e1da-5315"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="a89a-5871-80f-6b6"/>
</constraints>
<profiles>
<profile name="Hand of Dominion" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="43b-1aed-6bc4-104b">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">30"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">2</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">6</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-2</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Rapid Fire 2</characteristic>
</characteristics>
</profile>
<profile name="Hand of Dominion" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="f92b-1723-5e5c-c3e7">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">7</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">14</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-4</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">4</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Lethal Hits</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Lethal Hits" hidden="false" type="rule" id="5b08-fb66-844-5202" targetId="d1d1-611e-5191-1095"/>
<infoLink name="Rapid Fire" hidden="false" type="rule" id="6800-fd75-5aa-67a5" targetId="c5c8-8b58-b8b6-7786"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="The Emperor's Sword" hidden="false" id="4c53-6d36-742f-85ca">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="e40a-a785-634a-6d0a"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="89c0-b175-b338-7733"/>
</constraints>
<profiles>
<profile name="The Emperor's Sword" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="88e5-f730-d6b0-c0a3">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">14</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">2+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">8</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-3</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">2</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Devastating Wounds</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Devastating Wounds" hidden="false" type="rule" id="a166-16b7-1e71-bb7a" targetId="be1e-ac8e-1e2c-3528"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="fec9-14d-9e5f-2a20" targetId="caa-f869-3cbd-b48e">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3888-567-a5e5-9457"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Sergeant Chronus [Legends]" hidden="false" id="2263-82ee-3db6-8be9">
<infoLinks>
<infoLink name="Oath of Moment" hidden="false" type="rule" id="543b-479e-d041-3c62" targetId="3b76-4053-ece9-6e7d"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="75"/>
</costs>
<profiles>
<profile name="Sergeant Chronus" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="7a88-def5-fe93-f65e">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">4</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">3</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
<profile name="Tank Commander" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="72c3-d3f3-5ba8-3c67">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is commanding a Vehicle model (see reverse):
■ Ranged weapons equipped by that Vehicle model have a Ballistic Skill characteristic of 2+.
■ Each time that Vehicle model is selected to shoot, you can re-roll one Wound roll when resolving those attacks.
If your army includes one or more of the Vehicle models listed below, Sergeant Chronus must start the battle embarked within one of those models as if it were a Transport. Sergeant Chronus can only disembark from that Vehicle if it is destroyed. While embarked in this way, Sergeant Chronus is said to be commanding that Vehicle.
■ Hunter
■ Land Raider
■ Land Raider Crusader
■ Land Raider Redeemer
■ Predator Annihilator
■ Predator Destructor
■ Stalker
■ Vindicator
■ Whirlwind</characteristic>
</characteristics>
</profile>
<profile name="Chronus" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="bc23-bd70-e4d0-f355">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">When this model disembarks from a Vehicle model it was commanding, it has the Lone Operative ability until the end of the battle.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="f85c-ced4-9940-e445" primary="false" name="Infantry"/>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="d9f6-c5a-2bc7-8b59" primary="false" name="Character"/>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="c3f0-c158-976b-b67d" primary="true" name="Epic Hero"/>
<categoryLink targetId="aff3-d6a3-2a95-9dc" id="ab89-86f8-ae7a-a233" primary="false" name="Imperium"/>
<categoryLink targetId="4e73-2f07-a391-abb7" id="c10a-b88c-e429-83d1" primary="false" name="Sergeant Chronus"/>
<categoryLink targetId="6e7-40c-58d9-e402" id="8a1d-dbd4-6ae-51bf" primary="false" name="Faction: Adeptus Astartes"/>
<categoryLink targetId="1a2d-2f00-c054-4dcb" id="cd06-5b6a-f6b7-d267" primary="false" name="Faction: Ultramarines"/>
</categoryLinks>
<entryLinks>
<entryLink import="true" name="Bolt Pistol" hidden="false" type="selectionEntry" id="2646-9c15-cc45-2407" targetId="b273-b85e-4018-a0cd">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="7100-3533-c8fb-7d6a"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2954-4f4e-8ac4-d474"/>
</constraints>
</entryLink>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="2dde-9c9e-3c7e-f569" targetId="caa-f869-3cbd-b48e"/>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Chronus' Servo-Arm" hidden="false" id="f94a-1524-9f9b-2229">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b653-53f-bd1a-94ec"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9c0d-cb18-a37f-353d"/>
</constraints>
<profiles>
<profile name="Chronus' Servo-Arm" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="c537-27a2-64d8-de9b">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">3</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">3+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">8</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">3</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="e779-fe81-7e20-85fe"/>
</constraints>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="9ed-cbf4-bfe5-90bf" shared="true" id="dd69-917-1d97-cbac" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="model" import="true" name="Sergeant Telion [Legends]" hidden="false" id="696a-899e-514b-4a04">
<infoLinks>
<infoLink name="Leader" hidden="false" type="rule" id="1840-4ca-a456-8750" targetId="b4dd-3e1f-41cb-218f"/>
<infoLink name="Stealth" hidden="false" type="rule" id="c850-9a18-e1a1-42b4" targetId="bec5-4288-34a6-ccfa"/>
<infoLink name="Scouts" hidden="false" type="rule" id="4373-92ca-2883-2efe" targetId="ada6-bac1-ffe0-d6f7">
<modifiers>
<modifier type="set" value="6"" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Infiltrators" hidden="false" type="rule" id="3b1-8218-f28e-18d0" targetId="c05d-f4c3-f091-4938"/>
<infoLink name="Oath of Moment" hidden="false" type="rule" id="5a08-bbac-9e2-34e8" targetId="3b76-4053-ece9-6e7d"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="70"/>
</costs>
<constraints>
<constraint type="max" value="1" field="selections" scope="roster" shared="true" id="68f-33d-6c0f-1954"/>
</constraints>
<profiles>
<profile name="Sergeant Telion" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="e4-2c50-d031-d11d">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">4</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">4+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">3</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">1</characteristic>
</characteristics>
</profile>
<profile name="Voice of Experience" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="ce2f-2282-d8d5-abb9">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, improve the Objective Control characteristic of models in that unit by 1 and each time a model in that unit makes an attack, add 1 to the Hit roll.</characteristic>
</characteristics>
</profile>
<profile name="Guiding Hand" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="eae6-c930-f4cc-34d1">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While this model is leading a unit, each time that unit is selected to shoot or fight, select one of the following abilities to apply to weapons equipped by models in that unit until the end of the phase:
■ [LETHAL HITS]
■ [PRECISION]
■ [SUSTAINED HITS 1]</characteristic>
</characteristics>
</profile>
<profile name="Leader" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="d0c4-765-4614-5b63">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">This model can be attached to the following units:
■ Scout Squad
■ Scout Sniper Squad</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink import="true" name="Bolt Pistol" hidden="false" type="selectionEntry" id="fcdd-fac8-2b2b-334a" targetId="b273-b85e-4018-a0cd">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="79af-8465-8613-6bc9"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b09c-86ef-c041-4b26"/>
</constraints>
</entryLink>
<entryLink import="true" name="Warlord" hidden="false" type="selectionEntry" id="7069-879c-e9c8-7154" targetId="caa-f869-3cbd-b48e"/>
</entryLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Combat Knife" hidden="false" id="9b80-b34f-cdbd-2a95">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="61c9-1af2-4ab1-2eec"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9094-3783-7b72-8561"/>
</constraints>
<profiles>
<profile name="Combat Knife" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="32cd-f021-acbe-3ca7">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">4</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">3+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">4</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">0</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">-</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Quietus" hidden="false" id="4e39-8d0-ac97-29f3">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="3b54-2999-3dc0-7b84"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ff0a-4c5e-a6b3-81af"/>
</constraints>
<profiles>
<profile name="Quietus" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="45b5-a0d7-1e2a-4ebd">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">36"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">2</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">2+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">4</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-2</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">3</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Precision</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Precision" hidden="false" type="rule" id="a9d8-a9d6-4640-30c3" targetId="9143-31ae-e0a6-6007"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<categoryLinks>
<categoryLink targetId="4f3a-f0f7-6647-348d" id="95f2-1f16-cbe0-49a3" primary="true" name="Epic Hero"/>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="5cf2-66b5-38c0-fd36" primary="false" name="Character"/>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="e7de-5735-7374-245f" primary="false" name="Infantry"/>
<categoryLink targetId="aff3-d6a3-2a95-9dc" id="dc82-9e1a-2679-a9ef" primary="false" name="Imperium"/>
<categoryLink targetId="6a7f-3f2d-54bb-35fc" id="d7e3-5c54-7a5a-4365" primary="false" name="Sergeant Telion"/>
<categoryLink targetId="6e7-40c-58d9-e402" id="bae9-92f8-c18f-dc56" primary="false" name="Faction: Adeptus Astartes"/>
<categoryLink targetId="1a2d-2f00-c054-4dcb" id="3b04-5f6e-1120-f027" primary="false" name="Faction: Ultramarines"/>
</categoryLinks>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="force" childId="9ed-cbf4-bfe5-90bf" shared="true" id="f53c-b3fb-f46-c186" includeChildSelections="true"/>
</conditions>
</modifier>
</modifiers>
</selectionEntry>
<selectionEntry type="unit" import="true" name="Tyrannic War Veterans [Legends]" hidden="false" id="8770-b0eb-f430-1dda">
<infoLinks>
<infoLink name="Oath of Moment" hidden="false" type="rule" id="d447-7c78-2e2c-9922" targetId="3b76-4053-ece9-6e7d"/>
</infoLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="85"/>
</costs>
<categoryLinks>
<categoryLink targetId="cf47-a0d7-7207-29dc" id="9009-6ebf-b525-df7c" primary="true" name="Infantry"/>
<categoryLink targetId="5a61-81ac-eb7c-a87e" id="7c96-8922-86-359c" primary="false" name="Grenades"/>
<categoryLink targetId="aff3-d6a3-2a95-9dc" id="cf69-cc32-fb26-6630" primary="false" name="Imperium"/>
<categoryLink targetId="db3-6ff3-87c4-ac33" id="38d2-1053-28fa-7c65" primary="false" name="Tyrannic War Veterans"/>
<categoryLink targetId="6e7-40c-58d9-e402" id="bc9-2b0b-ccb2-cb1" primary="false" name="Faction: Adeptus Astartes"/>
<categoryLink targetId="1a2d-2f00-c054-4dcb" id="6df3-4ca7-ff93-3cac" primary="false" name="Faction: Ultramarines"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup name="Tyrannic War Veterans" hidden="false" id="e2ae-fabb-40ec-dc8c" defaultSelectionEntryId="3c2c-14d4-2669-7f63">
<constraints>
<constraint type="min" value="5" field="selections" scope="parent" shared="true" id="1260-b77f-cba4-4752"/>
<constraint type="max" value="5" field="selections" scope="parent" shared="true" id="2051-2e42-b03-baf6"/>
</constraints>
<selectionEntries>
<selectionEntry type="model" import="true" name="Tyrannic War Veteran" hidden="false" id="3c2c-14d4-2669-7f63">
<constraints>
<constraint type="min" value="4" field="selections" scope="parent" shared="true" id="c1cd-4d16-8e8f-eae2"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Bolt Pistol" hidden="false" id="447a-517f-e0ff-2716" collective="true">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="f789-8840-c1a9-779c"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="3500-ba4a-d378-c397"/>
</constraints>
<profiles>
<profile name="Bolt Pistol" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="7bc6-60c6-7a7-7508">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">12"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">3+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">4</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">0</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Anti-Tyranids 4+, Pistol</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Anti-" hidden="false" type="rule" id="13e-5322-8798-245d" targetId="4111-82e3-9444-e942"/>
<infoLink name="Pistol" id="53b2-68b6-dd4c-b880" hidden="false" type="rule" targetId="8bf7-8812-923d-29e4"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Boltgun" hidden="false" id="b433-5c4c-3958-e044" collective="true">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2844-51b5-d5c8-1666"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5520-adc2-ab5b-17e5"/>
</constraints>
<profiles>
<profile name="Boltgun" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="6bb4-5f4d-df41-9d3e">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">24"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">2</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">3+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">4</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">0</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Anti-Tyranids 4+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Anti-" hidden="false" type="rule" id="9a81-8d0f-30cb-3eef" targetId="4111-82e3-9444-e942"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Close Combat Weapon" hidden="false" id="bece-acd9-8433-c368" collective="true">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="c039-506a-fb2-647b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="961f-905-cd55-90c4"/>
</constraints>
<profiles>
<profile name="Close Combat Weapon" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="84a-63de-5b04-3d70">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">3</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">3+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">4</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">0</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Anti-Tyranids 4+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Anti-" hidden="false" type="rule" id="e87a-5709-1cab-285" targetId="4111-82e3-9444-e942"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Veteran Sergeant" hidden="false" id="d290-6bc6-b898-287a">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="9b0c-dbc0-41c9-8f3b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="f0c0-e123-b6dd-14b0"/>
</constraints>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Close Combat Weapon" hidden="false" id="ed1b-558c-4344-bea2" collective="true">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="c039-506a-fb2-647b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="961f-905-cd55-90c4"/>
</constraints>
<profiles>
<profile name="Close Combat Weapon" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="9fc0-cac2-db19-99a2">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">3</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">3+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">4</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">0</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e">Anti-Tyranids 4+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Anti-" hidden="false" type="rule" id="d123-29a8-6164-6b86" targetId="4111-82e3-9444-e942"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Boltgun" hidden="false" id="9e0f-eaf0-86af-8c20" collective="true">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="2844-51b5-d5c8-1666"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="5520-adc2-ab5b-17e5"/>
</constraints>
<profiles>
<profile name="Boltgun" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="48e-4791-dd87-8b36">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">24"</characteristic>