forked from BSData/wh40k-7th-edition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Harlequins - Codex.cat
1989 lines (1989 loc) · 113 KB
/
Harlequins - Codex.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="220f-669d-eef1-7ef0" revision="3" gameSystemId="e1ebd931-a209-3ce4-87b4-d9918d25530b" gameSystemRevision="16" battleScribeVersion="1.15" name="Harlequins - Codex" books="2015" authorName="Kangodo" authorUrl="http://battlescribedata.appspot.com/#/repos" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<entries/>
<rules>
<rule id="fbb1-5e5a-308c-099a" name="Emissary of Cegorach" hidden="true">
<description>If you have selected a Troupe Master from this Detachment as your Warlord, you can re-roll the result when rolling on one of the Warlord Traits tables in Codex: Harlequins.</description>
<modifiers>
<modifier type="show" field="name" value="0.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions/>
<conditionGroups/>
</modifier>
<modifier type="show" field="name" value="0.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions>
<condition parentId="force type" childId="88b5-2fc3-f33d-c253" field="selections" type="instance of" value="0.0"/>
</conditions>
<conditionGroups/>
</modifier>
</modifiers>
</rule>
<rule id="7e64-1aee-627a-1464" name="Rising Crescendo" hidden="true">
<description>From the start of the second turn, all units in this Detachment that have the Fleet special rule can Run and Charge in the same turn.</description>
<modifiers>
<modifier type="show" field="name" value="0.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions>
<condition parentId="force type" childId="88b5-2fc3-f33d-c253" field="selections" type="instance of" value="0.0"/>
</conditions>
<conditionGroups/>
</modifier>
</modifiers>
</rule>
</rules>
<links>
<link id="e26f-7db5-6ef5-e3a5" targetId="8aa5-f523-060d-cfc3" linkType="entry" categoryId="5d76b6f5-20ae-4d70-8f59-ade72a2add3a">
<modifiers/>
</link>
<link id="ae6f-888b-90f2-f199" targetId="7008-ff1a-06cd-14bc" linkType="entry" categoryId="c274d0b0-5866-44bc-9810-91c136ae7438">
<modifiers/>
</link>
<link id="340e-86ba-98b9-a9fd" targetId="554a-3d04-930d-85ec" linkType="entry" categoryId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2">
<modifiers/>
</link>
<link id="ee32-ab63-b1a8-78ca" targetId="0fad-3f05-cc61-b0ae" linkType="entry" categoryId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2">
<modifiers/>
</link>
<link id="e254-8a4e-2687-3ecb" targetId="cd7e-6601-6c75-4f8f" linkType="entry" categoryId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2">
<modifiers/>
</link>
<link id="ebb8-4e60-1caf-ee6a" targetId="e072-9362-c789-f027" linkType="entry" categoryId="c274d0b0-5866-44bc-9810-91c136ae7438">
<modifiers/>
</link>
<link id="e4e0-7d78-4e3a-8cf7" targetId="dfb5-56ac-f4cf-3edd" linkType="entry" categoryId="abf5fd55-9ac7-4263-8bc1-a9fb0a8fa6a6">
<modifiers/>
</link>
<link id="bcc9-47c1-9fed-e082" targetId="f8d0-742d-9257-ecaa" linkType="entry" categoryId="28b94f51-e66b-4096-aa59-0c9df620a77d">
<modifiers/>
</link>
<link id="d080-82c6-b0cc-36ad" targetId="d169-d328-ab34-98d0" linkType="entry" categoryId="28b94f51-e66b-4096-aa59-0c9df620a77d">
<modifiers/>
</link>
<link id="33a3-9195-30e7-ca68" targetId="b6ca-9e62-e632-a734" linkType="entry" categoryId="28b94f51-e66b-4096-aa59-0c9df620a77d">
<modifiers/>
</link>
<link id="2e03-6374-d527-7627" targetId="bb9a-7f62-6121-004d" linkType="entry" categoryId="28b94f51-e66b-4096-aa59-0c9df620a77d">
<modifiers/>
</link>
<link id="d0ef-4ac4-da2e-94bf" targetId="24ce-fa20-049b-5aa1" linkType="entry" categoryId="28b94f51-e66b-4096-aa59-0c9df620a77d">
<modifiers/>
</link>
<link id="2efb-58cf-3fcc-9247" targetId="df66-9468-d9f4-bd6b" linkType="entry" categoryId="28b94f51-e66b-4096-aa59-0c9df620a77d">
<modifiers/>
</link>
</links>
<sharedEntries>
<entry id="b6ca-9e62-e632-a734" name="Cast of Players" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups>
<entryGroup id="a8c6-b154-a447-bb75" name="Troupe" defaultEntryId="45ef-292d-656e-1439" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="45ef-292d-656e-1439" targetId="8aa5-f523-060d-cfc3" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
<entryGroup id="346d-0b98-e8f0-77c6" name="Death Jester" defaultEntryId="9c97-503a-0ec1-03c3" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="9c97-503a-0ec1-03c3" targetId="554a-3d04-930d-85ec" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
<entryGroup id="be4a-6965-0a77-62de" name="Shadowseer" defaultEntryId="59d3-d302-8062-d2d1" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="59d3-d302-8062-d2d1" targetId="0fad-3f05-cc61-b0ae" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
</entryGroups>
<modifiers/>
<rules>
<rule id="badb-73ad-5acf-5518" name="Cast of Players: Restrictions" hidden="false">
<description>All models in this Formation must be deployed as a single unit. The Formation’s Shadowseer and Death Jester cannot leave the Formation’s Troupe.</description>
<modifiers/>
</rule>
<rule id="9538-f367-1f8f-7658" name="Crusader" hidden="false">
<modifiers/>
</rule>
<rule id="de84-dc77-0ca1-9738" name="Heralds of the Laughing God" hidden="false">
<description>Any models with the Eldar or Dark Eldar Faction (friend or foe) within 6" of one or more models from this Formation have the Crusader special rule.</description>
<modifiers/>
</rule>
</rules>
<profiles/>
<links/>
</entry>
<entry id="bb9a-7f62-6121-004d" name="Cegorach's Jest" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups>
<entryGroup id="7123-c1eb-4468-fe24" name="Troupe" defaultEntryId="2701-0868-945c-3e08" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="2701-0868-945c-3e08" targetId="8aa5-f523-060d-cfc3" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
<entryGroup id="d7dc-4d4e-0e31-5c1e" name="Skyweavers" defaultEntryId="063e-ee08-d130-c49f" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="063e-ee08-d130-c49f" targetId="e072-9362-c789-f027" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
<entryGroup id="43f8-6f8f-0774-63ba" name="Voidweavers" defaultEntryId="d634-630b-9c76-ac9c" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="d634-630b-9c76-ac9c" targetId="dfb5-56ac-f4cf-3edd" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
</entryGroups>
<modifiers/>
<rules>
<rule id="c4f2-32d1-7d31-45aa" name="Rising Crescendo" hidden="false">
<description>From the start of the second turn, all units in this Formation that have the Fleet special rule can Run and Charge in the same turn.</description>
<modifiers/>
</rule>
</rules>
<profiles/>
<links/>
</entry>
<entry id="f8d0-742d-9257-ecaa" name="Cegorach's Revenge" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups>
<entryGroup id="8c3a-6da1-7640-1c9b" name="Troupes" defaultEntryId="f10a-1429-9fa1-47a7" minSelections="3" maxSelections="3" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="f10a-1429-9fa1-47a7" targetId="8aa5-f523-060d-cfc3" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
<entryGroup id="6898-7cff-a504-9ae9" name="Death Jesters" defaultEntryId="e2a4-b400-3b97-abd1" minSelections="3" maxSelections="3" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="e2a4-b400-3b97-abd1" targetId="554a-3d04-930d-85ec" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
<entryGroup id="0d3b-0752-8e2b-cfb7" name="Shadowseers" defaultEntryId="9ad0-b296-2e4a-ed77" minSelections="3" maxSelections="3" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="9ad0-b296-2e4a-ed77" targetId="0fad-3f05-cc61-b0ae" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
<entryGroup id="eacf-abae-7ec7-2752" name="Solitaire" defaultEntryId="641f-0252-bebf-0cbe" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="641f-0252-bebf-0cbe" targetId="cd7e-6601-6c75-4f8f" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
<entryGroup id="90bc-c54e-ae6d-06c1" name="Skyweavers" defaultEntryId="025c-1ffe-896e-c91a" minSelections="2" maxSelections="2" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="025c-1ffe-896e-c91a" targetId="e072-9362-c789-f027" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
<entryGroup id="7e99-b127-3a6e-2be5" name="Voidweavers" defaultEntryId="4d33-6484-b1ee-10f0" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="4d33-6484-b1ee-10f0" targetId="dfb5-56ac-f4cf-3edd" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
</entryGroups>
<modifiers/>
<rules>
<rule id="9a42-eb32-d8b5-e140" name="Consummate Performance" hidden="false">
<description>You can re-roll invulnerable saves of a 1 for all models in this Formation.</description>
<modifiers/>
</rule>
<rule id="cc36-e695-7e16-2da6" name="Emissary of Cegorach" hidden="false">
<description>If you have selected a Troupe Master from this Formation as your Warlord, you can re-roll the result when rolling on one of the Warlord Traits tables in Codex: Harlequins.</description>
<modifiers/>
</rule>
<rule id="5f4b-0cb8-48b5-1b7c" name="Rising Crescendo" hidden="false">
<description>From the start of the second turn, all units in this Formation that have the Fleet special rule can Run and Charge in the same turn.</description>
<modifiers/>
</rule>
</rules>
<profiles/>
<links/>
</entry>
<entry id="1472-2a4f-2ee5-fa00" name="Cegorach's Rose" points="15.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="1b01-f494-7ba3-68c0" targetId="74f1-a578-d21e-9c31" linkType="profile">
<modifiers/>
</link>
<link id="5d35-c4cc-33f7-6430" targetId="a7d8-b113-fca0-97d8" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
<entry id="d1ae-c9a8-f84a-5319" name="Crescendo" points="5.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="482b-ef90-823b-011a" targetId="4a98-67c3-a71a-f50c" linkType="profile">
<modifiers/>
</link>
<link id="c22c-782d-41dc-ecf1" targetId="ec20-59b5-5449-8cbc" linkType="rule">
<modifiers/>
</link>
<link id="f2a6-ca4f-9427-9dde" targetId="5e2e-48c2-9f7f-c404" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
<entry id="554a-3d04-930d-85ec" name="Death Jester" points="60.0" categoryId="(No Category)" type="unit" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries>
<entry id="ab91-88e4-f100-4720" name="Shrieker Cannon" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="cee1-633e-8a49-42f5" targetId="e0d8-f075-772f-edae" linkType="profile">
<modifiers/>
</link>
<link id="ce20-84d5-f683-e029" targetId="795f-a490-1d69-aaf6" linkType="profile">
<modifiers/>
</link>
</links>
</entry>
</entries>
<entryGroups>
<entryGroup id="70bb-3810-f274-8339" name="Enigmas of the Black Library" minSelections="0" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="a74d-ebaf-5712-46ff" targetId="c464-0971-9e07-5b52" linkType="entry">
<modifiers/>
</link>
<link id="e53a-dee9-0aaf-be28" targetId="2d30-eea5-88db-53fe" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
</entryGroups>
<modifiers/>
<rules>
<rule id="71b0-3e8b-20eb-0b5b" name="Death Is Not Enough" hidden="false">
<description>An enemy unit that suffers one or more casualties from a Death Jester's shrieker cannon during the Shooting phase must take a Morale check at the end of that phase with a -2 modifier to its Leadership, just as if it had suffered 25% casualties. If this test is failed, the Death Jester's controlling player chooses the direction that the enemy unit Falls Back this phase (if the unit continues to Fall Back in subsequent turns, it does so towards its own table edge as normal).</description>
<modifiers/>
</rule>
</rules>
<profiles/>
<links>
<link id="af15-948c-855d-4acd" targetId="3169-59b6-7f90-2373" linkType="profile">
<modifiers/>
</link>
<link id="90cb-d00a-d9c6-a23c" targetId="6c81-6306-887a-8b22" linkType="entry">
<modifiers/>
</link>
<link id="0e10-3415-f028-bbc7" targetId="7246-0f49-9f43-466a" linkType="entry">
<modifiers/>
</link>
<link id="dc21-b152-5929-240f" targetId="0b34-d4db-9c61-c714" linkType="rule">
<modifiers/>
</link>
<link id="d2c5-1d1b-437f-c9df" targetId="b89d-f9e1-fc84-91bc" linkType="rule">
<modifiers/>
</link>
<link id="bf54-424b-0caf-e2a7" targetId="c99b-a8fe-a317-ed23" linkType="rule">
<modifiers/>
</link>
<link id="9426-3921-436d-204a" targetId="968d-8713-7c17-6998" linkType="rule">
<modifiers/>
</link>
<link id="7b3a-c5ef-1b77-c225" targetId="4adf-666b-ad41-821e" linkType="rule">
<modifiers/>
</link>
<link id="2bed-ea7a-29b9-3259" targetId="5485-8a4b-6bea-a4f3" linkType="rule">
<modifiers/>
</link>
<link id="2808-d5b9-e2c8-a4a3" targetId="69b2-69e6-a277-4bde" linkType="entry">
<modifiers/>
</link>
</links>
</entry>
<entry id="df66-9468-d9f4-bd6b" name="Faolchú's Blade" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups>
<entryGroup id="9f37-554b-b792-3aae" name="Skyweavers" defaultEntryId="1d9f-926a-bd3d-1bd1" minSelections="2" maxSelections="2" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="1d9f-926a-bd3d-1bd1" targetId="e072-9362-c789-f027" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
<entryGroup id="daf8-5dd1-0e4e-1fd2" name="Voidweavers" defaultEntryId="e101-e854-9de0-a66f" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="e101-e854-9de0-a66f" targetId="dfb5-56ac-f4cf-3edd" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
</entryGroups>
<modifiers/>
<rules>
<rule id="76e2-68c8-d5b7-fd43" name="The Wings of Faolchú" hidden="false">
<description>If you decide to Jink with a unit in this Formation, you can re-roll failed cover saves for that unit.</description>
<modifiers/>
</rule>
</rules>
<profiles/>
<links/>
</entry>
<entry id="7246-0f49-9f43-466a" name="Flip Belt" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="1a82-9752-bf40-d1ca" targetId="3ec6-44cc-2385-a632" linkType="profile">
<modifiers/>
</link>
</links>
</entry>
<entry id="69b2-69e6-a277-4bde" name="Haywire grenades" points="5.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="e198-2630-49fc-8e29" targetId="4747-987b-9864-60a2" linkType="profile">
<modifiers/>
</link>
<link id="f42f-5c44-cd28-73d7" targetId="4767-889e-fdc3-6a78" linkType="profile">
<modifiers/>
</link>
</links>
</entry>
<entry id="6c81-6306-887a-8b22" name="Holo-suit" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="0acb-242b-f4b5-dee9" targetId="b962-0dd7-2d75-b645" linkType="profile">
<modifiers/>
</link>
</links>
</entry>
<entry id="0258-12c3-4d17-508e" name="Plasma grenades" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="4033-d93f-45e2-ad1b" targetId="8831-b5a5-bb2b-4a31" linkType="profile">
<modifiers/>
</link>
<link id="19aa-2432-4271-5df6" targetId="0f14-f392-117b-8774" linkType="profile">
<modifiers/>
</link>
<link id="3619-ee28-5ff5-3804" targetId="60dd-169c-57fe-24cf" linkType="profile">
<modifiers/>
</link>
</links>
</entry>
<entry id="0fad-3f05-cc61-b0ae" name="Shadowseer" points="60.0" categoryId="(No Category)" type="unit" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries>
<entry id="20b0-a5e7-4d85-b9f6" name="Miststave" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="c390-466a-e200-38f2" targetId="2b2c-4fcf-fc45-1703" linkType="profile">
<modifiers/>
</link>
</links>
</entry>
<entry id="d2df-9269-ae91-0373" name="Hallucinogen grenade launcher" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="c331-f21b-e3cf-b149" targetId="7b2f-7df7-9427-f261" linkType="profile">
<modifiers/>
</link>
<link id="cbf4-9ff3-eddb-84d5" targetId="7fcc-f37b-b8b7-f755" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
</entries>
<entryGroups>
<entryGroup id="7bd0-2a58-a99d-e50f" name="Enigmas of the Black Library" minSelections="0" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers>
<modifier type="set" field="maxSelections" value="0.0" repeat="false" numRepeats="1" incrementParentId="0fad-3f05-cc61-b0ae" incrementChildId="d1ae-c9a8-f84a-5319" incrementField="selections" incrementValue="1.0">
<conditions>
<condition parentId="0fad-3f05-cc61-b0ae" childId="d1ae-c9a8-f84a-5319" field="selections" type="equal to" value="1.0"/>
</conditions>
<conditionGroups/>
</modifier>
</modifiers>
<links>
<link id="7917-0c0d-e256-97d8" targetId="c464-0971-9e07-5b52" linkType="entry">
<modifiers/>
</link>
<link id="fc29-2fcf-b7b1-baeb" targetId="2d30-eea5-88db-53fe" linkType="entry">
<modifiers/>
</link>
<link id="6fd5-f380-2530-0d46" targetId="7f34-b408-78ea-9ea9" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
<entryGroup id="2205-dcfd-3ff4-03d4" name="Ranged Weapon" defaultEntryId="9479-b1f6-ddb8-236d" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries>
<entry id="9479-b1f6-ddb8-236d" name="Shuriken Pistol" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="f46c-a15b-e4a2-12a7" targetId="1ff6-24cd-db84-7720" linkType="profile">
<modifiers/>
</link>
<link id="38a1-7ccf-bc5d-af09" targetId="5e2e-48c2-9f7f-c404" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
<entry id="0952-7067-33be-47e4" name="Neuro Disruptor" points="10.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="76a3-3770-6db2-e634" targetId="7758-71c5-afb9-65f6" linkType="profile">
<modifiers/>
</link>
</links>
</entry>
</entries>
<entryGroups/>
<modifiers/>
<links>
<link id="7e74-3964-0181-f849" targetId="d1ae-c9a8-f84a-5319" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
<entryGroup id="c1be-2306-3c0d-a26f" name="Psyker" defaultEntryId="fea9-a312-f978-a437" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries>
<entry id="fea9-a312-f978-a437" name="Mastery Level 1" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links/>
</entry>
<entry id="990a-4191-0672-41e3" name="Mastery Level 2" points="25.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links/>
</entry>
</entries>
<entryGroups/>
<modifiers/>
<links/>
</entryGroup>
</entryGroups>
<modifiers/>
<rules>
<rule id="31c4-c8a7-7f1c-e14e" name="Psyker" hidden="false">
<description>Shadowseers generate their powers from the Phantasmancy, Daemonology (Sanctic) and Telepathy disciplines.</description>
<modifiers/>
</rule>
</rules>
<profiles/>
<links>
<link id="a395-886c-725d-387b" targetId="9e69-d010-51da-b70a" linkType="profile">
<modifiers/>
</link>
<link id="b42d-5890-cc86-7e1f" targetId="968d-8713-7c17-6998" linkType="rule">
<modifiers/>
</link>
<link id="72b7-0e14-455c-1c24" targetId="c99b-a8fe-a317-ed23" linkType="rule">
<modifiers/>
</link>
<link id="c460-42f2-84b0-6d47" targetId="b89d-f9e1-fc84-91bc" linkType="rule">
<modifiers/>
</link>
<link id="9026-bc01-4214-e4fd" targetId="0b34-d4db-9c61-c714" linkType="rule">
<modifiers/>
</link>
<link id="e6e3-5e3e-8174-24e1" targetId="5485-8a4b-6bea-a4f3" linkType="rule">
<modifiers/>
</link>
<link id="eb3e-fa17-2c1f-b64b" targetId="69b2-69e6-a277-4bde" linkType="entry">
<modifiers/>
</link>
<link id="e457-38ca-f174-b852" targetId="6c81-6306-887a-8b22" linkType="entry">
<modifiers/>
</link>
<link id="c323-fa7d-905f-4c82" targetId="7246-0f49-9f43-466a" linkType="entry">
<modifiers/>
</link>
</links>
</entry>
<entry id="e072-9362-c789-f027" name="Skyweavers" points="0.0" categoryId="(No Category)" type="unit" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries>
<entry id="80f3-5651-87a6-a65b" name="Skyweaver" points="50.0" categoryId="(No Category)" type="model" minSelections="2" maxSelections="6" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries>
<entry id="2740-b82f-8006-99f8" name="Skyweaver Jetbike" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="b68d-9e60-dfa6-85a4" targetId="56d7-20a1-845f-9a91" linkType="profile">
<modifiers/>
</link>
</links>
</entry>
<entry id="1545-5124-b4be-d50a" name="Mirage Launchers" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="e142-8bb6-d1a1-d755" targetId="b530-b70b-5a52-15d8" linkType="profile">
<modifiers/>
</link>
</links>
</entry>
</entries>
<entryGroups>
<entryGroup id="0792-c57a-9463-58da" name="Ranged Weapon" defaultEntryId="9c87-2d7f-2a5f-f65b" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries>
<entry id="9c87-2d7f-2a5f-f65b" name="Star Bolas" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="eb20-9882-1024-44ce" targetId="093a-aa4b-db90-e4b6" linkType="profile">
<modifiers/>
</link>
</links>
</entry>
<entry id="c394-b616-aa8c-c4ae" name="Zephyrglaive" points="10.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="7d0c-ba09-a8d9-dc7b" targetId="d618-9251-01e6-bce8" linkType="profile">
<modifiers/>
</link>
</links>
</entry>
</entries>
<entryGroups/>
<modifiers/>
<links/>
</entryGroup>
<entryGroup id="631a-49af-b205-27ed" name="Skyweaver Weapon" defaultEntryId="cfbf-0732-be25-4b78" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries>
<entry id="cfbf-0732-be25-4b78" name="Shuriken Cannon" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="e64f-9803-d155-4e97" targetId="0ec4-2e9b-54ba-3ef0" linkType="profile">
<modifiers/>
</link>
</links>
</entry>
<entry id="8779-fdb4-8650-2cfe" name="Haywire cannon" points="5.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="002a-66cc-cfaf-ad87" targetId="ec94-c52d-2813-e4d5" linkType="profile">
<modifiers/>
</link>
</links>
</entry>
</entries>
<entryGroups/>
<modifiers/>
<links/>
</entryGroup>
</entryGroups>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="31a8-cf72-8e59-fc69" targetId="4eec-598b-21d1-a5ba" linkType="profile">
<modifiers/>
</link>
<link id="b18d-a030-0a5e-b7bf" targetId="968d-8713-7c17-6998" linkType="rule">
<modifiers/>
</link>
<link id="ff6b-5600-aac8-d4d0" targetId="b89d-f9e1-fc84-91bc" linkType="rule">
<modifiers/>
</link>
<link id="024e-2792-b514-bb63" targetId="0b34-d4db-9c61-c714" linkType="rule">
<modifiers/>
</link>
<link id="1ace-20aa-1ab6-0108" targetId="6c81-6306-887a-8b22" linkType="entry">
<modifiers/>
</link>
</links>
</entry>
</entries>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links/>
</entry>
<entry id="cd7e-6601-6c75-4f8f" name="Solitaire" points="145.0" categoryId="(No Category)" type="unit" minSelections="0" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries>
<entry id="38d4-9197-4c5f-8f97" name="Harlequin's Caress" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="b86b-d866-a23c-6273" targetId="24da-cba4-a1b1-3ab0" linkType="profile">
<modifiers/>
</link>
<link id="a315-928a-33a9-4827" targetId="4da1-8bfd-e3da-e33c" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
</entries>
<entryGroups>
<entryGroup id="a402-51cd-7ebe-7dd6" name="Melee Weapon" defaultEntryId="b31c-7ebd-ff07-ad6f" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries>
<entry id="b31c-7ebd-ff07-ad6f" name="Harlequin's Kiss" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="cdf6-f3f5-fd1a-4f24" targetId="c385-43ff-46b5-f092" linkType="profile">
<modifiers/>
</link>
<link id="7b3b-a6c7-59e3-9721" targetId="a7d8-b113-fca0-97d8" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
</entries>
<entryGroups/>
<modifiers/>
<links>
<link id="ba79-829b-3db3-ba11" targetId="1472-2a4f-2ee5-fa00" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
<entryGroup id="c31b-3813-a4fe-5fff" name="Enigmas of the Black Library" minSelections="0" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers>
<modifier type="set" field="maxSelections" value="0.0" repeat="false" numRepeats="1" incrementParentId="roster" incrementChildId="no child" incrementField="selections" incrementValue="1.0">
<conditions>
<condition parentId="cd7e-6601-6c75-4f8f" childId="1472-2a4f-2ee5-fa00" field="selections" type="equal to" value="1.0"/>
</conditions>
<conditionGroups/>
</modifier>
</modifiers>
<links>
<link id="31d1-8c7f-fc31-eb1c" targetId="c464-0971-9e07-5b52" linkType="entry">
<modifiers/>
</link>
<link id="34c2-1c29-bd6d-054c" targetId="2d30-eea5-88db-53fe" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
</entryGroups>
<modifiers/>
<rules>
<rule id="7fed-c354-e8ed-6694" name="Deep Strike" hidden="false">
<modifiers/>
</rule>
<rule id="ee0d-9a4f-9b02-6cb3" name="Fearless" hidden="false">
<modifiers/>
</rule>
<rule id="7450-09e6-37f8-4666" name="Eternal Warrior" hidden="false">
<modifiers/>
</rule>
<rule id="78b9-0ca9-6fa9-10ac" name="Blitz" hidden="false">
<description>Once per game, at the start of any of the controlling player's Movement phases, the Solitaire can move in the following manner instead of moving normally. Roll a number of D6 equal to the current turn number; the result is the number in inches that the Solitaire can move. When moving in this manner, the Solitaire can move over all other models and terrain as if they were open ground, but it cannot end its move on top of other models or impassable terrain. In the Assault phase of the turn in which the Solitaire moves in this manner, its Attack characteristics is increased to 10.</description>
<modifiers/>
</rule>
<rule id="0e9f-d504-88e7-dca9" name="Impossible Form" hidden="false">
<description>A Solitaire has a 3+ invulnerable save.</description>
<modifiers/>
</rule>
<rule id="01ec-0c93-885f-6f04" name="The Path of Damnation" hidden="false">
<description>A Solitaire can never be joined by another character. If a Solitaire is your army’s Warlord, he never has a Warlord Trait.</description>
<modifiers/>
</rule>
<rule id="9303-329a-edaf-e2b5" name="Prismatic Blur" hidden="false">
<description>A Solitaire may move up to 12" in the Movement phase.</description>
<modifiers/>
</rule>
<rule id="a00c-f42f-06a7-e20a" name="Precision Strikes" hidden="false">
<modifiers/>
</rule>
</rules>
<profiles/>
<links>
<link id="de15-a2fa-eff7-2913" targetId="8cf2-2831-8a82-b36f" linkType="profile">
<modifiers/>
</link>
<link id="83b9-5268-0caa-ffd4" targetId="6c81-6306-887a-8b22" linkType="entry">
<modifiers/>
</link>
<link id="f9bd-521e-108d-d3ad" targetId="7246-0f49-9f43-466a" linkType="entry">
<modifiers/>
</link>
<link id="3752-cf25-8c3d-8124" targetId="69b2-69e6-a277-4bde" linkType="entry">
<modifiers/>
</link>
<link id="44ef-9ce3-3a24-8f32" targetId="0b34-d4db-9c61-c714" linkType="rule">
<modifiers/>
</link>
<link id="4e7b-220c-eae4-1420" targetId="b89d-f9e1-fc84-91bc" linkType="rule">
<modifiers/>
</link>
<link id="7a83-ef92-1264-a5b4" targetId="c99b-a8fe-a317-ed23" linkType="rule">
<modifiers/>
</link>
<link id="4446-fb8a-e1b5-5078" targetId="968d-8713-7c17-6998" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
<entry id="7008-ff1a-06cd-14bc" name="Starweaver" points="70.0" categoryId="(No Category)" type="unit" minSelections="0" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries>
<entry id="d896-b011-e114-0164" name="Shuriken Cannon" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="2" maxSelections="2" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="538b-93b7-8792-0473" targetId="0ec4-2e9b-54ba-3ef0" linkType="profile">
<modifiers/>
</link>
</links>
</entry>
<entry id="ca7e-b8f9-e93f-b681" name="Mirage Launchers" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="967a-5c8c-c472-0087" targetId="b530-b70b-5a52-15d8" linkType="profile">
<modifiers/>
</link>
</links>
</entry>
<entry id="695b-6ba1-8213-7e9f" name="Holo-fields" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="4233-1347-0850-8a67" targetId="c68f-44f8-d5eb-96bc" linkType="profile">
<modifiers/>
</link>
</links>
</entry>
</entries>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="b1de-4407-aa88-8626" targetId="060e-f74d-227d-8d0c" linkType="profile">
<modifiers/>
</link>
<link id="fa93-c84e-d184-656a" targetId="968d-8713-7c17-6998" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
<entry id="24ce-fa20-049b-5aa1" name="The Heroes' Path" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups>
<entryGroup id="bdb6-2771-9d72-42ac" name="Death Jester" defaultEntryId="9e1a-2894-a751-18d5" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="9e1a-2894-a751-18d5" targetId="554a-3d04-930d-85ec" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
<entryGroup id="ccae-1640-3f0c-96fe" name="Shadowseer" defaultEntryId="d1bb-55b2-7bc9-61f2" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="d1bb-55b2-7bc9-61f2" targetId="0fad-3f05-cc61-b0ae" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
<entryGroup id="080d-ca68-6339-2140" name="Solitaire" defaultEntryId="5dde-2afa-c889-c083" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="5dde-2afa-c889-c083" targetId="cd7e-6601-6c75-4f8f" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
</entryGroups>
<modifiers/>
<rules>
<rule id="8577-d7c3-c556-4f3b" name="Infiltrate" hidden="false">
<modifiers/>
</rule>
<rule id="8fa9-d9c4-431d-510e" name="Stealth" hidden="false">
<modifiers/>
</rule>
<rule id="3af8-cb2b-dcde-bafb" name="Shrouded" hidden="false">
<modifiers/>
</rule>
<rule id="8969-13d7-75dd-a052" name="A Solitary Path" hidden="false">
<description>Models in this Formation cannot join other units, nor can they be joined by other characters.</description>
<modifiers/>
</rule>
</rules>
<profiles/>
<links/>
</entry>
<entry id="c464-0971-9e07-5b52" name="The Laughing God's Eye" points="20.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="5b07-0c3e-82aa-1e98" targetId="6e16-9b07-2e37-52e2" linkType="profile">
<modifiers/>
</link>
</links>
</entry>
<entry id="7f34-b408-78ea-9ea9" name="The Mask of Secrets" points="15.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links>
<link id="59f8-fa15-d517-8cff" targetId="4bd8-1cee-e73c-0ff1" linkType="profile">
<modifiers/>
</link>
</links>
</entry>
<entry id="d169-d328-ab34-98d0" name="The Serpent's Brood" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups>
<entryGroup id="12dd-141c-752b-fc34" name="Troupes" defaultEntryId="ad90-c643-70e9-bf29" minSelections="3" maxSelections="3" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="ad90-c643-70e9-bf29" targetId="8aa5-f523-060d-cfc3" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>
<entryGroup id="b94a-add8-aa65-eb77" name="Skyweavers" defaultEntryId="59ae-63ad-ce32-f71c" minSelections="2" maxSelections="2" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<links>
<link id="59ae-63ad-ce32-f71c" targetId="e072-9362-c789-f027" linkType="entry">
<modifiers/>
</link>
</links>
</entryGroup>