generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Blackstone Constructs.cat
3270 lines (3267 loc) · 235 KB
/
Blackstone Constructs.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="1a76-7ee8-7be8-ad11" name="Blackstone Constructs" revision="4" battleScribeVersion="2.03" library="false" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="179" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<categoryEntries>
<categoryEntry id="d7fd-e2a2-d1e6-518f" name="Faction: Blackstone Constructs" hidden="false"/>
<categoryEntry id="8f82-24ca-1d43-d69b" name="Commander Drone" hidden="false"/>
<categoryEntry id="1ee6-96f6-701b-26a9" name="Control" hidden="false"/>
<categoryEntry id="1596-eaf8-0b44-c08f" name="Control Drone" hidden="false"/>
<categoryEntry id="f72b-91fd-dc13-5fbd" name="Spindle Drones" hidden="false"/>
<categoryEntry id="fc2c-e3f8-8abd-cd33" name="Guardian Drone" hidden="false"/>
<categoryEntry id="d2b0-1fa5-50e4-55f0" name="Longshot Drones" hidden="false"/>
<categoryEntry id="fb07-1888-de08-e4fe" name="Repeater Drone" hidden="false"/>
<categoryEntry id="1ae3-af9f-6862-a17a" name="Shockpiercer Drone" hidden="false"/>
<categoryEntry id="bdb8-8c4e-e09e-6b64" name="Breacher Drones" hidden="false"/>
<categoryEntry id="5e3e-fe30-1b90-5996" name="Outrider Drones" hidden="false"/>
<categoryEntry id="6469-dc27-3b3b-4151" name="Scout Drones" hidden="false"/>
<categoryEntry id="ee96-1efa-ccc6-7f4b" name="Suppressor Drone" hidden="false"/>
<categoryEntry id="22c0-150d-7726-375d" name="Mother Drone" hidden="false"/>
<categoryEntry id="0bc6-f743-0acb-3d49" name="Defenders Against the 13th" hidden="false"/>
<categoryEntry id="0050-9e60-d810-6f1c" name="Shattered Fortress" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="ab62-5d22-b849-52f4" name="Formation: Enduring Victory -3CP" hidden="false">
<categoryLinks>
<categoryLink id="63b5-8384-c42f-dbc4" name="Configuration" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="false"/>
<categoryLink id="7c1c-4921-439e-c045" name="Stratagems" hidden="false" targetId="c845-c72c-6afe-3fc2" primary="false"/>
<categoryLink id="40fd-2d0a-e277-6a4b" name="Troops" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="false"/>
<categoryLink id="633c-5fda-3b70-b04e" name="Elites" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="false"/>
<categoryLink id="7220-cfd8-353c-0be0" name="Heavy Support" hidden="false" targetId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6" primary="false"/>
<categoryLink id="1a63-d2da-5c19-a258" name="Lord of War" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="false"/>
</categoryLinks>
</forceEntry>
<forceEntry id="cc13-dd14-f621-a9bd" name="Formation: Intrusion First Response -3CP" hidden="false">
<rules>
<rule id="b7e5-8c30-ab0e-d849" name="First Line of Warning" hidden="false">
<description>Double the value of the points cost of each model in this Formation for determining the level of the Progressive Aggressiveness ability.</description>
</rule>
<rule id="6baf-9ddf-c41b-aa79" name="Where the Threat Is" hidden="false">
<description>Units in this formation must be deployed outside of your deployment zone, but more than 6” away from your opponent's deployment zone.</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="3fe1-6c41-1f4b-98a8" name="Configuration" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="false"/>
<categoryLink id="5158-d0a9-f597-0fd3" name="Stratagems" hidden="false" targetId="c845-c72c-6afe-3fc2" primary="false"/>
<categoryLink id="f9d8-a71d-b493-2a37" name="Fast Attack" hidden="false" targetId="c274d0b0-5866-44bc-9810-91c136ae7438" primary="false"/>
</categoryLinks>
</forceEntry>
<forceEntry id="1706-e6f4-42cc-56c8" name="Formation: The Three Witches -5CP" hidden="false">
<rules>
<rule id="2425-1391-044a-8c7f" name="Everything is Their Plan" hidden="false">
<description>Roll two D6s, noting which is which, every time an opponent uses a Stratagem; on a 6 on the first dice you gain 1 Command point, and on a 6 on the second dice the Stratagem costs 1 more Command point. If your opponent cannot pay this extra Command point then the Stratagem fails and no Command points are refunded.</description>
</rule>
<rule id="5459-8755-ae5e-1e95" name="Heads of the Witches" hidden="false">
<description>Your opponent gains two victory points for slaying each model in this Formation. If at the end of the battle, this formation is wiped out, your opponent gains twice the victory points.</description>
</rule>
<rule id="264d-0cd5-a9f9-841b" name="Sift the Code of the Future" hidden="false">
<description>At the start of each of your Command phases you gain a number of Command points equal to the number of models in this Formation that are still alive.</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="c36c-c34b-e923-e824" name="Configuration" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="false"/>
<categoryLink id="2e9d-cff1-2bd3-24ea" name="Stratagems" hidden="false" targetId="c845-c72c-6afe-3fc2" primary="false"/>
<categoryLink id="da86-d508-d8c3-9cb0" name="HQ" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="false"/>
<categoryLink id="69d3-ae93-3552-e936" name="Warlord" hidden="false" targetId="ae09-117e-a6fa-316b" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="45d5-5944-7568-1175" type="min"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<selectionEntries>
<selectionEntry id="6d30-19a3-3cf5-e01f" name="Commander Drone" hidden="false" collective="false" import="true" type="model">
<modifierGroups>
<modifierGroup>
<comment>Spec Det keywords</comment>
<modifiers>
<modifier type="add" field="category" value="0bc6-f743-0acb-3d49">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d033-6a0b-caed-f981" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="0050-9e60-d810-6f1c">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f63b-764a-9391-11f7" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
<modifierGroup>
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1706-e6f4-42cc-56c8" type="instanceOf"/>
</conditions>
<modifiers>
<modifier type="set" field="9ccf-b57d-32ca-e62d" value="3.0"/>
<modifier type="set" field="fae5-1f8a-7a6b-a89e" value="3.0"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fae5-1f8a-7a6b-a89e" type="max"/>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9ccf-b57d-32ca-e62d" type="min"/>
</constraints>
<profiles>
<profile id="7f5d-a49f-fbb0-53d2" name="Commander Drone" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">5</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">5</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">5</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">10</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="5b44-7ccc-c664-9009" name="Swarm Commander (Aura)" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">When a BLACKSTONE CONSTRUCTS CORE unit within 6" of this model is selected to make a Normal Move or an Advance, add 1" to the distance it can move.</characteristic>
</characteristics>
</profile>
<profile id="a22a-c00d-e14c-6f45" name="Vibrations scanner" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Enemy models within 12" of this model do not receive the bonus to their save for being in Light and Heavy Cover against attacks made by friendly BLACKSTONE CONSTRUCTS units within 6" of this model.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0cd0-0faa-f143-53ea" name="Army rules" hidden="false" targetId="a72b-381d-ef7b-c31d" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="0ac9-f89f-2486-1658" name="Faction: Blackstone Constructs" hidden="false" targetId="d7fd-e2a2-d1e6-518f" primary="false"/>
<categoryLink id="60a5-3274-7438-b2cd" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="bc5f-b490-c6f1-fde9" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="3e5d-0b05-4937-0fd9" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="a0a5-212e-c2dc-fb10" name="Control" hidden="false" targetId="1ee6-96f6-701b-26a9" primary="false"/>
<categoryLink id="8bee-a587-19b4-bff7" name="Commander Drone" hidden="false" targetId="8f82-24ca-1d43-d69b" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="a3c4-df04-d98e-b164" name="Weapon" hidden="false" collective="false" import="true" defaultSelectionEntryId="ba0f-b746-51dd-0531">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8194-7ae7-a3bf-ea31" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="26a2-4896-c182-10b1" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="20fb-c61d-f2a1-0fb4" name="EMP blaster" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="name" value="EMP shockwave emitter">
<conditions>
<condition field="selections" scope="6d30-19a3-3cf5-e01f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5601-7a64-2311-7d91" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="e499-8ec4-06a1-ef26" name="EMP shockwave emitter" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="6d30-19a3-3cf5-e01f" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5601-7a64-2311-7d91" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">3"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Assault 1</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">-</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">-</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Do not roll to wound for this weapon. Instead, roll a D6 for each attack that hits; On a 2+, the target suffers D3 mortal wounds. If the target is a VEHICLE it suffers D3+3 mortal wounds instead.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="d205-d61e-53a2-9fbc" name="EMP Blaster" hidden="false" targetId="ae60-55d4-6092-4eaa" type="infoGroup">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="6d30-19a3-3cf5-e01f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5601-7a64-2311-7d91" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ba0f-b746-51dd-0531" name="Enhanced drone pulse" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="name" value="Impactor drone pulse">
<conditions>
<condition field="selections" scope="6d30-19a3-3cf5-e01f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f603-9a1e-bbc2-8264" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="name" value="Daemon pulse eraser">
<conditions>
<condition field="selections" scope="6d30-19a3-3cf5-e01f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b4fb-3be3-849f-0796" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<infoLinks>
<infoLink id="032a-909b-6940-c5e1" name="Enhanced drone pulse" hidden="false" targetId="f8f0-3849-70b6-7b51" type="profile">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="6d30-19a3-3cf5-e01f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f603-9a1e-bbc2-8264" type="equalTo"/>
<condition field="selections" scope="6d30-19a3-3cf5-e01f" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b4fb-3be3-849f-0796" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
<infoLink id="dded-4489-91e3-f19d" name="Impactor drone pulse" hidden="false" targetId="2d85-333e-cd1e-a7e8" type="profile">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="6d30-19a3-3cf5-e01f" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f603-9a1e-bbc2-8264" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
<infoLink id="9cc2-5acd-81fe-077e" name="Daemon pulse eraser" hidden="false" targetId="5f07-7f53-6a84-d177" type="profile">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="6d30-19a3-3cf5-e01f" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b4fb-3be3-849f-0796" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="f262-b14b-9dba-f95f" name="Drone laser" hidden="false" collective="false" import="true" targetId="4c2d-3512-eaed-50c2" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</entryLink>
<entryLink id="363c-354a-a417-9708" name="Flamer" hidden="false" collective="false" import="true" targetId="fd22-6743-2d4c-dd62" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="5.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="a8e8-2421-6416-99a5" name="Alignment Code" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="225e-5707-ee55-8a69" type="max"/>
</constraints>
<entryLinks>
<entryLink id="8236-c153-0ea6-e21b" name="Close range target elimination" hidden="false" collective="false" import="true" targetId="867b-c013-f814-7fb8" type="selectionEntry">
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="1.0"/>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</entryLink>
<entryLink id="4535-deec-e31f-fa54" name="Long range suppression" hidden="false" collective="false" import="true" targetId="a92b-2b31-bc95-5927" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="20.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="1.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="1ab6-714a-d389-8e39" name="Bladed limbs" hidden="false" collective="false" import="true" targetId="fc97-ba52-fccd-a100" type="selectionEntry"/>
<entryLink id="27ff-9f06-0352-75c3" name="Lightpod" hidden="false" collective="false" import="true" targetId="9369-d645-4d40-7bc2" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8cff-4ba8-efbb-68d7" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="points" value="7.0"/>
</costs>
</entryLink>
<entryLink id="9d8b-8aff-2a3c-1aca" name="Additional systems" hidden="false" collective="false" import="true" targetId="5ad9-ac06-9883-77f5" type="selectionEntryGroup"/>
<entryLink id="a4b5-bb1e-28b0-5cf3" name="Warlord" hidden="false" collective="false" import="true" targetId="ad56-3320-c07a-8d1c" type="selectionEntry"/>
<entryLink id="83ac-4b9f-31c8-7d4b" name="Amplified Command Network" hidden="false" collective="false" import="true" targetId="3643-28f9-1a4b-82fb" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ad56-3320-c07a-8d1c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="5cba-9500-3fb8-c1ff" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="65d4-cf4b-fb66-abf8" type="selectionEntryGroup"/>
<entryLink id="6dd2-a3b8-a05a-b31e" name="Special systems" hidden="false" collective="false" import="true" targetId="3e8f-eb8b-bcbb-1c1c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="5.0"/>
<cost name="pts" typeId="points" value="90.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d863-a41a-b5b6-73b6" name="Control Drone" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1706-e6f4-42cc-56c8" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup>
<comment>Spec Det keywords</comment>
<modifiers>
<modifier type="add" field="category" value="0bc6-f743-0acb-3d49">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d033-6a0b-caed-f981" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="0050-9e60-d810-6f1c">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f63b-764a-9391-11f7" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
<profiles>
<profile id="fff7-6202-b662-8c8e" name="Control Drone" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">2+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">5</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">5</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">4</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">3</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">10</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="bd66-b839-b352-1aea" name="Drone Controller (Aura)" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Whilst a SPINDLE DRONE unit is within 6" of any model with this special rule, their Threat Level Rising special rule has no effect. Instead, add 3 to the Strength, AP and Damage characteristics of that unit's Drone Pulse.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="dae1-6f4d-62ff-b0d1" name="Army rules" hidden="false" targetId="a72b-381d-ef7b-c31d" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d519-41a6-44b1-9139" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="a81e-958f-a8cf-4adf" name="Faction: Blackstone Constructs" hidden="false" targetId="d7fd-e2a2-d1e6-518f" primary="false"/>
<categoryLink id="254c-1706-1074-8d4c" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="7180-968b-b82b-10da" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="8599-15f6-66d2-a25a" name="Control" hidden="false" targetId="1ee6-96f6-701b-26a9" primary="false"/>
<categoryLink id="fa56-3497-0a05-fd28" name="Control Drone" hidden="false" targetId="1596-eaf8-0b44-c08f" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="551d-7151-d827-f4e2" name="Enhanced drone pulse" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="name" value="Impactor drone pulse">
<conditions>
<condition field="selections" scope="d863-a41a-b5b6-73b6" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f603-9a1e-bbc2-8264" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="name" value="Daemon pulse eraser">
<conditions>
<condition field="selections" scope="d863-a41a-b5b6-73b6" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b4fb-3be3-849f-0796" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="23e5-4021-e95e-4427" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1143-d9f8-8a7b-8b41" type="max"/>
</constraints>
<infoLinks>
<infoLink id="6ab2-53ec-ba17-9f0a" name="Enhanced drone pulse" hidden="false" targetId="f8f0-3849-70b6-7b51" type="profile">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="d863-a41a-b5b6-73b6" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b4fb-3be3-849f-0796" type="equalTo"/>
<condition field="selections" scope="d863-a41a-b5b6-73b6" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b4fb-3be3-849f-0796" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
</infoLink>
<infoLink id="9cee-c325-52f8-e881" name="Impactor drone pulse" hidden="false" targetId="2d85-333e-cd1e-a7e8" type="profile">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="d863-a41a-b5b6-73b6" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f603-9a1e-bbc2-8264" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
<infoLink id="6da7-7a42-e801-779e" name="Daemon pulse eraser" hidden="false" targetId="5f07-7f53-6a84-d177" type="profile">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="d863-a41a-b5b6-73b6" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b4fb-3be3-849f-0796" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="5d61-c333-0557-c772" name="Alignment Code" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d38e-6b96-c95d-c3cc" type="max"/>
</constraints>
<entryLinks>
<entryLink id="8caa-d14f-2fd9-0a4f" name="Close range target elimination" hidden="false" collective="false" import="true" targetId="867b-c013-f814-7fb8" type="selectionEntry">
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="1.0"/>
<cost name="pts" typeId="points" value="10.0"/>
</costs>
</entryLink>
<entryLink id="43ad-f402-3d4e-de83" name="Long range suppression" hidden="false" collective="false" import="true" targetId="a92b-2b31-bc95-5927" type="selectionEntry">
<costs>
<cost name="pts" typeId="points" value="20.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="1.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="f4e6-1922-2f8f-046e" name="Additional systems" hidden="false" collective="false" import="true" targetId="5ad9-ac06-9883-77f5" type="selectionEntryGroup"/>
<entryLink id="0d24-7830-61f3-937b" name="Manipulator limbs" hidden="false" collective="false" import="true" targetId="e336-e7cc-fb78-12b6" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6a5f-4690-360c-53dc" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4441-e733-0a54-1b7b" type="max"/>
</constraints>
</entryLink>
<entryLink id="c896-2bab-b9ae-4b7a" name="Warlord" hidden="false" collective="false" import="true" targetId="ad56-3320-c07a-8d1c" type="selectionEntry"/>
<entryLink id="ce06-f585-b82e-f14d" name="Amplified Command Network" hidden="false" collective="false" import="true" targetId="3643-28f9-1a4b-82fb" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ad56-3320-c07a-8d1c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="cc37-2fdf-8d4f-b641" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="65d4-cf4b-fb66-abf8" type="selectionEntryGroup"/>
<entryLink id="5b5f-d473-e5df-c81f" name="Special systems" hidden="false" collective="false" import="true" targetId="3e8f-eb8b-bcbb-1c1c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="3.0"/>
<cost name="pts" typeId="points" value="60.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3270-d265-1765-04ca" name="Spindle Drones" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="e356-c769-5920-6e14" value="3.0">
<conditions>
<condition field="selections" scope="3270-d265-1765-04ca" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="increment" field="e356-c769-5920-6e14" value="3.0">
<conditions>
<condition field="selections" scope="3270-d265-1765-04ca" value="8.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup>
<comment>Spec Det keywords</comment>
<modifiers>
<modifier type="add" field="category" value="0bc6-f743-0acb-3d49">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d033-6a0b-caed-f981" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="0050-9e60-d810-6f1c">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f63b-764a-9391-11f7" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
<modifierGroup>
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="ab62-5d22-b849-52f4" type="instanceOf"/>
</conditions>
<modifiers>
<modifier type="set" field="c5fd-5887-0d66-07aa" value="3.0"/>
<modifier type="set" field="d0fc-89dc-9cc5-80cd" value="6.0"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c5fd-5887-0d66-07aa" type="min"/>
<constraint field="selections" scope="force" value="-1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d0fc-89dc-9cc5-80cd" type="max"/>
</constraints>
<profiles>
<profile id="2b67-5e32-537a-647d" name="Threat Level Rising" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Improve the Strength, Armour Penetration and Damage characteristics of a models drone pulse by 1 for each model in its unit that has either lost wounds or been destroyed (for example, if 2 models in a unit of Spindle Drones have been destroyed and another has lost 1 wound, the 2 remaining models’ drone pulses would have a Strength characteristic of 6, an AP characteristic of -3 and a Damage characteristic of 4), up to a maximum of +3.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="e025-d441-743c-ec81" name="Army rules" hidden="false" targetId="a72b-381d-ef7b-c31d" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="bb39-2e08-e2d2-43a1" name="New CategoryLink" hidden="false" targetId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a" primary="true"/>
<categoryLink id="642f-1e7e-e7a2-7935" name="Faction: Blackstone Constructs" hidden="false" targetId="d7fd-e2a2-d1e6-518f" primary="false"/>
<categoryLink id="9b30-3678-c06f-0a86" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="14c6-1821-fed4-e31c" name="Core" hidden="false" targetId="08f1-d244-eb44-7e01" primary="false"/>
<categoryLink id="e382-7abc-6d7d-d771" name="Spindle Drones" hidden="false" targetId="f72b-91fd-dc13-5fbd" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="16a0-09f1-8ed0-9b47" name="4 - 12 Spindle Drones" hidden="false" collective="false" import="true" defaultSelectionEntryId="a84b-3bd4-91f1-9f47">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="97c2-64cf-eefc-39a1" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="a84b-3bd4-91f1-9f47" name="Spindle Drone" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="12.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="af7c-c0e7-d77e-a5e0" type="max"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7191-10c1-33a6-ac06" type="min"/>
</constraints>
<profiles>
<profile id="3590-98f2-a2e2-26f0" name="Spindle Drone" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">2</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">2</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">10</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">4+</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink id="8de7-40eb-7844-cab2" name="Drone pulse" hidden="false" collective="false" import="true" targetId="765a-51ea-2db9-9cfe" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f682-b981-e96f-1e1b" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6661-d58c-6faf-5a9c" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="15.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="f081-54ba-b9be-972f" name="Alignment Code" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e00d-acf6-41d5-a297" type="max"/>
</constraints>
<entryLinks>
<entryLink id="1401-6dbd-da49-9f1b" name="Close range target elimination" hidden="false" collective="false" import="true" targetId="867b-c013-f814-7fb8" type="selectionEntry">
<modifierGroups>
<modifierGroup>
<repeats>
<repeat field="selections" scope="3270-d265-1765-04ca" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
<modifiers>
<modifier type="increment" field="e356-c769-5920-6e14" value="1.0"/>
<modifier type="increment" field="points" value="10.0"/>
</modifiers>
</modifierGroup>
</modifierGroups>
</entryLink>
<entryLink id="603d-27d6-2edd-f3ff" name="Long range suppression" hidden="false" collective="false" import="true" targetId="a92b-2b31-bc95-5927" type="selectionEntry">
<modifierGroups>
<modifierGroup>
<repeats>
<repeat field="selections" scope="3270-d265-1765-04ca" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
<modifiers>
<modifier type="increment" field="e356-c769-5920-6e14" value="1.0"/>
<modifier type="increment" field="points" value="20.0"/>
</modifiers>
</modifierGroup>
</modifierGroups>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="3.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8487-dcee-62f0-b7ab" name="Guardian Drones Squadron" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="ab62-5d22-b849-52f4" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup>
<comment>Spec Det keywords</comment>
<modifiers>
<modifier type="add" field="category" value="0bc6-f743-0acb-3d49">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d033-6a0b-caed-f981" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="0050-9e60-d810-6f1c">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f63b-764a-9391-11f7" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
<profiles>
<profile id="15fe-8f55-5c1b-5fd4" name="Swarm Coordinator (Aura)" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">You can re-roll hit rolls of 1 for friendly BLACKSTONE CONSTRUCTS INFANTRY units within 6" of this model; 12" if it didn't move during its previous movement phase.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="9946-f7ec-3427-5c65" name="Army rules" hidden="false" targetId="a72b-381d-ef7b-c31d" type="infoGroup"/>
<infoLink id="5481-a45a-1666-c3f4" name="Independent Enforcers" hidden="false" targetId="e4a1-2aeb-a478-f0a9" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7c2f-d2b2-5c40-57f2" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
<categoryLink id="20a7-7cd6-b42d-1942" name="Faction: Blackstone Constructs" hidden="false" targetId="d7fd-e2a2-d1e6-518f" primary="false"/>
<categoryLink id="5db9-4425-1c44-4e1b" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="188b-d6ec-23c1-4623" name="Control" hidden="false" targetId="1ee6-96f6-701b-26a9" primary="false"/>
<categoryLink id="bde2-e487-dad0-6464" name="Vehicle" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="b5df-afe0-15f0-9180" name="Guardian Drones" hidden="false" targetId="fc2c-e3f8-8abd-cd33" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="992e-cfe4-e02e-1130" name="1 - 3 Guardian Drones" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f0cf-ccad-22f8-8bb8" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="ecba-5eb1-7c60-16e3" name="Guardian Drone" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4512-6953-f09b-9d4d" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3f48-7715-4095-948c" type="min"/>
</constraints>
<profiles>
<profile id="b9bb-43c1-62c4-ce3b" name="Guardian Drone" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">5"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">5</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">6</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">7</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">10</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry id="dd0b-ca8b-01ec-4a78" name="Guardian salvo launchers" hidden="false" collective="true" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5196-99ee-4148-ac70" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9e9d-7f66-c84e-23a0" type="max"/>
</constraints>
<profiles>
<profile id="9688-79c7-cada-ec33" name="Guardian salvo launchers" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">24"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 2D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">5</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2444-8989-6760-2872" name="Destroyer pulse" hidden="false" collective="true" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ba28-715f-fbb1-cdb3" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e412-3058-85dc-4721" type="max"/>
</constraints>
<profiles>
<profile id="6257-b9f8-97aa-201f" name="Destroyer pulse" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">18"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Pistol 1</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">9</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">4</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="ca91-f920-0d3d-830e" name="Hover drones" hidden="false" collective="false" import="true" targetId="f3b9-d823-81c6-cbe6" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4446-d81a-619f-ff51" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0464-fa33-2c0d-302f" type="min"/>
</constraints>
</entryLink>
<entryLink id="66c8-676f-f132-e614" name="Manipulator limbs" hidden="false" collective="false" import="true" targetId="e336-e7cc-fb78-12b6" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0f55-8d85-5049-591c" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b680-e9e6-2b26-f025" type="max"/>
</constraints>
</entryLink>
<entryLink id="41ee-fdf7-e289-54c2" name="Warlord" hidden="false" collective="false" import="true" targetId="ad56-3320-c07a-8d1c" type="selectionEntry"/>
<entryLink id="0004-315a-1ad3-ebcd" name="Amplified Command Network" hidden="false" collective="false" import="true" targetId="3643-28f9-1a4b-82fb" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ad56-3320-c07a-8d1c" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="f57b-70a7-0afa-2e03" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="65d4-cf4b-fb66-abf8" type="selectionEntryGroup"/>
<entryLink id="3ca5-2f8d-17c0-790e" name="Special systems" hidden="false" collective="false" import="true" targetId="3e8f-eb8b-bcbb-1c1c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="80.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="4.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="9253-25ce-652c-1381" name="Alignment Code" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8b59-8bab-0803-6ca0" type="max"/>
</constraints>
<entryLinks>
<entryLink id="07d7-63ff-66f7-d6fa" name="Close range target elimination" hidden="false" collective="false" import="true" targetId="867b-c013-f814-7fb8" type="selectionEntry">
<modifierGroups>
<modifierGroup>
<repeats>
<repeat field="selections" scope="8487-dcee-62f0-b7ab" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
<modifiers>
<modifier type="increment" field="e356-c769-5920-6e14" value="1.0"/>
<modifier type="increment" field="points" value="10.0"/>
</modifiers>
</modifierGroup>
</modifierGroups>
</entryLink>
<entryLink id="330b-583d-b760-e96e" name="Long range suppression" hidden="false" collective="false" import="true" targetId="a92b-2b31-bc95-5927" type="selectionEntry">
<modifierGroups>
<modifierGroup>
<repeats>
<repeat field="selections" scope="8487-dcee-62f0-b7ab" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
<modifiers>
<modifier type="increment" field="e356-c769-5920-6e14" value="1.0"/>
<modifier type="increment" field="points" value="20.0"/>
</modifiers>
</modifierGroup>
</modifierGroups>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2996-4e7a-b139-929d" name="Longshot Drones" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="ab62-5d22-b849-52f4" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup>
<comment>Spec Det keywords</comment>
<modifiers>
<modifier type="add" field="category" value="0bc6-f743-0acb-3d49">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d033-6a0b-caed-f981" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="0050-9e60-d810-6f1c">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f63b-764a-9391-11f7" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
<profiles>
<profile id="d2a5-5ba9-89a8-9dad" name="Stabilised Position" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If this unit does not move in its Movement phase, you can add 1 to its hit rolls in the following Shooting phase. If you do so, it cannot charge in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="8d88-fae8-cdd1-73ce" name="Army rules" hidden="false" targetId="a72b-381d-ef7b-c31d" type="infoGroup"/>
<infoLink id="8493-1f4d-88f8-7c39" name="Shield Generator" hidden="false" targetId="d3a1-4d78-d024-21c1" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c301-9af7-e8b1-6b88" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
<categoryLink id="8087-d060-744c-9c99" name="Faction: Blackstone Constructs" hidden="false" targetId="d7fd-e2a2-d1e6-518f" primary="false"/>
<categoryLink id="45eb-e283-7f6f-24c0" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="4a03-bba5-0ed3-897c" name="Longshot Drones" hidden="false" targetId="d2b0-1fa5-50e4-55f0" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="f37f-d725-61ea-b1d1" name="1 - 3 Longshot Drones" hidden="false" collective="false" import="true" defaultSelectionEntryId="c2b8-cb8f-05db-0b57">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="50c4-be3c-3b6a-9411" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="c2b8-cb8f-05db-0b57" name="Longshot Drone" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="aa6e-f2ca-0d3c-5d1a" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="52c3-30dd-532b-7f76" type="min"/>
</constraints>
<profiles>
<profile id="b961-78ab-e165-2054" name="Longshot Drone" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">5+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">2</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">1</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">10</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">4+</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry id="636c-b0a8-1f77-8386" name="High-intensity drone laser" hidden="false" collective="true" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9e64-2dc5-8d35-aff6" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6240-64f7-3890-8365" type="max"/>
</constraints>
<profiles>
<profile id="6a87-6c63-5814-6b59" name="High-intensity drone laser" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">36"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 1</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">6</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D3+1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">This weapon can target CHARACTERS even if they are not the closest enemy unit.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="4.0"/>
<cost name="pts" typeId="points" value="80.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="8c2c-f76c-f416-a40f" name="Alignment Code" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f45f-8460-9071-423c" type="max"/>
</constraints>
<entryLinks>
<entryLink id="748f-4058-7da6-023a" name="Close range target elimination" hidden="false" collective="false" import="true" targetId="867b-c013-f814-7fb8" type="selectionEntry">
<modifierGroups>
<modifierGroup>
<repeats>
<repeat field="selections" scope="2996-4e7a-b139-929d" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
<modifiers>
<modifier type="increment" field="e356-c769-5920-6e14" value="1.0"/>
<modifier type="increment" field="points" value="10.0"/>
</modifiers>
</modifierGroup>
</modifierGroups>
</entryLink>
<entryLink id="d1e5-11bf-2f89-7f37" name="Long range suppression" hidden="false" collective="false" import="true" targetId="a92b-2b31-bc95-5927" type="selectionEntry">
<modifierGroups>
<modifierGroup>
<repeats>
<repeat field="selections" scope="2996-4e7a-b139-929d" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
<modifiers>
<modifier type="increment" field="e356-c769-5920-6e14" value="1.0"/>
<modifier type="increment" field="points" value="20.0"/>
</modifiers>
</modifierGroup>
</modifierGroups>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b14e-b32d-5f6b-0a88" name="Repeater Drones" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="e356-c769-5920-6e14" value="2.0">
<conditions>
<condition field="selections" scope="b14e-b32d-5f6b-0a88" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="e356-c769-5920-6e14" value="3.0">
<conditions>
<condition field="selections" scope="b14e-b32d-5f6b-0a88" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="ab62-5d22-b849-52f4" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
<modifierGroups>
<modifierGroup>
<comment>Spec Det keywords</comment>
<modifiers>
<modifier type="add" field="category" value="0bc6-f743-0acb-3d49">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d033-6a0b-caed-f981" type="equalTo"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="0050-9e60-d810-6f1c">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f63b-764a-9391-11f7" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
<profiles>
<profile id="844b-37eb-2ed8-80ed" name="Independent Units" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">The first time this unit is set up on the battlefield, all of its models must be placed within 3" of at least one other model in their unit. From that point onwards, each operates independently and is treated as a separate unit.</characteristic>
</characteristics>
</profile>
<profile id="a143-a0a5-b730-bd0e" name="Signal Repeater (Aura)" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">If this model is within 12" of a model with the CONTROL keyword, then this model gains the CONTROL keyword.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="18c2-35b4-1788-0d55" name="Army rules" hidden="false" targetId="a72b-381d-ef7b-c31d" type="infoGroup"/>
<infoLink id="b8f3-fd57-42c1-6af8" name="Shield Generator" hidden="false" targetId="d3a1-4d78-d024-21c1" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6ef2-7c31-ce67-5f1c" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
<categoryLink id="62b9-9cdd-ce3e-1cda" name="Faction: Blackstone Constructs" hidden="false" targetId="d7fd-e2a2-d1e6-518f" primary="false"/>
<categoryLink id="1a1f-694c-48e1-4727" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="f824-a051-3321-4259" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>