-
Notifications
You must be signed in to change notification settings - Fork 35
/
2nd-cultists.cat
2937 lines (2935 loc) · 195 KB
/
2nd-cultists.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="baa8-f7ce-e46d-ad72" name="Cultists 2024 Review 1" revision="17" battleScribeVersion="2.03" authorName="DarkSky, Hebus" library="false" gameSystemId="aa64-1e8e-66fc-9abf" gameSystemRevision="55" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<profileTypes>
<profileType id="544c-85ec-a241-28a3" name="2 Defensive (DL)">
<characteristicTypes>
<characteristicType id="1c84-3de2-1298-da52" name="HP"/>
<characteristicType id="2020-b3ed-75a3-c1bc" name="Def"/>
<characteristicType id="72bc-301c-c2cd-0b36" name="Res"/>
<characteristicType id="8efa-a821-a05e-a705" name="Arm"/>
<characteristicType id="a5b4-e05b-7618-bdd6" name="Aeg"/>
<characteristicType id="4b43-6b8e-aefe-5535" name="Rules"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="93a9-b195-fea7-12ff" name="Summoned Daemons" hidden="false"/>
<categoryEntry id="2f76-5aa4-554a-46bf" name="Summoned Daemons (Aves)" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="2792-3989-3c15-f69e" name="Cultists" hidden="false">
<categoryLinks>
<categoryLink id="b829-c09a-a184-cc19" name="Characters" hidden="false" targetId="953d-22cd-7ee1-36dc" primary="false">
<constraints>
<constraint field="limit::24fd-8af8-0c78-001c" scope="roster" value="35.0" percentValue="true" shared="true" includeChildSelections="false" includeChildForces="false" id="49b3-8f26-9d69-9b49" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="f144-f750-6204-4b4d" name="Core" hidden="false" targetId="4bcd-01c8-ce5e-7108" primary="false">
<constraints>
<constraint field="limit::24fd-8af8-0c78-001c" scope="roster" value="25.0" percentValue="true" shared="true" includeChildSelections="false" includeChildForces="false" id="2932-582e-a9c5-7d7f" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="3172-644b-0ef7-1019" name="Special" hidden="false" targetId="f8f1-3d4f-12bf-73cd" primary="false"/>
<categoryLink id="ea59-9d27-78ca-1733" name="Summoned Daemons" hidden="false" targetId="93a9-b195-fea7-12ff" primary="false">
<constraints>
<constraint field="limit::24fd-8af8-0c78-001c" scope="roster" value="45.0" percentValue="true" shared="true" includeChildSelections="false" includeChildForces="false" id="18b8-555f-6916-61e4" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="ca5d-99e3-f571-4993" name="Summoned Aves Daemons" hidden="false" targetId="2f76-5aa4-554a-46bf" primary="false">
<constraints>
<constraint field="selections" scope="roster" value="3.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="663d-89b7-faaf-e066" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<selectionEntries>
<selectionEntry id="b44a-4bdd-a4fe-2e78" name="Cult Leader" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="5.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c1e7-71e3-168c-5e5c" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="15.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="570e-d73a-11da-1ef9" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="20.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d20e-a72c-60b4-2d4a" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="a8e0-21df-4f4f-c4f8" name="New CategoryLink" hidden="false" targetId="953d-22cd-7ee1-36dc" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="68a3-5585-1749-d935" name="Master of Ritual" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d664-b973-594c-5971" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="697e-0a6f-6af7-907f" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="100.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6f22-dccf-1916-de83" name="Special Equipment" 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="458d-d65a-5c86-545c" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="d20c-282e-7e0e-f9a2" name="Special Equipment" hidden="false" collective="false" import="true">
<modifiers>
<modifier type="set" field="c324-c7d8-e332-0fb2" value="200.0">
<conditions>
<condition field="selections" scope="b44a-4bdd-a4fe-2e78" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e7ab-249b-e180-109d" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="24fd-8af8-0c78-001c" scope="parent" value="100.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="c324-c7d8-e332-0fb2" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="4e66-92ed-7afe-3196" name="Artefacts" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="6e89-b227-60dd-c684" type="max"/>
</constraints>
<entryLinks>
<entryLink id="74a3-f259-a3e6-c7aa" name="Artefacts (Wizards)" hidden="false" collective="false" import="true" targetId="ab25-3916-e8af-98cb" type="selectionEntryGroup"/>
<entryLink id="b62d-86cc-7097-f38b" name="Artefacts – Cultists" hidden="false" collective="false" import="true" targetId="b342-eecd-13c4-8ec9" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="ac76-72f2-ffdc-84e8" name="Armour Enchantments" hidden="false" collective="false" import="true" targetId="74ad-3e59-5174-60fa" type="selectionEntryGroup"/>
<entryLink id="8a3a-1cb5-d3fe-e773" name="Weapon Enchantments" hidden="false" collective="false" import="true" targetId="f853-d3c3-4165-d5ab" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="91f0-6215-022b-b392" name="Hideout" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d664-b973-594c-5971" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="273a-5667-d451-b352" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="10.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="17b2-9fd8-2311-d830" name="Wizard Level" hidden="false" collective="false" import="true" defaultSelectionEntryId="d107-cb3a-205c-122f">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8524-e944-3399-4fb9" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="824a-badc-ab69-379e" type="max"/>
</constraints>
<entryLinks>
<entryLink id="d107-cb3a-205c-122f" name="Wizard Adept" hidden="false" collective="false" import="true" targetId="6d2e-3a7c-b8c4-2589" type="selectionEntry"/>
<entryLink id="bd15-25bc-8f34-e3e7" name="Wizard Master" hidden="false" collective="false" import="true" targetId="e7ab-249b-e180-109d" type="selectionEntry">
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="170.0"/>
</costs>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="6a77-de2e-ce67-2080" name="Path of Magic" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c3ea-d3f7-e44b-8557" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="8ccb-c172-9b63-642b" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="39b6-72d0-833a-9d00" name="Occultism" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="691e-92d9-0515-7328" name="Thaumaturgy" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="bd86-4198-abaa-e2b4" name="Evocation" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="5886-14c5-2975-7d7b" name="Essence of a Free Mind Magic Path" hidden="true" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3db5-8d52-cfe9-fbfa" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8796-150e-cd35-a682" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="24e1-8e59-7b41-f2e2" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="6853-108b-67eb-f140" name="Occultism" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="39b6-72d0-833a-9d00" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3372-f048-14dd-f40d" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5aba-a143-47f4-e73a" name="Thaumaturgy" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="691e-92d9-0515-7328" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dd70-f7b1-e72a-0c2a" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a1cd-d0d6-ad3c-3962" name="Evocation" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bd86-4198-abaa-e2b4" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="31ef-3a55-c400-e747" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="911e-bfa1-1fea-324f" name="Light Armour" hidden="false" collective="false" import="true" targetId="dd27-6738-aebc-192e" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d0a3-0f0f-be61-6a88" type="min"/>
</constraints>
</entryLink>
<entryLink id="c462-da06-b02d-04c7" name="Army General" hidden="false" collective="false" import="true" targetId="d664-b973-594c-5971" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="160.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0775-a642-0a1c-5651" name="Daemonic Symbiote" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="5.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c1e7-71e3-168c-5e5c" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="0.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d20e-a72c-60b4-2d4a" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="10.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9254-8b1b-cd73-8912" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="5.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="570e-d73a-11da-1ef9" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<categoryLinks>
<categoryLink id="43e8-77c1-fdab-9ba6" name="New CategoryLink" hidden="false" targetId="953d-22cd-7ee1-36dc" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="e4de-0ddc-e3cc-8b06" name="Special Equipment" 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="f22c-7cd7-0427-6883" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="116d-4adf-f6ca-1781" name="Special Equipment" hidden="false" collective="false" import="true">
<constraints>
<constraint field="24fd-8af8-0c78-001c" scope="parent" value="100.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="0d29-d48f-de66-1f42" type="max"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="51ca-f3e3-07a0-b8de" name="Artefacts" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="dc61-4022-1d7b-d478" type="max"/>
</constraints>
<entryLinks>
<entryLink id="b03b-4751-ae6d-1a94" name="Cult Artefacts" hidden="false" collective="false" import="true" targetId="b342-eecd-13c4-8ec9" type="selectionEntryGroup"/>
<entryLink id="f794-dabf-0bfc-4640" name="Artefacts (Wizards)" hidden="false" collective="false" import="true" targetId="ab25-3916-e8af-98cb" type="selectionEntryGroup"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="770d-ff53-7ff5-9a66" name="Armour Enchantments" hidden="false" collective="false" import="true" targetId="74ad-3e59-5174-60fa" type="selectionEntryGroup"/>
<entryLink id="9798-f286-1371-2e4b" name="Weapon Enchantments" hidden="false" collective="false" import="true" targetId="f853-d3c3-4165-d5ab" type="selectionEntryGroup"/>
<entryLink id="afc7-c95f-edac-9963" name="Shield Enchantments" hidden="false" collective="false" import="true" targetId="3ca8-d93a-232c-d3b5" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="5a13-bc2a-5304-3f46" value="0.0">
<conditions>
<condition field="selections" scope="0775-a642-0a1c-5651" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ff97-a295-86c8-76d5" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5a13-bc2a-5304-3f46" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="63ce-0137-b1ee-cebe" name="Melee Weapon" hidden="false" collective="false" import="true" defaultSelectionEntryId="2e45-837c-8b58-e92e">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="70af-b603-322f-57b1" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cc13-783b-b50f-dcf9" type="min"/>
</constraints>
<entryLinks>
<entryLink id="3501-f65c-77ca-3b8a" name="Great Weapon" hidden="false" collective="false" import="true" targetId="2837-ec0d-956f-690a" type="selectionEntry">
<modifiers>
<modifier type="set" field="c73d-37e8-2340-287d" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="eedf-4585-d0c1-f613" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="5.0"/>
</costs>
</entryLink>
<entryLink id="eac2-0c24-0038-526e" name="Halberd" hidden="false" collective="false" import="true" targetId="544f-9331-9cce-694d" type="selectionEntry">
<modifiers>
<modifier type="set" field="b311-493d-9678-8b90" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="eedf-4585-d0c1-f613" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="5.0"/>
</costs>
</entryLink>
<entryLink id="7e4c-4a31-cdb0-c169" name="Paired Weapons" hidden="false" collective="false" import="true" targetId="6a41-63a5-c5f6-66f6" type="selectionEntry">
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="5.0"/>
</costs>
</entryLink>
<entryLink id="e7ac-fe5f-a041-7519" name="Spear" hidden="false" collective="false" import="true" targetId="e79a-e00b-b0ee-6850" type="selectionEntry">
<modifiers>
<modifier type="set" field="8a37-3686-46d8-6eb0" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="eedf-4585-d0c1-f613" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="5.0"/>
</costs>
</entryLink>
<entryLink id="2e45-837c-8b58-e92e" name="Hand Weapon" hidden="false" collective="false" import="true" targetId="d5a4-4049-60de-5914" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="9269-4096-e382-ac67" name="Wizard Level" hidden="false" collective="false" import="true" defaultSelectionEntryId="6d03-fb83-5c55-cea1">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2ff8-50f5-429a-a51a" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="485d-8547-7e4e-dbdb" type="max"/>
</constraints>
<entryLinks>
<entryLink id="35dc-2143-d7c8-7eac" name="Wizard Adept" hidden="false" collective="false" import="true" targetId="6d2e-3a7c-b8c4-2589" type="selectionEntry">
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="75.0"/>
</costs>
</entryLink>
<entryLink id="6d03-fb83-5c55-cea1" name="Wizard Apprentice" hidden="false" collective="false" import="true" targetId="9dfd-528a-2991-3f75" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="02e7-d47b-1788-3e7b" name="Magic Path" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="347c-7c9f-f8ae-16d5" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="ab33-10b7-7ca1-8cc7" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="b7ce-ae87-8b16-29a1" name="Evocation" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="fb63-28b3-f657-3d78" name="Divination" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="cae6-7748-1741-b3e6" name="Manifestation" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d25a-4d9d-3071-b8ad" type="max"/>
<constraint field="24fd-8af8-0c78-001c" scope="parent" value="100.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b57d-317e-d13e-fdb1" type="max"/>
</constraints>
<entryLinks>
<entryLink id="0c81-05e4-99fa-259a" name="Character - Smothering Coils" hidden="false" collective="false" import="true" targetId="d5ff-e813-fbf9-3dcb" type="selectionEntry"/>
<entryLink id="1d49-fc02-89ba-b9b8" name="Character - Mirrored Scales" hidden="false" collective="false" import="true" targetId="eda7-b682-fc76-86f0" type="selectionEntry"/>
<entryLink id="cb9f-228e-a9c0-a6de" name="Character - Hot Blood" hidden="false" collective="false" import="true" targetId="a616-3192-02ae-0486" type="selectionEntry"/>
<entryLink id="7044-a22a-3793-e55d" name="Character - Whipcrack Tail" hidden="false" collective="false" import="true" targetId="7158-1ad4-fcb0-6352" type="selectionEntry"/>
<entryLink id="9597-cef8-7362-5275" name="Character - Sorcerous Antennae" hidden="false" collective="false" import="true" targetId="83b0-eac7-d5da-0afd" type="selectionEntry"/>
<entryLink id="eb90-acd1-c54e-2980" name="Character - Venom Sacs" hidden="false" collective="false" import="true" targetId="45c0-7a9b-cbfe-e3fb" type="selectionEntry"/>
<entryLink id="d1be-64aa-e9ea-af8f" name="Character - Stiff Upper Lip" hidden="false" collective="false" import="true" targetId="869c-1a56-2a81-2d44" type="selectionEntry"/>
<entryLink id="42ef-6063-5148-753d" name="Character - Mark of the Eternal Champion" hidden="false" collective="false" import="true" targetId="4c11-ae71-444f-2df9" type="selectionEntry"/>
<entryLink id="91ed-b465-bc73-e1dc" name="Character - Unnatural Roots" hidden="false" collective="false" import="true" targetId="893d-02ee-42bb-f53c" type="selectionEntry"/>
<entryLink id="797d-b4b3-5cb9-e3d2" name="Character - Living Shield" hidden="false" collective="false" import="true" targetId="2070-6e9b-c0db-7186" type="selectionEntry"/>
<entryLink id="e117-40be-0646-91dd" name="Character - Roaming Hands" hidden="false" collective="false" import="true" targetId="c606-3f40-4305-ddaf" type="selectionEntry"/>
<entryLink id="5475-af03-df48-d2c1" name="Character - Third Eye" hidden="false" collective="false" import="true" targetId="12e3-072b-cca4-0f3e" type="selectionEntry"/>
<entryLink id="4bc9-cbb1-bd97-3a3c" name="Character - Unhinging Jaw" hidden="false" collective="false" import="true" targetId="86bc-5f84-1a27-4071" type="selectionEntry"/>
<entryLink id="ddee-13f5-b9c8-cde1" name="Character - Mesmerising Plumage" hidden="false" collective="false" import="true" targetId="7a5e-922e-68e4-57a3" type="selectionEntry"/>
<entryLink id="7b0f-ff0c-6ed8-508c" name="Character - Kaleidoscopic Flesh" hidden="false" collective="false" import="true" targetId="1b2b-50e1-100d-d1d8" type="selectionEntry"/>
<entryLink id="9dad-8668-acde-a9bd" name="Character - Red Haze" hidden="false" collective="false" import="true" targetId="75df-f6bb-f3cc-eddc" type="selectionEntry"/>
<entryLink id="8f6a-43f7-ca00-85d9" name="Character - Iron Husk" hidden="false" collective="false" import="true" targetId="c2e4-7848-d99a-e744" type="selectionEntry"/>
<entryLink id="1766-f89f-2364-0eef" name="Character - Piercing Spike" hidden="false" collective="false" import="true" targetId="e919-4d71-490f-3636" type="selectionEntry"/>
<entryLink id="26e0-71fc-263f-a9db" name="Character - Incendiary Ichor" hidden="false" collective="false" import="true" targetId="71b7-525f-aa9d-4af2" type="selectionEntry"/>
<entryLink id="ef09-ed3e-73c7-ab47" name="Character - Divining Snout" hidden="false" collective="false" import="true" targetId="5ef8-3e1e-f3cd-e97d" type="selectionEntry"/>
<entryLink id="9e5d-da4b-67f7-91c2" name="Character - Grasping Proboscis" hidden="false" collective="false" import="true" targetId="b7e7-7e72-3b38-f6b3" type="selectionEntry"/>
<entryLink id="ccef-65eb-b6ba-37ed" name="Character - Digestive Vomit" hidden="false" collective="false" import="true" targetId="a847-4d78-bce0-de0f" type="selectionEntry"/>
<entryLink id="2bd5-5827-a3fd-c1e5" name="Character - Chitinous Scales" hidden="false" collective="false" import="true" targetId="ab0a-29d7-d24a-d410" type="selectionEntry"/>
<entryLink id="bd04-85b3-f4f4-85e3" name="Character - Greenfire Eyes" hidden="false" collective="false" import="true" targetId="efdf-e6b0-3825-1260" type="selectionEntry"/>
<entryLink id="e3ec-7bac-7267-7fd7" name="Character - Segmented Shell" hidden="false" collective="false" import="true" targetId="9a1e-9fcb-170d-83f1" type="selectionEntry"/>
<entryLink id="4d4e-dd76-38d8-cc77" name="Character - Chiling Yawn" hidden="false" collective="false" import="true" targetId="cf20-ed4b-4e78-dbee" type="selectionEntry"/>
<entryLink id="9b1e-9867-227e-609c" name="Character - Hammer Hand" hidden="false" collective="false" import="true" targetId="9563-a189-5ecf-890a" type="selectionEntry"/>
<entryLink id="215e-10f3-043d-879b" name="Character - Cloven Hooves" hidden="false" collective="false" import="true" targetId="6e87-1563-2571-c892" type="selectionEntry"/>
<entryLink id="d796-7d70-e893-5d06" name="Character - Charged Tendrils" hidden="false" collective="false" import="true" targetId="ac13-f402-77fe-6191" type="selectionEntry"/>
<entryLink id="0992-0344-c5b7-4e3c" name="Character - Dextrous Tentacles" hidden="false" collective="false" import="true" targetId="88c0-5043-9924-178d" type="selectionEntry"/>
<entryLink id="b63b-e0eb-adc5-f478" name="Character - Horns of Hubris" hidden="false" collective="false" import="true" targetId="5fdb-710b-3798-4a1d" type="selectionEntry"/>
<entryLink id="ee37-01e0-2c0d-2af3" name="Character - Centipede Legs" hidden="false" collective="false" import="true" targetId="03ba-a686-21ef-53b1" type="selectionEntry"/>
<entryLink id="baa3-153f-6106-ec9c" name="Character - Dark Hide" hidden="false" collective="false" import="true" targetId="e009-abc6-1803-bc6f" type="selectionEntry"/>
<entryLink id="07f0-7573-a1c6-2bc7" name="Character - Broodmother" hidden="false" collective="false" import="true" targetId="2c76-55d8-9622-1685" type="selectionEntry"/>
<entryLink id="fef2-724e-87db-cab9" name="Character - Bronze Backbone" hidden="false" collective="false" import="true" targetId="1b7a-eb47-dcc3-28c7" type="selectionEntry"/>
<entryLink id="eff2-7816-cdfc-0fc4" name="Character - Brimstone Secretions" hidden="false" collective="false" import="true" targetId="9dcc-80dd-84f6-df4d" type="selectionEntry"/>
<entryLink id="1dcc-f989-54b6-39c4" name="Character - Aura of Despair" hidden="false" collective="false" import="true" targetId="d95e-219a-0436-a5a5" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="eedd-4dba-6b7b-e339" name="Essence of a Free Mind Magic Path" hidden="true" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3db5-8d52-cfe9-fbfa" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="f165-d994-9995-744a" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="5f0d-ebbe-518c-b3b6" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="7286-ee4e-7687-7ee4" name="Evocation" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="b7ce-ae87-8b16-29a1" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cbcb-ca26-b53f-c9a8" name="Divination" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="fb63-28b3-f657-3d78" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="b5b5-4c52-2292-b09c" name="Shield" hidden="false" collective="false" import="true" targetId="ff97-a295-86c8-76d5" type="selectionEntry">
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="5.0"/>
</costs>
</entryLink>
<entryLink id="8736-cfb0-c4c6-408c" name="Heavy Armour" hidden="false" collective="false" import="true" targetId="c015-e52d-3852-27ea" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a7db-2d1a-1107-f61a" type="min"/>
</constraints>
</entryLink>
<entryLink id="1385-2a0f-3573-c5fe" name="Army General" hidden="false" collective="false" import="true" targetId="d664-b973-594c-5971" type="selectionEntry"/>
</entryLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="160.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e3d3-2848-cc87-c647" name="Cultists" hidden="false" collective="false" import="true" type="unit">
<categoryLinks>
<categoryLink id="8a53-04d8-4133-161c" name="New CategoryLink" hidden="false" targetId="4bcd-01c8-ce5e-7108" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="598d-ca6a-5793-8e6b" name="Cultist" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="0.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="570e-d73a-11da-1ef9" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="1.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d20e-a72c-60b4-2d4a" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="1.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c1e7-71e3-168c-5e5c" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="1.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9254-8b1b-cd73-8912" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="40.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="049b-c948-2199-c40d" type="max"/>
<constraint field="selections" scope="parent" value="15.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cad7-a9ff-c113-1743" type="min"/>
</constraints>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="3.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="2310-df43-b6ef-763e" name="Cult Operation" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="086d-4f2a-c615-6563" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="219c-d3ab-b52f-901b" name="Eldritch Tome" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="5c38-8f34-896d-0320" value="0.0">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c3e7-8c28-0d42-6aa8" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="3.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="1e39-a366-4148-37dc" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="5c38-8f34-896d-0320" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="30.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2686-1c0f-3451-cd1f" name="Abyssal Conduit" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="3.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="88a8-a88e-bbd3-c295" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d03b-34ea-3a6b-9562" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="80.0"/>
</costs>
</selectionEntry>
<selectionEntry id="7745-e20a-2055-02fc" name="Infiltrators" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="7edc-fe36-dfa0-81d1" value="0.0">
<conditions>
<condition field="selections" scope="parent" value="15.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="model" type="greaterThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="3.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="69ab-62c0-bad7-8a68" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="7edc-fe36-dfa0-81d1" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="10.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="4fd5-a3b6-05e2-d8b6" name="Command Group" hidden="false" collective="false" import="true">
<entryLinks>
<entryLink id="3e66-22e6-b8e8-f706" name="Champion" hidden="false" collective="false" import="true" targetId="c3e7-8c28-0d42-6aa8" type="selectionEntry"/>
<entryLink id="c316-5ae3-4e7f-7b19" name="Musician" hidden="false" collective="false" import="true" targetId="10fe-ce12-d662-ae02" type="selectionEntry"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="4666-31fc-c025-9a94" name="Spear" hidden="false" collective="false" import="true" targetId="e79a-e00b-b0ee-6850" type="selectionEntry">
<modifiers>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="1.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
<entryLink id="3740-2604-3639-48e8" name="Throwing Weapons" hidden="false" collective="false" import="true" targetId="b672-9729-1d95-cb6d" type="selectionEntry">
<modifiers>
<modifier type="set" field="e829-ad61-66b7-5b70" value="0.0">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="7745-e20a-2055-02fc" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="20.0"/>
</costs>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="60.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e09d-b0d9-7d42-2aa9" name="Possessed" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="90d3-ff08-9f92-c3af" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="1a60-3f27-1973-1cbd" name="New CategoryLink" hidden="false" targetId="f8f1-3d4f-12bf-73cd" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="8ec0-8399-162e-11b1" name="Possessed" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="1.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c1e7-71e3-168c-5e5c" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="4.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d20e-a72c-60b4-2d4a" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="2.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="570e-d73a-11da-1ef9" type="equalTo"/>
</conditions>
</modifier>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="0.0">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9254-8b1b-cd73-8912" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="25.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7748-83a7-bf3b-8407" type="max"/>
<constraint field="selections" scope="parent" value="10.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d8d4-44d5-dbd7-fb56" type="min"/>
</constraints>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="9.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="7b0e-0c25-f1d2-a6bb" name="Melee Weapon" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1f9b-ffbc-832c-de5c" type="max"/>
</constraints>
<entryLinks>
<entryLink id="4bb9-6a6c-2055-0fbc" name="Great Weapon" hidden="false" collective="false" import="true" targetId="2837-ec0d-956f-690a" type="selectionEntry">
<modifiers>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="2.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
<entryLink id="842a-b9ad-72cc-a27f" name="Paired Weapons" hidden="false" collective="false" import="true" targetId="6a41-63a5-c5f6-66f6" type="selectionEntry">
<modifiers>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="2.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
<entryLink id="e164-dac4-a7f2-0d4b" name="Spear" hidden="false" collective="false" import="true" targetId="e79a-e00b-b0ee-6850" type="selectionEntry">
<modifiers>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="2.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="effa-4679-4ea7-d3fd" name="Manifestation" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6755-d5e3-16e5-868d" type="max"/>
</constraints>
<entryLinks>
<entryLink id="5bfd-2334-3794-57ac" name="Unit - Chitinous Scales" hidden="false" collective="false" import="true" targetId="2d45-3ccf-4ce6-f49e" type="selectionEntry">
<modifiers>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="4.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
<entryLink id="e5d7-ef7c-0eb4-f5dd" name="Unit - Red Haze" hidden="false" collective="false" import="true" targetId="e545-e449-9cb9-591a" type="selectionEntry">
<modifiers>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="3.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
<entryLink id="d731-bda7-297a-9a6f" name="Unit - Bronze Backbone" hidden="false" collective="false" import="true" targetId="145e-9afe-f873-f18e" type="selectionEntry">
<modifiers>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="3.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="077a-a709-2308-a3fb" name="Command Group" hidden="false" collective="false" import="true" targetId="b4c3-e840-1bd5-b746" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="40.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e5dd-5d75-3434-f290" name="Ritual Altar" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9616-b5c0-3923-f5fe" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="d87b-b586-9094-cc22" name="New CategoryLink" hidden="false" targetId="f8f1-3d4f-12bf-73cd" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="6e50-0813-d1c2-44f3" name="Grand Council" 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="e5bd-6e54-78b3-442a" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="60.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="160.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5705-6e70-8fc8-7d8f" name="Profane Idol" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3e3c-0d20-7fa6-15ac" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="7ec7-3cba-a5dd-96bc" name="New CategoryLink" hidden="false" targetId="f8f1-3d4f-12bf-73cd" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="31e6-86c4-7026-d246" name="Doomsday Colossus" 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="7ffe-a0b4-5d54-53a9" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="20.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="41d2-984d-9927-a3a8" name="Material" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6915-d736-6d7a-d78b" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="736e-84db-be22-6cb5" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="f28b-770a-9660-734b" name="Wicker Man" 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="51d6-6961-1061-d2e5" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="53f0-e0f1-6d91-8cdf" name="Heretic Golem" 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="7fbb-6f1f-429d-e03d" type="max"/>
</constraints>
</selectionEntry>
<selectionEntry id="fe8a-f9c4-63e0-dba9" name="Apostate Automaton" 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="13f2-2f01-d49e-e9b8" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="40.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="300.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0bf6-50c7-b2d9-33ab" name="Imps" hidden="false" collective="false" import="true" type="unit">
<categoryLinks>
<categoryLink id="b3b9-17c5-c7da-5079" name="New CategoryLink" hidden="false" targetId="4bcd-01c8-ce5e-7108" primary="true"/>
<categoryLink id="b4ab-aaa7-9f5e-793c" name="Summoned Daemons" hidden="false" targetId="93a9-b195-fea7-12ff" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="0360-b9ed-948d-778c" name="Imp" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="25.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eb26-ece8-c4aa-cd5c" type="max"/>
<constraint field="selections" scope="parent" value="10.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="533b-f7db-bd09-5ca3" type="min"/>
<constraint field="selections" scope="roster" value="40.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d78d-b18b-e0d0-5831" type="max"/>
</constraints>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="15.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="10d9-41c7-d42d-97eb" name="Bound Spell" hidden="true" collective="false" import="true">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8f82-6955-3d8a-01ea" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a1b1-0dd6-0f8f-9a23" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6479-57d5-bf0b-787e" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="6f19-af1d-cddc-74f0" name="Hand of Heaven" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="40.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3aa8-64d4-29fc-d38a" name="Spear of Infinity" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="35.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="e1d7-fcac-cb55-eb29" name="Manifestation" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="35fa-fa49-5ba9-5fe4" type="max"/>
</constraints>
<entryLinks>
<entryLink id="10de-7056-b3f8-a86c" name="Unit - Dark Hide" hidden="false" collective="false" import="true" targetId="7380-bd6f-0954-af3c" type="selectionEntry">
<modifiers>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="1.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
<entryLink id="4f18-9315-e89f-89d8" name="Unit - Dark Hide" hidden="false" collective="false" import="true" targetId="7380-bd6f-0954-af3c" type="selectionEntry">
<modifiers>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="3">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
<entryLink id="dbcb-0592-a9f4-75c8" name="Unit - Charged Tendrils" hidden="false" collective="false" import="true" targetId="69f8-5d6b-2a5d-5fbc" type="selectionEntry">
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="20.0"/>
</costs>
</entryLink>
<entryLink id="19a4-2aab-2375-6b90" name="Unit - Mark of the Eternal Champion" hidden="false" collective="false" import="true" targetId="d019-112d-60fe-7572" type="selectionEntry">
<modifiers>
<modifier type="set" field="b1d1-d5a3-6ad3-08cb" value="0.0">
<conditions>
<condition field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="c3e7-8c28-0d42-6aa8" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="30.0"/>
</costs>
</entryLink>
<entryLink id="3e2d-fa3d-c24d-889a" name="Unit - Sorcerous Antennae" hidden="false" collective="false" import="true" targetId="d9c8-962c-7c4c-a243" type="selectionEntry">
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="50.0"/>
</costs>
</entryLink>
<entryLink id="14b3-70c7-37ea-2dfc" name="Unit - Incendiary Ichor" hidden="false" collective="false" import="true" targetId="a52c-bdd5-02a2-8dcd" type="selectionEntry">
<modifiers>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="1.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="399e-8317-dcc5-1c76" name="Command Group" hidden="false" collective="false" import="true" targetId="b4c3-e840-1bd5-b746" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="40.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2c8e-6843-495d-4609" name="Succubi" hidden="false" collective="false" import="true" type="unit">
<categoryLinks>
<categoryLink id="1d1a-1d9b-dfbb-b35e" name="New CategoryLink" hidden="false" targetId="4bcd-01c8-ce5e-7108" primary="true"/>
<categoryLink id="3c2c-b2b9-a727-40c1" name="Summoned Daemons" hidden="false" targetId="93a9-b195-fea7-12ff" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="8108-8c21-db2a-9818" name="Succubus" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="parent" value="25.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4065-7a19-4f69-86eb" type="max"/>
<constraint field="selections" scope="parent" value="10.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3b32-9c2e-2c62-3f48" type="min"/>
</constraints>
<costs>
<cost name="pts" typeId="24fd-8af8-0c78-001c" value="18.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="a0bb-de25-2460-3197" name="Manifestations" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4f56-2fb1-beb8-ec4e" type="max"/>
</constraints>
<entryLinks>
<entryLink id="46cb-a782-cd55-53c1" name="Unit - Dark Hide" hidden="false" collective="false" import="true" targetId="7380-bd6f-0954-af3c" type="selectionEntry">
<modifiers>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="1">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
<entryLink id="d135-2ab0-dcef-5424" name="Unit - Mesmerising Plumage" hidden="false" collective="false" import="true" targetId="57c6-7588-023b-48ff" type="selectionEntry">
<modifiers>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="2">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
<entryLink id="dfb9-82e4-4a97-58ec" name="Unit - Bronze Backbone" hidden="false" collective="false" import="true" targetId="145e-9afe-f873-f18e" type="selectionEntry">
<modifiers>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="5">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
<entryLink id="ee1f-d5f0-e813-fa2e" name="Unit - Chilling Yawn" hidden="false" collective="false" import="true" targetId="3bab-88f0-dabf-987f" type="selectionEntry">
<modifiers>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="4">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
<entryLink id="bf4f-8b28-92dc-fed9" name="Unit - Divining Snout" hidden="false" collective="false" import="true" targetId="8ef6-f573-77e5-2933" type="selectionEntry">
<modifiers>
<modifier type="increment" field="24fd-8af8-0c78-001c" value="1.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="model" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>