forked from BSData/wh40k-9e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Imperium - Imperial Knights.cat
8596 lines (8587 loc) · 662 KB
/
Imperium - Imperial Knights.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="82cd-d24f-9f22-11f3" name="Imperium - Imperial Knights" revision="91" battleScribeVersion="2.03" authorName="BSData Developers" authorContact="@Dr. Toboggan" authorUrl="https://www.bsdata.net/contact" library="false" gameSystemId="28ec-711c-d87f-3aeb" gameSystemRevision="210" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<readme>Imperial Knights are a unique faction within Warhammer 40,000, for their armies typically comprise just a handful of models. Where other players’ forces contain infantry, battle tanks, monstrous beasts and the like, an Imperial Knights army is made up solely of towering, heavily armed and armoured bipedal war engines. Even the least of these is more than a match for whole regiments of the foe. Piloted by highly trained Nobles whose minds are saturated with concepts of chivalry, honour and fealty, these ironclad giants shatter battle lines with ease, devastating the enemy’s forces with bombardments of searing energy and explosive shells. Those who somehow survive this fusillade – and are not subsequently trampled underfoot – are sent scattering before the Knights like leaves on a gale.</readme>
<publications>
<publication id="82cd-d24f-pubN65537" name="Codex: Imperial Knights" shortName="Codex: IK" publisher="Codex: Imperial Knights" publicationDate="May 2022" publisherUrl="https://www.games-workshop.com/en-US/codex-imperial-knights-2022-eng"/>
</publications>
<profileTypes>
<profileType id="6535-c5b9-7431-63ec" name="Explosion (Details)">
<characteristicTypes>
<characteristicType id="3684-f9d8-8984-a2bc" name="Dice Roll"/>
<characteristicType id="0cfb-ee72-50d6-0cfb" name="Distance"/>
<characteristicType id="a56d-fa6c-e1ee-bbe0" name="Mortal Wounds"/>
<characteristicType id="b93e-b54e-b204-2ee2" name="Description"/>
</characteristicTypes>
</profileType>
<profileType id="9005-1a1f-3971-8480" name="Wound Track (Knights)">
<characteristicTypes>
<characteristicType id="88f7-a06b-dbef-75f1" name="Remaining W"/>
<characteristicType id="517c-5fe4-85a6-a28c" name="M"/>
<characteristicType id="5bce-1098-45e9-5052" name="WS"/>
<characteristicType id="3303-35d6-6c77-8a96" name="BS"/>
</characteristicTypes>
</profileType>
<profileType id="b2ac-1cb8-8f3c-8ded" name="Warlord Trait">
<characteristicTypes>
<characteristicType id="f9f0-1b0a-0e16-84b3" name="Description"/>
</characteristicTypes>
</profileType>
<profileType id="dfe7-9b0a-ece9-9141" name="Household Tradition">
<characteristicTypes>
<characteristicType id="9271-9853-fe95-0c04" name="Description"/>
</characteristicTypes>
</profileType>
<profileType id="a8d9-0b84-1b10-5a8f" name="Explosion">
<characteristicTypes>
<characteristicType id="ff90-7fe2-7db1-7561" name="Dice Roll"/>
<characteristicType id="4312-9d24-49af-67a2" name="Distance"/>
<characteristicType id="9088-4f12-5b1b-70c1" name="Mortal Wounds"/>
</characteristicTypes>
</profileType>
<profileType id="b797-3df8-cff8-b29f" name="Allegiance Oath">
<characteristicTypes>
<characteristicType id="01d0-a64f-195c-598f" name="Description"/>
</characteristicTypes>
</profileType>
<profileType id="dd7a-3f18-28cd-2000" name="Exalted Court">
<characteristicTypes>
<characteristicType id="ae8b-ffea-6d0e-8bc6" name="Ability"/>
<characteristicType id="712b-eaec-1af0-e425" name="Noble Exemplar ability"/>
<characteristicType id="bcbb-2bc1-7507-3852" name="Crusade Duty"/>
</characteristicTypes>
</profileType>
<profileType id="e21f-71c3-a249-d1d6" name="Oath">
<characteristicTypes>
<characteristicType id="0839-28a9-b2f1-7ba2" name="Pledge"/>
<characteristicType id="2111-d295-fba2-9c62" name="Troth"/>
<characteristicType id="b7e1-fe01-2fd4-2205" name="Honoured Ability"/>
<characteristicType id="a9cd-b557-2412-2d20" name="Virtuous Ability"/>
</characteristicTypes>
</profileType>
<profileType id="ba32-1069-9651-48b7" name="Knightly Teaching">
<characteristicTypes>
<characteristicType id="06ec-380d-0469-9639" name="Description"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="0dcf-a7d7-3f80-b95e" name="Faction: Imperium" hidden="false"/>
<categoryEntry id="3165-541a-4f9c-263c" name="Faction: <Noble Household>" hidden="false"/>
<categoryEntry id="846c-fcbb-db5e-c3e0" name="Knight Crusader" hidden="false"/>
<categoryEntry id="a51e-4ae2-ad51-478d" name="Knight Errant" hidden="false"/>
<categoryEntry id="2a6f-53ee-1833-d2d3" name="Knight Gallant" hidden="false"/>
<categoryEntry id="3454-0bd8-b84d-3362" name="Knight Paladin" hidden="false"/>
<categoryEntry id="d5fc-2484-af1c-ab9c" name="Knight Warden" hidden="false"/>
<categoryEntry id="c611-3236-557f-82d7" name="Knight Atrapos" hidden="false"/>
<categoryEntry id="7b39-16e7-79a2-fd58" name="Knight Porphyrion" hidden="false"/>
<categoryEntry id="47ee-a379-57f2-6ab6" name="Knight Acheron" hidden="false"/>
<categoryEntry id="31f4-e4a5-8023-3d2c" name="Knight Castigator" hidden="false"/>
<categoryEntry id="55fe-2555-52b1-6c9d" name="Knight Lancer" hidden="false"/>
<categoryEntry id="6c94-baa1-537a-ea86" name="Knight Magaera" hidden="false"/>
<categoryEntry id="9f65-ccb2-b5aa-8b77" name="Knight Styrix" hidden="false"/>
<categoryEntry id="c2c5-7f68-cebf-ceca" name="Faction: <Questor Allegiance>" hidden="false"/>
<categoryEntry id="cc24-5de1-e4fb-f7c3" name="Armiger Warglaive" hidden="false"/>
<categoryEntry id="9927-009b-b36d-7f6a" name="Armiger Helverin" hidden="false"/>
<categoryEntry id="4b67-a542-0ef1-f901" name="Sir Hekhtur" hidden="false"/>
<categoryEntry id="d451-70df-eeef-7915" name="Faction: Freeblade" hidden="false"/>
<categoryEntry id="5f9d-9018-3b95-6c8f" name="Dominus-Class" hidden="false"/>
<categoryEntry id="dd94-b1c1-7cb4-6002" name="Knight Preceptor" hidden="false"/>
<categoryEntry id="4e27-4545-87b5-ae20" name="Canis Rex" hidden="false"/>
<categoryEntry id="7f4a-8af6-45f3-1453" name="Knight Valiant" hidden="false"/>
<categoryEntry id="2e74-68d1-1f2c-db58" name="Knight Castellan" hidden="false"/>
<categoryEntry id="de57-4b12-9f2e-88c8" name="Acastus Class" hidden="false"/>
<categoryEntry id="1c95-cf90-0a3b-b44f" name="Cerastus Class" hidden="false"/>
<categoryEntry id="4ea8-f891-b991-c0ba" name="Knight Asterius" hidden="false"/>
<categoryEntry id="121a-c775-c3b9-3eaa" name="Knight Moirax" hidden="false"/>
<categoryEntry id="7acb-9150-b190-bfc7" name="Freeblade Lance" hidden="false"/>
<categoryEntry id="254d-83b9-c46e-84aa" name="Questor Imperialis" hidden="false"/>
<categoryEntry id="5360-3011-a42b-faf2" name="Questor Mechanicus" hidden="false"/>
<categoryEntry id="1cea-0a86-e87d-da1e" name="Questoris-Class" hidden="false"/>
<categoryEntry id="cba4-a8f4-850a-756c" name="Armiger-Class" hidden="false"/>
<categoryEntry id="fff0-43c9-ec71-8f73" name="Mentor" hidden="false"/>
</categoryEntries>
<entryLinks>
<entryLink id="fc0e-1462-fd9a-b2fc" name="Knight Castellan" hidden="false" collective="false" import="true" targetId="7e35-60bc-3a55-5b3d" type="selectionEntry">
<categoryLinks>
<categoryLink id="a823-e0ae-2456-4ab1" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="7ac0-2712-f1e8-7ef6" name="Knight Errant" hidden="false" collective="false" import="true" targetId="85f3-42d9-9d08-f487" type="selectionEntry">
<categoryLinks>
<categoryLink id="40b9-a1ba-c69b-bf04" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d201-61db-0110-0944" name="Knight Gallant" hidden="false" collective="false" import="true" targetId="602c-d7c6-68b2-0f26" type="selectionEntry">
<categoryLinks>
<categoryLink id="b3dc-fa0d-ec40-bea1" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="55ad-1191-49af-b944" name="Knight Paladin" hidden="false" collective="false" import="true" targetId="89d4-63ea-2c6f-4b49" type="selectionEntry">
<categoryLinks>
<categoryLink id="b692-eb66-cb04-bb38" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="78d2-d18d-5a44-ede7" name="Knight Warden" hidden="false" collective="false" import="true" targetId="d00a-1a85-1c0b-c4ac" type="selectionEntry">
<categoryLinks>
<categoryLink id="9c0a-ec67-1a2e-23f3" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a5e6-9589-2199-57aa" name="Cerastus Knight Atrapos" hidden="false" collective="false" import="true" targetId="bd69-2c59-df05-9954" type="selectionEntry">
<categoryLinks>
<categoryLink id="80aa-ce24-3b55-67a6" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="201b-8b94-55d7-d192" name="Acastus Knight Porphyrion" hidden="false" collective="false" import="true" targetId="4115-84bd-7803-6847" type="selectionEntry">
<categoryLinks>
<categoryLink id="583c-4339-1a3e-5bf2" name="Lord of War" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="90d1-789a-3378-f3d2" name="Cerastus Knight Acheron" hidden="false" collective="false" import="true" targetId="03ab-01e9-4319-e4fa" type="selectionEntry">
<categoryLinks>
<categoryLink id="5ccc-08ca-3a96-d6e7" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="50ee-fa55-5fc8-1011" name="Cerastus Knight Castigator" hidden="false" collective="false" import="true" targetId="052c-72c2-e88b-01a5" type="selectionEntry">
<categoryLinks>
<categoryLink id="daed-c861-d5a4-0ac0" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="111b-dbd8-658e-f0d5" name="Cerastus Knight Lancer" hidden="false" collective="false" import="true" targetId="5c38-afa3-7aed-7116" type="selectionEntry">
<categoryLinks>
<categoryLink id="eab9-b6bc-54b2-0954" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="fde4-bfcc-032b-69c2" name="Questoris Knight Magaera" hidden="false" collective="false" import="true" targetId="a3e0-d3af-585c-0b96" type="selectionEntry">
<categoryLinks>
<categoryLink id="42b4-1e77-228c-1fe8" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="d779-6261-8e8c-6416" name="Questoris Knight Styrix" hidden="false" collective="false" import="true" targetId="392e-892e-7b42-b108" type="selectionEntry">
<categoryLinks>
<categoryLink id="6f14-a279-1f76-8414" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0c3e-523e-fbc8-7828" name="Armiger Warglaives" hidden="false" collective="false" import="true" targetId="aebf-6658-0afa-1c05" type="selectionEntry">
<categoryLinks>
<categoryLink id="5e25-c4b0-89a8-cae4" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="00cd-b458-dd8c-f6c6" name="Armiger Helverins" hidden="false" collective="false" import="true" targetId="e6d7-df2d-5815-0c89" type="selectionEntry">
<categoryLinks>
<categoryLink id="1aa6-98eb-b5bb-f47e" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="6d58-8b70-8309-d28a" name="Canis Rex" hidden="false" collective="false" import="true" targetId="3a62-00de-b0b5-7cf4" type="selectionEntry">
<categoryLinks>
<categoryLink id="624f-60b0-6f66-1a3c" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="ded5-1fe0-0e0a-72ce" name="Chivalric Oath" hidden="false" collective="false" import="true" targetId="7936-1336-74af-57bf" type="selectionEntry">
<categoryLinks>
<categoryLink id="736f-79b2-3fd3-bf3f" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="18c8-58b7-dac2-87b2" name="[Reference] Chivalric Oaths" hidden="false" collective="false" import="true" targetId="64c7-2534-d6ec-c53a" type="selectionEntry">
<categoryLinks>
<categoryLink id="8c8d-fbf9-f3d0-12a1" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="cd2e-40a7-ad1e-1b3f" name="Knight Crusader" hidden="false" collective="false" import="true" targetId="bce6-bc24-a327-fc1c" type="selectionEntry">
<categoryLinks>
<categoryLink id="d961-8400-7f3f-a852" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="1d53-1eaa-ad95-5b14" name="Knight Valiant" hidden="false" collective="false" import="true" targetId="5a7f-f8dc-f25a-b090" type="selectionEntry">
<categoryLinks>
<categoryLink id="2044-3882-8f42-c613" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="bac1-80cb-6067-602f" name="Knight Preceptor" hidden="false" collective="false" import="true" targetId="e02a-99d0-202d-01fc" type="selectionEntry">
<categoryLinks>
<categoryLink id="312a-3ea6-3c1a-8d49" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="07c3-5d3e-59b4-59c9" name="[Reference] Warlord Traits" hidden="false" collective="false" import="true" targetId="3e00-eb05-5e60-6a05" type="selectionEntry">
<categoryLinks>
<categoryLink id="dd3e-f185-31a5-0491" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="57a5-b7c0-5aa6-bb23" name="Acastus Knight Asterius" hidden="false" collective="false" import="true" targetId="2519-4676-1fcc-31da" type="selectionEntry">
<categoryLinks>
<categoryLink id="d7ae-5920-65a7-d9d1" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9199-fffd-6062-308d" name="Knight Moiraxes" hidden="false" collective="false" import="true" targetId="f45f-a084-c34a-8f5e" type="selectionEntry">
<categoryLinks>
<categoryLink id="577b-4891-12a7-8ebb" name="New CategoryLink" hidden="false" targetId="c888f08a-6cea-4a01-8126-d374a9231554" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="a918-6474-d9de-4dc6" name="[Reference] Household Traditions" hidden="false" collective="false" import="true" targetId="1378-7ed6-3271-7431" type="selectionEntry">
<categoryLinks>
<categoryLink id="9b57-68d4-862a-114d" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0423-c1a4-7958-e8b2" name="[Reference] Core Stratagems" hidden="false" collective="false" import="true" targetId="06e4-8b2d-822a-d894" type="selectionEntry">
<categoryLinks>
<categoryLink id="6086-fa38-9b01-2840" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="9264-c7b7-f4f1-2b2a" name="[Reference] Knightly Teachings" hidden="false" collective="false" import="true" targetId="40c9-14fe-9177-6e35" type="selectionEntry">
<categoryLinks>
<categoryLink id="4286-7e8b-9fc1-8b36" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</categoryLinks>
</entryLink>
<entryLink id="0d14-091c-8dcc-7afa" name="Household Choice" hidden="false" collective="false" import="true" targetId="1599-8972-0135-ab65" type="selectionEntry">
<categoryLinks>
<categoryLink id="c94f-7843-637f-f311" name="New CategoryLink" hidden="false" targetId="fcff-0f21-93e6-1ddc" primary="true"/>
</categoryLinks>
</entryLink>
</entryLinks>
<rules>
<rule id="4b57-8620-2c00-3feb" name="Code Chivalric" publicationId="82cd-d24f-pubN65537" hidden="false">
<description>You will start the battle with 1 Honour point. You can gain Honour Points during the battle, typicaly by completing the Pledge of your selected Oaths. You can also lose Honour Points during the battle, typically when the Troth of your selected Oaths applies. You can never have less than 0 Honour points, or more than 6. At the start of each battle round, consult the table below to determine your army's current level of Honour.
- 0 Honour Points: Dishonoured
- 1-4 Honour Points: Honoured
- 5-6 Honour Points: Virtuous
Whilst your army is Dishonoured, the Honoured and Virtuous Chivalric abilities from your selected Oaths are not active. Whilst your army is Honoured, the Honoured Chivalric ability from your selected Oaths are active for all IMPERIAL KNIGHTS units in your army, but the Virtuous Chivalric abilities from your selected Oaths are not active. Whilst your army is Virtuous, the Honoured and Virtuous Chivalric abilities from y our selected Oaths are active for all IMPERIAL KNIGHTS units in your army.</description>
</rule>
<rule id="93df-3ddd-e7a3-c368" name="Noble Households" publicationId="82cd-d24f-pubN65537" page="116" hidden="false">
<description>If your army is Battle-forged, you cannot include units drawn from two different noble households in the same Detachment, but it can include any number of FREEBLADES in the same Detachment.</description>
</rule>
</rules>
<sharedSelectionEntries>
<selectionEntry id="c239-09b7-6bfc-4ab8" name="Reaper Chainsword" publicationId="82cd-d24f-pubN65537" page="" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="ff93-b1b0-7486-940d" name="Reaper Chainsword Sweep" publicationId="82cd-d24f-pubN65537" page="103" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">User</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each time an attack is made with this weapon profile, made 3 hit rolls insterad of 1.</characteristic>
</characteristics>
</profile>
<profile id="2f37-d128-3066-5623" name="Reaper Chainsword - Strike" publicationId="82cd-d24f-pubN65537" page="103" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">+6</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-4</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">6</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410"/>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6505-5eeb-f50d-1efe" name="Thunderstrike gauntlet" publicationId="82cd-d24f-pubN65537" page="" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="f65b-9965-68f3-0320" name="Thunderstrike Gauntlet - Strike" publicationId="82cd-d24f-pubN65537" page="103" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">x2</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-3</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">8</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
<profile id="9be8-8bc2-dbeb-849a" name="Thunderstrike Gauntlet - Sweep" publicationId="82cd-d24f-pubN65537" page="103" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">+2</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each time an attack is made withi this weapon profile, make 2 hit rolls instead of 1.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4524-229a-e82e-a647" name="Titanic Feet" publicationId="82cd-d24f-pubN65537" page="" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="f1f5-e518-505e-1bc2" name="Titanic Feet" publicationId="82cd-d24f-pubN65537" page="" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">Melee</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Melee</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">User</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="534b-82a7-2512-10e3" name="Avenger Gatling Cannon" publicationId="82cd-d24f-pubN65537" page="" hidden="false" collective="false" import="true" type="upgrade">
<infoLinks>
<infoLink id="b5e1-721e-9db9-faa4" name="Avenger Gatling Cannon" hidden="false" targetId="a4d2-ed0a-9826-9d6a" type="profile"/>
</infoLinks>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="61a4-5046-5328-e81f" name="Ironstorm Missile Pod" publicationId="82cd-d24f-pubN65537" page="" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="8c2c-7b23-ca92-a8c1" name="Ironstorm Missile Pod" publicationId="82cd-d24f-pubN65537" page="102" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">72"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">5</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-1</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Blast. This weapon can target units that are not visible to the bearer.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="97c7-4a9b-4f99-cb35" name="Rapid-Fire Battle Cannon" publicationId="82cd-d24f-pubN65537" page="" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="426a-6d2c-1935-6b36" name="Rapid-Fire Battle Cannon" publicationId="82cd-d24f-pubN65537" page="" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">72"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 2D6</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">8</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">3</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Blast</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="52a5-2cbb-004b-9bc1" name="Stormspear Rocket Pod" publicationId="82cd-d24f-pubN65537" page="" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="92da-afa7-3cc6-28e4" name="Stormspear Rocket Pod" publicationId="82cd-d24f-pubN65537" page="" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">48"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 3</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">8</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-2</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D6</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">-</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="35c4-c945-a85e-d5c6" name="Thermal Cannon" publicationId="82cd-d24f-pubN65537" page="" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="2eb6-bbde-49a1-4e71" name="Thermal Cannon" publicationId="82cd-d24f-pubN65537" page="102" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">36"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 2D3 </characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">9</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-4</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">D6+2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Blast. Each time an attack made with this weapon targets a unit wthin half range, that attack has a Damage characteristic of D6+4.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="b676-dfe7-2fea-9b58" name="Twin Icarus Autocannon" publicationId="82cd-d24f-pubN65537" page="" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="f651-a039-91df-0b12" name="Twin Icarus Autocannon" publicationId="82cd-d24f-pubN65537" page="102" hidden="false" typeId="d5f97c0b-9fc9-478d-aa34-a7c414d3ea48" typeName="Weapon">
<characteristics>
<characteristic name="Range" typeId="6fa97fa8-ea74-4a27-a0fb-bc4e5f367464">48"</characteristic>
<characteristic name="Type" typeId="077c342f-d7b9-45c6-b8af-88e97cafd3a2">Heavy 4</characteristic>
<characteristic name="S" typeId="59b1-319e-ec13-d466">7</characteristic>
<characteristic name="AP" typeId="75aa-a838-b675-6484">-1</characteristic>
<characteristic name="D" typeId="ae8a-3137-d65b-4ca7">2</characteristic>
<characteristic name="Abilities" typeId="837d-5e63-aeb7-1410">Each time an attack is made against an AIRCRAFT unit, add 1 to that attack's hit roll</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="0.0"/>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="bce6-bc24-a327-fc1c" name="Knight Crusader" publicationId="82cd-d24f-pubN65537" page="" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="d226-8ef6-2e53-2f0d" name="Knight Crusader [1] (13+ Wounds Remaining)" publicationId="82cd-d24f-pubN65537" page="124" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">10"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">24</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="34c0-aea3-b4d7-1f5e" name="Knight Crusader [2] (7-12 Wounds Remaining)" publicationId="82cd-d24f-pubN65537" page="124" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">8"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">N/A</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="cf23-68d2-ab20-12ff" name="Knight Crusader [3] (1-6 Wounds Remaining)" publicationId="82cd-d24f-pubN65537" page="124" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">5+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">5+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">N/A</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="a5e5-28c7-c202-899d" name="Crusader's Duty (Bondsman)" publicationId="82cd-d24f-pubN65537" page="124" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">In your Command phase, you can select one friendly <NOBLE HOUSEHOLD> ARMIGER-CLASS model within 12" of this mode. Until the start of your next Command phase, improve that ARMIGER-CLASS model's Ballistic Skill characteristic by 1.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f863-dc56-09be-8618" name="Ion Shields" hidden="false" targetId="7d1d-e7ee-9a4e-2821" type="profile"/>
<infoLink id="9e74-4583-ba06-9daa" name="Explodes (Questoris/Cerastus)" hidden="false" targetId="383d-e9e6-b605-f6a9" type="profile"/>
<infoLink id="1acc-dda0-ce1f-18fb" name="Super-Heavy Walker" hidden="false" targetId="184b-c0f6-24c8-8b65" type="profile"/>
<infoLink id="85b3-4fb1-f4c0-c312" name="Unyielding Knight" hidden="false" targetId="cf6b-7e0e-344a-1cf2" type="rule"/>
<infoLink id="e5e7-7155-1953-4e8a" name="Code Chivalric" hidden="false" targetId="fd14-f544-e18a-b8e8" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="124c-ece0-1ec1-3b79" name="New CategoryLink" hidden="false" targetId="3165-541a-4f9c-263c" primary="false"/>
<categoryLink id="7b93-a1df-7967-6b69" name="New CategoryLink" hidden="false" targetId="0dcf-a7d7-3f80-b95e" primary="false"/>
<categoryLink id="a4f7-7aa8-170f-f810" name="New CategoryLink" hidden="false" targetId="846c-fcbb-db5e-c3e0" primary="false"/>
<categoryLink id="d025-8115-ebfb-b93c" name="New CategoryLink" hidden="false" targetId="bdda-36f0-4f32-1639" primary="false"/>
<categoryLink id="9370-a9e8-8328-8c32" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="435e-663b-dd36-7bd7" name="New CategoryLink" hidden="false" targetId="c2c5-7f68-cebf-ceca" primary="false"/>
<categoryLink id="c0cc-9fa8-133d-d7fe" name="Faction: Imperial Knights" hidden="false" targetId="0116-d165-23e1-4e90" primary="false"/>
<categoryLink id="1773-9f22-690e-4da5" name="Questoris-Class" hidden="false" targetId="1cea-0a86-e87d-da1e" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="384a-97c1-8a65-2e8a" name="Knight Crusader Weapon" hidden="false" collective="false" import="true" defaultSelectionEntryId="388f-8b62-c7c7-bda9">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6744-9883-5d16-87e7" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="53fc-09fa-a108-d23d" type="max"/>
</constraints>
<entryLinks>
<entryLink id="388f-8b62-c7c7-bda9" name="Thermal Cannon" hidden="false" collective="false" import="true" targetId="35c4-c945-a85e-d5c6" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e128-c68e-9937-bb91" type="max"/>
</constraints>
</entryLink>
<entryLink id="6863-9b28-d854-6e42" name="Rapid-Fire Battle Cannon w/ Questor Cognis Heavy Stubber" hidden="false" collective="false" import="true" targetId="4143-54ec-60a8-b9f9" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="05dc-b991-1a99-40e6" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="41ad-721f-b98b-247d" type="max"/>
</constraints>
</entryLink>
<entryLink id="7b52-1466-be71-e5a0" name="Rapid-Fire Battle Cannon w/ Questor Ironhail Stubber" hidden="false" collective="false" import="true" targetId="cc64-f36e-421e-75f3" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="0331-f3d9-7e76-8298" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0996-5215-3ec0-025f" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="c8a7-47df-1e8a-2d79" name="Questoris Carapace Weapons" hidden="false" collective="false" import="true" targetId="8a10-ffae-4091-99d9" type="selectionEntryGroup"/>
<entryLink id="be91-76ac-9fe0-a3d1" name="Small Arms Choice" hidden="false" collective="false" import="true" targetId="4800-5d7e-08f8-f8f5" type="selectionEntryGroup"/>
<entryLink id="6ce9-e48f-13a0-0338" name="Titanic Feet" hidden="false" collective="false" import="true" targetId="4524-229a-e82e-a647" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c985-c14a-6836-cce9" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cc58-9a64-cad4-bcf0" type="max"/>
</constraints>
</entryLink>
<entryLink id="4f4f-a436-b670-ac52" name="Avenger Gatling Cannon w/ Heavy Flamer" hidden="false" collective="false" import="true" targetId="247d-eee5-6e55-b4f3" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e5bc-379f-be7f-5ce0" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="39cd-3baf-3c14-21f2" type="max"/>
</constraints>
<infoLinks>
<infoLink id="73f9-b657-bdba-af59" name="Avenger Gatling Cannon" hidden="false" targetId="a4d2-ed0a-9826-9d6a" type="profile">
<comment>This is linked here instead of the weapon shared entry in order to allow it to be hidden when a relic is selected.</comment>
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="bce6-bc24-a327-fc1c" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="d159-80cb-9d06-cd0c" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
</infoLink>
</infoLinks>
</entryLink>
<entryLink id="1514-c417-4b49-c1f6" name="Freeblade" hidden="false" collective="false" import="true" targetId="b852-a5b1-1418-5374" type="selectionEntry"/>
<entryLink id="1dc9-5000-6e7c-6e8d" name="Heirlooms of the Noble Houses" hidden="false" collective="false" import="true" targetId="b41b-99f7-d7c3-66ee" type="selectionEntryGroup"/>
<entryLink id="005d-0170-0031-de95" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="c5e1-43cc-abec-dee0" type="selectionEntryGroup"/>
<entryLink id="9838-3948-9b89-e150" name="Warlord" hidden="false" collective="false" import="true" targetId="96f2-3321-e974-f12a" type="selectionEntry">
<categoryLinks>
<categoryLink id="f549-f48d-a4c2-f809" name="Titanic Warlord" hidden="false" targetId="6c1d-32d6-b16c-3b0c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="821c-f34f-9902-ca87" name="Freeblade Traditions" hidden="false" collective="false" import="true" targetId="2fac-d4fc-3cc1-0ad8" type="selectionEntryGroup"/>
<entryLink id="51fc-f8d7-1a84-513a" name="Order of Companions" hidden="false" collective="false" import="true" targetId="72f4-872d-e016-0a96" type="selectionEntry">
<categoryLinks>
<categoryLink id="cf0d-92ff-947f-4756" name="Titanic Warlord" hidden="false" targetId="6c1d-32d6-b16c-3b0c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="4cc7-49bd-bfe2-1b16" name="Revered Paragon" hidden="false" collective="false" import="true" targetId="90c4-b5a5-09ff-22f9" type="selectionEntry">
<categoryLinks>
<categoryLink id="1d0d-cb13-da8e-d4c1" name="Titanic Warlord" hidden="false" targetId="6c1d-32d6-b16c-3b0c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="3626-75cb-4d46-b9af" name="Heirlooms of the Household" hidden="false" collective="false" import="true" targetId="9630-827b-a78d-63b7" type="selectionEntry">
<categoryLinks>
<categoryLink id="9ac4-74a3-9553-0b8f" name="Titanic Warlord" hidden="false" targetId="6c1d-32d6-b16c-3b0c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="149e-aa47-6b5e-c58b" name="Knight Baron" hidden="false" collective="false" import="true" targetId="aa6c-e36b-69dd-0739" type="selectionEntry">
<categoryLinks>
<categoryLink id="c21d-b012-24cb-2c82" name="Titanic Warlord" hidden="false" targetId="6c1d-32d6-b16c-3b0c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="b091-db39-88ec-4f72" name="Character (Knight Lance)" hidden="false" collective="false" import="true" targetId="187c-66fe-9a65-9ff4" type="selectionEntry"/>
<entryLink id="ab77-fdac-ca75-cdfe" name="Exalted Court" hidden="false" collective="false" import="true" targetId="1ccf-115f-8688-664d" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="485.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="26.0"/>
</costs>
</selectionEntry>
<selectionEntry id="85f3-42d9-9d08-f487" name="Knight Errant" publicationId="82cd-d24f-pubN65537" page="" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="b05f-5dd9-4d3a-c7d3" name="Knight Errant [1] (13+ Wounds Remaining)" publicationId="82cd-d24f-pubN65537" page="122" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">10"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">24</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="8bb7-b6b9-3a01-8499" name="Knight Errant [2] (7-12 Wounds Remaining)" publicationId="82cd-d24f-pubN65537" page="122" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">8"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">N/A</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="9759-eebf-2844-2f22" name="Knight Errant [3] (1-6 Wounds Remaining)" publicationId="82cd-d24f-pubN65537" page="122" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">5+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">5+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">N/A</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="c994-dcfd-467a-4947" name="Errant's Duty (Bondsman)" publicationId="82cd-d24f-pubN65537" page="122" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">In your Command phase, you can select one friendly <NOBLE HOUSEHOLD> ARMIGER-CLASS model within 12" of this mode. Until the start of your next Command phase, that ARMIGER-CLASS model is eligible to declare a charge in a turn in which it advanced, and you add 1 to Advance and Charge rolls made for that ARMIGER-CLASS model.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0450-9738-3464-68f7" name="Super-Heavy Walker" hidden="false" targetId="184b-c0f6-24c8-8b65" type="profile"/>
<infoLink id="357b-c9a9-8add-c1a9" name="Explodes (Questoris/Cerastus)" hidden="false" targetId="383d-e9e6-b605-f6a9" type="profile"/>
<infoLink id="d373-0c37-5538-70e1" name="Ion Shields" hidden="false" targetId="7d1d-e7ee-9a4e-2821" type="profile"/>
<infoLink id="a11a-36fa-598a-184e" name="Unyielding Knight" hidden="false" targetId="cf6b-7e0e-344a-1cf2" type="rule"/>
<infoLink id="8efa-95fb-b5f8-201c" name="Code Chivalric" hidden="false" targetId="fd14-f544-e18a-b8e8" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c8cd-b332-ef97-ae98" name="New CategoryLink" hidden="false" targetId="3165-541a-4f9c-263c" primary="false"/>
<categoryLink id="e78e-8861-f43b-24e9" name="New CategoryLink" hidden="false" targetId="0dcf-a7d7-3f80-b95e" primary="false"/>
<categoryLink id="d541-fcfc-f83d-a26f" name="New CategoryLink" hidden="false" targetId="bdda-36f0-4f32-1639" primary="false"/>
<categoryLink id="e404-cc8e-a224-4266" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="19f5-4745-3b56-2f42" name="New CategoryLink" hidden="false" targetId="a51e-4ae2-ad51-478d" primary="false"/>
<categoryLink id="ea5f-deda-e113-e7cf" name="New CategoryLink" hidden="false" targetId="c2c5-7f68-cebf-ceca" primary="false"/>
<categoryLink id="ec76-ad0a-8b66-60e4" name="Faction: Imperial Knights" hidden="false" targetId="0116-d165-23e1-4e90" primary="false"/>
<categoryLink id="fd16-eb08-e391-c926" name="Questoris-Class" hidden="false" targetId="1cea-0a86-e87d-da1e" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="cc40-1439-e691-f084" name="Questoris Carapace Weapons" hidden="false" collective="false" import="true" targetId="8a10-ffae-4091-99d9" type="selectionEntryGroup"/>
<entryLink id="c817-915c-1880-a823" name="Small Arms Choice" hidden="false" collective="false" import="true" targetId="4800-5d7e-08f8-f8f5" type="selectionEntryGroup"/>
<entryLink id="a2cf-42c4-38d9-be36" name="Titanic Feet" hidden="false" collective="false" import="true" targetId="4524-229a-e82e-a647" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9d33-c4c7-c789-8543" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9ad4-749c-2157-d331" type="max"/>
</constraints>
</entryLink>
<entryLink id="2e8c-6594-64a8-4f51" name="Knight Melee Weapons" hidden="false" collective="false" import="true" targetId="a247-a851-81c9-7a2e" type="selectionEntryGroup"/>
<entryLink id="0441-b92f-7561-628e" name="Thermal Cannon" hidden="false" collective="false" import="true" targetId="35c4-c945-a85e-d5c6" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0211-9a9c-c0d1-2455" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="494d-3c7c-28e5-a1d2" type="max"/>
</constraints>
</entryLink>
<entryLink id="6cac-4a02-38b2-9dd1" name="Freeblade" hidden="false" collective="false" import="true" targetId="b852-a5b1-1418-5374" type="selectionEntry"/>
<entryLink id="112b-2805-5c57-ad43" name="Heirlooms of the Noble Houses" hidden="false" collective="false" import="true" targetId="b41b-99f7-d7c3-66ee" type="selectionEntryGroup"/>
<entryLink id="bc16-b860-f5d5-a9fa" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="c5e1-43cc-abec-dee0" type="selectionEntryGroup"/>
<entryLink id="cc64-b2de-1ff9-3c48" name="Warlord" hidden="false" collective="false" import="true" targetId="96f2-3321-e974-f12a" type="selectionEntry">
<categoryLinks>
<categoryLink id="173f-449d-ef12-c690" name="Titanic Warlord" hidden="false" targetId="6c1d-32d6-b16c-3b0c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="7793-2498-6ffc-2cab" name="Freeblade Traditions" hidden="false" collective="false" import="true" targetId="2fac-d4fc-3cc1-0ad8" type="selectionEntryGroup"/>
<entryLink id="23c6-3208-763f-9a49" name="Order of Companions" hidden="false" collective="false" import="true" targetId="72f4-872d-e016-0a96" type="selectionEntry">
<categoryLinks>
<categoryLink id="6bf1-41f0-7472-a848" name="Titanic Warlord" hidden="false" targetId="6c1d-32d6-b16c-3b0c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="ba3d-bd5c-b35f-f50a" name="Revered Paragon" hidden="false" collective="false" import="true" targetId="90c4-b5a5-09ff-22f9" type="selectionEntry">
<categoryLinks>
<categoryLink id="e12f-dacc-53e1-69b6" name="Titanic Warlord" hidden="false" targetId="6c1d-32d6-b16c-3b0c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="851b-c93d-c545-1652" name="Heirlooms of the Household" hidden="false" collective="false" import="true" targetId="9630-827b-a78d-63b7" type="selectionEntry">
<categoryLinks>
<categoryLink id="d83b-55d2-f6f8-1d62" name="Titanic Warlord" hidden="false" targetId="6c1d-32d6-b16c-3b0c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="447d-30e7-d4fb-775c" name="Knight Baron" hidden="false" collective="false" import="true" targetId="aa6c-e36b-69dd-0739" type="selectionEntry">
<categoryLinks>
<categoryLink id="c214-d9ec-cd5c-cf1d" name="Titanic Warlord" hidden="false" targetId="6c1d-32d6-b16c-3b0c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="8d8d-ac3d-ce22-f52f" name="Character (Knight Lance)" hidden="false" collective="false" import="true" targetId="187c-66fe-9a65-9ff4" type="selectionEntry"/>
<entryLink id="472e-0c93-5b94-11a2" name="Exalted Court" hidden="false" collective="false" import="true" targetId="1ccf-115f-8688-664d" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="425.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="23.0"/>
</costs>
</selectionEntry>
<selectionEntry id="602c-d7c6-68b2-0f26" name="Knight Gallant" publicationId="82cd-d24f-pubN65537" page="" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="4cac-481f-ba0e-40df" name="Knight Gallant [1] (13+ Wounds Remaining)" publicationId="82cd-d24f-pubN65537" page="125" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">12"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">2+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">24</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">5</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="c00f-0b77-ad4e-7b78" name="Knight Gallant [2] (7-12 Wounds Remaining)" publicationId="82cd-d24f-pubN65537" page="125" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">10"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">N/A</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">5</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="bf6f-1193-4011-45ef" name="Knight Gallant [3] (1-6 Wounds Remaining)" publicationId="82cd-d24f-pubN65537" page="125" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">8"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">5+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">N/A</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">5</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="9322-5f6b-baee-4b17" name="Gallant's Duty (Bondsman)" publicationId="82cd-d24f-pubN65537" page="125" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">In your Command phase, you can select one friendly <NOBLE HOUSEHOLD> ARMIGER-CLASS model within 12" of this mode. Until the start of your next Command phase, improve that ARMIGER-CLASS model's Weapon Skill characteristic by 1.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="30ff-5b1c-aaf2-2b16" name="Ion Shields" hidden="false" targetId="7d1d-e7ee-9a4e-2821" type="profile"/>
<infoLink id="c2cf-0694-35bf-1fa7" name="Explodes (Questoris/Cerastus)" hidden="false" targetId="383d-e9e6-b605-f6a9" type="profile"/>
<infoLink id="3879-fee6-abd1-59b8" name="Super-Heavy Walker" hidden="false" targetId="184b-c0f6-24c8-8b65" type="profile"/>
<infoLink id="bceb-7280-75cc-4d7c" name="Unyielding Knight" hidden="false" targetId="cf6b-7e0e-344a-1cf2" type="rule"/>
<infoLink id="ec77-7de7-d5e3-c07c" name="Code Chivalric" hidden="false" targetId="fd14-f544-e18a-b8e8" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="8320-fcc2-2364-8c5d" name="New CategoryLink" hidden="false" targetId="3165-541a-4f9c-263c" primary="false"/>
<categoryLink id="ba81-860a-415a-f7ac" name="New CategoryLink" hidden="false" targetId="0dcf-a7d7-3f80-b95e" primary="false"/>
<categoryLink id="5807-91fa-ff5c-2a8e" name="New CategoryLink" hidden="false" targetId="bdda-36f0-4f32-1639" primary="false"/>
<categoryLink id="3018-8f3a-41fe-1902" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="586d-0516-9d86-8e35" name="New CategoryLink" hidden="false" targetId="2a6f-53ee-1833-d2d3" primary="false"/>
<categoryLink id="f361-3432-94d8-5fcf" name="New CategoryLink" hidden="false" targetId="c2c5-7f68-cebf-ceca" primary="false"/>
<categoryLink id="8465-c6bb-a57d-8f3b" name="Faction: Imperial Knights" hidden="false" targetId="0116-d165-23e1-4e90" primary="false"/>
<categoryLink id="4cd7-612a-e39a-8895" name="Questoris-Class" hidden="false" targetId="1cea-0a86-e87d-da1e" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="f4bb-3b3e-d63b-12a2" name="Questoris Carapace Weapons" hidden="false" collective="false" import="true" targetId="8a10-ffae-4091-99d9" type="selectionEntryGroup"/>
<entryLink id="8598-37d0-0e9c-6a91" name="Small Arms Choice" hidden="false" collective="false" import="true" targetId="4800-5d7e-08f8-f8f5" type="selectionEntryGroup"/>
<entryLink id="0a30-2c0d-fb99-e2b4" name="Titanic Feet" hidden="false" collective="false" import="true" targetId="4524-229a-e82e-a647" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="bf3f-43e3-4cf3-cb7d" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ac69-5f0f-50b5-0343" type="max"/>
</constraints>
</entryLink>
<entryLink id="02eb-b415-b511-47c9" name="Thunderstrike gauntlet" hidden="false" collective="false" import="true" targetId="6505-5eeb-f50d-1efe" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="038b-aa85-8f84-366e" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6746-9aae-8cbb-2659" type="max"/>
</constraints>
</entryLink>
<entryLink id="b564-e0d7-c9ce-b2fc" name="Reaper Chainsword" hidden="false" collective="false" import="true" targetId="c239-09b7-6bfc-4ab8" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1d0e-09ed-3861-9cb6" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d15f-58f4-b404-3b6a" type="min"/>
</constraints>
</entryLink>
<entryLink id="9eb0-023a-316a-0189" name="Freeblade" hidden="false" collective="false" import="true" targetId="b852-a5b1-1418-5374" type="selectionEntry"/>
<entryLink id="a36b-f036-e61e-d45f" name="Heirlooms of the Noble Houses" hidden="false" collective="false" import="true" targetId="b41b-99f7-d7c3-66ee" type="selectionEntryGroup"/>
<entryLink id="38f3-fc7b-72bb-d67c" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="c5e1-43cc-abec-dee0" type="selectionEntryGroup"/>
<entryLink id="ebd6-0120-200b-40e5" name="Warlord" hidden="false" collective="false" import="true" targetId="96f2-3321-e974-f12a" type="selectionEntry">
<categoryLinks>
<categoryLink id="7060-e4d6-c67e-b420" name="Titanic Warlord" hidden="false" targetId="6c1d-32d6-b16c-3b0c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="646c-c1db-8b7f-81f6" name="Freeblade Traditions" hidden="false" collective="false" import="true" targetId="2fac-d4fc-3cc1-0ad8" type="selectionEntryGroup"/>
<entryLink id="990a-c75a-ca4f-52fa" name="Order of Companions" hidden="false" collective="false" import="true" targetId="72f4-872d-e016-0a96" type="selectionEntry">
<categoryLinks>
<categoryLink id="c697-fe89-7bd9-3f05" name="Titanic Warlord" hidden="false" targetId="6c1d-32d6-b16c-3b0c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="51e2-9996-25fa-bdc4" name="Revered Paragon" hidden="false" collective="false" import="true" targetId="90c4-b5a5-09ff-22f9" type="selectionEntry">
<categoryLinks>
<categoryLink id="10a4-201e-9452-f6ba" name="Titanic Warlord" hidden="false" targetId="6c1d-32d6-b16c-3b0c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="a172-009f-62fd-24d4" name="Heirlooms of the Household" hidden="false" collective="false" import="true" targetId="9630-827b-a78d-63b7" type="selectionEntry">
<categoryLinks>
<categoryLink id="af66-8137-41a1-35a5" name="Titanic Warlord" hidden="false" targetId="6c1d-32d6-b16c-3b0c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="62e3-989f-6cf7-b9ea" name="Knight Baron" hidden="false" collective="false" import="true" targetId="aa6c-e36b-69dd-0739" type="selectionEntry">
<categoryLinks>
<categoryLink id="d6b8-d273-22d7-9c2e" name="Titanic Warlord" hidden="false" targetId="6c1d-32d6-b16c-3b0c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="62c0-8fd7-3575-f636" name="Character (Knight Lance)" hidden="false" collective="false" import="true" targetId="187c-66fe-9a65-9ff4" type="selectionEntry"/>
<entryLink id="25b0-dcc4-b41d-216a" name="Exalted Court" hidden="false" collective="false" import="true" targetId="1ccf-115f-8688-664d" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="400.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="21.0"/>
</costs>
</selectionEntry>
<selectionEntry id="89d4-63ea-2c6f-4b49" name="Knight Paladin" publicationId="82cd-d24f-pubN65537" page="" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="f3a4-3acc-4b7f-3129" name="Knight Paladin [1] (13+ Wounds Remaining)" publicationId="82cd-d24f-pubN65537" page="126" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">10"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">3+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">24</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="1420-9d31-ead6-78c0" name="Knight Paladin [2] (7-12 Wounds Remaining)" publicationId="82cd-d24f-pubN65537" page="126" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">8"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">4+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">4+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">N/A</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="9fc0-6b5c-c8d1-4d45" name="Knight Paladin [3] (1-6 Wounds Remaining)" publicationId="82cd-d24f-pubN65537" page="126" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">6"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">5+</characteristic>
<characteristic name="BS" typeId="381b-eb28-74c3-df5f">5+</characteristic>
<characteristic name="S" typeId="2218-aa3c-265f-2939">8</characteristic>
<characteristic name="T" typeId="9c9f-9774-a358-3a39">8</characteristic>
<characteristic name="W" typeId="f330-5e6e-4110-0978">N/A</characteristic>
<characteristic name="A" typeId="13fc-b29b-31f2-ab9f">4</characteristic>
<characteristic name="Ld" typeId="00ca-f8b8-876d-b705">9</characteristic>
<characteristic name="Save" typeId="c0df-df94-abd7-e8d3">3+</characteristic>
</characteristics>
</profile>
<profile id="ef87-e198-c7f4-2d1e" name="Paladin's Duty (Bondsman)" publicationId="82cd-d24f-pubN65537" page="126" hidden="false" typeId="72c5eafc-75bf-4ed9-b425-78009f1efe82" typeName="Abilities">
<characteristics>
<characteristic name="Description" typeId="21befb24-fc85-4f52-a745-64b2e48f8228">In your Command phase, you can select one friendly <NOBLE HOUSEHOLD> ARMIGER-CLASS model within 12" of this mode. Until the start of your next Command phase, each time that ARMIGER-CLASS model makes an attack, re-roll a hit roll of 1 and re-roll a wound roll of 1.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="38b5-93ef-f006-b16b" name="Ion Shields" hidden="false" targetId="7d1d-e7ee-9a4e-2821" type="profile"/>
<infoLink id="1612-a27f-34a9-0d37" name="Explodes (Questoris/Cerastus)" hidden="false" targetId="383d-e9e6-b605-f6a9" type="profile"/>
<infoLink id="9215-d206-9b89-4c48" name="Super-Heavy Walker" hidden="false" targetId="184b-c0f6-24c8-8b65" type="profile"/>
<infoLink id="3a86-a919-10eb-d7bc" name="Unyielding Knight" hidden="false" targetId="cf6b-7e0e-344a-1cf2" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="dbbd-6f3f-e734-ec39" name="New CategoryLink" hidden="false" targetId="3165-541a-4f9c-263c" primary="false"/>
<categoryLink id="3fa8-38a7-dbb9-bf98" name="New CategoryLink" hidden="false" targetId="0dcf-a7d7-3f80-b95e" primary="false"/>
<categoryLink id="c8b8-ea09-aa99-2352" name="New CategoryLink" hidden="false" targetId="bdda-36f0-4f32-1639" primary="false"/>
<categoryLink id="f769-a759-fcb5-f899" name="New CategoryLink" hidden="false" targetId="c8fd-783f-3230-493e" primary="false"/>
<categoryLink id="26c4-3b20-3d12-4bb9" name="New CategoryLink" hidden="false" targetId="3454-0bd8-b84d-3362" primary="false"/>
<categoryLink id="d9bb-d554-3a65-73eb" name="New CategoryLink" hidden="false" targetId="c2c5-7f68-cebf-ceca" primary="false"/>
<categoryLink id="a72a-cf3b-27db-0e76" name="Faction: Imperial Knights" hidden="false" targetId="0116-d165-23e1-4e90" primary="false"/>
<categoryLink id="6a7c-1d9d-7292-6204" name="Questoris-Class" hidden="false" targetId="1cea-0a86-e87d-da1e" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="aaae-9ab6-4366-934b" name="Rapid-Fire Battle Cannon Type" publicationId="82cd-d24f-pubN65537" page="132" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0e6f-f6e9-4348-11c3" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1319-d39e-c520-a5d0" type="min"/>
</constraints>
<entryLinks>
<entryLink id="d013-4f8d-eec6-7a86" name="Rapid-Fire Battle Cannon w/ Questor Cognis Heavy Stubber" hidden="false" collective="false" import="true" targetId="4143-54ec-60a8-b9f9" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="05dc-b991-1a99-40e6" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
<entryLink id="84f7-e42a-219d-3bdc" name="Rapid-Fire Battle Cannon w/ Questor Ironhail Stubber" hidden="false" collective="false" import="true" targetId="cc64-f36e-421e-75f3" type="selectionEntry">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="0331-f3d9-7e76-8298" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="50bc-16a2-366e-3539" name="Questoris Carapace Weapons" hidden="false" collective="false" import="true" targetId="8a10-ffae-4091-99d9" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2e2a-8866-6a2c-94ec" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e978-d2d1-87cc-90a4" type="max"/>
</constraints>
</entryLink>
<entryLink id="f95d-8550-0310-6b43" name="Small Arms Choice" hidden="false" collective="false" import="true" targetId="4800-5d7e-08f8-f8f5" type="selectionEntryGroup">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e81a-4be0-8822-8382" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e69a-09d3-ee18-b8f3" type="max"/>
</constraints>
</entryLink>
<entryLink id="6b1f-f8f2-89ae-2f35" name="Titanic Feet" hidden="false" collective="false" import="true" targetId="4524-229a-e82e-a647" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c89d-4862-04a5-41e6" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6531-d1ba-988a-69d9" type="max"/>
</constraints>
</entryLink>
<entryLink id="c7e7-5c59-fb91-6f7b" name="Knight Melee Weapons" hidden="false" collective="false" import="true" targetId="a247-a851-81c9-7a2e" type="selectionEntryGroup"/>
<entryLink id="5d55-1919-5152-0ba9" name="Freeblade" hidden="false" collective="false" import="true" targetId="b852-a5b1-1418-5374" type="selectionEntry"/>
<entryLink id="4756-54d5-27b3-9973" name="Heirlooms of the Noble Houses" hidden="false" collective="false" import="true" targetId="b41b-99f7-d7c3-66ee" type="selectionEntryGroup"/>
<entryLink id="8eed-3fbf-d6fc-c9a8" name="Warlord Traits" hidden="false" collective="false" import="true" targetId="c5e1-43cc-abec-dee0" type="selectionEntryGroup"/>
<entryLink id="89f0-e0a2-c97d-1527" name="Warlord" hidden="false" collective="false" import="true" targetId="96f2-3321-e974-f12a" type="selectionEntry">
<categoryLinks>
<categoryLink id="0bb3-6d14-28ca-ee49" name="Titanic Warlord" hidden="false" targetId="6c1d-32d6-b16c-3b0c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="cb1d-a8e4-ea57-b03d" name="Freeblade Traditions" hidden="false" collective="false" import="true" targetId="2fac-d4fc-3cc1-0ad8" type="selectionEntryGroup"/>
<entryLink id="4a85-2ff9-4da9-175f" name="Order of Companions" hidden="false" collective="false" import="true" targetId="72f4-872d-e016-0a96" type="selectionEntry">
<categoryLinks>
<categoryLink id="4e01-60f7-1165-7b3c" name="Titanic Warlord" hidden="false" targetId="6c1d-32d6-b16c-3b0c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="fea9-f843-c3ce-1e83" name="Revered Paragon" hidden="false" collective="false" import="true" targetId="90c4-b5a5-09ff-22f9" type="selectionEntry">
<categoryLinks>
<categoryLink id="4285-e42a-20d1-7f76" name="Titanic Warlord" hidden="false" targetId="6c1d-32d6-b16c-3b0c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="0880-3bbf-10a9-c710" name="Heirlooms of the Household" hidden="false" collective="false" import="true" targetId="9630-827b-a78d-63b7" type="selectionEntry">
<categoryLinks>
<categoryLink id="3f69-a517-3ef6-b5ee" name="Titanic Warlord" hidden="false" targetId="6c1d-32d6-b16c-3b0c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="fb3b-61a1-9bec-f254" name="Knight Baron" hidden="false" collective="false" import="true" targetId="aa6c-e36b-69dd-0739" type="selectionEntry">
<categoryLinks>
<categoryLink id="3a31-612e-6681-5930" name="Titanic Warlord" hidden="false" targetId="6c1d-32d6-b16c-3b0c" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="5b6b-7ac5-7a2e-52fc" name="Character (Knight Lance)" hidden="false" collective="false" import="true" targetId="187c-66fe-9a65-9ff4" type="selectionEntry"/>
<entryLink id="661f-025c-2041-ca9a" name="Exalted Court" hidden="false" collective="false" import="true" targetId="1ccf-115f-8688-664d" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="CP" typeId="2d3b-b544-ad49-fb75" value="0.0"/>
<cost name="pts" typeId="points" value="425.0"/>
<cost name=" PL" typeId="e356-c769-5920-6e14" value="23.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d00a-1a85-1c0b-c4ac" name="Knight Warden" publicationId="82cd-d24f-pubN65537" page="" hidden="false" collective="false" import="true" type="model">
<profiles>
<profile id="4519-0ea7-b828-664b" name="Knight Warden [1] (13+ Wounds Remaining)" publicationId="82cd-d24f-pubN65537" page="123" hidden="false" typeId="800f-21d0-4387-c943" typeName="Unit">
<characteristics>
<characteristic name="M" typeId="0bdf-a96e-9e38-7779">10"</characteristic>
<characteristic name="WS" typeId="e7f0-1278-0250-df0c">3+</characteristic>