generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Library - Space Marines.cat
11723 lines (11723 loc) · 865 KB
/
Library - Space Marines.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="df5a-b452-7741-6a5b" name="Library - Space Marines" revision="12" battleScribeVersion="2.03" authorName="BSData Developers" authorUrl="https://discord.gg/3QtaU2g" library="true" gameSystemId="18f7-26e1-8fbb-f7fa" gameSystemRevision="6" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<categoryEntries>
<categoryEntry id="6268-f517-c933-bf19" name="Faction: Adeptus Astartes" hidden="false"/>
<categoryEntry id="51a9-73ff-29ec-793c" name="Tactical Squad" hidden="false"/>
<categoryEntry id="27c2-0764-4952-e1de" name="Scout" hidden="false"/>
<categoryEntry id="625f-e477-e807-1451" name="Scout Squad" hidden="false"/>
<categoryEntry id="34ee-2cee-93bf-b3c3" name="Primaris" hidden="false"/>
<categoryEntry id="8d67-81da-d95d-adb3" name="Intercessor Squad" hidden="false"/>
<categoryEntry id="aa96-14a7-0694-f560" name="Infiltrator Squad" hidden="false"/>
<categoryEntry id="0642-3d2d-db41-9ddd" name="Priest" hidden="false"/>
<categoryEntry id="89c1-3354-3e0d-279e" name="Chaplain" hidden="false"/>
<categoryEntry id="e934-b1d0-35ff-8cc4" name="Librarian" hidden="false"/>
<categoryEntry id="3726-f1d3-1b96-0eb0" name="Terminator" hidden="false"/>
<categoryEntry id="9338-3c48-ea3c-cb83" name="Phobos" hidden="false"/>
<categoryEntry id="7151-56f9-0163-eadc" name="Captain" hidden="false"/>
<categoryEntry id="8438-9607-67d0-a3e3" name="MK X Gravis" hidden="false"/>
<categoryEntry id="aba1-da6d-7a57-d464" name="Techmarine" hidden="false"/>
<categoryEntry id="c1bc-cc91-15db-65fc" name="Lieutenant" hidden="false"/>
<categoryEntry id="e8c9-c1e3-8372-9280" name="Land Raider" hidden="false"/>
<categoryEntry id="3768-fde2-2245-e51a" name="Land Raider Excelsior" hidden="false"/>
<categoryEntry id="2a9d-1be6-b061-bb4a" name="Rhino Primaris" hidden="false"/>
<categoryEntry id="f710-fab4-ea91-d73a" name="Servitors" hidden="false"/>
<categoryEntry id="dd8a-9dd3-dcef-035c" name="Apothecary" hidden="false"/>
<categoryEntry id="69b9-2dfd-81e6-5540" name="Ancient" hidden="false"/>
<categoryEntry id="7934-999d-0625-24a6" name="Company Ancient" hidden="false"/>
<categoryEntry id="080d-1106-4107-3689" name="Company Champion" hidden="false"/>
<categoryEntry id="798a-c2b2-f347-595c" name="Company Veterans" publicationId="8df9-0b3e-abea-3c15" hidden="false"/>
<categoryEntry id="0bc3-ef6a-66db-b7ba" name="Venerable Dreadnought" hidden="false"/>
<categoryEntry id="038b-c5e0-e944-a3f9" name="Contemptor Dreadnought" hidden="false"/>
<categoryEntry id="f93e-cfb3-8fe6-16b6" name="Redemptor Dreadnought" hidden="false"/>
<categoryEntry id="bd27-33f2-0ec4-544f" name="Reiver Squad" hidden="false"/>
<categoryEntry id="c608-6a5b-42d5-48e2" name="Aggressor Squad" hidden="false"/>
<categoryEntry id="0e97-af31-611d-caf9" name="Imperial Space Marine" hidden="false"/>
<categoryEntry id="038c-3926-2f07-5a74" name="Chapter Ancient" hidden="false"/>
<categoryEntry id="59c0-a118-fb6b-177e" name="Devastator Squad" hidden="false"/>
<categoryEntry id="01f6-1948-b1ea-e57a" name="Hellblaster Squad" hidden="false"/>
<categoryEntry id="3282-befb-8189-77da" name="Hunter" hidden="false"/>
<categoryEntry id="d342-020b-869d-cfa1" name="Stalker" hidden="false"/>
<categoryEntry id="0c5c-522a-06c1-de1f" name="Whirlwind" hidden="false"/>
<categoryEntry id="2b73-fbd1-6554-f297" name="Predator" hidden="false"/>
<categoryEntry id="b915-c199-16d1-55cd" name="Vindicator" hidden="false"/>
<categoryEntry id="19de-4b2e-4e04-ffa4" name="Land Raider Crusader" hidden="false"/>
<categoryEntry id="8b62-3d1a-6626-8b2e" name="Land Raider Redeemer" hidden="false"/>
<categoryEntry id="a341-7067-50f0-8a8a" name="Eliminator Squad" hidden="false"/>
<categoryEntry id="b757-ee1d-19d8-135c" name="Bike Squad" hidden="false"/>
<categoryEntry id="c747-0503-c0a5-151e" name="Assault Squad" hidden="false"/>
<categoryEntry id="17e1-1b23-02cb-ee0c" name="Land Speeders" hidden="false"/>
<categoryEntry id="7652-b76a-a5c3-f1f9" name="Attack Bike Squad" hidden="false"/>
<categoryEntry id="0c66-f5e9-e3c7-4eb5" name="Scout Bike Squad" hidden="false"/>
<categoryEntry id="57ca-d94a-0480-077c" name="Inceptor Squad" hidden="false"/>
<categoryEntry id="8305-ebd6-cb2c-fb81" name="Suppressor Squad" hidden="false"/>
<categoryEntry id="ffaa-1402-f745-9c52" name="Rhino" hidden="false"/>
<categoryEntry id="8540-0de7-d95b-d16f" name="Razorback" hidden="false"/>
<categoryEntry id="f7f4-af18-7e5b-7652" name="Drop Pod" hidden="false"/>
<categoryEntry id="dfd2-395e-ebd6-8bc9" name="Land Speeder Storm" hidden="false"/>
<categoryEntry id="c13a-5687-1804-8a19" name="Land Speeder" hidden="false"/>
<categoryEntry id="d2e8-8e40-ce10-3661" name="Repulsor" hidden="false"/>
<categoryEntry id="835b-c92f-322c-beed" name="Stormhawk Interceptor" hidden="false"/>
<categoryEntry id="4eaf-d2c8-7a03-347c" name="Stormraven Gunship" hidden="false"/>
<categoryEntry id="8aad-e2dd-68f7-395a" name="Stormtalon Gunship" hidden="false"/>
<categoryEntry id="b3fb-f781-c79e-900b" name="Chapter Master" hidden="false"/>
<categoryEntry id="bbab-ae5c-37ce-fdd1" name="Terminator Squad" hidden="false"/>
<categoryEntry id="dd31-f35f-77b1-d156" name="Terminator Assault Squad" hidden="false"/>
<categoryEntry id="0929-512e-846b-908a" name="Vanguard Veteran Squad" hidden="false"/>
<categoryEntry id="bc05-35d9-45dc-3b15" name="Sternguard Veteran Squad" hidden="false"/>
<categoryEntry id="f605-f876-0e3a-b667" name="Repulsor Executioner" hidden="false"/>
<categoryEntry id="59eb-2fd1-6cdc-fcc5" name="Relic" hidden="false"/>
<categoryEntry id="bee5-a02c-aa2f-3629" name="Deimos Pattern Relic Predator" hidden="false"/>
<categoryEntry id="1a6f-4809-f865-51f1" name="Deimos Pattern Vindicator Laser Destroyer" hidden="false"/>
<categoryEntry id="6062-c46a-e6e4-f4ce" name="Infernum Pattern Razorback" hidden="false"/>
<categoryEntry id="95fa-c423-b96c-2b77" name="Relic Land Raider Proteus" hidden="false"/>
<categoryEntry id="31da-f4dc-c4af-d375" name="Land Raider Helios" hidden="false"/>
<categoryEntry id="7b45-f0fd-5bd0-b0f8" name="Termite Assault Drill" hidden="false"/>
<categoryEntry id="0c73-1673-d802-4934" name="Land Raider Prometheus" hidden="false"/>
<categoryEntry id="4280-1d51-88bb-d6b1" name="Land Raider Achilles" hidden="false"/>
<categoryEntry id="f37a-471b-348e-7948" name="Relic Sicaran Battle Tank" hidden="false"/>
<categoryEntry id="a290-a223-cbc3-ea86" name="Sicaran" hidden="false"/>
<categoryEntry id="7200-a5e9-6149-0c95" name="Relic Sicaran Venator Tank Destroyer" hidden="false"/>
<categoryEntry id="c097-53eb-90e6-4731" name="Relic Sicaran Punisher Assault Tank" hidden="false"/>
<categoryEntry id="b539-d749-cdea-00b5" name="Relic Spartan Assault Tank" hidden="false"/>
<categoryEntry id="ed0b-edb6-8cd7-a32e" name="Relic Typhon Heavy Siege Tank" hidden="false"/>
<categoryEntry id="f0b3-9ae5-099c-7966" name="Relic Cerberus Heavy Tank Destroyer" hidden="false"/>
<categoryEntry id="def1-2065-698e-d8cb" name="Relic Fellblade Super-heavy Tank" hidden="false"/>
<categoryEntry id="7572-eb65-127c-9491" name="Relic Falchion Super-heavy Tank Destroyer" hidden="false"/>
<categoryEntry id="b386-a25a-d90a-0ffb" name="Mastodon Super-heavy Siege Transport" hidden="false"/>
<categoryEntry id="7aea-0032-be80-e2e4" name="Astraeus Super-heavy Tank" hidden="false"/>
<categoryEntry id="13ca-63f8-31a2-41c8" name="Mortis Dreadnought" hidden="false"/>
<categoryEntry id="6438-1752-02ea-8a89" name="Siege Dreadnought" hidden="false"/>
<categoryEntry id="b81e-3f4a-bfeb-9f23" name="Contemptor Mortis Dreadnought" hidden="false"/>
<categoryEntry id="0f9d-7dd8-3bd9-4629" name="Chaplain Venerable Dreadnought" hidden="false"/>
<categoryEntry id="2d04-056c-3d93-ae94" name="Relic Contemptor Dreadnought" hidden="false"/>
<categoryEntry id="d3c7-2e72-bea3-b2fb" name="Relic Deredeo Dreadnought" hidden="false"/>
<categoryEntry id="03d6-bb95-4f59-bfdd" name="Relic Leviathan Dreadnought" hidden="false"/>
<categoryEntry id="dc6a-d79b-8a2c-d193" name="Land Speeder Tempests" hidden="false"/>
<categoryEntry id="20d5-12d7-49fa-7204" name="Relic Javelin Attack Speeder" hidden="false"/>
<categoryEntry id="df80-5cb2-d54e-d341" name="Xiphon Interceptor" hidden="false"/>
<categoryEntry id="f53c-242d-7f50-17ad" name="Storm Eagle Assault Gunship" hidden="false"/>
<categoryEntry id="fb24-cf05-98b5-bef6" name="Storm Eagle Gunship" hidden="false"/>
<categoryEntry id="94e3-22a7-8397-a720" name="ROC Pattern" hidden="false"/>
<categoryEntry id="926a-6459-f629-9aec" name="Faction: Minotaurs" hidden="false"/>
<categoryEntry id="ca88-96ab-39e1-7c14" name="Fire Raptor Assault Gunship" hidden="false"/>
<categoryEntry id="d7d7-6c8d-295b-5eb2" name="Caestus Assault Ram" hidden="false"/>
<categoryEntry id="d37e-2d9b-8289-2f0d" name="Thunderhawk Assault Gunship" hidden="false"/>
<categoryEntry id="01ec-871d-8bd8-490d" name="Thunderhawk Transporter" hidden="false"/>
<categoryEntry id="664f-44be-9f03-b495" name="Sokar Pattern Stormbird" hidden="false"/>
<categoryEntry id="e5e9-e07b-21d3-ee64" name="Damocles Command Rhino" hidden="false"/>
<categoryEntry id="8753-c23a-89f4-c7b4" name="Whirlwind Hyperios" hidden="false"/>
<categoryEntry id="5e1b-cbdb-58e4-2486" name="Relic Whirlwind Scorpius" hidden="false"/>
<categoryEntry id="aabe-dc00-ecc1-30b7" name="Rapier Carrier" hidden="false"/>
<categoryEntry id="c463-947c-03d6-fc55" name="Tarantula Sentry Gun" hidden="false"/>
<categoryEntry id="20c6-9ea7-9999-0c33" name="Gun Emplacement" hidden="false"/>
<categoryEntry id="6ded-477c-24e8-615d" name="Tarantula Air Defence Battery" hidden="false"/>
<categoryEntry id="3e80-99b8-7fcd-938b" name="Lucius Pattern Dreadnought Drop Pod" hidden="false"/>
<categoryEntry id="7c35-bdb0-7b2a-fc91" name="Deathstorm Drop Pod" hidden="false"/>
<categoryEntry id="f431-a607-c4b6-ec52" name="Castellum Stronghold" hidden="false"/>
<categoryEntry id="5faf-8c0d-d2cb-0eac" name="Tacticus Bunker" hidden="false"/>
<categoryEntry id="c043-23f5-2efa-be0c" name="Bunker Annex" hidden="false"/>
<categoryEntry id="a6ce-39ae-08f2-df62" name="Incursor Squad" hidden="false"/>
<categoryEntry id="82e5-3102-8d10-1cb7" name="Invictor Tactical Warsuit" hidden="false"/>
<categoryEntry id="3008-0f00-5961-31b7" name="Impulsor" publicationId="8df9-0b3e-abea-3c15" hidden="false"/>
<categoryEntry id="1a8c-3bcd-b407-c487" name="Relic Sicaran Arcus Strike Tank" hidden="false"/>
<categoryEntry id="e51f-9585-c82b-64fc" name="Relic Sicaran Omega Tank Destroyer" hidden="false"/>
</categoryEntries>
<rules>
<rule id="d3fe-d179-4b39-60b7" name="And They Shall Know No Fear" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c2bc-37e7-468c-5e76" type="instanceOf"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8ba0-7df9-3f27-d4b1" type="instanceOf"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0d22-806b-bfc5-db54" type="instanceOf"/>
</conditions>
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5642-ce25-4f9d-5cb3" type="instanceOf"/>
<condition field="selections" scope="force" value="3.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="unit" type="lessThan"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8f70-4411-2a13-96bf" type="instanceOf"/>
<condition field="selections" scope="force" value="3.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="unit" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<description>Re-roll failed Morale tests taken for ADEPTUS ASTARTES units in this Detachment.</description>
</rule>
</rules>
<sharedSelectionEntries>
<selectionEntry id="1fa2-88c4-2c7e-5d33" name="Tactical Squad" publicationId="8df9-0b3e-abea-3c15" hidden="false" collective="false" import="true" type="unit">
<infoLinks>
<infoLink id="b1c0-2ddd-f938-c4d4" name="Marine Profile" hidden="false" targetId="9fd5-e263-b9aa-02b7" type="profile">
<modifiers>
<modifier type="set" field="name" value="Tactical Squad"/>
</modifiers>
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="1fa2-88c4-2c7e-5d33" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="b387-d691-5e15-e5cc" type="equalTo"/>
</conditions>
<modifiers>
<modifier type="increment" field="ddfe-6a9e-32c1-a51c" value="1"/>
<modifier type="increment" field="7c7f-f763-1f39-410c" value="1"/>
</modifiers>
</modifierGroup>
</modifierGroups>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="7c21-a83f-0872-b1ed" name="Faction: Imperium" hidden="false" targetId="e30a-8f35-5fe6-534d" primary="false"/>
<categoryLink id="f9dc-10ce-3958-04b9" name="Faction: Adeptus Astartes" hidden="false" targetId="6268-f517-c933-bf19" primary="false"/>
<categoryLink id="46c4-aaf3-baa3-d820" name="Infantry" hidden="false" targetId="2d6e-c03a-7a58-74ce" primary="false"/>
<categoryLink id="ddb1-b366-3625-2e61" name="Light" hidden="false" targetId="7eb1-73ba-2de4-ca9b" primary="false"/>
<categoryLink id="457c-2544-05c0-171e" name="Tactical Squad" hidden="false" targetId="51a9-73ff-29ec-793c" primary="false"/>
<categoryLink id="470e-47da-55ab-868a" name="New CategoryLink" hidden="false" targetId="4182-4f4b-94dc-40d9" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="fca2-f817-1b0f-415e" name="Weapons" hidden="true" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="1fa2-88c4-2c7e-5d33" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="b387-d691-5e15-e5cc" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c055-7a57-29c8-3796" type="max"/>
</constraints>
<entryLinks>
<entryLink id="98e2-90ab-24e3-e1c2" name="Grav-Cannon" hidden="false" collective="false" import="true" targetId="2767-582b-0ce4-bab4" type="selectionEntry">
<modifiers>
<modifier type="set" field="1466-da3f-0d27-dace" value="1.0"/>
</modifiers>
</entryLink>
<entryLink id="ae41-f46f-7afb-d652" name="Heavy Bolter" hidden="false" collective="false" import="true" targetId="5049-c0b5-625c-a7af" type="selectionEntry">
<modifiers>
<modifier type="set" field="1466-da3f-0d27-dace" value="1.0"/>
</modifiers>
</entryLink>
<entryLink id="0da6-4422-d1da-0009" name="Lascannon" hidden="false" collective="false" import="true" targetId="dd55-a2c1-238b-569f" type="selectionEntry">
<modifiers>
<modifier type="set" field="1466-da3f-0d27-dace" value="1.0"/>
</modifiers>
</entryLink>
<entryLink id="cd9a-7035-7d1b-9132" name="Missile Launcher" hidden="false" collective="false" import="true" targetId="a524-9ae0-16b9-cd61" type="selectionEntry">
<modifiers>
<modifier type="set" field="1466-da3f-0d27-dace" value="1.0"/>
</modifiers>
</entryLink>
<entryLink id="629f-06d3-c70b-a434" name="Multi-melta" hidden="false" collective="false" import="true" targetId="1a13-f0be-ca42-c44b" type="selectionEntry">
<modifiers>
<modifier type="set" field="1466-da3f-0d27-dace" value="1.0"/>
</modifiers>
</entryLink>
<entryLink id="8fd7-3688-7100-7f7e" name="Plasma Cannon" hidden="false" collective="false" import="true" targetId="257b-2e43-40d4-aebe" type="selectionEntry">
<modifiers>
<modifier type="set" field="1466-da3f-0d27-dace" value="1.0"/>
</modifiers>
</entryLink>
<entryLink id="80b1-ae9b-e53e-cb73" name="Heavy Flamer" hidden="false" collective="false" import="true" targetId="46e7-d278-1268-caaf" type="selectionEntry">
<modifiers>
<modifier type="set" field="1466-da3f-0d27-dace" value="1.0"/>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="primary-catalogue" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="71e2-8d92-4ff5-4acb" type="notInstanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="31ba-5c58-59f7-afbf" name="Boltguns" hidden="false" collective="false" import="true" targetId="2d61-a814-63d8-0398" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4fea-b02e-28c5-4be8" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="aff0-2e55-54a9-eae7" type="min"/>
</constraints>
</entryLink>
<entryLink id="e011-a197-e7e0-7dea" name="5 - 10 models" hidden="false" collective="false" import="true" targetId="dfca-1772-18d0-ab91" type="selectionEntryGroup"/>
<entryLink id="f8e6-0cd4-ed49-e6d1" name="Close Combat Weapons" hidden="false" collective="false" import="true" targetId="6144-aa85-b770-2f33" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9679-9134-c822-1095" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6d89-1cc4-09c3-29c5" type="min"/>
</constraints>
</entryLink>
<entryLink id="6c8d-d932-215f-c39b" name="Commander" hidden="false" collective="false" import="true" targetId="7347-5716-355f-9165" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b91b-0612-96f4-e29d" name="5 Models" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b387-d691-5e15-e5cc" name="10 Models" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="09fa-ab05-7be5-b266" name="Scout Squad" publicationId="8df9-0b3e-abea-3c15" hidden="false" collective="false" import="true" type="unit">
<infoLinks>
<infoLink id="e40f-2759-3cd2-e9c1" name="Infiltrators" hidden="false" targetId="f07d-6c22-ac83-604c" type="rule"/>
<infoLink id="faf3-2364-b491-0a17" name="Marine Profile" hidden="false" targetId="9fd5-e263-b9aa-02b7" type="profile">
<modifiers>
<modifier type="set" field="name" value="Scout Squad"/>
</modifiers>
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="09fa-ab05-7be5-b266" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="b387-d691-5e15-e5cc" type="equalTo"/>
</conditions>
<modifiers>
<modifier type="increment" field="ddfe-6a9e-32c1-a51c" value="1"/>
<modifier type="increment" field="7c7f-f763-1f39-410c" value="1"/>
</modifiers>
</modifierGroup>
</modifierGroups>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="2308-86d3-70a0-273f" name="Faction: Imperium" hidden="false" targetId="e30a-8f35-5fe6-534d" primary="false"/>
<categoryLink id="85af-351a-e6f7-1e80" name="Faction: Adeptus Astartes" hidden="false" targetId="6268-f517-c933-bf19" primary="false"/>
<categoryLink id="47b0-88c7-eb79-db50" name="Infantry" hidden="false" targetId="2d6e-c03a-7a58-74ce" primary="false"/>
<categoryLink id="050a-7655-3069-7a00" name="Light" hidden="false" targetId="7eb1-73ba-2de4-ca9b" primary="false"/>
<categoryLink id="1d17-4f17-4f23-5839" name="New CategoryLink" hidden="false" targetId="4182-4f4b-94dc-40d9" primary="true"/>
<categoryLink id="e64f-a8f2-30fe-e520" name="Scout" hidden="false" targetId="27c2-0764-4952-e1de" primary="false"/>
<categoryLink id="511b-152c-672f-4d22" name="Scout Squad" hidden="false" targetId="625f-e477-e807-1451" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="54a6-a0a0-d093-62d5" name="Heavy Weapon" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c2ee-7700-d188-2599" type="max"/>
</constraints>
<entryLinks>
<entryLink id="dbb0-7348-f2e3-a377" name="Heavy Bolter" hidden="false" collective="false" import="true" targetId="5049-c0b5-625c-a7af" type="selectionEntry">
<modifiers>
<modifier type="set" field="1466-da3f-0d27-dace" value="1.0"/>
</modifiers>
</entryLink>
<entryLink id="e8b0-75b3-40b4-bbcd" name="Missile Launcher" hidden="false" collective="false" import="true" targetId="a524-9ae0-16b9-cd61" type="selectionEntry">
<modifiers>
<modifier type="set" field="1466-da3f-0d27-dace" value="1.0"/>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="32ce-8c95-986f-dde5" name="Weapons" hidden="false" collective="false" import="true" defaultSelectionEntryId="522d-a069-6dc7-4d34">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5d53-9216-dda1-db79" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b940-8764-4fb2-20b2" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="6af6-5744-606a-5dd4" name="CCW & Sniper" 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="8428-b1f7-34d0-4c34" type="max"/>
</constraints>
<infoLinks>
<infoLink id="a6b5-9ded-9845-fd0a" name="Stealth" hidden="false" targetId="b133-8e04-3e7b-9fd6" type="profile"/>
</infoLinks>
<selectionEntries>
<selectionEntry id="6696-5594-d73a-6128" name="Sniper Rifles" 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="915d-4500-cc10-92fe" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b3c9-f41b-e04d-fb61" type="max"/>
</constraints>
<profiles>
<profile id="6add-9551-3bd2-f572" name="Sniper Rifles" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Small Arms</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">36"</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">User</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">7+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">9+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">Sniper</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="b1df-0a07-7386-4d0e" name="Sniper" hidden="false" targetId="d452-1a22-2e0c-7a9e" type="rule"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="dec3-4266-6e39-c519" name="Close Combat Weapons" hidden="false" collective="false" import="true" targetId="6144-aa85-b770-2f33" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4bb4-b9f5-f34b-454d" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3638-1548-d77b-bc39" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="1.0"/>
</costs>
</selectionEntry>
<selectionEntry id="522d-a069-6dc7-4d34" name="Scout Weapons & Combat Knifes" 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="f02d-ac4e-1e14-d40a" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="0051-8f06-2a6b-5631" name="Scout Weapons" 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="52b9-d910-3f98-449f" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="58d8-119f-041e-6d83" type="max"/>
</constraints>
<profiles>
<profile id="de99-0104-2f61-77b4" name="Scout Weapons" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Small Arms</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">24"</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">User</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">7+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">9+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="63a3-4311-b70d-93b1" name="Combat Knifes" 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="46a3-ec7e-affb-8940" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a365-8743-365d-480c" type="max"/>
</constraints>
<profiles>
<profile id="b753-1aec-ad17-d23d" name="Combat Knifes" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Melee</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">Melee</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">User</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">6+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">9+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="1f83-c93b-6ed1-211c" name="Boltguns" hidden="false" collective="false" import="true" targetId="2d61-a814-63d8-0398" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5f3f-5dcf-9053-6275" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b9b7-e7e6-4d54-0eb5" type="min"/>
</constraints>
</entryLink>
<entryLink id="9c40-db6c-9bbc-3266" name="5 - 10 models" hidden="false" collective="false" import="true" targetId="dfca-1772-18d0-ab91" type="selectionEntryGroup"/>
<entryLink id="614e-a6b1-f6b0-f484" name="Commander" hidden="false" collective="false" import="true" targetId="7347-5716-355f-9165" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a537-d541-d6d8-b998" name="Intercessor Squad" publicationId="8df9-0b3e-abea-3c15" hidden="false" collective="false" import="true" type="unit">
<infoLinks>
<infoLink id="8bb0-d920-1bda-b1d2" name="Primaris Profile" hidden="false" targetId="b2c7-a677-95c3-6c20" type="profile">
<modifiers>
<modifier type="set" field="name" value="Intercessor Squad"/>
</modifiers>
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="a537-d541-d6d8-b998" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b387-d691-5e15-e5cc" type="equalTo"/>
</conditions>
<modifiers>
<modifier type="set" field="ddfe-6a9e-32c1-a51c" value="2"/>
<modifier type="set" field="7c7f-f763-1f39-410c" value="4"/>
</modifiers>
</modifierGroup>
</modifierGroups>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="0899-a39a-e939-7fc0" name="Faction: Adeptus Astartes" hidden="false" targetId="6268-f517-c933-bf19" primary="false"/>
<categoryLink id="03b9-c906-148e-d2da" name="Faction: Imperium" hidden="false" targetId="e30a-8f35-5fe6-534d" primary="false"/>
<categoryLink id="ceac-6497-e5ed-f15d" name="Intercessor Squad" hidden="false" targetId="8d67-81da-d95d-adb3" primary="false"/>
<categoryLink id="2fdc-f303-2240-fce3" name="Infantry" hidden="false" targetId="2d6e-c03a-7a58-74ce" primary="false"/>
<categoryLink id="db43-fc68-d7c7-3dd8" name="Light" hidden="false" targetId="7eb1-73ba-2de4-ca9b" primary="false"/>
<categoryLink id="439f-1db8-0f7b-7131" name="New CategoryLink" hidden="false" targetId="4182-4f4b-94dc-40d9" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="211d-cbe4-fb86-7772" name="Close Combat Weapons" 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="09d2-598a-56cc-c67f" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6fc2-b421-734e-4cb0" type="max"/>
</constraints>
<profiles>
<profile id="773d-e06f-8693-c3f3" name="Close Combat Weapons" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Melee</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">Melee</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">x2</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">7+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">9+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="9f43-a66b-69ac-e999" name="5 - 10 models" hidden="false" collective="false" import="true" targetId="dfca-1772-18d0-ab91" type="selectionEntryGroup"/>
<entryLink id="cc7f-9a3a-e6e5-46aa" name="Bolt Rifles" hidden="false" collective="false" import="true" targetId="29cb-36f3-3f72-ac2d" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="aded-8738-0e5a-fdb5" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ad08-1ad7-1ebe-fe0a" type="max"/>
</constraints>
</entryLink>
<entryLink id="278f-b15d-9906-8c13" name="Commander" hidden="false" collective="false" import="true" targetId="7347-5716-355f-9165" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="29cb-36f3-3f72-ac2d" name="Bolt Rifles" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="name" value="Deathwatch Bolt Rifles">
<conditions>
<condition field="selections" scope="primary-catalogue" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="e02e-4d8f-946c-6550" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="0421-2114-e8ba-1929" name="Bolt Rifles" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="primary-catalogue" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="e02e-4d8f-946c-6550" type="instanceOf"/>
</conditions>
<modifiers>
<modifier type="set" field="bea7-7040-8485-6f0f" value="36""/>
<modifier type="set" field="4b6c-996a-d317-affb" value="9+"/>
<modifier type="set" field="name" value="Deathwatch Bolt Rifles"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Small Arms</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">30"</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">User</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">5+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">8+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">Rapid Fire</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="9cf6-a2b4-c85a-fb81" name="Rapid Fire" hidden="false" targetId="5b2f-f499-bdcd-e45d" type="rule"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="de33-a08d-1882-154e" name="Infiltrator Squad" publicationId="8df9-0b3e-abea-3c15" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="98fb-45c5-0572-043e" name="Omni-scramblers" hidden="false" typeId="f075-616f-79da-32a6" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="4493-9fa3-8c30-866f">Enemy units cannot be set up within 12" of this unit during the Set Up Reinforcements step.</characteristic>
</characteristics>
</profile>
</profiles>
<rules>
<rule id="9844-7607-9480-c818" name="Infiltrator Squad" hidden="false"/>
</rules>
<infoLinks>
<infoLink id="d0bc-550e-9f7b-628f" name="Primaris Profile" hidden="false" targetId="b2c7-a677-95c3-6c20" type="profile">
<modifiers>
<modifier type="set" field="name" value="Infiltrator Squad"/>
</modifiers>
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="de33-a08d-1882-154e" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b387-d691-5e15-e5cc" type="equalTo"/>
</conditions>
<modifiers>
<modifier type="set" field="ddfe-6a9e-32c1-a51c" value="2"/>
<modifier type="set" field="7c7f-f763-1f39-410c" value="4"/>
</modifiers>
</modifierGroup>
</modifierGroups>
</infoLink>
<infoLink id="d01f-b582-4c65-e635" name="Infiltrators" hidden="false" targetId="f07d-6c22-ac83-604c" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c7a9-faff-b5fd-bce2" name="Faction: Adeptus Astartes" hidden="false" targetId="6268-f517-c933-bf19" primary="false"/>
<categoryLink id="72f5-32db-284e-9e58" name="Faction: Imperium" hidden="false" targetId="e30a-8f35-5fe6-534d" primary="false"/>
<categoryLink id="1c58-68b6-9867-280f" name="Infantry" hidden="false" targetId="2d6e-c03a-7a58-74ce" primary="false"/>
<categoryLink id="501b-eaca-762a-2b8d" name="Light" hidden="false" targetId="7eb1-73ba-2de4-ca9b" primary="false"/>
<categoryLink id="0cdd-6e00-a0e6-edf5" name="New CategoryLink" hidden="false" targetId="4182-4f4b-94dc-40d9" primary="true"/>
<categoryLink id="3171-c53e-b0a7-5b37" name="Infiltrator Squad" hidden="false" targetId="aa96-14a7-0694-f560" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="e6cc-f0bd-2a29-e519" name="Close Combat Weapons" 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="7f39-a727-ff7e-6565" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c61e-0059-ac78-ca9a" type="max"/>
</constraints>
<profiles>
<profile id="9e9f-5d32-f333-2559" name="Close Combat Weapons" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Melee</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">Melee</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">x2</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">7+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">9+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="646c-2b74-a8d8-778a" name="5 - 10 models" hidden="false" collective="false" import="true" targetId="dfca-1772-18d0-ab91" type="selectionEntryGroup"/>
<entryLink id="82cf-edcd-e750-faa7" name="Marksman Bolt Carbines" hidden="false" collective="false" import="true" targetId="8a64-b315-e590-4e2c" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f1f0-c5f5-4b6e-d3e2" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="901d-909a-a609-2411" type="max"/>
</constraints>
</entryLink>
<entryLink id="5385-11f8-11f9-97f3" name="Commander" hidden="false" collective="false" import="true" targetId="7347-5716-355f-9165" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8a64-b315-e590-4e2c" name="Marksman Bolt Carbines" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="4271-2e0f-22c4-f520" name="Marksman Bolt Carbines" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Small Arms</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">24"</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">User</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">6+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">8+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">Rapid Fire</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c70d-d1a0-129f-d1fb" name="Rapid Fire" hidden="false" targetId="5b2f-f499-bdcd-e45d" type="rule"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b371-3bcc-b91b-03e6" name="Chaplain" publicationId="8df9-0b3e-abea-3c15" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="80ab-e7dc-8d30-9762" name="Chaplain" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="b371-3bcc-b91b-03e6" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="cdf9-175a-b31b-44a1" type="equalTo"/>
</conditions>
<modifiers>
<modifier type="set" field="606d-344a-bc3d-9dce" value="12""/>
</modifiers>
</modifierGroup>
<modifierGroup>
<conditions>
<condition field="selections" scope="b371-3bcc-b91b-03e6" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c8b5-9ad5-d8df-45f2" type="equalTo"/>
</conditions>
<modifiers>
<modifier type="set" field="606d-344a-bc3d-9dce" value="14""/>
</modifiers>
</modifierGroup>
<modifierGroup>
<conditions>
<condition field="selections" scope="b371-3bcc-b91b-03e6" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8b15-a0be-8cba-a7fb" type="equalTo"/>
</conditions>
<modifiers>
<modifier type="set" field="606d-344a-bc3d-9dce" value="5""/>
<modifier type="set" field="a56f-38ae-3917-aadc" value="4+"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">6"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">2+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">3+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">1</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">1</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">7</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">5+</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="f0c0-bad2-ae7a-d4fd" name="Chaplain" hidden="false" targetId="89c1-3354-3e0d-279e" primary="false"/>
<categoryLink id="acf5-3bc4-df4d-69f0" name="Character" hidden="false" targetId="4b9a-33b1-3b42-e3f8" primary="false"/>
<categoryLink id="2f20-84b1-ff65-c0bd" name="Faction: Adeptus Astartes" hidden="false" targetId="6268-f517-c933-bf19" primary="false"/>
<categoryLink id="c2e3-5ed0-7253-c134" name="Faction: Imperium" hidden="false" targetId="e30a-8f35-5fe6-534d" primary="false"/>
<categoryLink id="2d3e-dd92-2f87-e943" name="HQ" hidden="false" targetId="08d9-07e5-2b35-57b0" primary="true"/>
<categoryLink id="b77b-d4f2-32f7-1f86" name="Priest" hidden="false" targetId="0642-3d2d-db41-9ddd" primary="false"/>
<categoryLink id="6bfa-a285-e8d7-a53b" name="Light" hidden="false" targetId="7eb1-73ba-2de4-ca9b" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="34e3-f30e-8a42-66d9" name="Wargear" hidden="false" collective="false" import="true" defaultSelectionEntryId="8c6e-3c1b-4ed1-d993">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="20e8-0f55-27b8-b047" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f64d-25a3-397c-f46a" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="8c6e-3c1b-4ed1-d993" name="No wargear" hidden="false" collective="false" import="true" type="upgrade">
<categoryLinks>
<categoryLink id="5090-3d8e-bc81-076c" name="Infantry" hidden="false" targetId="2d6e-c03a-7a58-74ce" primary="false"/>
</categoryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="dc15-044c-9827-4138" name="Jump Pack" hidden="false" collective="false" import="true" targetId="54ae-a37e-e67e-54e8" type="selectionEntry">
<categoryLinks>
<categoryLink id="0876-01d2-4319-186a" name="Infantry" hidden="false" targetId="2d6e-c03a-7a58-74ce" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="5c52-e905-faf3-fde6" name="Bike" hidden="false" collective="false" import="true" targetId="30e3-b6c8-bb27-a512" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="primary-catalogue" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="e02e-4d8f-946c-6550" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="7fba-2973-ecc6-4cdb" name="Terminator Armour" hidden="false" collective="false" import="true" targetId="8b15-a0be-8cba-a7fb" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="1895-5ba0-e89e-eefe" name="Commander" hidden="false" collective="false" import="true" targetId="7347-5716-355f-9165" type="selectionEntry"/>
<entryLink id="7737-72bc-1faf-71ad" name="Crozius Arcanum" hidden="false" collective="false" import="true" targetId="6b0f-d313-fbcc-8c90" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="16a3-aea3-604e-a59a" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8ed5-a202-dc2c-b654" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6b0f-d313-fbcc-8c90" name="Crozius Arcanum" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="92d1-cb46-01cb-1f13" name="Crozius Arcanum" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Melee</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">Melee</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">User</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">8+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">8+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="54ae-a37e-e67e-54e8" name="Jump Pack" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="f6b0-4959-4d45-912d" name="Deep Strike" hidden="false" targetId="8fc3-5045-3aa5-00ce" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d6d9-d711-0a51-cfdb" name="Jump Pack" hidden="false" targetId="cdf9-175a-b31b-44a1" primary="false"/>
<categoryLink id="7421-be3c-2022-6b08" name="Fly" hidden="false" targetId="b408-d848-fa84-cfb9" primary="false"/>
<categoryLink id="5e77-f199-5817-5d6d" name="Infantry" hidden="false" targetId="2d6e-c03a-7a58-74ce" primary="false"/>
</categoryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="2.0"/>
</costs>
</selectionEntry>
<selectionEntry id="30e3-b6c8-bb27-a512" name="Bike" 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="e996-0264-c137-968c" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="6d46-c8ab-7a02-fb06" name="Biker" hidden="false" targetId="c8b5-9ad5-d8df-45f2" primary="false"/>
</categoryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="1.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7813-d97a-0510-14e6" name="Primaris Chaplain" publicationId="8df9-0b3e-abea-3c15" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="a692-be3a-1580-7e0d" name="Primaris Chaplain" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">6"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">2+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">3+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">1</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">1</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">7</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">5+</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="68be-be9f-e149-9dd2" name="Chaplain" hidden="false" targetId="89c1-3354-3e0d-279e" primary="false"/>
<categoryLink id="ae96-eb4d-ac2e-a8a3" name="Character" hidden="false" targetId="4b9a-33b1-3b42-e3f8" primary="false"/>
<categoryLink id="96b5-dd1c-9e30-2dcc" name="Faction: Adeptus Astartes" hidden="false" targetId="6268-f517-c933-bf19" primary="false"/>
<categoryLink id="2a98-92ef-9784-561c" name="Faction: Imperium" hidden="false" targetId="e30a-8f35-5fe6-534d" primary="false"/>
<categoryLink id="eef1-0beb-017c-0674" name="HQ" hidden="false" targetId="08d9-07e5-2b35-57b0" primary="true"/>
<categoryLink id="51ec-3fa0-8d7f-19cf" name="Priest" hidden="false" targetId="0642-3d2d-db41-9ddd" primary="false"/>
<categoryLink id="00e1-dc19-44c9-f82f" name="Light" hidden="false" targetId="7eb1-73ba-2de4-ca9b" primary="false"/>
<categoryLink id="6fd0-aff4-1593-a913" name="Primaris" hidden="false" targetId="34ee-2cee-93bf-b3c3" primary="false"/>
<categoryLink id="273d-fca3-d823-c871" name="Infantry" hidden="false" targetId="2d6e-c03a-7a58-74ce" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="f6a0-285c-0f74-1127" name="Crozius Arcanum" 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="1856-101c-0962-06b0" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fa94-9297-26aa-0bbd" type="max"/>
</constraints>
<profiles>
<profile id="1af5-d8fc-e5c1-2d45" name="Crozius Arcanum" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Melee</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">Melee</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">User</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">7+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">8+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="c9ea-ea99-0e1a-735b" name="Commander" hidden="false" collective="false" import="true" targetId="7347-5716-355f-9165" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="5.0"/>
</costs>
</selectionEntry>
<selectionEntry id="791d-6d90-4c77-c0ed" name="Librarian" publicationId="8df9-0b3e-abea-3c15" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="4b4e-eb8e-9be3-818d" name="Librarian" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="791d-6d90-4c77-c0ed" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="cdf9-175a-b31b-44a1" type="equalTo"/>
</conditions>
<modifiers>
<modifier type="set" field="606d-344a-bc3d-9dce" value="12""/>
</modifiers>
</modifierGroup>
<modifierGroup>
<conditions>
<condition field="selections" scope="791d-6d90-4c77-c0ed" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c8b5-9ad5-d8df-45f2" type="equalTo"/>
</conditions>
<modifiers>
<modifier type="set" field="606d-344a-bc3d-9dce" value="14""/>
</modifiers>
</modifierGroup>
<modifierGroup>
<conditions>
<condition field="selections" scope="791d-6d90-4c77-c0ed" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="3726-f1d3-1b96-0eb0" type="equalTo"/>
</conditions>
<modifiers>
<modifier type="set" field="606d-344a-bc3d-9dce" value="5""/>
<modifier type="set" field="a56f-38ae-3917-aadc" value="4+"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">6"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">3+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">3+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">1</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">1</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">7</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">6+</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="3313-0b79-e19e-303d" name="Character" hidden="false" targetId="4b9a-33b1-3b42-e3f8" primary="false"/>
<categoryLink id="ca3d-8ff2-dcde-452a" name="Faction: Adeptus Astartes" hidden="false" targetId="6268-f517-c933-bf19" primary="false"/>
<categoryLink id="a7ef-fe51-1195-ea72" name="Faction: Imperium" hidden="false" targetId="e30a-8f35-5fe6-534d" primary="false"/>
<categoryLink id="d278-b52c-735b-6804" name="New CategoryLink" hidden="false" targetId="08d9-07e5-2b35-57b0" primary="true"/>
<categoryLink id="aecd-bf1e-d5da-9322" name="Librarian" hidden="false" targetId="e934-b1d0-35ff-8cc4" primary="false"/>
<categoryLink id="0899-cd02-ddde-435d" name="Psyker" hidden="false" targetId="4de4-bea8-4f0e-7f9c" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="892b-994c-0ab8-8e28" name="Wargear" hidden="false" collective="false" import="true" defaultSelectionEntryId="cc69-405d-05af-7960">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e9e0-14ee-25af-bb3c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3c0b-4bd3-ad05-412e" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="cc69-405d-05af-7960" name="No wargear" hidden="false" collective="false" import="true" type="upgrade">
<categoryLinks>
<categoryLink id="b39b-0c55-37e7-2a09" name="Infantry" hidden="false" targetId="2d6e-c03a-7a58-74ce" primary="false"/>
</categoryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="0dc3-dbf8-a75f-fdad" name="Jump Pack" hidden="false" collective="false" import="true" targetId="54ae-a37e-e67e-54e8" type="selectionEntry">
<categoryLinks>
<categoryLink id="ea18-32c0-7f40-ee8a" name="Infantry" hidden="false" targetId="2d6e-c03a-7a58-74ce" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="2355-a38b-5c67-7bba" name="Bike" hidden="false" collective="false" import="true" targetId="30e3-b6c8-bb27-a512" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="primary-catalogue" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="e02e-4d8f-946c-6550" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="6bd2-09db-f652-e766" name="Biker" hidden="false" targetId="c8b5-9ad5-d8df-45f2" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="ac1b-80fe-09a5-b829" name="Terminator Armor" hidden="false" collective="false" import="true" targetId="8b15-a0be-8cba-a7fb" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="d3f5-b7b9-4516-9461" name="Force Weapon" hidden="false" collective="false" import="true" targetId="8a00-30e2-127d-385a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fcf9-93c7-a9a9-4bc2" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3cc4-6551-194e-009c" type="max"/>
</constraints>
</entryLink>
<entryLink id="6375-0374-0852-fc6a" name="Commander" hidden="false" collective="false" import="true" targetId="7347-5716-355f-9165" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="3.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8a00-30e2-127d-385a" name="Force Weapon" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="6ebe-4819-ee4e-5645" name="Force Weapon" hidden="false" typeId="c9f1-094d-9681-28f3" typeName="Weapons">
<characteristics>
<characteristic name="Type" typeId="359f-19b3-6670-21f5">Melee</characteristic>
<characteristic name="Range" typeId="bea7-7040-8485-6f0f">Melee</characteristic>
<characteristic name="A" typeId="2883-af07-d4e8-d8d0">User</characteristic>
<characteristic name="SAP" typeId="74b1-f85d-ede5-c758">8+</characteristic>
<characteristic name="SAT" typeId="4b6c-996a-d317-affb">8+</characteristic>
<characteristic name="Abilities" typeId="61ff-d2ec-f13b-06fa">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8b15-a0be-8cba-a7fb" name="Terminator Armour" 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="8344-28b0-274a-4487" type="max"/>
</constraints>
<infoLinks>
<infoLink id="b125-6e2c-592d-8ce2" name="Deep Strike" hidden="false" targetId="8fc3-5045-3aa5-00ce" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5410-8a6a-e457-901d" name="Infantry" hidden="false" targetId="2d6e-c03a-7a58-74ce" primary="false"/>
<categoryLink id="56b4-7098-c83f-8974" name="Terminator" hidden="false" targetId="3726-f1d3-1b96-0eb0" primary="false"/>
</categoryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="2.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8896-4617-12f7-2495" name="Primaris Librarian" publicationId="8df9-0b3e-abea-3c15" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="e528-8ea9-0eb6-234e" name="Primaris Librarian" hidden="false" typeId="758b-2459-9a46-721a" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="606d-344a-bc3d-9dce">6"</characteristic>
<characteristic name="WS" typeId="e2a3-fade-c12d-860b">3+</characteristic>
<characteristic name="BS" typeId="bcfe-d5af-2691-5c77">3+</characteristic>
<characteristic name="A" typeId="ddfe-6a9e-32c1-a51c">1</characteristic>
<characteristic name="W" typeId="7c7f-f763-1f39-410c">1</characteristic>
<characteristic name="Ld" typeId="91b0-3d37-1843-1290">7</characteristic>
<characteristic name="Sv" typeId="a56f-38ae-3917-aadc">6+</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="ea01-c93c-3bc5-4f13" name="Character" hidden="false" targetId="4b9a-33b1-3b42-e3f8" primary="false"/>
<categoryLink id="259d-410f-8d22-f802" name="Faction: Adeptus Astartes" hidden="false" targetId="6268-f517-c933-bf19" primary="false"/>
<categoryLink id="e865-bc29-182e-b686" name="Faction: Imperium" hidden="false" targetId="e30a-8f35-5fe6-534d" primary="false"/>
<categoryLink id="9a2b-b41d-7a33-e1ca" name="New CategoryLink" hidden="false" targetId="08d9-07e5-2b35-57b0" primary="true"/>
<categoryLink id="f7dd-8be4-b358-0b85" name="Infantry" hidden="false" targetId="2d6e-c03a-7a58-74ce" primary="false"/>
<categoryLink id="cb3f-ce97-cff4-ce02" name="Librarian" hidden="false" targetId="e934-b1d0-35ff-8cc4" primary="false"/>
<categoryLink id="9ec9-e014-f88b-c36a" name="Light" hidden="false" targetId="7eb1-73ba-2de4-ca9b" primary="false"/>
<categoryLink id="dc84-31d6-8334-574f" name="Primaris" hidden="false" targetId="34ee-2cee-93bf-b3c3" primary="false"/>
<categoryLink id="6bfe-576e-ed94-4d81" name="Psyker" hidden="false" targetId="4de4-bea8-4f0e-7f9c" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="b61a-44ce-c623-7f5f" name="Force Weapon" hidden="false" collective="false" import="true" targetId="8a00-30e2-127d-385a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5dc3-f848-c9ba-2c4f" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d005-54fb-d559-f4ec" type="max"/>
</constraints>
</entryLink>
<entryLink id="a984-ce82-1be0-1ebf" name="Phobos Armor" hidden="false" collective="false" import="true" targetId="d44c-e9c9-d9b3-05f5" type="selectionEntry"/>
<entryLink id="b3bc-ffa2-d741-e3d5" name="Commander" hidden="false" collective="false" import="true" targetId="7347-5716-355f-9165" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="1466-da3f-0d27-dace" value="3.0"/>
</costs>
</selectionEntry>