-
Notifications
You must be signed in to change notification settings - Fork 19
/
Household.cat
6941 lines (6941 loc) · 530 KB
/
Household.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="20c9-0c15-57e3-bf84" name="Household" revision="15" battleScribeVersion="2.03" library="false" gameSystemId="975a-00f4-df37-b565" gameSystemRevision="79" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<categoryEntries>
<categoryEntry id="abef-007d-766a-b940" name="Seneschal" publicationId="975a-00f4-pubN89746" page="35" hidden="false">
<rules>
<rule id="4e32-eed1-4ca8-b855" name="Seneschal" publicationId="975a-00f4-pubN89746" page="35" hidden="false">
<description>Where several Lances are brought together, the most senior noble will assume the rank of Seneschal and take command of all forces in the field. Their decades of experience as both a warrior and statesman prove invaluable in melding the forces under their command into a seamless and efficient fighting force. Knight Scions are bombastic and cantankerous, and Lances drawn from different keeps are often prone to letting competition and internal politics interfere. Without the strong leadership of a respected Seneschal, a Household army risks losing much of its discipline and martial might.</description>
</rule>
<rule id="e0b8-3543-d623-c4fe" name="Strategist" publicationId="975a-00f4-pubN89746" page="38" hidden="false">
<description>Before forces are deployed, when choosing Stratagems, the presence of the Seneschal adds +2 Stratagem points.
</description>
</rule>
<rule id="45b7-d6b1-11a4-f847" name="The Baronial Court" publicationId="975a-00f4-pubN89746" page="38" hidden="false">
<description>Unlike other Banners that are part of a Lance in a Household force, the individual Knights within the Seneschal's Banner may be equipped differently, following the options available to a Support Banner of the same type of Knight. This allows the player to better represent the unique, elite warriors that make up the Seneschal's companions. However, if this option is taken, the Banner may not be issued with Coordinated Strike orders.
</description>
</rule>
<rule id="eb6a-807e-fe51-2a8d" name="Noble Sacrifice" publicationId="975a-00f4-pubN89746" page="38" hidden="false">
<description>If the Seneschal is removed as the result of a Targeted Attack, the controlling player rolls a D6. On a 6, the Seneschal is saved by the sacrifice of one of the Knights in their Banner. The controlling player chooses one other Knight in the Banner to remove instead. If the Seneschal is the last remaining model in the Banner, this rule has no effecr.</description>
</rule>
<rule id="be39-f32d-507b-3136" name="The Battle Standard" publicationId="975a-00f4-pubN89746" page="38" hidden="false">
<description>: The Seneschal will invariably march to war in great splendour and accompanied by the most treasured battle standards of their Household. These honoured relics bear the heraldry of the Household and its home world, alongside campaign and battle honours beyond number. Their presence on the battlefield provides a rallying point for one and all:
• One Knight within the Seneschal's Banner may be upgraded to carry the Battle Standard at a cost of 50 points.
• The Battle Standard must be clearly displayed on the model that carries it.
• As long as the Knight carrying the Battle Standard is part of the Banner, any Banner or Lance within 12" of that Knight may re-roll any failed Command checks to see if the Banner becomes Shaken.</description>
</rule>
<rule id="e676-691a-4206-19bc" name="Warrior Elite" publicationId="975a-00f4-pubN89746" page="38" hidden="false">
<description>The Seneschal is the mightiest warrior in the force. Knights in their Banner may re-roll Hit rolls of 1 when using their Ballistic Skill or Weapon Skill.
</description>
</rule>
</rules>
</categoryEntry>
<categoryEntry id="82aa-de49-ba10-80c1" name="Nobility" publicationId="975a-00f4-pubN89746" page="37, 39" hidden="false"/>
<categoryEntry id="546c-5a76-94de-0c3f" name="Baronial Court" hidden="false">
<constraints>
<constraint field="selections" scope="5334-72bf-3cf7-d361" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="bf85-1452-fc10-fc96" type="max"/>
<constraint field="selections" scope="5334-72bf-3cf7-d361" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="6a42-c353-68fc-a4f3" type="min"/>
</constraints>
</categoryEntry>
<categoryEntry id="cd2b-22ed-c2e2-08ad" name="Lance Cerastus" hidden="false"/>
<categoryEntry id="e890-8314-7541-8f86" name="Lance Questoris" hidden="false"/>
<categoryEntry id="bfbe-067a-bd84-41c0" name="Lance Armiger" hidden="false"/>
<categoryEntry id="79cb-8b6c-b922-a56a" name="Lance Acastus" hidden="false"/>
</categoryEntries>
<forceEntries>
<forceEntry id="5334-72bf-3cf7-d361" name="Household" hidden="false">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2cd7-277c-6238-0452" type="min"/>
</constraints>
<forceEntries>
<forceEntry id="94fe-00c9-e912-2e1a" name="Lance" hidden="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="true" id="e85f-1b78-055f-7791" type="min"/>
</constraints>
<categoryLinks>
<categoryLink id="b745-75d7-9dbe-c305" name="Banner" hidden="false" targetId="917a-77ef-30e4-b812" primary="false">
<constraints>
<constraint field="selections" scope="94fe-00c9-e912-2e1a" value="3.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="false" id="1fd8-e2b8-8d70-21db" type="min"/>
<constraint field="selections" scope="94fe-00c9-e912-2e1a" value="3.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1b99-78cf-8cec-b622" type="max"/>
</constraints>
</categoryLink>
<categoryLink id="bfe9-9336-458f-8365" name="Nobility" hidden="false" targetId="82aa-de49-ba10-80c1" primary="false">
<constraints>
<constraint field="selections" scope="94fe-00c9-e912-2e1a" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="true" id="0089-80c2-b0fc-f56c" type="min"/>
<constraint field="selections" scope="94fe-00c9-e912-2e1a" value="1.0" percentValue="false" shared="false" includeChildSelections="true" includeChildForces="true" id="c3a5-c494-ae37-d121" type="max"/>
</constraints>
</categoryLink>
</categoryLinks>
</forceEntry>
</forceEntries>
<categoryLinks>
<categoryLink id="d03c-074c-d4b8-76e9" name="Allegiance" hidden="false" targetId="2841-67b5-15d0-8908" primary="false">
<constraints>
<constraint field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="0015-d3ed-ac13-0a76" type="min"/>
</constraints>
</categoryLink>
<categoryLink id="7251-4605-b1fd-d80f" name="Freeblades" publicationId="975a-00f4-pubN89746" page="35" hidden="false" targetId="efc2-e899-f74b-55ad" primary="false"/>
<categoryLink id="2434-58f3-dd2a-0fd2" name="Titan" hidden="false" targetId="3f71-3a59-3b75-4ecf" primary="false"/>
<categoryLink id="bf96-9b27-a283-7054" name="Squadron" hidden="false" targetId="fb16-4d89-30b7-fbb8" primary="false"/>
<categoryLink id="346a-4747-185f-fc53" name="Stratagem" hidden="false" targetId="b539-a35c-fe3f-9c34" primary="false"/>
<categoryLink id="b9a8-00d2-8884-091f" name="House" hidden="false" targetId="a57c-5cb6-44d8-ffcc" primary="false"/>
</categoryLinks>
</forceEntry>
</forceEntries>
<selectionEntries>
<selectionEntry id="7f42-4355-fed3-0274" name="Questoris Imperialis" hidden="false" collective="false" import="false" type="upgrade">
<rules>
<rule id="8b99-8c09-b929-62dc" name="Questoris Imperialis" publicationId="2988-f24d-39ef-352e" page="87" hidden="false">
<description>All Knight Banners within a Lance as part of a Questoris Imperialis Household force are referred to as Questoris Imperialis Banners and the player a Questoris Imperialis player.
• A Questoris Imperialis Household force can purchase Stratagems available to any Knight Household and to Questoris Imperialis Households.
• A Questoris Imperialis Household force can include Loyalist Titans of Legend as reinforcements.
• A Questoris Imperialis Household force cannot include any Corrupted Titans or Renegade Knight Banners (these will be explored in future supplements).
• A Questoris Imperialis Household force cannot include any Traitor Titans of Legend or Blackshield Titans of Legend as reinforcements.
• A Questoris Imperialis Household force cannot purchase Stratagems specific to Questoris Mechanicus, Questoris Traitoris, or Questoris Oblitus Households.</description>
</rule>
<rule id="9834-0a99-b893-de71" name="Valorous Charge" publicationId="2988-f24d-39ef-352e" page="87" hidden="false">
<description>Once per game, during the Movement phase, a single Questoris Imperialis Lance of the player’s choice can add 2" to their Speed characteristic for the remainder of that phase.</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="1986-d35d-0287-da57" name="New CategoryLink" hidden="false" targetId="2841-67b5-15d0-8908" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Stratagem Points" typeId="efbf-52f7-fd08-f329" value="0.0"/>
<cost name=" Points" typeId="a731-e220-2d8a-41bf" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="fa19-c8d7-464f-de6f" name="Questoris Mechanicus" hidden="false" collective="false" import="false" type="upgrade">
<rules>
<rule id="bc16-e4eb-9ec0-49f7" name="Questoris Mechanicus" publicationId="2988-f24d-39ef-352e" page="87" hidden="false">
<description>• All Knight Banners within a Lance as part of a Questoris Mechanicus Household force are referred to as Questoris Mechanicus Banners.
• A Questoris Mechanicus Household force can purchase Stratagems available to any Knight Household and to Questoris Mechanicus Households.
• A Questoris Mechanicus Household force can include either Loyalist Titans of Legend or Traitor Titans of Legend as reinforcements, but not both.
• A Questoris Mechanicus Household force cannot include any Corrupted Titans or Renegade Knight Banners (explored in future supplements).
• A Questoris Mechanicus Household Force cannot include Blackshield Titans of Legend as reinforcements (these will be explored in future supplements).
• A Questoris Mechanicus Household force cannot purchase Stratagems specific to Questoris Imperialis, Questoris Traitoris, or Questoris Oblitus Households.</description>
</rule>
<rule id="ee5c-b0da-aa3b-62d6" name="Targeting Solutions" publicationId="2988-f24d-39ef-352e" page="89" hidden="false">
<description>Once per game, all Banners within a single Questoris Mechanicus Lance can be issued a Coordinated Strike, Split Fire or First Fire Order without the need to make a Command check. Each Banner can be given a separate Order.</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="ea95-19d8-3c12-06b9" name="New CategoryLink" hidden="false" targetId="2841-67b5-15d0-8908" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Stratagem Points" typeId="efbf-52f7-fd08-f329" value="0.0"/>
<cost name=" Points" typeId="a731-e220-2d8a-41bf" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="e516-cef8-4e79-4615" name="Questoris Traitorus" hidden="false" collective="false" import="false" type="upgrade">
<rules>
<rule id="bb9e-8cb5-7e6e-16cb" name="Questoris Traitorus" publicationId="2988-f24d-39ef-352e" page="91" hidden="false">
<description>• All Knight Banners within a Lance as part of a Questoris Traitoris Household force are referred to as Questoris Traitoris Banners.
• A Questoris Traitoris Household force can purchase Stratagems available to any Knight Household and to Questoris Traitoris Households.
• A Questoris Traitoris Household force can include Traitor Titans of Legend as reinforcements.
• A Questoris Traitoris Household force can include any Corrupted Titans or Renegade Knight Banners (these will be explored in future supplements).
• A Questoris Traitoris Household force cannot include any Loyalist Titans of Legend or Blackshield Titans of Legend.
• A Questoris Traitoris Household force cannot purchase Stratagems available to Questoris Imperialis, Questoris Mechanicus, or Questoris Oblitus Households.</description>
</rule>
<rule id="a702-f75c-a9f7-58df" name="Lust for Blood" publicationId="2988-f24d-39ef-352e" page="91" hidden="false">
<description>Once per game, during the Combat phase, a single Questoris Traitoris Banner can add 1 to the Dice value of a single weapon with the Melee trait of their choice for the remainder of the phase. All Knights in the Banner are affected by the rule. Only one weapon may be chosen for the entire Banner, and all Knights with this weapon add 1 to their Dice value for this weapon.</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="fd6e-2e2e-f890-f1f2" name="New CategoryLink" hidden="false" targetId="2841-67b5-15d0-8908" primary="true"/>
<categoryLink id="1b0f-12f7-3d63-90db" name="New CategoryLink" hidden="false" targetId="2841-67b5-15d0-8908" primary="false"/>
</categoryLinks>
<costs>
<cost name=" Stratagem Points" typeId="efbf-52f7-fd08-f329" value="0.0"/>
<cost name=" Points" typeId="a731-e220-2d8a-41bf" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f324-b829-8cb6-1bad" name="Questoris Oblitus " hidden="false" collective="false" import="false" type="upgrade">
<rules>
<rule id="e121-f012-6712-4b12" name="Questoris Oblitus " publicationId="2988-f24d-39ef-352e" page="91" hidden="false">
<description>• All Knight Banners within a Lance as part of a Questoris Oblitus Household force are referred to as Questoris Oblitus Banners.
• A Questoris Oblitus Household force can purchase Stratagems available to any Knight Household and to Questoris Oblitus Households.
• A Questoris Oblitus Household force can include Blackshield Titans of Legend as reinforcements.
• A Questoris Oblitus Household force cannot include Loyalist Titans of Legend or Traitor Titans of Legend as reinforcements.
• A Questoris Oblitus Household force cannot include any Psi-Titan, Corrupted Titans or Renegade Knight Banners (these will be explored in future supplements).
• A Questoris Oblitus Household force cannot purchase Stratagems available to Questor Imperialis, Questoris Mechanicus, or Questoris Traitoris Households.</description>
</rule>
<rule id="3809-e722-b503-5a20" name="Firm Resolve" publicationId="2988-f24d-39ef-352e" page="91" hidden="false">
<description>Once per round, a Banner within a Questoris Oblitus Lance that must take a Command check to see if they become Shaken can choose to pass the Command check instead of rolling. </description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="50e3-08f6-8d4a-d493" name="New CategoryLink" hidden="false" targetId="2841-67b5-15d0-8908" primary="true"/>
<categoryLink id="c176-1168-0fef-986b" name="New CategoryLink" hidden="false" targetId="2841-67b5-15d0-8908" primary="false"/>
</categoryLinks>
<costs>
<cost name=" Stratagem Points" typeId="efbf-52f7-fd08-f329" value="0.0"/>
<cost name=" Points" typeId="a731-e220-2d8a-41bf" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8d00-116d-2d58-b6e3" name="A Glorious Death" publicationId="975a-00f4-pubN89746" page="40" hidden="false" collective="false" import="false" type="upgrade">
<rules>
<rule id="173c-789f-b91a-7c9a" name="A Glorious Death" publicationId="975a-00f4-pubN89746" page="40" hidden="false">
<description>This stratagem can only be played on a Freeblade Banner. Play this card at the end of the battle. Nominate one Free blade Banner that was completely destroyed. The opposing player gains no Victory points for this unit. </description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="5489-bea0-c8e4-1f7d" name="New CategoryLink" hidden="false" targetId="b539-a35c-fe3f-9c34" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Stratagem Points" typeId="efbf-52f7-fd08-f329" value="1.0"/>
<cost name=" Points" typeId="a731-e220-2d8a-41bf" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0a6b-13c3-78ee-7d67" name="Decapitating Strike" publicationId="975a-00f4-pubN89746" page="40" hidden="false" collective="false" import="false" type="upgrade">
<rules>
<rule id="9aad-e84d-7e73-0eb3" name="Decapitating Strike" publicationId="975a-00f4-pubN89746" page="40" hidden="false">
<description>Play this at rhe end of the battle. If the opposing player's Princeps Seniores' Titan has been destroyed, score Victory points equal to half its Scale (rounding down). Alternatively, if the opponent's Seneschal and their entire Banner have been destroyed, score 3 additional Victory points.</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="c93b-333f-8e88-dfa5" name="New CategoryLink" hidden="false" targetId="b539-a35c-fe3f-9c34" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Stratagem Points" typeId="efbf-52f7-fd08-f329" value="2.0"/>
<cost name=" Points" typeId="a731-e220-2d8a-41bf" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9782-138e-c720-b1c5" name="Fight for Every Step" publicationId="975a-00f4-pubN89746" hidden="false" collective="false" import="false" type="upgrade">
<rules>
<rule id="5e38-03a9-454f-e800" name="Fight for Every Step" publicationId="975a-00f4-pubN89746" page="40" hidden="false">
<description>Play this at the end of the battle. Score 2 Victory points for each enemy Titan that has not been destroyed, but which is Strucrurally Compromised.</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="5d4a-0dd9-658f-7d19" name="New CategoryLink" hidden="false" targetId="b539-a35c-fe3f-9c34" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Stratagem Points" typeId="efbf-52f7-fd08-f329" value="2.0"/>
<cost name=" Points" typeId="a731-e220-2d8a-41bf" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8bd3-069b-1b5e-20b2" name="Fire Support Bombardment" publicationId="975a-00f4-pubN89746" page="40" hidden="false" collective="false" import="false" type="upgrade">
<rules>
<rule id="e5f7-074a-0ef8-0776" name="Fire Support Bombardment" publicationId="975a-00f4-pubN89746" page="40" hidden="false">
<description>Play this during each Strategy phase. Place the 5" Blast marker anywhere on the battlefield then scarcer it D10". Any unit touched by the marker where it evenrually lands suffers a single Strength 8 hit, or 2 Strength 8 hits if the central hole of the Blast marker is entirely over its base.</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="62d3-9aec-a30e-7a44" name="New CategoryLink" hidden="false" targetId="b539-a35c-fe3f-9c34" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Stratagem Points" typeId="efbf-52f7-fd08-f329" value="3.0"/>
<cost name=" Points" typeId="a731-e220-2d8a-41bf" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a3b1-8a3d-a0c0-5707" name="Interference" publicationId="975a-00f4-pubN89746" page="39" hidden="false" collective="false" import="false" type="upgrade">
<rules>
<rule id="a8da-7459-285b-9f4b" name="Interference" publicationId="975a-00f4-pubN89746" page="39" hidden="false">
<description>Play this Stratagem at the start of the Strategy phase. Pick a single enemy unit. This unit cannot be given any Orders this round and must instead act on its initiative.</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="14f5-aa29-3964-59f5" name="New CategoryLink" hidden="false" targetId="b539-a35c-fe3f-9c34" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Stratagem Points" typeId="efbf-52f7-fd08-f329" value="2.0"/>
<cost name=" Points" typeId="a731-e220-2d8a-41bf" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="06d7-5c7b-eefe-99e3" name="Orbital Lance Strike" publicationId="975a-00f4-pubN89746" page="40" hidden="false" collective="false" import="false" type="upgrade">
<rules>
<rule id="689d-a3f2-a626-703f" name="Orbital Lance Strike" publicationId="975a-00f4-pubN89746" page="40" hidden="false">
<description>Once per battle, play this during the Strategy phase. Place the 3" Blasr marker anywhere on the bartlefield, then scatter it D6". Any unir touched by the marker where ir evenrually lands suffers D3 Strength IO hits, or 2D3 Strength IO hits if the central hole of the Blast marker is entirely over its base</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="ead8-4e6d-1538-1976" name="New CategoryLink" hidden="false" targetId="b539-a35c-fe3f-9c34" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Stratagem Points" typeId="efbf-52f7-fd08-f329" value="2.0"/>
<cost name=" Points" typeId="a731-e220-2d8a-41bf" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="2689-80b2-03ef-25fa" name="Plasma Mines" publicationId="975a-00f4-pubN89746" page="39" hidden="false" collective="false" import="false" type="upgrade">
<rules>
<rule id="c396-700d-a9d6-875b" name="Plasma Mines" publicationId="975a-00f4-pubN89746" page="39" hidden="false">
<description>Play this Stratagem immediately after an enemy unit finishes moving or making a turn. That unit suffers D3 Strength 10 hits. If the unit is a Titan, these will be ro its Legs. Void Shield saves cannot be made against the hits, but Ion Shield saves can be made. </description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="2706-c583-bdc7-f648" name="New CategoryLink" hidden="false" targetId="b539-a35c-fe3f-9c34" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Stratagem Points" typeId="efbf-52f7-fd08-f329" value="2.0"/>
<cost name=" Points" typeId="a731-e220-2d8a-41bf" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5959-611c-3937-8d9b" name="Vengeance" publicationId="975a-00f4-pubN89746" page="40" hidden="false" collective="false" import="false" type="upgrade">
<rules>
<rule id="04f9-5b83-a033-adc2" name="Vengeance" publicationId="975a-00f4-pubN89746" page="40" hidden="false">
<description> Play this at the end of the battle. At the start of the battle, secretly nominate one enemy unit and make a note of this. At the end of the battle, reveal the nominated unit. If the nominated unit is a Titan, score 2 additional Victory points if it is Structurally Compromised, 3 additional Victory points if it is destroyed. If the nominated unit is a Knight Banner, score l additional Victory point if it is below half of its starting strength (rounding up), or 2 additional Victory points if it is destroyed. </description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="2681-2f67-1068-e198" name="New CategoryLink" hidden="false" targetId="b539-a35c-fe3f-9c34" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Stratagem Points" typeId="efbf-52f7-fd08-f329" value="1.0"/>
<cost name=" Points" typeId="a731-e220-2d8a-41bf" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3eab-8426-362f-944f" name="Vengeful" hidden="false" collective="false" import="false" type="upgrade">
<rules>
<rule id="54fd-1fd2-d6ba-68bb" name="Vengeful" publicationId="975a-00f4-pubN89746" page="39" hidden="false">
<description>A player can enact this Stratagem during the Strategy phase. To do so, they pick a Banner from their force which has been reduced to a single remaining Knight. This Banner immediately receives Charge orders. When it charges, the Knight may make a Smash Attack, as described on page 36 of the Adeptus Titanicus rulebook, resolved at Scale x2. Once this is resolved, the Knight is removed from play. At the end of the battle, the enemy gains a number of Victory points equal to half the Scale of this unit, rather than the full amount.</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="c0e6-f118-fc61-bfa2" name="New CategoryLink" hidden="false" targetId="b539-a35c-fe3f-9c34" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Stratagem Points" typeId="efbf-52f7-fd08-f329" value="1.0"/>
<cost name=" Points" typeId="a731-e220-2d8a-41bf" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ca83-f872-971c-fcb3" name="Voidbreaker Field" hidden="false" collective="false" import="false" type="upgrade">
<rules>
<rule id="46c1-a45e-1305-c203" name="Voidbreaker Field" publicationId="975a-00f4-pubN89746" page="39" hidden="false">
<description>Play this Stratagem immediately after an enemy unit with active void shields finishes moving or making a turn. Roll a D6. On a 2 or more, the opposing player must immediately make a number of Void Shield saves equal to the number rolled on the D6. On a r, no Void Shield saves are made this turn, but the Stratagem can be used a second time in a subsequent turn.</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="b09e-c182-7887-ef67" name="New CategoryLink" hidden="false" targetId="b539-a35c-fe3f-9c34" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Stratagem Points" typeId="efbf-52f7-fd08-f329" value="2.0"/>
<cost name=" Points" typeId="a731-e220-2d8a-41bf" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a0c3-da65-3192-41bd" name="Outflank" publicationId="975a-00f4-pubN89746" page="39" hidden="false" collective="false" import="false" type="unit">
<modifiers>
<modifier type="set" field="efbf-52f7-fd08-f329" value="3.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3b77-15d2-9ca8-5cf7" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" field="efbf-52f7-fd08-f329" value="2.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="3900-cfb6-52f2-c83c" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="812b-786b-9435-cd20" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="dec1-8a16-1df5-e112" type="equalTo"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="1a0a-5e72-9752-c32d" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<rules>
<rule id="d4a3-1a27-6b0b-31d6" name="Outflank" publicationId="975a-00f4-pubN89746" page="39" hidden="false">
<description>Outflank (X): When this Stratagem is chosen, the player secretly nominates one of their Free blade Banners. The cost of the Stratagem is equal to half of the unit's Scale, rounding up. Play this Stratagem at the start of deployment to set char unit to one side and state that it is outflanking (it is not deployed at the same time as the rest of the Household force ). Write down which of the battlefield's neutral flanks it will arrive on, but do not reveal this to the opposing player. While the unit is not on th</description>
</rule>
</rules>
<categoryLinks>
<categoryLink id="10cf-850e-4658-8cc9" name="New CategoryLink" hidden="false" targetId="b539-a35c-fe3f-9c34" primary="true"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="c86b-0ee2-5b83-b90c" name="Selected Unit" hidden="false" collective="false" import="false">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9235-6e7f-a232-c4f4" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f5e3-1e3b-b856-24be" type="max"/>
</constraints>
<entryLinks>
<entryLink id="7efa-5f10-2633-3fb1" name="Acastus Knight Banner" hidden="false" collective="false" import="false" targetId="3b77-15d2-9ca8-5cf7" type="selectionEntry">
<modifiers>
<modifier type="set" field="a731-e220-2d8a-41bf" value="0.0"/>
</modifiers>
</entryLink>
<entryLink id="54a3-3a1b-d41e-4aa8" name="Cerastus Knight Banner" hidden="false" collective="false" import="false" targetId="3900-cfb6-52f2-c83c" type="selectionEntry">
<modifiers>
<modifier type="set" field="a731-e220-2d8a-41bf" value="0.0"/>
</modifiers>
</entryLink>
<entryLink id="d8b0-3d66-6de2-2de3" name="Questoris Knight Banner" hidden="false" collective="false" import="false" targetId="812b-786b-9435-cd20" type="selectionEntry">
<modifiers>
<modifier type="set" field="a731-e220-2d8a-41bf" value="0.0"/>
</modifiers>
</entryLink>
<entryLink id="f517-050c-dab0-d39c" name="Questoris Knight Magaera Banner" hidden="false" collective="false" import="false" targetId="1a0a-5e72-9752-c32d" type="selectionEntry">
<modifiers>
<modifier type="set" field="a731-e220-2d8a-41bf" value="0.0"/>
</modifiers>
</entryLink>
<entryLink id="98ef-b673-e679-5eb0" name="Questoris Knight Styrix Banner" hidden="false" collective="false" import="false" targetId="dec1-8a16-1df5-e112" type="selectionEntry">
<modifiers>
<modifier type="set" field="a731-e220-2d8a-41bf" value="0.0"/>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name=" Points" typeId="a731-e220-2d8a-41bf" value="0.0"/>
<cost name=" Stratagem Points" typeId="efbf-52f7-fd08-f329" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="768f-45c0-ec6e-6399" name="Baronial Court" hidden="false" collective="false" import="true" type="upgrade">
<categoryLinks>
<categoryLink id="311f-0594-7144-9029" name="Banner" hidden="false" targetId="917a-77ef-30e4-b812" primary="true"/>
<categoryLink id="47da-2731-679c-83fb" name="Baronial Court" hidden="false" targetId="e616-b753-5dbd-72cb" primary="false"/>
<categoryLink id="7665-dbc6-1c6b-822e" name="Nobility" hidden="false" targetId="82aa-de49-ba10-80c1" primary="false"/>
<categoryLink id="0788-6adb-7379-e42b" name="Baronial Court" hidden="false" targetId="546c-5a76-94de-0c3f" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="e0aa-0086-6246-58b7" name="Hull" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="595f-530d-6e78-2fe5" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d624-edee-490b-4d4c" type="max"/>
</constraints>
<entryLinks>
<entryLink id="8360-b930-7547-ad38" name="Cerastus Knight Banner" hidden="false" collective="false" import="true" targetId="3900-cfb6-52f2-c83c" type="selectionEntry">
<comment>Freeblade</comment>
<modifiers>
<modifier type="append" field="name" value=", Baronial Court"/>
</modifiers>
<categoryLinks>
<categoryLink id="6a0b-f95d-8da3-fe6a" name="New CategoryLink" hidden="false" targetId="efc2-e899-f74b-55ad" primary="true"/>
<categoryLink id="19d7-b102-5fde-5935" name="Lance Cerastus" hidden="false" targetId="cd2b-22ed-c2e2-08ad" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="f194-79e4-3a54-5fce" name="Questoris Knight Banner" hidden="false" collective="false" import="true" targetId="812b-786b-9435-cd20" type="selectionEntry">
<comment>Freeblade</comment>
<modifiers>
<modifier type="append" field="name" value=", Baronial Court"/>
</modifiers>
<categoryLinks>
<categoryLink id="0663-e52e-2f2f-1e3c" name="New CategoryLink" hidden="false" targetId="efc2-e899-f74b-55ad" primary="true"/>
<categoryLink id="a62f-73d2-d2a1-ceee" name="Lance Questoris" hidden="false" targetId="e890-8314-7541-8f86" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="f64d-2bd0-60a7-ec17" name="Questoris Knight Magaera Banner" hidden="false" collective="false" import="true" targetId="1a0a-5e72-9752-c32d" type="selectionEntry">
<comment>Freeblade</comment>
<modifiers>
<modifier type="append" field="name" value=", Baronial Court"/>
</modifiers>
<categoryLinks>
<categoryLink id="7e3a-5085-d982-de00" name="New CategoryLink" hidden="false" targetId="efc2-e899-f74b-55ad" primary="true"/>
<categoryLink id="ad3a-1c75-ad86-5d16" name="Lance Questoris" hidden="false" targetId="e890-8314-7541-8f86" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="22f7-5973-c7b4-f2db" name="Questoris Knight Styrix Banner" hidden="false" collective="false" import="true" targetId="dec1-8a16-1df5-e112" type="selectionEntry">
<comment>Freeblade</comment>
<modifiers>
<modifier type="append" field="name" value=", Baronial Court"/>
</modifiers>
<categoryLinks>
<categoryLink id="bbde-2856-31fe-4cc3" name="New CategoryLink" hidden="false" targetId="efc2-e899-f74b-55ad" primary="true"/>
<categoryLink id="bf63-7268-d83c-409e" name="Lance Questoris" hidden="false" targetId="e890-8314-7541-8f86" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="da90-3424-14a4-9cb1" name="Acastus Knight Banner" hidden="false" collective="false" import="true" targetId="3b77-15d2-9ca8-5cf7" type="selectionEntry">
<modifiers>
<modifier type="append" field="name" value=", Baronial Court"/>
</modifiers>
<categoryLinks>
<categoryLink id="f908-d5f9-d5f1-90a1" name="Lance Acastus" hidden="false" targetId="79cb-8b6c-b922-a56a" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="44a8-3df1-2942-8305" name="Acastus Knight Asterius Banner" hidden="false" collective="false" import="true" targetId="3997-93d3-81f3-8802" type="selectionEntry">
<modifiers>
<modifier type="append" field="name" value=", Baronial Court"/>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="5e3c-f71d-802e-222e" name="Seneschal" hidden="false" collective="false" import="true" targetId="2d80-35d6-4ab0-19ca" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7cf8-958d-7958-14d7" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c689-f2b0-6c50-2d32" type="max"/>
</constraints>
<entryLinks>
<entryLink id="dce4-2a99-eb26-7fa6" name="Knightly Qualities" hidden="false" collective="false" import="true" targetId="e0a7-3f98-192c-2c04" type="selectionEntryGroup"/>
</entryLinks>
</entryLink>
</entryLinks>
<costs>
<cost name=" Stratagem Points" typeId="efbf-52f7-fd08-f329" value="0.0"/>
<cost name=" Points" typeId="a731-e220-2d8a-41bf" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="8cf7-3287-5928-2a53" name="Warrior Elite" 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="30a8-7422-6fec-674f" type="max"/>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5310-8568-09de-f88d" type="min"/>
</constraints>
<categoryLinks>
<categoryLink id="58d4-5f9d-dd0b-1b14" name="Nobility" hidden="false" targetId="82aa-de49-ba10-80c1" primary="false"/>
<categoryLink id="b17b-6342-eed4-d170" name="Banner" hidden="false" targetId="917a-77ef-30e4-b812" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="91e0-dd19-b4c5-b2ed" name="Lance Banners" hidden="false" collective="false" import="true" targetId="5ece-4b00-b772-39c6" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0850-48ee-8e32-acd4" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ffa0-cb85-e00e-fb38" type="max"/>
</constraints>
</entryLink>
</entryLinks>
<costs>
<cost name=" Stratagem Points" typeId="efbf-52f7-fd08-f329" value="0.0"/>
<cost name=" Points" typeId="a731-e220-2d8a-41bf" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="cerastus-freeblades" name="Cerastus Knight Banner" hidden="false" collective="false" import="false" targetId="3900-cfb6-52f2-c83c" type="selectionEntry">
<comment>Freeblade</comment>
<categoryLinks>
<categoryLink id="04fd-c162-4c0f-1479" name="New CategoryLink" hidden="false" targetId="efc2-e899-f74b-55ad" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="questoris-freeblades" name="Questoris Knight Banner" hidden="false" collective="false" import="false" targetId="812b-786b-9435-cd20" type="selectionEntry">
<comment>Freeblade</comment>
<categoryLinks>
<categoryLink id="cfbc-c6f6-9e5d-ea5e" name="New CategoryLink" hidden="false" targetId="efc2-e899-f74b-55ad" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="magaera-freeblades" name="Questoris Knight Magaera Banner" hidden="false" collective="false" import="false" targetId="1a0a-5e72-9752-c32d" type="selectionEntry">
<comment>Freeblade</comment>
<categoryLinks>
<categoryLink id="9727-5692-9d2e-d4df" name="New CategoryLink" hidden="false" targetId="efc2-e899-f74b-55ad" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="styrix-freeblades" name="Questoris Knight Styrix Banner" hidden="false" collective="false" import="false" targetId="dec1-8a16-1df5-e112" type="selectionEntry">
<comment>Freeblade</comment>
<categoryLinks>
<categoryLink id="7ab5-33d2-784e-c0e3" name="New CategoryLink" hidden="false" targetId="efc2-e899-f74b-55ad" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="acastus-freeblades" name="Acastus Knight Banner" hidden="false" collective="false" import="false" targetId="3b77-15d2-9ca8-5cf7" type="selectionEntry">
<comment>Freeblade</comment>
<modifiers>
<modifier type="increment" field="b4ed-04bf-182a-2fde" value="1.0">
<repeats>
<repeat field="forces" scope="5334-72bf-3cf7-d361" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="94fe-00c9-e912-2e1a" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b4ed-04bf-182a-2fde" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="7057-1fae-7d3d-dcad" name="New CategoryLink" hidden="false" targetId="efc2-e899-f74b-55ad" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6298-81cc-e35b-8aa1" name="Knight House" hidden="false" collective="false" import="false" targetId="cdb9-838a-4e44-bb7b" type="selectionEntry">
<constraints>
<constraint field="selections" scope="5334-72bf-3cf7-d361" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="73dc-fec4-efdc-5073" type="min"/>
<constraint field="selections" scope="5334-72bf-3cf7-d361" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0dd8-2a57-f18e-2afe" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="c68e-031c-7b9e-8c73" name="New CategoryLink" hidden="false" targetId="a57c-5cb6-44d8-ffcc" primary="true"/>
</categoryLinks>
<entryLinks>
<entryLink id="46ff-2969-6b4c-94ba" name="Knight House" hidden="false" collective="false" import="true" targetId="7183-c0e8-3027-d054" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3d05-e997-9c07-6c50" type="min"/>
</constraints>
</entryLink>
</entryLinks>
</entryLink>
<entryLink id="reaver-support-household" name="Reaver Titan" hidden="false" collective="false" import="false" targetId="9ff1-81bc-203d-620c" type="selectionEntry">
<modifiers>
<modifier type="increment" field="1c5d-06d5-421b-bbd1" value="1.0">
<repeats>
<repeat field="forces" scope="5334-72bf-3cf7-d361" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="94fe-00c9-e912-2e1a" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="1c5d-06d5-421b-bbd1" value="1.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5122-cb02-8703-ce88" repeats="1" roundUp="false"/>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="76b8-ecdb-cbf6-0c45" repeats="1" roundUp="false"/>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="2062-8f97-c49e-abe2" repeats="1" roundUp="false"/>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="dfeb-83af-7b26-622a" repeats="1" roundUp="false"/>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c45d-04e4-f35f-8b20" repeats="1" roundUp="false"/>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d2b6-f342-ccdb-b9cc" repeats="1" roundUp="false"/>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="3ad7-cd10-8d6e-8c2e" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1c5d-06d5-421b-bbd1" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="0237-b896-cf2d-fd8c" name="New CategoryLink" hidden="false" targetId="3f71-3a59-3b75-4ecf" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="warlord-support-household" name="Warlord Titan" hidden="false" collective="false" import="false" targetId="5122-cb02-8703-ce88" type="selectionEntry">
<modifiers>
<modifier type="increment" field="1d07-87e1-9cb3-ac5e" value="1.0">
<repeats>
<repeat field="forces" scope="5334-72bf-3cf7-d361" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="94fe-00c9-e912-2e1a" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="decrement" field="1d07-87e1-9cb3-ac5e" value="1.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="9ff1-81bc-203d-620c" repeats="1" roundUp="false"/>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="76b8-ecdb-cbf6-0c45" repeats="1" roundUp="false"/>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="2062-8f97-c49e-abe2" repeats="1" roundUp="false"/>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="dfeb-83af-7b26-622a" repeats="1" roundUp="false"/>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c45d-04e4-f35f-8b20" repeats="1" roundUp="false"/>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d2b6-f342-ccdb-b9cc" repeats="1" roundUp="false"/>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="3ad7-cd10-8d6e-8c2e" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1d07-87e1-9cb3-ac5e" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="fd7f-32e2-ba13-32eb" name="New CategoryLink" hidden="false" targetId="3f71-3a59-3b75-4ecf" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="warbringer-support-household" name="Warbringer Nemesis Titan" hidden="false" collective="false" import="false" targetId="d2b6-f342-ccdb-b9cc" type="selectionEntry">
<modifiers>
<modifier type="set" field="c374-86bb-b9ff-c4a7" value="1.0">
<conditions>
<condition field="forces" scope="5334-72bf-3cf7-d361" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="94fe-00c9-e912-2e1a" type="atLeast"/>
</conditions>
</modifier>
<modifier type="set" field="c374-86bb-b9ff-c4a7" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="76b8-ecdb-cbf6-0c45" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c45d-04e4-f35f-8b20" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="2062-8f97-c49e-abe2" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c374-86bb-b9ff-c4a7" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="adde-353e-0207-cfb6" name="New CategoryLink" hidden="false" targetId="3f71-3a59-3b75-4ecf" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="sinister-support-household" name="Warlord-Sinister Titan" hidden="false" collective="false" import="false" targetId="dfeb-83af-7b26-622a" type="selectionEntry">
<modifiers>
<modifier type="set" field="8db0-06e6-80fa-5512" value="1.0">
<conditions>
<condition field="forces" scope="5334-72bf-3cf7-d361" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="94fe-00c9-e912-2e1a" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8db0-06e6-80fa-5512" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="3542-a0f1-8d51-4ad7" name="New CategoryLink" hidden="false" targetId="3f71-3a59-3b75-4ecf" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="warmaster-support-household" name="Warmaster Titan" hidden="false" collective="false" import="false" targetId="2062-8f97-c49e-abe2" type="selectionEntry">
<modifiers>
<modifier type="set" field="ddc2-b383-3fe2-af44" value="1.0">
<conditions>
<condition field="forces" scope="5334-72bf-3cf7-d361" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="94fe-00c9-e912-2e1a" type="atLeast"/>
</conditions>
</modifier>
<modifier type="set" field="ddc2-b383-3fe2-af44" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d2b6-f342-ccdb-b9cc" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c45d-04e4-f35f-8b20" type="equalTo"/>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="76b8-ecdb-cbf6-0c45" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ddc2-b383-3fe2-af44" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="6ae6-7720-7f93-0719" name="Titan" hidden="false" targetId="3f71-3a59-3b75-4ecf" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="warhound-squadron-household-support" name="Warhound Titan" hidden="false" collective="false" import="false" targetId="3ad7-cd10-8d6e-8c2e" type="selectionEntry">
<modifiers>
<modifier type="decrement" field="37bd-218a-2218-7907" value="1.0">
<repeats>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5122-cb02-8703-ce88" repeats="1" roundUp="false"/>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="76b8-ecdb-cbf6-0c45" repeats="1" roundUp="false"/>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="2062-8f97-c49e-abe2" repeats="1" roundUp="false"/>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="dfeb-83af-7b26-622a" repeats="1" roundUp="false"/>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c45d-04e4-f35f-8b20" repeats="1" roundUp="false"/>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d2b6-f342-ccdb-b9cc" repeats="1" roundUp="false"/>
<repeat field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="9ff1-81bc-203d-620c" repeats="1" roundUp="false"/>
</repeats>
</modifier>
<modifier type="increment" field="37bd-218a-2218-7907" value="1.0">
<repeats>
<repeat field="forces" scope="5334-72bf-3cf7-d361" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="94fe-00c9-e912-2e1a" repeats="1" roundUp="false"/>
</repeats>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="37bd-218a-2218-7907" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="3750-e8c8-26e7-efec" name="Titan" hidden="false" targetId="3f71-3a59-3b75-4ecf" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="lance-acheron" name="Lance Cerastus Acheron Banner" hidden="false" collective="false" import="true" targetId="b890-7a15-422e-eba5" type="selectionEntry">
<modifierGroups>
<modifierGroup>
<conditionGroups>
<conditionGroup type="or">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e890-8314-7541-8f86" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bfbe-067a-bd84-41c0" type="atLeast"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="79cb-8b6c-b922-a56a" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bfbe-067a-bd84-41c0" type="atLeast"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="79cb-8b6c-b922-a56a" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e890-8314-7541-8f86" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
<modifiers>
<modifier type="set" field="hidden" value="true"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<categoryLinks>
<categoryLink id="5c12-614e-8da8-0199" name="Lance Cerastus" hidden="false" targetId="cd2b-22ed-c2e2-08ad" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="lance-atrapos" name="Lance Cerastus Atrapos Banner" hidden="false" collective="false" import="true" targetId="f8c5-4859-9b55-f69e" type="selectionEntry">
<modifierGroups>
<modifierGroup>
<conditionGroups>
<conditionGroup type="or">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e890-8314-7541-8f86" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bfbe-067a-bd84-41c0" type="atLeast"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="79cb-8b6c-b922-a56a" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bfbe-067a-bd84-41c0" type="atLeast"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="79cb-8b6c-b922-a56a" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e890-8314-7541-8f86" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
<modifiers>
<modifier type="set" field="hidden" value="true"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<categoryLinks>
<categoryLink id="2fb9-2e3c-37be-2a18" name="Lance Cerastus" hidden="false" targetId="cd2b-22ed-c2e2-08ad" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="lance-castigator" name="Lance Cerastus Castigator Banner" hidden="false" collective="false" import="true" targetId="e5fc-11d4-285d-b026" type="selectionEntry">
<modifierGroups>
<modifierGroup>
<conditionGroups>
<conditionGroup type="or">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e890-8314-7541-8f86" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bfbe-067a-bd84-41c0" type="atLeast"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="79cb-8b6c-b922-a56a" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bfbe-067a-bd84-41c0" type="atLeast"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="79cb-8b6c-b922-a56a" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e890-8314-7541-8f86" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
<modifiers>
<modifier type="set" field="hidden" value="true"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<categoryLinks>
<categoryLink id="8474-90e7-9305-4da5" name="Lance Cerastus" hidden="false" targetId="cd2b-22ed-c2e2-08ad" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="lance-lancer" name="Lance Cerastus Lancer Banner" hidden="false" collective="false" import="true" targetId="2c4b-1e1b-f19e-9fec" type="selectionEntry">
<modifierGroups>
<modifierGroup>
<conditionGroups>
<conditionGroup type="or">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e890-8314-7541-8f86" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bfbe-067a-bd84-41c0" type="atLeast"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="79cb-8b6c-b922-a56a" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bfbe-067a-bd84-41c0" type="atLeast"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="79cb-8b6c-b922-a56a" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="e890-8314-7541-8f86" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
<modifiers>
<modifier type="set" field="hidden" value="true"/>
</modifiers>
</modifierGroup>
</modifierGroups>
</entryLink>
<entryLink id="lance-crusader" name="Lance Questoris Crusader Banner" hidden="false" collective="false" import="true" targetId="ceb0-c396-8410-9a53" type="selectionEntry">
<modifierGroups>
<modifierGroup>
<conditionGroups>
<conditionGroup type="or">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cd2b-22ed-c2e2-08ad" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bfbe-067a-bd84-41c0" type="atLeast"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="79cb-8b6c-b922-a56a" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bfbe-067a-bd84-41c0" type="atLeast"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="79cb-8b6c-b922-a56a" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cd2b-22ed-c2e2-08ad" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
<modifiers>
<modifier type="set" field="hidden" value="true"/>
</modifiers>
</modifierGroup>
</modifierGroups>
</entryLink>
<entryLink id="lance-avenger" name="Lance Questoris Double Avenger Banner" hidden="false" collective="false" import="true" targetId="29d1-50c2-7c57-b6b5" type="selectionEntry">
<modifierGroups>
<modifierGroup>
<conditionGroups>
<conditionGroup type="or">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cd2b-22ed-c2e2-08ad" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bfbe-067a-bd84-41c0" type="atLeast"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="79cb-8b6c-b922-a56a" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bfbe-067a-bd84-41c0" type="atLeast"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="79cb-8b6c-b922-a56a" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cd2b-22ed-c2e2-08ad" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
<modifiers>
<modifier type="set" field="hidden" value="true"/>
</modifiers>
</modifierGroup>
</modifierGroups>
</entryLink>
<entryLink id="lance-battlecannon" name="Lance Questoris Double Battlecannon Banner" hidden="false" collective="false" import="true" targetId="4fda-626e-f7d8-0c86" type="selectionEntry">
<modifierGroups>
<modifierGroup>
<conditionGroups>
<conditionGroup type="or">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cd2b-22ed-c2e2-08ad" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bfbe-067a-bd84-41c0" type="atLeast"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="79cb-8b6c-b922-a56a" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bfbe-067a-bd84-41c0" type="atLeast"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="79cb-8b6c-b922-a56a" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cd2b-22ed-c2e2-08ad" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
<modifiers>
<modifier type="set" field="hidden" value="true"/>
</modifiers>
</modifierGroup>
</modifierGroups>
</entryLink>
<entryLink id="lance-thermal" name="Lance Questoris Double Thermal Banner" hidden="false" collective="false" import="true" targetId="3040-e2e0-0a9d-5f3d" type="selectionEntry">
<modifierGroups>
<modifierGroup>
<conditionGroups>
<conditionGroup type="or">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cd2b-22ed-c2e2-08ad" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bfbe-067a-bd84-41c0" type="atLeast"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="79cb-8b6c-b922-a56a" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bfbe-067a-bd84-41c0" type="atLeast"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="79cb-8b6c-b922-a56a" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cd2b-22ed-c2e2-08ad" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
<modifiers>
<modifier type="set" field="hidden" value="true"/>
</modifiers>
</modifierGroup>
</modifierGroups>
</entryLink>
<entryLink id="lance-errant" name="Lance Questoris Errant Banner" hidden="false" collective="false" import="true" targetId="6569-fcd3-7b1e-6c3c" type="selectionEntry">
<modifierGroups>
<modifierGroup>
<conditionGroups>
<conditionGroup type="or">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cd2b-22ed-c2e2-08ad" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bfbe-067a-bd84-41c0" type="atLeast"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="79cb-8b6c-b922-a56a" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="bfbe-067a-bd84-41c0" type="atLeast"/>
</conditions>
</conditionGroup>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="79cb-8b6c-b922-a56a" type="atLeast"/>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="cd2b-22ed-c2e2-08ad" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</conditionGroup>
</conditionGroups>
<modifiers>
<modifier type="set" field="hidden" value="true"/>
</modifiers>