forked from BSData/wh40k-10e
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Unaligned Forces.cat
2293 lines (2292 loc) · 157 KB
/
Unaligned Forces.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 xmlns="http://www.battlescribe.net/schema/catalogueSchema" id="581a-46b9-5b86-44b7" name="Unaligned Forces" revision="6" battleScribeVersion="2.03" authorName="WindstormSCR" library="true" gameSystemId="sys-352e-adc2-7639-d6a9" gameSystemRevision="2" type="catalogue">
<sharedSelectionEntries>
<selectionEntry id="e85b-17c7-1ad9-8375" name="Ambull" hidden="false" collective="false" import="true" type="model">
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="85"/>
</costs>
<categoryLinks>
<categoryLink targetId="e1ff-c0fa-2ca7-3466" id="a2c1-3a0f-d4cc-b72f" primary="false" name="Unaligned Forces"/>
<categoryLink targetId="887b-ab87-92a2-20f5" id="4fb7-9a37-3b26-6013" primary="true" name="Allied Units"/>
<categoryLink targetId="9693-cf84-fe69-37a9" id="61ae-6a82-acc9-8b6f" primary="false" name="Monster"/>
<categoryLink targetId="9cfd-1c32-585f-7d5c" id="98bd-8f3d-4737-bbe4" primary="false" name="Character"/>
<categoryLink targetId="7d2a-37ff-a5ac-15e4" id="bb02-a4b1-fa11-4bac" primary="false" name="Ambull"/>
</categoryLinks>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="9ed-cbf4-bfe5-90bf" shared="true" includeChildForces="true" includeChildSelections="true"/>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="2973-ea51-7f8d-5403" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<infoLinks>
<infoLink name="Deep Strike" hidden="false" type="rule" id="435a-e270-1c67-af4" targetId="7cb5-dd6b-dd87-ad3b"/>
<infoLink name="Feel No Pain" hidden="false" type="rule" id="2308-ce93-5765-7e7e" targetId="9bf4-280f-bbe2-6fbb">
<modifiers>
<modifier type="append" value="5+" field="name"/>
</modifiers>
</infoLink>
</infoLinks>
<profiles>
<profile name="Ambull" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="f274-7ebf-75d0-44b5">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">6"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">8</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">3+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">8</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">8+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">3</characteristic>
</characteristics>
</profile>
<profile name="Frenzy" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="f481-16a8-9242-1441">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time an enemy unit is selected to shoot or fight, after it has finished making its attacks, if one or more of those attacks targeted this model and this model is not destroyed, this model can fight as if it were the Fight phase</characteristic>
</characteristics>
</profile>
<profile name="Borewyrm Infestation" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="c551-a719-4c3-93f5">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Twice per battle, at the end of your opponent’s turn, if this model is not within Engagement Range of one or more enemy units, you can remove this model from the battlefield. In the Reinforcements step of your next Movement phase, set it up anywhere on the battlefield that
is more than 9" horizontally away from all enemy models. If the battle ends and this unit is not on the battlefield, it is destroyed.
Designer’s Note: Place two Borewyrm Infestation tokens next to this model, removing one each time this ability has been used.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Enormous claws" hidden="false" id="e5b0-1627-ba3b-841e">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b0ad-ed54-d6bb-149"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="6935-9310-dbfe-b4c8"/>
</constraints>
<profiles>
<profile name="Enormous claws" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="af45-70fa-c712-2c49">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">4</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">3+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">6</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">-2</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">D3</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e"/>
</characteristics>
</profile>
</profiles>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Aegis Defence Line with Weapon Emplacement" hidden="false" id="5b1d-134a-9996-b634">
<categoryLinks>
<categoryLink targetId="e1ff-c0fa-2ca7-3466" id="cf8d-689e-9c13-9b07" primary="false" name="Unaligned Forces"/>
<categoryLink targetId="19d7-9c74-2140-5851" id="ad99-b97b-bc8-88e8" primary="true" name="Fortification"/>
<categoryLink targetId="c1aa-8ee-2a60-ecf4" id="d62f-7131-e6a8-c6b6" primary="false" name="Aegis Defence Line with Weapon Emplacement"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="145"/>
</costs>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="9ed-cbf4-bfe5-90bf" shared="true" includeChildForces="true" includeChildSelections="true"/>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="e916-2cf4-a49d-b8c4" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<selectionEntryGroups>
<selectionEntryGroup name="Quad-gun" hidden="false" id="8b0c-3772-861a-a7cd" defaultSelectionEntryId="870c-dae1-65e2-9cee">
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c3e3-6297-6e4a-44c3"/>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="de-b500-9e4b-c6a9"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Quad-gun" hidden="false" type="selectionEntry" id="870c-dae1-65e2-9cee" targetId="aece-7cae-ceb6-4079"/>
<entryLink import="true" name="Icarus Lascannon" hidden="false" type="selectionEntry" id="352e-36c6-3ae5-ead0" targetId="72e7-16-6f4c-ecbd"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<infoLinks>
<infoLink targetId="fa4e-5ac8-11a6-78d2" id="78aa-6c41-72c9-43d7" type="profile" name="Fortification" hidden="false"/>
<infoLink targetId="241c-8bed-ca28-f77" id="cd03-3481-2344-6024" type="profile" name="Reinforced Cover" hidden="false"/>
<infoLink targetId="29fe-dbb0-2a7-a301" id="f364-b873-6533-fc94" type="profile" name="Defence Line" hidden="false"/>
</infoLinks>
<profiles>
<profile name="Aegis Defence Line with Weapon Emplacement" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="2236-7917-c04c-971c">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">-</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">12</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">10</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">0</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="model" import="true" name="Bastion" hidden="false" id="5134-5fe9-e489-43c4">
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="275"/>
</costs>
<categoryLinks>
<categoryLink targetId="e1ff-c0fa-2ca7-3466" id="e07e-c03b-ad9a-1258" primary="false" name="Unaligned Forces"/>
<categoryLink targetId="19d7-9c74-2140-5851" id="64c1-a6ab-be04-eb8" primary="true" name="Fortification"/>
<categoryLink targetId="d666-e2c9-b6cc-5716" id="5fb6-5b94-cad0-e08" primary="false" name="Towering"/>
<categoryLink targetId="dbd4-63-af05-998" id="4131-1197-f1d4-18a" primary="false" name="Vehicle"/>
<categoryLink targetId="75e8-57c4-40e3-1817" id="a206-148f-4983-62f0" primary="false" name="Transport"/>
<categoryLink targetId="8888-fb01-3ef-63d0" id="e957-dc81-609b-8283" primary="false" name="Bastion"/>
</categoryLinks>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="9ed-cbf4-bfe5-90bf" shared="true" includeChildForces="true" includeChildSelections="true"/>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="e916-2cf4-a49d-b8c4" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<selectionEntryGroups>
<selectionEntryGroup name="Weapons Array" hidden="false" id="14be-d879-c755-3d93">
<entryLinks>
<entryLink import="true" name="Comms Antenna" hidden="false" type="selectionEntry" id="866d-5d02-6bbe-81c" targetId="4985-9124-1e83-10f0"/>
<entryLink import="true" name="Icarus Lascannon" hidden="false" type="selectionEntry" id="db5a-f3-5b74-3acb" targetId="72e7-16-6f4c-ecbd"/>
<entryLink import="true" name="Quad-gun" hidden="false" type="selectionEntry" id="3cba-8def-5bb4-bb6d" targetId="aece-7cae-ceb6-4079"/>
</entryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ca20-66ee-5b18-35a4"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<infoLinks>
<infoLink targetId="241c-8bed-ca28-f77" id="27a2-8f94-8c48-644c" type="profile" name="Reinforced Cover" hidden="false"/>
<infoLink targetId="2e62-f126-df89-60d" id="8673-27bf-352-2e44" type="profile" name="Roof Access" hidden="false"/>
<infoLink name="Deadly Demise" hidden="false" type="rule" id="be81-1fbf-f631-d522" targetId="b68a-5ded-65ac-98c">
<modifiers>
<modifier type="append" value="D6" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Firing Deck" hidden="false" type="rule" id="56dc-bf08-7894-a324" targetId="13b2-6518-dab3-7ea1">
<modifiers>
<modifier type="append" value="10" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Fortification" hidden="false" type="profile" id="1b46-ef7a-225f-f5e4" targetId="fa4e-5ac8-11a6-78d2"/>
<infoLink name="Damaged: 1-6 Wounds Remaining" hidden="false" type="profile" id="c721-6f06-72d3-9144" targetId="39db-fc02-9b22-388d"/>
</infoLinks>
<entryLinks>
<entryLink targetId="9772-d936-9e34-8549" id="5db6-55c1-807b-6be" type="selectionEntry" name="Heavy Bolter" hidden="false" collective="false">
<constraints>
<constraint type="max" value="4" field="selections" scope="parent" shared="true" id="6c0d-c99f-67ca-ef22"/>
</constraints>
</entryLink>
</entryLinks>
<profiles>
<profile name="Bastion" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="149c-4cc5-8542-5d0a">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">-</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">13</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">18</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">0</characteristic>
</characteristics>
</profile>
<profile name="Bastion" typeId="74f8-5443-9d6d-1f1e" typeName="Transport" hidden="false" id="252a-f4bd-bf4-c66f">
<characteristics>
<characteristic name="Capacity" typeId="30f2-be70-861d-1b84">This FORTIFICATION has a transport capacity of 15 INFANTRY models. Each model with a Wounds characteristic of 3 or more takes up the space of 2 models. It cannot transport non-CHARACTER models with a Wounds characteristic of 4 or more.</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="model" import="true" name="Firestorm Redoubt" hidden="false" id="71b0-77b9-522c-17d6">
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="260"/>
</costs>
<categoryLinks>
<categoryLink targetId="19d7-9c74-2140-5851" id="f867-d876-adaf-5cc2" primary="true" name="Fortification"/>
<categoryLink targetId="e1ff-c0fa-2ca7-3466" id="ce3a-8b8-a633-f6be" primary="false" name="Unaligned Forces"/>
<categoryLink targetId="75e8-57c4-40e3-1817" id="965b-a51b-e6b6-4fd" primary="false" name="Transport"/>
<categoryLink targetId="dbd4-63-af05-998" id="152b-7476-6f65-eada" primary="false" name="Vehicle"/>
<categoryLink targetId="fc43-1a6a-44bd-4350" id="e0bd-c89d-61d8-2652" primary="false" name="Wall of Matyrs"/>
<categoryLink targetId="bd6f-cfc-c88-9f95" id="6688-fd8a-4779-1b56" primary="false" name="Firestorm Redoubt"/>
</categoryLinks>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="9ed-cbf4-bfe5-90bf" shared="true" includeChildForces="true" includeChildSelections="true"/>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="e916-2cf4-a49d-b8c4" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<infoLinks>
<infoLink targetId="2e62-f126-df89-60d" id="c31e-dc63-d357-8820" type="profile" name="Roof Access" hidden="false"/>
<infoLink targetId="241c-8bed-ca28-f77" id="6f98-d4bb-fa0d-ea61" type="profile" name="Reinforced Cover" hidden="false"/>
<infoLink name="Firing Deck" hidden="false" type="rule" id="1b46-162b-cd21-a03f" targetId="13b2-6518-dab3-7ea1">
<modifiers>
<modifier type="append" value="10" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Deadly Demise" hidden="false" type="rule" id="c796-6e8b-194b-3da9" targetId="b68a-5ded-65ac-98c">
<modifiers>
<modifier type="append" value="D6" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Fortification" hidden="false" type="profile" id="cdbd-58bd-4bac-70ea" targetId="fa4e-5ac8-11a6-78d2"/>
</infoLinks>
<selectionEntryGroups>
<selectionEntryGroup name="Weapons Array" hidden="false" id="b2f0-fef3-2b51-8edc">
<entryLinks>
<entryLink import="true" name="Comms Antenna" hidden="false" type="selectionEntry" id="9710-3051-3a09-af77" targetId="4985-9124-1e83-10f0"/>
<entryLink import="true" name="Icarus Lascannon" hidden="false" type="selectionEntry" id="c049-f816-4822-920c" targetId="72e7-16-6f4c-ecbd"/>
<entryLink import="true" name="Quad-gun" hidden="false" type="selectionEntry" id="efa1-186c-7f51-6ae0" targetId="aece-7cae-ceb6-4079"/>
</entryLinks>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ca20-66ee-5b18-35a4"/>
</constraints>
</selectionEntryGroup>
<selectionEntryGroup name="Turrets" hidden="false" id="9df9-6944-3f63-2226" defaultSelectionEntryId="4d19-a2f6-5d6e-e53f">
<constraints>
<constraint type="min" value="2" field="selections" scope="parent" shared="true" id="70ea-5a02-2aa0-dd20"/>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="4226-42bf-fea8-2883"/>
</constraints>
<entryLinks>
<entryLink targetId="837d-5927-b2f1-d4b8" id="d6aa-a1ef-3d1c-54" type="selectionEntry" name="Battle-cannon" hidden="false">
<constraints>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="f7b1-d056-ea39-487d"/>
</constraints>
</entryLink>
<entryLink targetId="708f-a01b-953d-d59e" id="5f73-2391-368b-6c4a" type="selectionEntry" name="Punisher Gatling Cannon" hidden="false">
<constraints>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="691c-7cb8-2fc8-f6d3"/>
</constraints>
</entryLink>
<entryLink targetId="e55-db9a-8f67-b41f" id="4d19-a2f6-5d6e-e53f" type="selectionEntry" name="Quad Lascannon" hidden="false">
<constraints>
<constraint type="max" value="2" field="selections" scope="parent" shared="true" id="5e12-6d0-3165-3f3e"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
<profiles>
<profile name="Firestorm Redoubt" typeId="74f8-5443-9d6d-1f1e" typeName="Transport" hidden="false" id="7656-106-5438-9066">
<characteristics>
<characteristic name="Capacity" typeId="30f2-be70-861d-1b84">This Fortification has a transport capacity of 15 Infantry models. Each model with a Wounds characteristic of 3 or more takes up the space of 2 models. It cannot transport non-Character models with a Wounds characteristic of 4 or more</characteristic>
</characteristics>
</profile>
<profile name="Firestorm Redoubt" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="32ca-14bb-af34-51f5">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">-</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">13</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">18</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">0</characteristic>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="model" import="true" name="Fortress of Redemption" hidden="false" id="c4d1-c85a-a20e-6c94">
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="480"/>
</costs>
<categoryLinks>
<categoryLink targetId="19d7-9c74-2140-5851" id="9dfe-ec11-d032-124" primary="true" name="Fortification"/>
<categoryLink targetId="e1ff-c0fa-2ca7-3466" id="9772-8c1a-1294-8ba7" primary="false" name="Unaligned Forces"/>
<categoryLink targetId="75e8-57c4-40e3-1817" id="3679-34dd-95f7-4b6e" primary="false" name="Transport"/>
<categoryLink targetId="5929-ad51-d006-e008" id="13ef-3ca2-bb5b-9a5c" primary="false" name="Titanic"/>
<categoryLink targetId="dbd4-63-af05-998" id="9c12-c196-1a56-e9db" primary="false" name="Vehicle"/>
<categoryLink targetId="d666-e2c9-b6cc-5716" id="8e3-c76e-4d92-a02f" primary="false" name="Towering"/>
<categoryLink targetId="8f18-8c8b-3d82-6e18" id="2a9d-32a7-1e00-199c" primary="false" name="Fortress of Redemption"/>
</categoryLinks>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="9ed-cbf4-bfe5-90bf" shared="true" includeChildForces="true" includeChildSelections="true"/>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="e916-2cf4-a49d-b8c4" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile name="Fortress of Redemption" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="aced-c483-e78f-4baa">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">-</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">13</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">30</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">0</characteristic>
</characteristics>
</profile>
<profile name="Fortress of Redemption" typeId="74f8-5443-9d6d-1f1e" typeName="Transport" hidden="false" id="91a0-8fb2-8ca0-171a">
<characteristics>
<characteristic name="Capacity" typeId="30f2-be70-861d-1b84">This FORTIFICATION has a transport capacity of 20 INFANTRY models. Each model with a Wounds characteristic of 3 or more takes up the space of 2 models. It cannot transport non-CHARACTER models with a Wounds characteristic of 4 or more.</characteristic>
</characteristics>
</profile>
<profile name="Vantage Point" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="7205-6740-8868-3492">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While a model is on top of the tower roof of this FORTIFICATION, improve the Armour Penetration characteristic of ranged weapons equipped by that model by 1.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntryGroups>
<selectionEntryGroup name="Heavy Bolters" hidden="false" id="5938-6c95-7f7c-b06b">
<entryLinks>
<entryLink import="true" name="Heavy bolter" hidden="false" type="selectionEntry" id="935a-dccc-f5df-c4f4" targetId="9772-d936-9e34-8549">
<constraints>
<constraint type="max" value="4" field="selections" scope="parent" shared="true" id="830d-6e8c-a7da-da4a"/>
</constraints>
</entryLink>
</entryLinks>
<constraints>
<constraint type="max" value="4" field="selections" scope="parent" shared="true" id="a1c3-6e19-f55e-39ab"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
<infoLinks>
<infoLink name="Damaged: 1-10 Wounds Remaining" hidden="false" type="profile" id="c9c5-cee4-aae3-58fe" targetId="33ea-51f2-96cb-4893"/>
<infoLink name="Fortification" hidden="false" type="profile" id="cdf5-da2a-5b0f-b0a1" targetId="fa4e-5ac8-11a6-78d2"/>
<infoLink name="Reinforced Cover" hidden="false" type="profile" id="5b4e-c251-248a-a3f6" targetId="241c-8bed-ca28-f77"/>
<infoLink name="Roof Access" hidden="false" type="profile" id="4758-494-d88b-923d" targetId="2e62-f126-df89-60d"/>
<infoLink name="Deadly Demise" hidden="false" type="rule" id="cea2-510f-c27d-3d55" targetId="b68a-5ded-65ac-98c">
<modifiers>
<modifier type="append" value="2D6" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Firing Deck" hidden="false" type="rule" id="3f19-ad75-4250-55f6" targetId="13b2-6518-dab3-7ea1">
<modifiers>
<modifier type="append" value="15" field="name"/>
</modifiers>
</infoLink>
</infoLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Redemptor lascannons" hidden="false" id="db95-3509-494e-5358">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="1ab-b7b-4ab9-c4e7"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="af83-6fa5-5bb5-9547"/>
</constraints>
<profiles>
<profile name="Redemptor lascannons" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="e05c-7eb5-ea6b-7c40">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">48"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">2</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">14</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-3</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">D6+1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Anti-Fly 2+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Anti-" hidden="false" type="rule" id="92a5-bb4e-a090-7d73" targetId="4111-82e3-9444-e942"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Redemptor missile silo" hidden="false" id="988-2a33-6cbd-4020">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5f13-7245-e9c0-da94"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="ca07-fd0c-7916-c724"/>
</constraints>
<profiles>
<profile name="➤ Redemptor missile silo - superfrag" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="f441-a86c-9936-ee58">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">48"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">2D6+2</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">5</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">0</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Blast</characteristic>
</characteristics>
</profile>
<profile name="➤ Redemptor missile silo - superkrak" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="cd89-3984-98d0-a1f7">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">48"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">2</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">10</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-2</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">D6+1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Blast" hidden="false" type="rule" id="f0ba-1ff8-bdd2-a19a" targetId="6c1f-1cf7-ff25-c99e"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Guardian Drone" hidden="false" id="e3ba-7f87-c32-229">
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="45"/>
</costs>
<categoryLinks>
<categoryLink targetId="e1ff-c0fa-2ca7-3466" id="2686-fb2f-dd21-e510" primary="false" name="Unaligned Forces"/>
<categoryLink targetId="887b-ab87-92a2-20f5" id="626e-a5f3-46e8-3f23" primary="true" name="Allied Units"/>
<categoryLink targetId="9693-cf84-fe69-37a9" id="956e-7d12-7fb0-12a8" primary="false" name="Monster"/>
<categoryLink targetId="393a-5707-47ac-8a47" id="4cf0-207-d593-cc17" primary="false" name="Guardian Drone"/>
</categoryLinks>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="9ed-cbf4-bfe5-90bf" shared="true" includeChildForces="true" includeChildSelections="true"/>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="2973-ea51-7f8d-5403" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Destroyer pulse" hidden="false" id="1ab6-25ac-947b-bf5f">
<profiles>
<profile name="Destroyer pulse" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="6468-f7a-cf-1f16">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">18"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">8</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-2</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Pistol</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="ab00-ab55-b236-6f62"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="9727-3f6-1e2b-6fe0"/>
</constraints>
<infoLinks>
<infoLink name="Pistol" hidden="false" type="rule" id="230d-1f55-a508-200b" targetId="8bf7-8812-923d-29e4"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Guardian salvo launchers" hidden="false" id="3200-448d-b069-ce9b">
<profiles>
<profile name="Guardian salvo launchers" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="6317-ed6f-87cc-a6b4">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">24"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">D6</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">5</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-1</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Blast</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="742f-d8d8-3732-606b"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="2400-47a0-8b36-c508"/>
</constraints>
<infoLinks>
<infoLink name="Blast" hidden="false" type="rule" id="efd3-c0f-a875-ddd4" targetId="6c1f-1cf7-ff25-c99e"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Manipulator limbs" hidden="false" id="7291-ec92-1fd4-75ad">
<profiles>
<profile name="Manipulator limbs" typeId="8a40-4aaa-c780-9046" typeName="Melee Weapons" hidden="false" id="8c32-7c4d-8e22-d07d">
<characteristics>
<characteristic name="Range" typeId="914c-b413-91e3-a132">Melee</characteristic>
<characteristic name="A" typeId="2337-daa1-6682-b110">4</characteristic>
<characteristic name="WS" typeId="95d1-95f-45b4-11d6">4+</characteristic>
<characteristic name="S" typeId="ab33-d393-96ce-ccba">5</characteristic>
<characteristic name="AP" typeId="41a0-1301-112a-e2f2">0</characteristic>
<characteristic name="D" typeId="3254-9fe6-d824-513e">1</characteristic>
<characteristic name="Keywords" typeId="893f-9000-ccf7-648e"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="91d8-4ea3-c3b-312d"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="c362-426a-6d33-f94b"/>
</constraints>
</selectionEntry>
</selectionEntries>
<profiles>
<profile name="Drone Commander (Aura)" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="6177-edd5-89f8-10f0">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">While a friendly SPINDLE DRONES unit is within 6 of this model, each time a model in that unit makes an attack, add 1 to the Hit roll.</characteristic>
</characteristics>
</profile>
<profile name="Guardian Drone" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="2164-a8b3-1e0a-ff34">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">5"</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">7</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">3+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">7</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">6+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">2</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Feel No Pain" hidden="false" type="rule" id="3af9-eb06-6d3e-afce" targetId="9bf4-280f-bbe2-6fbb">
<modifiers>
<modifier type="append" value="5+" field="name"/>
</modifiers>
</infoLink>
</infoLinks>
</selectionEntry>
<selectionEntry type="model" import="true" name="Macro-cannon Aquila Strongpoint" hidden="false" id="3b75-e314-ecd5-cd63">
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="550"/>
</costs>
<categoryLinks>
<categoryLink targetId="19d7-9c74-2140-5851" id="ccdf-3ffb-2694-737c" primary="true" name="Fortification"/>
<categoryLink targetId="e1ff-c0fa-2ca7-3466" id="70c7-12cf-85e0-1ba5" primary="false" name="Unaligned Forces"/>
<categoryLink targetId="5929-ad51-d006-e008" id="77ed-dab3-f6d0-903" primary="false" name="Titanic"/>
<categoryLink targetId="dbd4-63-af05-998" id="5003-def-c993-2ad2" primary="false" name="Vehicle"/>
<categoryLink targetId="75e8-57c4-40e3-1817" id="ef14-3441-4f0c-2bdd" primary="false" name="Transport"/>
<categoryLink targetId="fc43-1a6a-44bd-4350" id="5903-1143-6c77-aeaa" primary="false" name="Wall of Martyrs"/>
<categoryLink targetId="97a9-7f06-f2e0-84fa" id="524f-ca07-984d-142e" primary="false" name="Macro-cannon Aquila Strongpoint"/>
</categoryLinks>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="9ed-cbf4-bfe5-90bf" shared="true" includeChildForces="true" includeChildSelections="true"/>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="e916-2cf4-a49d-b8c4" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<infoLinks>
<infoLink name="Reinforced Cover" hidden="false" type="profile" id="ba55-c1a2-3f03-bb67" targetId="241c-8bed-ca28-f77"/>
<infoLink name="Fortification" hidden="false" type="profile" id="9ee3-2a51-980d-ddd7" targetId="fa4e-5ac8-11a6-78d2"/>
<infoLink name="Damaged: 1-10 Wounds Remaining" hidden="false" type="profile" id="a38c-cde0-ef54-144b" targetId="33ea-51f2-96cb-4893"/>
<infoLink name="Roof Access" hidden="false" type="profile" id="e67c-9cd2-681b-451a" targetId="2e62-f126-df89-60d"/>
<infoLink name="Firing Deck" hidden="false" type="rule" id="9abe-99a2-222a-6ec3" targetId="13b2-6518-dab3-7ea1">
<modifiers>
<modifier type="append" value="15" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Deadly Demise" hidden="false" type="rule" id="6b9a-5f93-fe22-2566" targetId="b68a-5ded-65ac-98c">
<modifiers>
<modifier type="append" value="2D6" field="name"/>
</modifiers>
</infoLink>
</infoLinks>
<profiles>
<profile name="Tremor Quake" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="421e-7675-b24f-751e">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">In your Shooting phase, just after selecting a target for this model’s Aquila macro-cannon, the target unit and every other enemy INFANTRY unit within 3" of that unit must take a Battle-shock test.</characteristic>
</characteristics>
</profile>
<profile name="Macro-cannon Aquila Strongpoint" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="cdd1-7b5d-9ed7-6eab">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">-</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">13</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">30</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">0</characteristic>
</characteristics>
</profile>
<profile name="Macro-cannon Aquila Strongpoint" typeId="74f8-5443-9d6d-1f1e" typeName="Transport" hidden="false" id="8001-aa9-ae8e-391d">
<characteristics>
<characteristic name="Capacity" typeId="30f2-be70-861d-1b84">This FORTIFICATION has a transport capacity of 30 INFANTRY models. Each model with a Wounds characteristic of 3 or more takes up the space of 2 models. It cannot transport non-CHARACTER models with a Wounds characteristic of 4 or more.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Aquila macro-cannon" hidden="false" id="dc0f-e233-7c7c-18e7">
<profiles>
<profile name="Aquila macro-cannon" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="700c-9476-95d1-4339">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">72"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">D6+6</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">5+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">16</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-4</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">4</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c"/>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="e67f-159a-cabe-28c1"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="8ce5-e5d0-1481-28cc"/>
</constraints>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup name="Heavy Bolters" hidden="false" id="98fc-7c38-f820-e866">
<entryLinks>
<entryLink import="true" name="Heavy bolter" hidden="false" type="selectionEntry" id="f352-dcc9-8686-ae27" targetId="9772-d936-9e34-8549">
<constraints>
<constraint type="max" value="4" field="selections" scope="parent" shared="true" id="646a-70ed-8e2a-6a7a"/>
</constraints>
</entryLink>
</entryLinks>
<constraints>
<constraint type="max" value="4" field="selections" scope="parent" shared="true" id="45f5-f67-6749-86b8"/>
</constraints>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
<selectionEntry type="model" import="true" name="Plasma Obliterator" hidden="false" id="cabe-2c66-c8b6-de6c">
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="225"/>
</costs>
<categoryLinks>
<categoryLink targetId="19d7-9c74-2140-5851" id="d8e7-14c-ee1b-6154" primary="true" name="Fortification"/>
<categoryLink targetId="e1ff-c0fa-2ca7-3466" id="79e1-53d9-ebc6-2c" primary="false" name="Unaligned Forces"/>
<categoryLink targetId="75e8-57c4-40e3-1817" id="a6a0-ccfe-e31d-747a" primary="false" name="Transport"/>
<categoryLink targetId="dbd4-63-af05-998" id="3662-fd14-4958-470d" primary="false" name="Vehicle"/>
<categoryLink targetId="d666-e2c9-b6cc-5716" id="1992-f126-472f-b128" primary="false" name="Towering"/>
<categoryLink targetId="9278-7145-847f-3cac" id="a0e8-e723-ffd9-e989" primary="false" name="Plasma Obliterator"/>
</categoryLinks>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="9ed-cbf4-bfe5-90bf" shared="true" includeChildForces="true" includeChildSelections="true"/>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="e916-2cf4-a49d-b8c4" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<infoLinks>
<infoLink name="Deadly Demise" hidden="false" type="rule" id="ed84-eb04-6df-648" targetId="b68a-5ded-65ac-98c">
<modifiers>
<modifier type="append" value="D6" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Firing Deck" hidden="false" type="rule" id="92b8-5a61-d777-85d5" targetId="13b2-6518-dab3-7ea1">
<modifiers>
<modifier type="append" value="10" field="name"/>
</modifiers>
</infoLink>
<infoLink targetId="241c-8bed-ca28-f77" id="d1ab-f479-9229-194f" type="profile" name="Reinforced Cover" hidden="false"/>
<infoLink name="Damaged: 1-6 Wounds Remaining" hidden="false" type="profile" id="9712-d686-e3fb-f5a4" targetId="39db-fc02-9b22-388d"/>
<infoLink name="Fortification" hidden="false" type="profile" id="7497-7a69-4cfc-f2c2" targetId="fa4e-5ac8-11a6-78d2"/>
</infoLinks>
<profiles>
<profile name="Plasma Obliterator" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="8ecf-7ac2-bab1-a98b">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">-</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">13</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">2+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">18</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">0</characteristic>
</characteristics>
</profile>
<profile name="Emergency Plasma Vents" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="4034-de56-e788-8d72">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Each time this FORTIFICATION suffers a mortal wound as the result of a failed Hazardous test, roll one D6: on a 4+, that wound is not lost.</characteristic>
</characteristics>
</profile>
<profile name="Plasma Obliterator" typeId="74f8-5443-9d6d-1f1e" typeName="Transport" hidden="false" id="a295-5135-b36-9f11">
<characteristics>
<characteristic name="Capacity" typeId="30f2-be70-861d-1b84">This FORTIFICATION has a transport capacity of 20 INFANTRY models. Each model with a Wounds characteristic of 3 or more takes up the space of 2 models. It cannot transport non-CHARACTER models with a Wounds characteristic of 4 or more.</characteristic>
</characteristics>
</profile>
</profiles>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Plasma obliterator" hidden="false" id="a72b-27ca-d431-cf98">
<profiles>
<profile name="➤ Plasma obliterator - standard" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="8ea2-bb1e-22b5-1356">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">48"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">D6+3</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">5+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">9</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-3</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">3</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Blast</characteristic>
</characteristics>
</profile>
<profile name="➤ Plasma obliterator - supercharge" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="e558-4d62-5827-b2a7">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">48"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">D6+3</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">5+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">10</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-4</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">4</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Blast, Hazardous</characteristic>
</characteristics>
</profile>
</profiles>
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="73ad-4326-7136-bad2"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="506f-4047-71a3-11b"/>
</constraints>
<infoLinks>
<infoLink name="Hazardous" hidden="false" type="rule" id="d369-d205-85d4-49bb" targetId="8367-374c-f87-c627"/>
<infoLink name="Blast" hidden="false" type="rule" id="589-3696-1e7e-30bf" targetId="6c1f-1cf7-ff25-c99e"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
</selectionEntry>
<selectionEntry type="model" import="true" name="Primaris Redoubt" hidden="false" id="f39-fc54-f95a-8395">
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="220"/>
</costs>
<categoryLinks>
<categoryLink targetId="19d7-9c74-2140-5851" id="2af-2f4e-f879-7505" primary="true" name="Fortification"/>
<categoryLink targetId="e1ff-c0fa-2ca7-3466" id="b1c5-523c-f9bf-283e" primary="false" name="Unaligned Forces"/>
<categoryLink targetId="dbd4-63-af05-998" id="51d0-8bd-212f-431e" primary="false" name="Vehicle"/>
<categoryLink targetId="62e0-9a0b-b965-9df1" id="a298-e947-63ac-432d" primary="false" name="Primaris Redoubt"/>
</categoryLinks>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="9ed-cbf4-bfe5-90bf" shared="true" includeChildForces="true" includeChildSelections="true"/>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="e916-2cf4-a49d-b8c4" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile name="Primaris Redoubt" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="f45f-a0c7-9c25-85d7">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">-</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">12</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">3+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">18</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">0</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink targetId="241c-8bed-ca28-f77" id="6ec5-bb67-ec46-104b" type="profile" name="Reinforced Cover" hidden="false"/>
<infoLink name="Deadly Demise" hidden="false" type="rule" id="3b2-2b91-6ebc-3282" targetId="b68a-5ded-65ac-98c">
<modifiers>
<modifier type="append" value="D6" field="name"/>
</modifiers>
</infoLink>
<infoLink targetId="f791-bfaa-d110-9379" id="f8ff-6545-642a-6f2f" type="profile" name="Gates" hidden="false"/>
<infoLink targetId="f644-db15-d1f0-3c48" id="faf3-5a9-c2da-204f" type="profile" name="Battlements" hidden="false"/>
<infoLink name="Invulnerable Save (5+)" hidden="false" type="profile" id="b91f-d7d6-d287-a43" targetId="30d6-3998-8498-5c22"/>
<infoLink name="Fortification" hidden="false" type="profile" id="24e1-99b5-f583-7a25" targetId="fa4e-5ac8-11a6-78d2"/>
<infoLink name="Damaged: 1-6 Wounds Remaining" hidden="false" type="profile" id="eacc-bc70-2e7e-7aa7" targetId="39db-fc02-9b22-388d"/>
</infoLinks>
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Primaris Redoubt turbo-laser destructor" hidden="false" id="b6ab-e70d-f8f3-731a">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="5c75-6534-272d-48a5"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="b44e-5a03-a5d-24e6"/>
</constraints>
<profiles>
<profile name="Primaris Redoubt turbo-laser destructor" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="9b49-efd7-71e3-762a">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">96"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">D3+1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">16</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-3</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">D6+3</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Blast</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Blast" hidden="false" type="rule" id="a553-8b3f-c92a-8bba" targetId="6c1f-1cf7-ff25-c99e"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink targetId="9772-d936-9e34-8549" id="f271-c70e-dbf1-bb1c" type="selectionEntry" name="Heavy Bolter" hidden="false" collective="false">
<constraints>
<constraint type="max" value="4" field="selections" scope="parent" shared="true" id="6c0d-c99f-67ca-ef22"/>
</constraints>
</entryLink>
</entryLinks>
<selectionEntryGroups>
<selectionEntryGroup name="Seconday Weapon" hidden="false" id="bca0-9eff-5e78-5f16">
<selectionEntries>
<selectionEntry type="upgrade" import="true" name="Primaris air defence missiles" hidden="false" id="2b2d-2d80-c99a-50bc">
<profiles>
<profile name="Primaris air defence missiles" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="d0f1-59-950-988b">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">48"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">D6</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">6</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-2</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Anti-Fly 2+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Anti-" hidden="false" type="rule" id="1c57-cd93-da17-d39c" targetId="4111-82e3-9444-e942"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Primaris Icarus lascannon" hidden="false" id="82f9-177b-779e-7780">
<profiles>
<profile name="Primaris Icarus lascannon" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="6ad2-3453-8b7a-1b14">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">48"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">12</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-3</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">D6+1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Anti-Fly 2+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Anti-" hidden="false" type="rule" id="c5-75fb-f8c7-a06b" targetId="4111-82e3-9444-e942"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Primaris Icarus quad lascannon" hidden="false" id="663c-1233-84a9-8909">
<profiles>
<profile name="Primaris Icarus quad lascannon" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="6824-7bc4-f903-ae56">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">48"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">2</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">12</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-3</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">D6+1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Anti-Fly 2+, Twin-linked</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Twin-linked" hidden="false" type="rule" id="68ae-ce52-6d9e-5fd7" targetId="cf93-ad4d-2f08-a79d"/>
<infoLink name="Anti-" hidden="false" type="rule" id="6c5a-75a5-308f-ff87" targetId="4111-82e3-9444-e942"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Primaris quad-gun" hidden="false" id="6f21-792e-17c6-c9dc">
<profiles>
<profile name="Primaris quad-gun" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="a2c8-8592-c8f1-f4ca">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">48"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">4</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">8</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-1</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c"/>
</characteristics>
</profile>
</profiles>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Primaris castellan launcher" hidden="false" id="2cde-a0ef-d7e0-53b3">
<profiles>
<profile name="Primaris castellan launcher" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="23cc-baa3-860-9a55">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">72"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">D6+1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">6</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">0</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">1</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Blast, Indirect Fire</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Indirect Fire" hidden="false" type="rule" id="b8c7-5da0-fbc-8474" targetId="4ddd-4e29-acdd-5e6d"/>
<infoLink name="Blast" hidden="false" type="rule" id="cc2a-7a3-9c1e-c642" targetId="6c1f-1cf7-ff25-c99e"/>
</infoLinks>
</selectionEntry>
<selectionEntry type="upgrade" import="true" name="Primaris vengeance launcher" hidden="false" id="e500-1c20-8d3d-e4c5">
<profiles>
<profile name="Primaris vengeance launcher" typeId="f77d-b953-8fa4-b762" typeName="Ranged Weapons" hidden="false" id="aa0d-fbea-c259-1e13">
<characteristics>
<characteristic name="Range" typeId="9896-9419-16a1-92fc">72"</characteristic>
<characteristic name="A" typeId="3bb-c35f-f54-fb08">D3+1</characteristic>
<characteristic name="BS" typeId="94d-8a98-cf90-183e">4+</characteristic>
<characteristic name="S" typeId="2229-f494-25db-c5d3">7</characteristic>
<characteristic name="AP" typeId="9ead-8a10-520-de15">-1</characteristic>
<characteristic name="D" typeId="a354-c1c8-a745-f9e3">2</characteristic>
<characteristic name="Keywords" typeId="7f1b-8591-2fcf-d01c">Blast, Indirect Fire</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink name="Indirect Fire" hidden="false" type="rule" id="4832-9738-9aaf-d3ed" targetId="4ddd-4e29-acdd-5e6d"/>
<infoLink name="Blast" hidden="false" type="rule" id="123b-7709-5067-91da" targetId="6c1f-1cf7-ff25-c99e"/>
</infoLinks>
</selectionEntry>
</selectionEntries>
<constraints>
<constraint type="max" value="1" field="selections" scope="parent" shared="true" id="e1ed-7644-2333-529"/>
</constraints>
<entryLinks>
<entryLink import="true" name="Battle-cannon" hidden="false" type="selectionEntry" id="6624-49e6-ab77-33a4" targetId="837d-5927-b2f1-d4b8"/>
<entryLink import="true" name="Multi-melta" hidden="false" type="selectionEntry" id="f5-b408-3074-48e9" targetId="9caf-4cf9-3a99-5e84"/>
<entryLink import="true" name="Twin lascannon" hidden="false" type="selectionEntry" id="16e2-abe1-a564-a8f5" targetId="475-eb92-56f5-9f9f"/>
<entryLink import="true" name="Twin heavy bolter" hidden="false" type="selectionEntry" id="8cec-fe90-d8a2-be83" targetId="9c32-9f63-8d26-8ec9"/>
<entryLink import="true" name="Twin heavy flamer" hidden="false" type="selectionEntry" id="7a6f-b9c4-89ce-bdd9" targetId="ad83-5e8f-6f3f-37b2"/>
</entryLinks>
</selectionEntryGroup>
</selectionEntryGroups>
</selectionEntry>
<selectionEntry type="model" import="true" name="Skyshield Landing Pad" hidden="false" id="54c-8b9f-b1d8-93c3">
<costs>
<cost name="pts" typeId="51b2-306e-1021-d207" value="125"/>
</costs>
<categoryLinks>
<categoryLink targetId="19d7-9c74-2140-5851" id="edde-b509-c48c-3822" primary="true" name="Fortification"/>
<categoryLink targetId="e1ff-c0fa-2ca7-3466" id="17b8-8604-3df5-e7ab" primary="false" name="Unaligned Forces"/>
<categoryLink targetId="c5e3-117a-a679-a415" id="ecbc-ef4f-73-aa2d" primary="false" name="Skyshield Landing Pad"/>
</categoryLinks>
<modifiers>
<modifier type="set" value="true" field="hidden">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="9ed-cbf4-bfe5-90bf" shared="true" includeChildForces="true" includeChildSelections="true"/>
<condition type="lessThan" value="1" field="selections" scope="roster" childId="e916-2cf4-a49d-b8c4" shared="true" includeChildForces="true" includeChildSelections="true"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<infoLinks>
<infoLink name="Deadly Demise" hidden="false" type="rule" id="b0fa-7e98-2331-2fe" targetId="b68a-5ded-65ac-98c">
<modifiers>
<modifier type="append" value="D3" field="name"/>
</modifiers>
</infoLink>
<infoLink targetId="241c-8bed-ca28-f77" id="c3e-bf7f-2c22-752f" type="profile" name="Reinforced Cover" hidden="false"/>
<infoLink name="Invulnerable Save (5+)" hidden="false" type="profile" id="3073-72c3-ef5d-5064" targetId="30d6-3998-8498-5c22"/>
<infoLink name="Fortification" hidden="false" type="profile" id="a326-441b-71f2-6ab8" targetId="fa4e-5ac8-11a6-78d2"/>
</infoLinks>
<profiles>
<profile name="Skyshield Landing Pad" typeId="c547-1836-d8a-ff4f" typeName="Unit" hidden="false" id="56d6-8cd4-6ca9-baf6">
<characteristics>
<characteristic name="M" typeId="e703-ecb6-5ce7-aec1">-</characteristic>
<characteristic name="T" typeId="d29d-cf75-fc2d-34a4">12</characteristic>
<characteristic name="SV" typeId="450-a17e-9d5e-29da">3+</characteristic>
<characteristic name="W" typeId="750a-a2ec-90d3-21fe">16</characteristic>
<characteristic name="LD" typeId="58d2-b879-49c7-43bc">7+</characteristic>
<characteristic name="OC" typeId="bef7-942a-1a23-59f8">0</characteristic>
</characteristics>
</profile>
<profile name="Skyshield" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="ac7c-2faf-a4ba-1a7b">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">Friendly Infantry models and friendly units that can Fly can be set up or end any type of move on top of the platform section of this Fortification. While such a model is on the platform section of this Fortification, that model has a 5+ invulnerable save against ranged attacks</characteristic>
</characteristics>
</profile>
<profile name="Repair Aircraft" typeId="9cc3-6d83-4dd3-9b64" typeName="Abilities" hidden="false" id="de21-5f57-8fd9-3c1a">
<characteristics>
<characteristic name="Description" typeId="9b8f-694b-e5e-b573">At the end of your Movement phase, if there is a friendly Aircraft model on top of this Fortification, that Aircraft regains up to D3 lost wounds</characteristic>
</characteristics>
</profile>