forked from BSData/wh40k-9e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Fallen.cat
1640 lines (1640 loc) · 127 KB
/
Fallen.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="d541-6e16-d152-db06" name="Fallen" revision="13" battleScribeVersion="2.03" authorName="BSData Developers" authorContact="@Mad_Spy" authorUrl="https://discord.gg/KqPVhds" library="false" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="132" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<categoryEntries>
<categoryEntry id="cd82-15ee-cad6-4909" name="Fallen Angels" hidden="false"/>
</categoryEntries>
<selectionEntries>
<selectionEntry id="c821-2625-b5eb-5ae4" name="Gifts of Chaos (1 Relic)" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="9cd6-e123-2e46-7b0a" value="0.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1026-b9a8-7310-7c21" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="9cd6-e123-2e46-7b0a" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="f6bb-0f04-28cb-d42d" name="New CategoryLink" hidden="false" targetId="c845-c72c-6afe-3fc2" primary="true"/>
</categoryLinks>
<costs>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="-1.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1026-b9a8-7310-7c21" name="Gifts of Chaos (2 Relics)" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="a3fb-35bf-9cc9-6eb4" value="0.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c821-2625-b5eb-5ae4" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="a3fb-35bf-9cc9-6eb4" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="2776-609b-2d66-3399" name="New CategoryLink" hidden="false" targetId="c845-c72c-6afe-3fc2" primary="true"/>
</categoryLinks>
<costs>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="-3.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="1cd4-ef48-c06a-96da" name="Cypher" hidden="false" collective="false" import="true" targetId="90fa-7e44-02fc-0db0" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5afb-3d0f-8838-b6b7" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="35e8-f827-bc94-388d" name="Fallen Angels" hidden="false" targetId="cd82-15ee-cad6-4909" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="658d-c741-d637-1886" name="Fallen" hidden="false" collective="false" import="true" targetId="0cfc-b724-eeed-7177" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5afb-3d0f-8838-b6b7" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="cb47-406c-9d77-aec8" name="Fallen Angels" hidden="false" targetId="cd82-15ee-cad6-4909" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="0f1f-01a6-cdef-78d6" name="Specialist Detachment" hidden="false" collective="false" import="true" targetId="1431-f0a4-42a6-bbc5" type="selectionEntry"/>
<entryLink id="6e41-55d5-6e88-42d0" name="Chaos Rhino" hidden="false" collective="false" import="true" targetId="b76d-3fd6-ae75-f2b8" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5afb-3d0f-8838-b6b7" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="0703-053b-63eb-e7d0" name="Sorcerer" hidden="false" collective="false" import="true" targetId="f34e-3d5d-31b2-3b3c" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5afb-3d0f-8838-b6b7" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="7ecb-9286-5e13-2f48" name="Fallen" hidden="false" collective="false" import="true" targetId="0cfc-b724-eeed-7177" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5afb-3d0f-8838-b6b7" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="c7c8-ce9c-553b-f002" name="Faction: Imperium" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="ebbb-256b-83c1-ed44" name="Cypher" hidden="false" collective="false" import="true" targetId="90fa-7e44-02fc-0db0" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5afb-3d0f-8838-b6b7" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="328e-3181-b508-05d9" name="Faction: Imperium" hidden="false" targetId="84e2-9fa9-ebe6-1d18" primary="false"/>
</categoryLinks>
</entryLink>
</entryLinks>
<rules>
<rule id="47e0-2f52-0200-d91d" name="Bolter Discipline" hidden="false">
<description>All ADEPTUS ASTARTES, HERETIC ASTARTES and FALLEN models gain this ability.
Instead of following the normal rules for Rapid Fire weapons, models in this unit firing Rapid Fire bolt weapons make double the number of attacks if any of the following apply:
• The firing model’s target is within half the weapon’s maximum range.
• The firing model is INFANTRY and every model in its unit remained stationary in your previous Movement phase.
• The firing model is a TERMINATOR, BIKER, CENTURION, DREADNOUGHT or HELBRUTE.
For the purposes of this ability, a Rapid Fire bolt weapon is any weapon with the Rapid Fire type whose profile includes the word ‘bolt’ (e.g. boltgun, bolt rifle, storm bolter, combi-bolter, hurricane bolter, inferno boltgun, etc.). This also applies when firing the boltgun profile of combi-weapons (including the bolt weapon profile of Relics such as Blood Song and the Lion’s Wrath) and when firing relics that replace a Rapid Fire bolt weapon, so long as the relic is also a Rapid Fire weapon (e.g. Primarch’s Wrath and Fury of Deimos). The Gauntlets of Ultramar and the Talon of Horus are also Rapid Fire bolt weapons, as is the guardian spear used by Deathwatch Watch Masters.</description>
</rule>
</rules>
<sharedSelectionEntries>
<selectionEntry id="90fa-7e44-02fc-0db0" name="Cypher" page="" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="add" field="category" value="cd82-15ee-cad6-4909">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5afb-3d0f-8838-b6b7" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="197d-a96e-ebfa-50d6" type="max"/>
</constraints>
<profiles>
<profile id="1ac0-514e-80d5-6937" name="Cypher" page="" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">7"</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">4</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">4</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">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="2471-5af3-0c5d-2660" name="Blazing Weapons" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Cypher can use his pistols in your Shooting phase even if he has Advanced or Fallen Back in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="b046-3183-1d1e-d48b" name="Mysterious Protection" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Cypher has a 4+ invulnerable save. In addition, roll a D6 if Cypher is slain. On a roll of 2+, Cypher's model is still removed from play, but he is not considered to have been slain for the purposes of any mission victory conditions.</characteristic>
</characteristics>
</profile>
<profile id="e87e-d603-d257-226a" name="Lord Cypher" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">You can re-roll hit rolls of 1 made for friendly FALLEN units within 6" of Cypher</characteristic>
</characteristics>
</profile>
<profile id="586c-9e62-ea8d-dc06" name="No-one's Puppet" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Cypher cannot use the Daemonic Ritual ability, even though he has the CHAOS and CHARACTER keywords.</characteristic>
</characteristics>
</profile>
<profile id="f9d2-96f2-41b8-41b5" name="Agent of Discord" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5afb-3d0f-8838-b6b7" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Enemy units within 12" of CYPHER cannot use any abilities, Warlord Traits or Relics that allow them to gain, return or refund Command Points. The range of this ability is increased to 18" while there are 10 or more other friendly FALLEN ANGELS models within 12" of CYPHER. The range of this ability is instead increased to 24" while there are 20 or more other friendly FALLEN ANGELS models within 12" of CYPHER.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="2adf-9f5a-3c9a-9047" name="New CategoryLink" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="0859-0d80-d5ad-0e8c" name="New CategoryLink" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="04dd-fb51-3751-b3d0" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="8b6a-70be-db6d-8e06" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="55a0-c6f8-5e06-2758" name="New CategoryLink" hidden="false" targetId="e12c-dd25-cbab-a30d" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="d4bb-e35f-e8a5-9cd8" name="Cypher's bolt pistol" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a0cf-e1b4-e33c-a960" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2f35-83b6-afe3-0899" type="min"/>
</constraints>
<profiles>
<profile id="6943-79c0-dde3-d281" name="Cypher's bolt pistol" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">16"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Pistol 3</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">4</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-1</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="fd14-b46e-2da2-92d5" name="Cypher's plasma pistol" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="649d-b125-8b5d-e42c" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="095d-63a0-5e99-d965" type="min"/>
</constraints>
<profiles>
<profile id="7966-a7b3-1fb8-4f2d" name="Cypher's plasma pistol" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">12"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Pistol 2</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">8</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.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>
<entryLinks>
<entryLink id="f256-a9e9-162d-e7c4" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="cddf-945e-1335-e681" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="81ba-f65f-8c0a-8166" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2d22-4fe9-8fd6-a4ef" type="max"/>
</constraints>
</entryLink>
<entryLink id="d150-0a82-997a-0170" name="Warlord" hidden="false" collective="false" import="true" targetId="c1db-1126-92e2-e807" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="85.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>
<selectionEntry id="0cfc-b724-eeed-7177" name="Fallen" page="" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="e356-c769-5920-6e14" value="4">
<conditions>
<condition field="selections" scope="0cfc-b724-eeed-7177" value="5.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
<modifier type="add" field="category" value="cd82-15ee-cad6-4909">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5afb-3d0f-8838-b6b7" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="f1f2-8085-b7f2-b8f7" name="Fallen Champion" 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">1</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">3</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="103a-3c30-638b-25b1" name="Fallen" 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">1</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">2</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="7f50-495b-2a8f-27ee" name="Fallen Angels" hidden="false" targetId="efe6-7bbc-5953-3290" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="8386-b97c-d8a2-81d8" name="New CategoryLink" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="168c-f9d1-e781-617f" name="New CategoryLink" hidden="false" targetId="638d74c6-bd97-4de5-b65a-6aaa24e9f4b2" primary="true"/>
<categoryLink id="16fb-88dd-927c-cc83" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="9a28-74b0-7d93-2bc7" name="Faction: Fallen" hidden="false" targetId="e12c-dd25-cbab-a30d" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="a714-db44-a0b1-854c" name="Fallen" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="5.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="27e4-8a5d-8fcf-cd18" type="min"/>
<constraint field="selections" scope="parent" value="10.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c196-c1c3-3ba5-2829" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="3661-e8b2-b9a5-d7a0" name="Fallen w/ boltgun" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="7cbb-5220-36d4-aa12" value="0.0"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5155-9c6f-67a9-9a42" type="max"/>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7cbb-5220-36d4-aa12" type="min"/>
</constraints>
<entryLinks>
<entryLink id="b6cb-f203-3896-7d54" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="cddf-945e-1335-e681" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1897-183a-8c1f-8222" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c5d0-c6f7-707b-e696" type="min"/>
</constraints>
</entryLink>
<entryLink id="5320-abcb-6309-1a34" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="37d3-7098-d596-9948" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e210-257e-73f1-d5bf" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5277-2267-8f70-ef37" type="min"/>
</constraints>
</entryLink>
<entryLink id="85b6-a7e2-f9db-b0f2" name="Boltgun" hidden="false" collective="false" import="true" targetId="ca06-ac13-d02f-6f9a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="095f-21b3-66c3-7662" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="023d-0805-2715-3334" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="14.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7a23-c43a-fe08-2a9d" name="Fallen Champion" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7574-a602-a476-e601" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f5d8-77f6-0446-d035" type="max"/>
</constraints>
<entryLinks>
<entryLink id="7546-20d6-e999-5a52" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="bb78-534a-7b77-edbc" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a8ba-90a0-ec98-b29e" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="733a-3c1b-b361-d40b" type="min"/>
</constraints>
</entryLink>
<entryLink id="ff8f-d6f2-1634-664c" name="Fallen Champion Equipment" hidden="false" collective="false" import="true" targetId="1f91-a49d-4212-e2ce" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d4ae-4a7e-b170-b828" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="14.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8037-44b7-f9f2-45bc" name="Fallen w/ heavy or special weapon" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="Fallen w/ Heavy weapon">
<conditions>
<condition field="selections" scope="8037-44b7-f9f2-45bc" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1e5c-7492-b14e-1edb" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="name" value="Fallen w/ Special weapon">
<conditions>
<condition field="selections" scope="8037-44b7-f9f2-45bc" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7633-de22-b73b-e128" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6797-acdb-dec5-d011" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="0b6a-24cf-5912-afc3" name="Weapon Options" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="6650-c707-d72a-7b21" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7030-035f-2b87-5dee" type="min"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="1e5c-7492-b14e-1edb" name="Heavy weapons" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9301-7d05-aa0d-3ba9" type="max"/>
</constraints>
<entryLinks>
<entryLink id="ad11-c624-8f21-9450" name="Autocannon" hidden="false" collective="false" import="true" targetId="5210-8cb2-b5a2-a04f" type="selectionEntry"/>
<entryLink id="fdc9-3c16-e03a-02f3" name="Heavy bolter" hidden="false" collective="false" import="true" targetId="05ab-e7cc-e856-c36f" type="selectionEntry"/>
<entryLink id="8a85-e211-471d-5541" name="Lascannon" hidden="false" collective="false" import="true" targetId="a908-4664-11cd-f8b2" type="selectionEntry"/>
<entryLink id="1ca7-8ddb-e029-d2da" name="Missile launcher" hidden="false" collective="false" import="true" targetId="1469-1964-7a91-94d4" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="7633-de22-b73b-e128" name="Special weapons" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f7ff-ae3d-c2e9-a975" type="max"/>
</constraints>
<entryLinks>
<entryLink id="12e3-529a-7342-acd3" name="Flamer" hidden="false" collective="false" import="true" targetId="fd22-6743-2d4c-dd62" type="selectionEntry"/>
<entryLink id="e6fa-be70-16a1-c543" name="Meltagun" hidden="false" collective="false" import="true" targetId="efc8-c51d-5b02-a3a2" type="selectionEntry"/>
<entryLink id="4178-345f-5ba4-776c" name="Plasma gun" hidden="false" collective="false" import="true" targetId="8c14-22cc-93ce-b85a" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="ec1d-287a-3c4c-9ff3" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="bb78-534a-7b77-edbc" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="51fc-ff42-26d5-7a06" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="18bb-a42f-9ad7-1396" type="min"/>
</constraints>
</entryLink>
<entryLink id="559e-e125-f806-ea5a" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="0334-f487-8229-0c1a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="87d3-37d7-5b43-1d79" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2e0d-a47e-526e-e3bd" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="14.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="19a5-4e63-c66e-47a3" name="Fallen w/ chainsword" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="9.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7437-d1e3-51c0-5c03" type="max"/>
</constraints>
<entryLinks>
<entryLink id="2f5f-7ce5-ab67-646b" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="cddf-945e-1335-e681" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0633-cbf0-6b70-8b30" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ed12-a632-51c1-eb2f" type="min"/>
</constraints>
</entryLink>
<entryLink id="215c-98d6-2d4e-f297" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="37d3-7098-d596-9948" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4541-6d54-a348-ffc7" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6af4-d736-7112-0d99" type="min"/>
</constraints>
</entryLink>
<entryLink id="36d4-58ed-3eb3-a78b" name="Chainsword" hidden="false" collective="false" import="true" targetId="4334-d2da-32f5-dc53" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="89e0-384e-62e5-8b06" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="04c2-5588-c0ba-4d8b" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="14.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="8c7d-c098-2a83-18c7" name="Fallen w/ Weapon option (max 4)" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="4.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f32f-5c81-2041-88d2" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="3ee7-36b3-2c19-27a6" name="Fallen w/ Melee weapon" hidden="false" collective="false" import="true" type="model">
<selectionEntryGroups>
<selectionEntryGroup id="43bc-34f9-24a5-111f" name="Melee Options" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="b877-522a-ca5d-c520" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c11c-290b-215c-4f6a" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="8da7-ae67-9566-12ba" name="Chainaxe" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="9cb1-c835-6f38-6f25" name="Chainaxe" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">+1</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-1</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">1</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="1.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>
<entryLinks>
<entryLink id="080a-3122-7264-fad0" name="Chainsword" hidden="false" collective="false" import="true" targetId="0dd1-2e2b-7dd1-5495" type="selectionEntry"/>
<entryLink id="1045-a657-475a-1bc9" name="Lightning Claw" hidden="false" collective="false" import="true" targetId="90de-7b01-e401-888b" type="selectionEntry"/>
<entryLink id="a379-13ef-f7ae-6e4c" name="Power axe" hidden="false" collective="false" import="true" targetId="3292-34e6-f679-d5b9" type="selectionEntry"/>
<entryLink id="5f86-22c9-f96b-0634" name="Power fist" hidden="false" collective="false" import="true" targetId="f122-3720-fa32-4215" type="selectionEntry"/>
<entryLink id="1953-b312-73b9-9967" name="Power maul" hidden="false" collective="false" import="true" targetId="6ea7-1195-7144-438e" type="selectionEntry"/>
<entryLink id="0cc8-e9ce-d174-6561" name="Power sword" hidden="false" collective="false" import="true" targetId="bc9e-551d-9afb-78d5" type="selectionEntry"/>
<entryLink id="afc7-f84a-2cf4-b37f" name="Thunder hammer" hidden="false" collective="false" import="true" targetId="0e57-eaf5-763f-9c45" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="d539-2f8f-c7cb-e866" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="bb78-534a-7b77-edbc" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3f80-f2ec-7dee-a128" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="06d1-059d-f11f-1a9e" type="min"/>
</constraints>
</entryLink>
<entryLink id="f71d-c5f1-5d32-cebd" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="0334-f487-8229-0c1a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a45d-f3e5-d5bd-6f30" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8949-7fb1-376d-0830" type="min"/>
</constraints>
</entryLink>
<entryLink id="9a45-f32f-ac57-2c30" name="Boltgun" hidden="false" collective="false" import="true" targetId="b61f-a3c1-827d-c5b6" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="16ad-66cc-90ad-f127" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="13d8-897b-20d3-5e3d" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="14.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="15b3-dff7-ecc3-ec7e" name="Fallen w/ special or combi weapon" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="Fallen w/ Special weapon">
<conditions>
<condition field="selections" scope="15b3-dff7-ecc3-ec7e" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="8aeb-2c9f-e020-c29a" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="name" value="Fallen w/ Combi weapon">
<conditions>
<condition field="selections" scope="15b3-dff7-ecc3-ec7e" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="f929-5a2b-7d4b-fbae" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<selectionEntryGroups>
<selectionEntryGroup id="41dd-769a-2964-b3c4" name="Weapon Options" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="cefd-38a4-14f4-9fa6" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="43c9-93c2-5a4b-c459" type="min"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="8aeb-2c9f-e020-c29a" name="Special weapons" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d119-da32-bd2f-5eb7" type="max"/>
</constraints>
<entryLinks>
<entryLink id="797e-3b48-548f-9e45" name="Flamer" hidden="false" collective="false" import="true" targetId="fd22-6743-2d4c-dd62" type="selectionEntry"/>
<entryLink id="bad7-615b-705e-8c64" name="Meltagun" hidden="false" collective="false" import="true" targetId="efc8-c51d-5b02-a3a2" type="selectionEntry"/>
<entryLink id="c48f-2e2b-e085-0d73" name="Plasma gun" hidden="false" collective="false" import="true" targetId="8c14-22cc-93ce-b85a" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="f929-5a2b-7d4b-fbae" name="Combi-weapons" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8fb1-d161-0740-7e0f" type="max"/>
</constraints>
<entryLinks>
<entryLink id="218e-c1c6-3294-6f29" name="Combi-bolter" hidden="false" collective="false" import="true" targetId="eba0-9fc6-5334-a390" type="selectionEntry"/>
<entryLink id="2e53-26de-715e-fda5" name="Combi-flamer" hidden="false" collective="false" import="true" targetId="c6a1-e0c4-c1b1-dce1" type="selectionEntry"/>
<entryLink id="9926-8c69-2399-aca0" name="Combi-melta" hidden="false" collective="false" import="true" targetId="c445-e211-f316-5d83" type="selectionEntry"/>
<entryLink id="a91f-791b-c365-1313" name="Combi-plasma" hidden="false" collective="false" import="true" targetId="fdce-cdf7-21a9-f9ac" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="94b4-92d9-f312-a847" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="bb78-534a-7b77-edbc" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8f36-94d1-091c-1cf6" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c165-59b6-6306-cedf" type="min"/>
</constraints>
</entryLink>
<entryLink id="9b06-8fb5-3f95-f3af" name="Bolt pistol" hidden="false" collective="false" import="true" targetId="0334-f487-8229-0c1a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1373-ea66-a31d-5497" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="064a-79ef-10af-8232" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="14.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1738-6213-2cc9-07aa" name="Fallen w/ lightning claws" hidden="false" collective="false" import="true" type="model">
<entryLinks>
<entryLink id="afab-8d30-3440-da20" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="bb78-534a-7b77-edbc" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="44e5-6849-3ce4-5cad" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b58f-45ea-dcc3-db0e" type="min"/>
</constraints>
</entryLink>
<entryLink id="3b8e-b8f6-fada-2ac2" name="Lightning Claw (Pair)" hidden="false" collective="false" import="true" targetId="7603-6241-ab8b-4603" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="75a3-05c1-f6d9-1d0b" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3cc3-da4d-ef99-d16d" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="14.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e74e-757e-0743-98b6" name="Fallen w/ plasma pistol" hidden="false" collective="false" import="true" type="model">
<selectionEntryGroups>
<selectionEntryGroup id="e053-939f-0b2a-9a4d" name="Boltgun option" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ef9a-2452-b23e-88d2" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9807-75a7-b20a-7629" type="max"/>
</constraints>
<entryLinks>
<entryLink id="b1a4-1174-9598-e25d" name="Boltgun" hidden="false" collective="false" import="true" targetId="b61f-a3c1-827d-c5b6" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0369-a7ec-8db4-ea11" type="max"/>
</constraints>
</entryLink>
<entryLink id="8ab0-a45e-44f1-899b" name="Chainsword" hidden="false" collective="false" import="true" targetId="0dd1-2e2b-7dd1-5495" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="43eb-3a1e-25f1-1e89" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="5d5f-1736-e5f8-1b92" name="Frag & Krak grenades" hidden="false" collective="false" import="true" targetId="bb78-534a-7b77-edbc" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="79f4-6ba2-9adc-8801" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0bb6-7e38-2096-bcf0" type="min"/>
</constraints>
</entryLink>
<entryLink id="53ba-b6ad-31ab-8d01" name="Plasma pistol" hidden="false" collective="false" import="true" targetId="83be-1ba9-c326-4760" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="83e3-660f-d55c-e061" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1ee5-efa1-c8b7-e3df" type="min"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="14.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="1406-8d29-bd38-be61" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="5dfc-ebf6-3577-e5f7" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="6.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1431-f0a4-42a6-bbc5" name="Specialist Detachment" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="3e19-dc49-575c-53b6" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="528d-bac9-93c3-873d" name="New CategoryLink" hidden="false" targetId="c845-c72c-6afe-3fc2" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="c6a2-d64e-4a76-91c6" name="Specialist Detachments" hidden="false" collective="false" import="true" targetId="7e67-64c7-6caa-52b7" type="selectionEntryGroup"/>
</entryLinks>
<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="b76d-3fd6-ae75-f2b8" name="Chaos Rhino" page="" hidden="false" collective="false" import="true" type="model">
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5afb-3d0f-8838-b6b7" type="equalTo"/>
</conditions>
<modifiers>
<modifier type="add" field="category" value="cd82-15ee-cad6-4909"/>
<modifier type="remove" field="category" value="84e2-9fa9-ebe6-1d18"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<profiles>
<profile id="99e9-4f45-c7e0-8c17" name="Chaos Rhino" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">*</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">6+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">*</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">6</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">7</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">10</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">*</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">8</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="cd01-b7c0-e40b-45a6" name="Chaos Rhino" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">-</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">M</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">BS</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">A</characteristic>
</characteristics>
</profile>
<profile id="31d8-33d8-2224-bb90" name="Chaos Rhino1" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">6-10+</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">12"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">3+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">3</characteristic>
</characteristics>
</profile>
<profile id="7a30-f469-2784-5c44" name="Chaos Rhino2" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">3-5</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">6"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">4+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">D3</characteristic>
</characteristics>
</profile>
<profile id="db34-8905-af22-bcde" name="Chaos Rhino3" hidden="false" typeId="5f4f-ea74-0630-4afe" typeName="Wound Track">
<characteristics>
<characteristic name="Remaining W" typeId="8e45-c866-b2d4-c9ab">1-2</characteristic>
<characteristic name="Characteristic 1" typeId="bf41-c860-50bc-2a7e">3"</characteristic>
<characteristic name="Characteristic 2" typeId="dc18-e51f-309b-8efa">5+</characteristic>
<characteristic name="Characteristic 3" typeId="df06-8eca-150f-90ba">1</characteristic>
</characteristics>
</profile>
<profile id="1e25-c5dc-c1ea-6ce8" name="Chaos Rhino" hidden="false" typeId="b3a8-0452-7436-44d1" typeName="Transport">
<characteristics>
<characteristic name="Capacity" typeId="15aa-1916-a38b-d223">This model can transport 10 FALLEN INFANTRY models. It cannot, however, transport TERMINATORS , CULT OF DESTRUCTION or JUMP PACK models.</characteristic>
</characteristics>
</profile>
<profile id="51c0-1450-ae1c-ec04" name="Self-repair" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Roll a D6 at the start of each of your turns; on a 6, this unit heals one wound.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="157b-8713-9ff1-46f6" name="Explodes" hidden="false" targetId="9446-1148-da70-4028" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="36b6-aeb5-999d-254a" name="New CategoryLink" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="5249-a644-fd63-d4ef" name="New CategoryLink" hidden="false" targetId="1b66-3f5f-6705-079a" primary="true"/>
<categoryLink id="d816-30bb-988b-5c38" name="New CategoryLink" hidden="false" targetId="6cc4-1b62-8e8a-05cd" primary="false"/>
<categoryLink id="3fd0-ead8-b805-62df" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="22ae-b313-e900-6b89" name="Faction: Fallen" hidden="false" targetId="e12c-dd25-cbab-a30d" primary="false"/>
<categoryLink id="bc48-6395-7df0-fb22" name="Fallen Angels" hidden="false" targetId="cd82-15ee-cad6-4909" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="347b-67ea-d9a8-3388" name="Smoke Launchers" hidden="false" collective="false" import="true" targetId="2da9-e64f-fece-7504" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="63cd-abe4-1806-5621" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="14d4-4a06-cde3-6deb" type="min"/>
</constraints>
</entryLink>
<entryLink id="f441-b757-52fc-de50" name="Combi-bolter" hidden="false" collective="false" import="true" targetId="eba0-9fc6-5334-a390" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="d06b-5e8f-23e1-9ca3" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="113b-530b-8c73-c26f" type="min"/>
</constraints>
</entryLink>
<entryLink id="181b-4b46-e20e-dc73" name="Havoc launcher" hidden="false" collective="false" import="true" targetId="5ed3-1d35-b562-2108" type="selectionEntry"/>
<entryLink id="8ad9-4983-2635-0a11" name="Combi-weapons" hidden="false" collective="false" import="true" targetId="ffc2-d6e9-682a-771b" type="selectionEntryGroup"/>
<entryLink id="5a49-7b93-1dde-c166" name="Has Battle Honours" hidden="false" collective="false" import="true" targetId="4763-757f-499f-d998" type="selectionEntry"/>
<entryLink id="3910-58f2-b285-4071" name="Battle Honours" hidden="false" collective="false" import="true" targetId="5518-d0f5-a880-d71c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="65.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>
<selectionEntry id="5ed3-1d35-b562-2108" name="Havoc launcher" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9d11-e402-eaec-8da1" type="max"/>
</constraints>
<infoLinks>
<infoLink id="4b6d-7cdd-2c72-ba58" name="Havoc launcher" hidden="false" targetId="a6fe-c733-e20e-612a" type="profile"/>
</infoLinks>
<costs>
<cost name="pts" typeId="points" value="6.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2da9-e64f-fece-7504" name="Smoke Launchers" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="30c0-0ba5-ce4f-7027" name="Smoke Launchers" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">Once per game, instead of shooting any weapons in the Shooting phase, this model can use its Smoke Launchers; until your next Shooting phase your opponent must subtract 1 from all hit rolls for ranged weapons that target this vehicle.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f34e-3d5d-31b2-3b3c" name="Sorcerer" page="" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="add" field="category" value="cd82-15ee-cad6-4909">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="5afb-3d0f-8838-b6b7" type="equalTo"/>
</conditions>
</modifier>
<modifier type="set" field="name" value="Sorcerer with Jump Pack">
<conditions>
<condition field="selections" scope="f34e-3d5d-31b2-3b3c" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f03-5778-e1a7-41ef" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="bc69-9c94-60bc-3ed3" name="Sorcerer" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<modifiers>
<modifier type="set" field="0bdf-a96e-9e38-7779" value="12"">
<conditions>
<condition field="selections" scope="f34e-3d5d-31b2-3b3c" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9f03-5778-e1a7-41ef" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<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">4</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">3</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="eb17-8fea-be47-cdd7" name="Sorcerer" hidden="false" typeId="bc97-dea9-9e88-bb7d" typeName="Psyker">
<characteristics>
<characteristic name="Cast" typeId="5afb-9914-904b-d3b3">2</characteristic>
<characteristic name="Deny" typeId="b5ac-9c20-5d5a-6f9b">1</characteristic>
<characteristic name="Powers Known" typeId="69d7-b45e-00a2-7e46">Smite and 2 powers from the Dark Hereticus discipline</characteristic>
<characteristic name="Other" typeId="c2e2-f115-0003-5d7b"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="4ea5-7cd5-94f9-685c" name="Fallen Angels" hidden="false" targetId="efe6-7bbc-5953-3290" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="e2b0-79d4-ec46-9b55" hidden="false" targetId="848a6ff2-0def-4c72-8433-ff7da70e6bc7" primary="true"/>
<categoryLink id="572e-7a13-56dc-1520" name="New CategoryLink" hidden="false" targetId="e691-aad7-d21c-1023" primary="false"/>
<categoryLink id="8b8c-7ee3-0e13-d977" name="Infantry" hidden="false" targetId="3d52-fccf-10c0-3fae" primary="false"/>
<categoryLink id="be40-d057-cda8-4925" name="Faction: Chaos" hidden="false" targetId="5cf1-acf2-ca3b-c2e5" primary="false"/>
<categoryLink id="f6b6-7a48-cd0c-1d4c" name="Faction: Fallen" hidden="false" targetId="e12c-dd25-cbab-a30d" primary="false"/>
<categoryLink id="16bb-3aa4-96a7-5de7" name="Character" hidden="false" targetId="ef18-746a-369f-43a4" primary="false"/>
<categoryLink id="97e0-ed18-9e70-ddaa" name="Fallen Angels" hidden="false" targetId="cd82-15ee-cad6-4909" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="9f03-5778-e1a7-41ef" name="Jump Pack" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6f5a-c9e0-aeaa-cbc8" type="max"/>
</constraints>
<profiles>
<profile id="788f-58e8-67c3-12c8" name="Jump Pack Assault" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">During deployment, if this model has a jump pack, you can set it up high in the skies instead of placing it on the battlefield. At the end of any of your Movement phases this model can assault from above – set it up anywhere on the battlefield that is more than 9" away from any enemy models.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="4071-8f8a-a89c-9edc" name="Fly" hidden="false" targetId="3117-16d8-fcef-4f56" primary="false"/>
<categoryLink id="0d6e-d59f-888a-a49c" name="Jump Pack" hidden="false" targetId="f627-f23e-a3b4-dc2c" primary="false"/>
</categoryLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="1.0"/>
<cost name="pts" typeId="points" value="28.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="3752-d013-f3e5-fa17" name="Force sword options" hidden="false" collective="false" import="true" defaultSelectionEntryId="442d-82e2-9977-0148">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="fe30-434a-69ce-f099" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="6954-80c9-1201-df14" type="min"/>
</constraints>
<entryLinks>
<entryLink id="442d-82e2-9977-0148" name="New EntryLink" hidden="false" collective="false" import="true" targetId="07e7-1f9b-4c1c-aad9" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fc3d-9691-8553-e33a" type="max"/>
</constraints>
</entryLink>
<entryLink id="893e-7989-4ab7-2301" name="Force axe" hidden="false" collective="false" import="true" targetId="4a0e-0f13-63c2-9aae" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b8df-0abf-e136-bf09" type="max"/>
</constraints>
</entryLink>
<entryLink id="6202-fa2a-4ed5-6786" name="New EntryLink" hidden="false" collective="false" import="true" targetId="6f9a-c4fe-3132-d011" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5e19-7619-5bc3-06ca" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="592d-efc9-0933-598c" name="Pistol options" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="b9a0-58f0-94fb-737b" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="7ce0-47b3-a872-f6d3" type="min"/>
</constraints>
<entryLinks>
<entryLink id="dda7-09b2-d73a-7454" name="Pistols" hidden="false" collective="false" import="true" targetId="6a10-ee77-8b15-f6fe" type="selectionEntryGroup"/>
<entryLink id="9fa9-1862-380f-4d3f" name="Combi-weapons" hidden="false" collective="false" import="true" targetId="ffc2-d6e9-682a-771b" type="selectionEntryGroup"/>
<entryLink id="abf7-8c26-b8e0-d00e" name="Melee Weapons" hidden="false" collective="false" import="true" targetId="9403-1579-1d82-447a" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="3cc2-ffd3-ce7a-7bcc" name="New EntryLink" hidden="false" collective="false" import="true" targetId="cddf-945e-1335-e681" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="af49-eec1-613f-0a68" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="73a6-835a-d9de-5977" type="min"/>
</constraints>
</entryLink>
<entryLink id="5b0c-b247-d429-6d77" name="Smite" hidden="false" collective="false" import="true" targetId="03fd-db47-5333-1e1f" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6110-4e9d-1a76-a529" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ffca-6bdb-7511-3562" type="min"/>
</constraints>
<categoryLinks>
<categoryLink id="6c66-9f1e-7110-62c8" name="New CategoryLink" hidden="false" targetId="e691-aad7-d21c-1023" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="c057-705e-cf15-ef0d" name="Dark Hereticus discipline" hidden="false" collective="false" import="true" targetId="132d-22b7-35eb-e925" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6191-3392-609d-476b" type="max"/>
</constraints>
</entryLink>
<entryLink id="59d2-d45f-a2bd-3d50" name="Artefacts of Chaos" hidden="false" collective="false" import="true" targetId="db42-fef2-6351-be64" type="selectionEntryGroup"/>
<entryLink id="3fe4-e0c3-542d-be92" name="Warlord" hidden="false" collective="false" import="true" targetId="c1db-1126-92e2-e807" type="selectionEntry"/>
<entryLink id="2075-6e5f-0dee-0b68" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="8962-8f3a-3b49-7528" type="selectionEntryGroup"/>
<entryLink id="4c07-4693-08f5-e8ce" name="Is a Custom Character" hidden="false" collective="false" import="true" targetId="43c4-8968-c599-ad5f" type="selectionEntry"/>
<entryLink id="8f36-976d-cc0c-f267" name="Custom Character Selections" hidden="false" collective="false" import="true" targetId="8774-e003-4a50-56c7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="80.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="6.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c1db-1126-92e2-e807" name="Warlord" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="99b0-8beb-f1d2-4a9e" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8fa8-72da-72f7-183d" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="0851-8119-e3ba-8839" name="Warlord" hidden="false" targetId="ae09-117e-a6fa-316b" primary="false"/>
</categoryLinks>
<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="58c1-81b6-457b-86b8" name="Death Hex" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8f61-8d22-13cf-2032" type="max"/>
</constraints>
<profiles>
<profile id="2bbc-3130-c1ad-31f8" name="Death Hex" hidden="false" typeId="ae70-4738-0161-bec0" typeName="Psychic Power">
<characteristics>
<characteristic name="Warp Charge" typeId="5ffd-b800-c317-532a">8</characteristic>
<characteristic name="Range" typeId="fd64-cbc4-94de-24cc">12"</characteristic>
<characteristic name="Details" typeId="ad96-dfa4-b4ed-656d">If manifested, select a visible enemy unit within 12" of the psyker. Until the start of your next Psychic phase, that unit cannot take invulnerable saves.</characteristic>
</characteristics>
</profile>