forked from BSData/warmahordes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConvergence_of_Cyriss_Vengeance_(2013).cat
5931 lines (5923 loc) · 378 KB
/
Convergence_of_Cyriss_Vengeance_(2013).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="4a5f-40eb-a2a9-4092" revision="1" gameSystemId="b978a3ef-974a-4354-b82d-7965f519d3df" gameSystemRevision="4" battleScribeVersion="1.15" name="Convergence" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<entries>
<entry id="b594-b938-c6ae-f57d" name="Assimilator" points="8.0" categoryId="5761726a61636b23232344415441232323" type="model" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Forces of Warmachine - Convergence of Cyriss" page="62">
<entries>
<entry id="85ea-8bbf-7a5d-448a" name="Dissevering Microswarm" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules>
<rule id="dff3-901e-b9d2-62c2" name="Ground Pounder (* Attack)" hidden="false">
<description>Place a 4" AOE anywhere completely within this weapon's RNG. The center point of the AOE must be in this model's front arc. This model makes one ranged attack roll against each model in the AOE, ignoring concealment, elevation, and Stealth. This model cannot gain the aiming bonus on Ground Pounder attack rolls. Ground Pounder attack rolls do not suffer the target in melee attack roll penalty, and a missed Ground Pounder attack roll is not rerolled against another model. Models hit suffer a POW 12 ranged attack damage roll. </description>
<modifiers/>
</rule>
</rules>
<profiles>
<profile id="aed1-6542-0d71-70f5" profileTypeId="576561706f6e23232344415441232323" name="Dissevering Microswarm" hidden="false">
<characteristics>
<characteristic characteristicId="524e4723232344415441232323" name="RNG" value="11"/>
<characteristic characteristicId="524f4623232344415441232323" name="ROF" value="1"/>
<characteristic characteristicId="414f4523232344415441232323" name="AOE" value="4"/>
<characteristic characteristicId="504f5723232344415441232323" name="POW" value="13"/>
<characteristic characteristicId="502b5323232344415441232323" name="P+S" value=""/>
<characteristic characteristicId="4c2f522f4823232344415441232323" name="L/R/H" value="L"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links/>
</entry>
<entry id="3865-c990-a056-65dc" name="Rending Claw" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules>
<rule id="b793-3820-cf7c-20f9" name="Assimilation" hidden="false">
<description>When this model destroys an enemy model that has Construct with this weapon, immediately after the attack is resolved, remove d3 damage points form this model.</description>
<modifiers/>
</rule>
</rules>
<profiles>
<profile id="9f3f-639a-af05-65a9" profileTypeId="576561706f6e23232344415441232323" name="Rending Claw" hidden="false">
<characteristics>
<characteristic characteristicId="524e4723232344415441232323" name="RNG"/>
<characteristic characteristicId="524f4623232344415441232323" name="ROF"/>
<characteristic characteristicId="414f4523232344415441232323" name="AOE"/>
<characteristic characteristicId="504f5723232344415441232323" name="POW" value="4"/>
<characteristic characteristicId="502b5323232344415441232323" name="P+S" value="14"/>
<characteristic characteristicId="4c2f522f4823232344415441232323" name="L/R/H" value="R"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links>
<link id="bdae-dd1e-58b5-ed58" targetId="cd0ba61c-b2b9-df88-715f-4e67e8f38fa7" linkType="rule">
<modifiers/>
</link>
<link id="08a4-9218-fd60-3092" targetId="5fb2bb66-ca62-8659-18ee-17da0d80ff92" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
</entries>
<entryGroups/>
<modifiers/>
<rules/>
<profiles>
<profile id="2cc1-9363-4e45-df75" profileTypeId="5761726a61636b23232344415441232323" name="Assimilator" hidden="false">
<characteristics>
<characteristic characteristicId="53504423232344415441232323" name="SPD" value="5"/>
<characteristic characteristicId="53545223232344415441232323" name="STR" value="10"/>
<characteristic characteristicId="4d415423232344415441232323" name="MAT" value="X"/>
<characteristic characteristicId="52415423232344415441232323" name="RAT" value="X"/>
<characteristic characteristicId="44454623232344415441232323" name="DEF" value="11"/>
<characteristic characteristicId="41524d23232344415441232323" name="ARM" value="18"/>
<characteristic characteristicId="434d4423232344415441232323" name="CMD" value="-"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links>
<link id="c70c-61b0-8d11-2564" targetId="bbd8a6eb-2793-1454-fc0f-81ef8aaef586" linkType="rule">
<modifiers/>
</link>
<link id="05a7-c9fd-991c-0541" targetId="9a85-e603-3a30-4e62" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
<entry id="b19d-7dff-eb81-bf3a" name="Aurora, Numen of Aerogenesis" points="-6.0" categoryId="57617263617374657223232344415441232323" type="model" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="1" minInRoster="0" maxInRoster="1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Forces of Warmachine - Convergence of Cyriss" page="44">
<entries>
<entry id="b62b-443a-ef7e-411f" name="Polynomial Beam" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles>
<profile id="7031-8c67-c474-6ef2" profileTypeId="576561706f6e23232344415441232323" name="Polynomial Beam" hidden="false">
<characteristics>
<characteristic characteristicId="524e4723232344415441232323" name="RNG" value="12"/>
<characteristic characteristicId="524f4623232344415441232323" name="ROF" value="1"/>
<characteristic characteristicId="414f4523232344415441232323" name="AOE" value="-"/>
<characteristic characteristicId="504f5723232344415441232323" name="POW" value="12"/>
<characteristic characteristicId="502b5323232344415441232323" name="P+S"/>
<characteristic characteristicId="4c2f522f4823232344415441232323" name="L/R/H"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links>
<link id="8d23-9a47-9ecb-2a81" targetId="baad9a5e-ea83-201b-ad39-67517e0e9768" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
<entry id="2edd-8a45-12a3-8f6e" name="Polynomial Staff" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules>
<rule id="6110-0c47-58cb-4cb8" name="Mechanikal Seizure" hidden="false">
<description>When a warjack is hit by this weapon it becomes stationary for one round.</description>
<modifiers/>
</rule>
</rules>
<profiles>
<profile id="3ff7-208e-fd33-2455" profileTypeId="576561706f6e23232344415441232323" name="Polynomial Staff" hidden="false">
<characteristics>
<characteristic characteristicId="524e4723232344415441232323" name="RNG"/>
<characteristic characteristicId="524f4623232344415441232323" name="ROF"/>
<characteristic characteristicId="414f4523232344415441232323" name="AOE"/>
<characteristic characteristicId="504f5723232344415441232323" name="POW" value="7"/>
<characteristic characteristicId="502b5323232344415441232323" name="P+S" value="12"/>
<characteristic characteristicId="4c2f522f4823232344415441232323" name="L/R/H"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links>
<link id="3601-4b8d-288b-6e4a" targetId="3317-7ff4-4974-5a3e" linkType="rule">
<modifiers/>
</link>
<link id="adde-3f36-760c-70ce" targetId="baad9a5e-ea83-201b-ad39-67517e0e9768" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
</entries>
<entryGroups/>
<modifiers/>
<rules>
<rule id="bc2c-eb04-c5e9-0805" name="Feat: Eleventh Hour" hidden="false">
<description>Friendly 'faction mdels currently within Aurora's control area gan Refuge for one round. (When a model with Refuge hits an enemy model with an attack during its activation, immediately after its combat action ends the model wth Refuge can make a full advance. It cannot be targeted by free strikes during this movement.)</description>
<modifiers/>
</rule>
<rule id="18f8-2e2a-bb99-ef5c" name="Elite Cadre [Clockwork Angels]" hidden="false">
<description>Friendly Clockwork Angel units gain Combined Melee Attack.</description>
<modifiers/>
</rule>
<rule id="d7a3-cdd7-2098-1853" name="Field Marshal [Apparition]" hidden="false">
<description>Models in this model's battlegroup gain Apparition. (During you Control Phase, place models with Apparition anywhere completely within 2" of their current location.)</description>
<modifiers/>
</rule>
<rule id="dfcf-2e07-0782-2e37" name="Flank [Clockwork Angels]" hidden="false">
<description>When this model makes a melee attack against an enemy model within the melee range of a friendly model of the type indicated, this model gains +2 to attack rolls and gains an additional damage die.</description>
<modifiers/>
</rule>
</rules>
<profiles>
<profile id="509a-13c3-cb16-2d0e" profileTypeId="57617263617374657223232344415441232323" name="Aurora, Numen of Aerogenesis" hidden="false">
<characteristics>
<characteristic characteristicId="53504423232344415441232323" name="SPD" value="7"/>
<characteristic characteristicId="53545223232344415441232323" name="STR" value="5"/>
<characteristic characteristicId="4d415423232344415441232323" name="MAT" value="6"/>
<characteristic characteristicId="52415423232344415441232323" name="RAT" value="4"/>
<characteristic characteristicId="44454623232344415441232323" name="DEF" value="16"/>
<characteristic characteristicId="41524d23232344415441232323" name="ARM" value="15"/>
<characteristic characteristicId="434d4423232344415441232323" name="CMD" value="9"/>
<characteristic characteristicId="466f63757323232344415441232323" name="Focus" value="7"/>
<characteristic characteristicId="44616d61676523232344415441232323" name="Damage" value="16"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links>
<link id="07f1-8981-0c08-5e8c" targetId="3ddc945e-f75e-4b8a-f2e1-ccb4ae31f748" linkType="rule">
<modifiers/>
</link>
<link id="a70f-3572-f637-07ac" targetId="acf4-637f-1ffc-ddc2" linkType="entry">
<modifiers/>
</link>
<link id="9ecc-ffa1-66e6-febc" targetId="847e-caa7-ef34-22fe" linkType="entry">
<modifiers/>
</link>
<link id="7de6-d4df-2ccb-727e" targetId="43a3-d0c3-91da-015e" linkType="entry">
<modifiers/>
</link>
<link id="da52-127e-0d29-2731" targetId="764e-b1b2-a480-6929" linkType="entry">
<modifiers/>
</link>
<link id="4abf-61d1-5c38-4022" targetId="069b-e2ec-4a2a-0977" linkType="entry">
<modifiers/>
</link>
<link id="c8f2-c4f8-b83e-ae62" targetId="5ecb-cd98-e1a7-a607" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
<entry id="b8d3-cb28-8d0f-4805" name="Axis, The Harmonic Enforcerer" points="-6.0" categoryId="57617263617374657223232344415441232323" type="model" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="1" minInRoster="0" maxInRoster="1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Forces of Warmachine - Convergence of Cyriss" page="46">
<entries>
<entry id="2ddf-b381-20a6-b04d" name="Action" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles>
<profile id="6777-9177-9686-04f5" profileTypeId="576561706f6e23232344415441232323" name="Action" hidden="false">
<characteristics>
<characteristic characteristicId="524e4723232344415441232323" name="RNG"/>
<characteristic characteristicId="524f4623232344415441232323" name="ROF"/>
<characteristic characteristicId="414f4523232344415441232323" name="AOE"/>
<characteristic characteristicId="504f5723232344415441232323" name="POW" value="7"/>
<characteristic characteristicId="502b5323232344415441232323" name="P+S" value="14"/>
<characteristic characteristicId="4c2f522f4823232344415441232323" name="L/R/H" value=""/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links>
<link id="4bec-1838-14a5-b712" targetId="0c35-0907-6cf2-1bae" linkType="rule">
<modifiers/>
</link>
<link id="1172-d361-830f-7c21" targetId="7d81-55d2-14e6-2139" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
<entry id="d5d2-97e3-04a2-0602" name="Reaction" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles>
<profile id="ae66-f996-dbda-1a1c" profileTypeId="576561706f6e23232344415441232323" name="Reaction" hidden="false">
<characteristics>
<characteristic characteristicId="524e4723232344415441232323" name="RNG"/>
<characteristic characteristicId="524f4623232344415441232323" name="ROF"/>
<characteristic characteristicId="414f4523232344415441232323" name="AOE"/>
<characteristic characteristicId="504f5723232344415441232323" name="POW" value="7"/>
<characteristic characteristicId="502b5323232344415441232323" name="P+S" value="14"/>
<characteristic characteristicId="4c2f522f4823232344415441232323" name="L/R/H"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links>
<link id="af7b-8f47-a444-ed60" targetId="0c35-0907-6cf2-1bae" linkType="rule">
<modifiers/>
</link>
<link id="6846-5f15-147d-6bef" targetId="7d81-55d2-14e6-2139" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
</entries>
<entryGroups/>
<modifiers/>
<rules>
<rule id="fb87-695e-0aeb-d820" name="Feat: Circumpotence" hidden="false">
<description>Enemy models currently in Axis' control area suffer -2 SPD and STR, and friendly Faction models currently in Axis' control area gain +2 SPD and STR. Circumpotence lasts for one round.</description>
<modifiers/>
</rule>
<rule id="dcee-25a7-db7c-f96b" name="Field Marshal [Counter Charge]" hidden="false">
<description>Models in this model's battlegroup gain Counter Charge. (When an enemy model advances and ends its movement within 6" of a model with Counter Charge and in its LOS, the model with Counter Charge can immediately charge it. If it does, it cannot make another counter until after your next turn. A model cannot make a counter charge while engaged.)</description>
<modifiers/>
</rule>
</rules>
<profiles>
<profile id="4bf8-e0c5-0f73-5099" profileTypeId="57617263617374657223232344415441232323" name="Axis, The Harmonic Enforcerer" hidden="false">
<characteristics>
<characteristic characteristicId="53504423232344415441232323" name="SPD" value="5"/>
<characteristic characteristicId="53545223232344415441232323" name="STR" value="7"/>
<characteristic characteristicId="4d415423232344415441232323" name="MAT" value="7"/>
<characteristic characteristicId="52415423232344415441232323" name="RAT" value="2"/>
<characteristic characteristicId="44454623232344415441232323" name="DEF" value="14"/>
<characteristic characteristicId="41524d23232344415441232323" name="ARM" value="17"/>
<characteristic characteristicId="434d4423232344415441232323" name="CMD" value="8"/>
<characteristic characteristicId="466f63757323232344415441232323" name="Focus" value="6"/>
<characteristic characteristicId="44616d61676523232344415441232323" name="Damage" value="18"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links>
<link id="0821-5f37-542a-0a49" targetId="e300-d293-49e7-45e8" linkType="entry">
<modifiers/>
</link>
<link id="939c-a4c1-2fe4-e48c" targetId="f87e-84be-8e06-c9d0" linkType="entry">
<modifiers/>
</link>
<link id="d5ac-d955-1227-e417" targetId="1fc7-ae62-f8e2-3130" linkType="entry">
<modifiers/>
</link>
<link id="ce45-c929-22e7-d8cf" targetId="e392-3833-1deb-e1c3" linkType="entry">
<modifiers/>
</link>
<link id="4647-d1a5-4320-bdd8" targetId="d384-6d0c-b0c5-960a" linkType="entry">
<modifiers/>
</link>
<link id="abcb-c567-f2fd-6ba4" targetId="5ecb-cd98-e1a7-a607" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
<entry id="4cda-05ef-627a-2a7b" name="Cipher" points="9.0" categoryId="5761726a61636b23232344415441232323" type="model" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Forces of Warmachine - Convergence of Cyriss" page="63">
<entries>
<entry id="7a18-ad8a-fba6-101a" name="Servipod Mortar" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles>
<profile id="25bc-edcc-4635-ca8b" profileTypeId="576561706f6e23232344415441232323" name="Servipod Mortar" hidden="false">
<characteristics>
<characteristic characteristicId="524e4723232344415441232323" name="RNG" value="11"/>
<characteristic characteristicId="524f4623232344415441232323" name="ROF" value="2"/>
<characteristic characteristicId="414f4523232344415441232323" name="AOE" value="4"/>
<characteristic characteristicId="504f5723232344415441232323" name="POW" value="-"/>
<characteristic characteristicId="502b5323232344415441232323" name="P+S" value=""/>
<characteristic characteristicId="4c2f522f4823232344415441232323" name="L/R/H" value="-"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links>
<link id="3cc9-a330-eb26-7b1a" targetId="2339-3d93-6ddc-c58d" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
<entry id="d678-eeca-6e8d-8a0f" name="Piston Spike" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles>
<profile id="62fd-43ee-e0e9-11cf" profileTypeId="576561706f6e23232344415441232323" name="Piston Spike" hidden="false">
<characteristics>
<characteristic characteristicId="524e4723232344415441232323" name="RNG"/>
<characteristic characteristicId="524f4623232344415441232323" name="ROF"/>
<characteristic characteristicId="414f4523232344415441232323" name="AOE"/>
<characteristic characteristicId="504f5723232344415441232323" name="POW" value="6"/>
<characteristic characteristicId="502b5323232344415441232323" name="P+S" value="18"/>
<characteristic characteristicId="4c2f522f4823232344415441232323" name="L/R/H" value="L"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links/>
</entry>
<entry id="7046-74f3-86f4-cfe3" name="Piston Spike" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles>
<profile id="9211-bd14-b719-0088" profileTypeId="576561706f6e23232344415441232323" name="Piston Spike" hidden="false">
<characteristics>
<characteristic characteristicId="524e4723232344415441232323" name="RNG"/>
<characteristic characteristicId="524f4623232344415441232323" name="ROF"/>
<characteristic characteristicId="414f4523232344415441232323" name="AOE"/>
<characteristic characteristicId="504f5723232344415441232323" name="POW" value="6"/>
<characteristic characteristicId="502b5323232344415441232323" name="P+S" value="18"/>
<characteristic characteristicId="4c2f522f4823232344415441232323" name="L/R/H" value="R"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links/>
</entry>
</entries>
<entryGroups/>
<modifiers/>
<rules>
<rule id="1127-3c8c-627c-05a3" name="Attack Type" hidden="false">
<description>Each time this model makes a normalranged attack, choose one fo the following abilities_
- Bombardment - Models hit suffer a POW 6 blast damage roll.
- Crater - The AOE is rough terrain and remains in play for one round.
- Flare - Models hit by this attack suffer -2 DEF for one round.</description>
<modifiers/>
</rule>
</rules>
<profiles>
<profile id="bf59-d138-98f6-85c2" profileTypeId="5761726a61636b23232344415441232323" name="Cipher" hidden="false">
<characteristics>
<characteristic characteristicId="53504423232344415441232323" name="SPD" value="4"/>
<characteristic characteristicId="53545223232344415441232323" name="STR" value="12"/>
<characteristic characteristicId="4d415423232344415441232323" name="MAT" value="X"/>
<characteristic characteristicId="52415423232344415441232323" name="RAT" value="X"/>
<characteristic characteristicId="44454623232344415441232323" name="DEF" value="10"/>
<characteristic characteristicId="41524d23232344415441232323" name="ARM" value="19"/>
<characteristic characteristicId="434d4423232344415441232323" name="CMD" value="-"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links>
<link id="69da-16df-9ee3-1dca" targetId="9a85-e603-3a30-4e62" linkType="rule">
<modifiers/>
</link>
<link id="49a7-0632-af50-a8ef" targetId="4139-a70b-2274-56f7" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
<entry id="9bde-192d-7ba5-963f" name="Clockwork Angels" points="3.0" categoryId="556e697423232344415441232323" type="unit" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="3" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Forces of Warmachine - Convergence of Cyriss" page="74">
<entries>
<entry id="1e1d-3066-c214-e7d8" name="Binomial Beam" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles>
<profile id="a75d-3d78-6901-3794" profileTypeId="576561706f6e23232344415441232323" name="Binomial Beam" hidden="false">
<characteristics>
<characteristic characteristicId="524e4723232344415441232323" name="RNG" value="10"/>
<characteristic characteristicId="524f4623232344415441232323" name="ROF" value="1"/>
<characteristic characteristicId="414f4523232344415441232323" name="AOE" value="-"/>
<characteristic characteristicId="504f5723232344415441232323" name="POW" value="10"/>
<characteristic characteristicId="502b5323232344415441232323" name="P+S" value=""/>
<characteristic characteristicId="4c2f522f4823232344415441232323" name="L/R/H"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links>
<link id="16da-8a74-c651-5769" targetId="baad9a5e-ea83-201b-ad39-67517e0e9768" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
<entry id="1b8e-549f-61a4-8ac8" name="Binomial Blade" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles>
<profile id="8d3d-60c5-8a0d-b909" profileTypeId="576561706f6e23232344415441232323" name="Binomial Blade" hidden="false">
<characteristics>
<characteristic characteristicId="524e4723232344415441232323" name="RNG"/>
<characteristic characteristicId="524f4623232344415441232323" name="ROF"/>
<characteristic characteristicId="414f4523232344415441232323" name="AOE"/>
<characteristic characteristicId="504f5723232344415441232323" name="POW" value="5"/>
<characteristic characteristicId="502b5323232344415441232323" name="P+S" value="10"/>
<characteristic characteristicId="4c2f522f4823232344415441232323" name="L/R/H" value=""/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links>
<link id="2fc4-0586-4dfa-4de3" targetId="baad9a5e-ea83-201b-ad39-67517e0e9768" linkType="rule">
<modifiers/>
</link>
<link id="f37e-dbae-d14a-51b8" targetId="65be-ff72-5eac-c16c" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
</entries>
<entryGroups/>
<modifiers/>
<rules>
<rule id="808f-2a55-29f9-6b75" name="Blade Shield" hidden="false">
<description>This model gains +2 DEF against ranged attack rolls.</description>
<modifiers/>
</rule>
</rules>
<profiles>
<profile id="ab64-ffbc-b1e7-f4c2" profileTypeId="54726f6f70657223232344415441232323" name="Leader & Grunts" hidden="false">
<characteristics>
<characteristic characteristicId="53504423232344415441232323" name="SPD" value="7"/>
<characteristic characteristicId="53545223232344415441232323" name="STR" value="5"/>
<characteristic characteristicId="4d415423232344415441232323" name="MAT" value="6"/>
<characteristic characteristicId="52415423232344415441232323" name="RAT" value="5"/>
<characteristic characteristicId="44454623232344415441232323" name="DEF" value="14"/>
<characteristic characteristicId="41524d23232344415441232323" name="ARM" value="12"/>
<characteristic characteristicId="434d4423232344415441232323" name="CMD" value="7"/>
<characteristic characteristicId="44616d61676523232344415441232323" name="Damage" value="1"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links>
<link id="3842-7946-2b8a-b610" targetId="137b368a-ff78-db3d-2fea-5dec4fc6d250" linkType="rule">
<modifiers/>
</link>
<link id="063f-f61c-1787-497c" targetId="e925ecc8-9ef3-b643-f4df-1de4caffe2c2" linkType="rule">
<modifiers/>
</link>
<link id="7633-5856-d8f4-6df6" targetId="dcd95c51-bc0d-22d8-0a1c-2da797cb25f8" linkType="rule">
<modifiers/>
</link>
<link id="0b37-7efa-e121-fdb6" targetId="f2c3-e1b1-18f1-2c6a" linkType="rule">
<modifiers/>
</link>
<link id="2ef6-bc66-3739-b582" targetId="3ddc945e-f75e-4b8a-f2e1-ccb4ae31f748" linkType="rule">
<modifiers/>
</link>
<link id="86d3-51ee-7a8c-2a1b" targetId="be15-d71d-488b-2972" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
<entry id="7c4f-d5f8-8902-040f" name="Conservator" points="7.0" categoryId="5761726a61636b23232344415441232323" type="model" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Forces of Warmachine - Convergence of Cyriss" page="64">
<entries>
<entry id="c84b-21a1-6b1c-0dd9" name="Ablator Blade" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles>
<profile id="5034-07c2-aaf9-9e4e" profileTypeId="576561706f6e23232344415441232323" name="Ablator Blade" hidden="false">
<characteristics>
<characteristic characteristicId="524e4723232344415441232323" name="RNG"/>
<characteristic characteristicId="524f4623232344415441232323" name="ROF"/>
<characteristic characteristicId="414f4523232344415441232323" name="AOE"/>
<characteristic characteristicId="504f5723232344415441232323" name="POW" value="5"/>
<characteristic characteristicId="502b5323232344415441232323" name="P+S" value="15"/>
<characteristic characteristicId="4c2f522f4823232344415441232323" name="L/R/H" value="L"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links>
<link id="120d-f9d9-2ae2-9b55" targetId="b909fea5-5674-7b5a-ff48-8808557496a3" linkType="rule">
<modifiers/>
</link>
<link id="05d7-f9b1-64ca-84ae" targetId="cd0ba61c-b2b9-df88-715f-4e67e8f38fa7" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
<entry id="5ffa-445e-c029-90e8" name="Ablator Blade" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles>
<profile id="31e1-f5b6-da39-2dba" profileTypeId="576561706f6e23232344415441232323" name="Ablator Blade" hidden="false">
<characteristics>
<characteristic characteristicId="524e4723232344415441232323" name="RNG"/>
<characteristic characteristicId="524f4623232344415441232323" name="ROF"/>
<characteristic characteristicId="414f4523232344415441232323" name="AOE"/>
<characteristic characteristicId="504f5723232344415441232323" name="POW" value="5"/>
<characteristic characteristicId="502b5323232344415441232323" name="P+S" value="15"/>
<characteristic characteristicId="4c2f522f4823232344415441232323" name="L/R/H" value="R"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links>
<link id="f3fe-cf06-b02b-195d" targetId="b909fea5-5674-7b5a-ff48-8808557496a3" linkType="rule">
<modifiers/>
</link>
<link id="4ab9-5bf3-7e09-90b0" targetId="cd0ba61c-b2b9-df88-715f-4e67e8f38fa7" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
</entries>
<entryGroups/>
<modifiers/>
<rules>
<rule id="861e-a40e-4b4d-c7a7" name="Hand of Vengeance" hidden="false">
<description>When one or more friendly Faction warrior models are destroyed or removed from play by enemy attacks while within 5" of this model, this model gains +2 on attack and damage rolls for one round.</description>
<modifiers/>
</rule>
</rules>
<profiles>
<profile id="467c-8eea-2c10-030b" profileTypeId="5761726a61636b23232344415441232323" name="Conservator" hidden="false">
<characteristics>
<characteristic characteristicId="53504423232344415441232323" name="SPD" value="5"/>
<characteristic characteristicId="53545223232344415441232323" name="STR" value="10"/>
<characteristic characteristicId="4d415423232344415441232323" name="MAT" value="X"/>
<characteristic characteristicId="52415423232344415441232323" name="RAT" value="X"/>
<characteristic characteristicId="44454623232344415441232323" name="DEF" value="11"/>
<characteristic characteristicId="41524d23232344415441232323" name="ARM" value="18"/>
<characteristic characteristicId="434d4423232344415441232323" name="CMD" value="-"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links>
<link id="faa6-d65f-b9d8-7b84" targetId="9a85-e603-3a30-4e62" linkType="rule">
<modifiers/>
</link>
<link id="532e-afca-9d30-65e0" targetId="bbd8a6eb-2793-1454-fc0f-81ef8aaef586" linkType="rule">
<modifiers/>
</link>
<link id="0606-7e9a-8ef6-78df" targetId="b0f0-249b-8b96-b37a" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
<entry id="7788-2214-06f7-cdf7" name="Corollary" points="3.0" categoryId="5761726a61636b23232344415441232323" type="model" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Forces of Warmachine - Convergence of Cyriss" page="58">
<entries>
<entry id="c7f4-6bee-a3b3-972e" name="Bash" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles>
<profile id="6b90-b470-6a56-713e" profileTypeId="576561706f6e23232344415441232323" name="Bash" hidden="false">
<characteristics>
<characteristic characteristicId="524e4723232344415441232323" name="RNG"/>
<characteristic characteristicId="524f4623232344415441232323" name="ROF"/>
<characteristic characteristicId="414f4523232344415441232323" name="AOE"/>
<characteristic characteristicId="504f5723232344415441232323" name="POW" value="0"/>
<characteristic characteristicId="502b5323232344415441232323" name="P+S" value="6"/>
<characteristic characteristicId="4c2f522f4823232344415441232323" name="L/R/H" value="H"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links/>
</entry>
</entries>
<entryGroups/>
<modifiers/>
<rules>
<rule id="1094-3c3e-77c8-7839" name="Accumulator [warcaster]" hidden="false">
<description>When this model begins its activation within 3" of one or more friendly warcaster models, it is allocated 1 focus point.</description>
<modifiers/>
</rule>
<rule id="ea16-7a36-5f08-04a5" name="Arcane Repeater" hidden="false">
<description>While in this model's warcaster is within 5" of it, that warcaster's control area is extended 2".</description>
<modifiers/>
</rule>
<rule id="ae2c-a073-ad3c-98ac" name="Attached to [it's controlling warcaster]" hidden="false">
<description>This model is attached to its controlling warcaster for the rest of the game. Each warcaster can have only one model attached to it.</description>
<modifiers/>
</rule>
<rule id="e3a0-4165-71a3-dea4" name="Focus Battery" hidden="false">
<description>During the Maintenance Phase, do not remove unspent focus points from this model. Focus points remaining on this model at the start of your Control Phase count toward its focus allocation limit.</description>
<modifiers/>
</rule>
<rule id="fe3d-43d5-f6f4-dc5f" name="Power Transfer (* Action)" hidden="false">
<description>RNG 5. Target friendly Faction warjack. If the warjack is in range, spend up to 3 focus points to allocate it 1 focus point for each focus point spent.</description>
<modifiers/>
</rule>
</rules>
<profiles>
<profile id="9105-a3fe-d8e9-1cb7" profileTypeId="5761726a61636b23232344415441232323" name="Corollary" hidden="false">
<characteristics>
<characteristic characteristicId="53504423232344415441232323" name="SPD" value="6"/>
<characteristic characteristicId="53545223232344415441232323" name="STR" value="6"/>
<characteristic characteristicId="4d415423232344415441232323" name="MAT" value="X"/>
<characteristic characteristicId="52415423232344415441232323" name="RAT" value="X"/>
<characteristic characteristicId="44454623232344415441232323" name="DEF" value="12"/>
<characteristic characteristicId="41524d23232344415441232323" name="ARM" value="15"/>
<characteristic characteristicId="434d4423232344415441232323" name="CMD" value="-"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links>
<link id="7bc2-d3de-d62a-2da7" targetId="bbd8a6eb-2793-1454-fc0f-81ef8aaef586" linkType="rule">
<modifiers/>
</link>
<link id="e7ef-9b37-3f99-11c6" targetId="da54-e57e-4412-035a" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
<entry id="52f1-df45-3853-244f" name="Diffuser" points="3.0" categoryId="5761726a61636b23232344415441232323" type="model" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Forces of Warmachine - Convergence of Cyriss" page="59">
<entries>
<entry id="76e2-ed04-d8ae-28df" name="Homing Ripspike" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules>
<rule id="1f7f-ceb9-ad58-9656" name="Beacon" hidden="false">
<description>Friendly models can charge or make a slam power attack against an enemy model hit by this weapon without being forced or spending focus. A friendly model charging an enemy model hit by this weapon gains +2" of movement. Beacon lasts for one turn.</description>
<modifiers/>
</rule>
</rules>
<profiles>
<profile id="be99-1358-187b-a52b" profileTypeId="576561706f6e23232344415441232323" name="Homing Ripspike" hidden="false">
<characteristics>
<characteristic characteristicId="524e4723232344415441232323" name="RNG" value="11"/>
<characteristic characteristicId="524f4623232344415441232323" name="ROF" value="1"/>
<characteristic characteristicId="414f4523232344415441232323" name="AOE" value="-"/>
<characteristic characteristicId="504f5723232344415441232323" name="POW" value="11"/>
<characteristic characteristicId="502b5323232344415441232323" name="P+S" value=""/>
<characteristic characteristicId="4c2f522f4823232344415441232323" name="L/R/H" value="H"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links>
<link id="b3a7-a405-dfb2-c4e3" targetId="e8f0-6877-aba3-b4e5" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
<entry id="9c30-2931-4d5f-6623" name="Bash" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="2" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles>
<profile id="338b-b568-1ea6-aa84" profileTypeId="576561706f6e23232344415441232323" name="Bash" hidden="false">
<characteristics>
<characteristic characteristicId="524e4723232344415441232323" name="RNG"/>
<characteristic characteristicId="524f4623232344415441232323" name="ROF"/>
<characteristic characteristicId="414f4523232344415441232323" name="AOE"/>
<characteristic characteristicId="504f5723232344415441232323" name="POW" value="0"/>
<characteristic characteristicId="502b5323232344415441232323" name="P+S" value="7"/>
<characteristic characteristicId="4c2f522f4823232344415441232323" name="L/R/H" value="H"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links/>
</entry>
</entries>
<entryGroups/>
<modifiers/>
<rules/>
<profiles>
<profile id="6a74-fd98-01a4-525b" profileTypeId="5761726a61636b23232344415441232323" name="Diffuser" hidden="false">
<characteristics>
<characteristic characteristicId="53504423232344415441232323" name="SPD" value="5"/>
<characteristic characteristicId="53545223232344415441232323" name="STR" value="7"/>
<characteristic characteristicId="4d415423232344415441232323" name="MAT" value="X"/>
<characteristic characteristicId="52415423232344415441232323" name="RAT" value="X"/>
<characteristic characteristicId="44454623232344415441232323" name="DEF" value="12"/>
<characteristic characteristicId="41524d23232344415441232323" name="ARM" value="16"/>
<characteristic characteristicId="434d4423232344415441232323" name="CMD" value="-"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links>
<link id="5b91-cf51-71fd-b1b3" targetId="6e9c7f59-9be7-e380-8bf6-635bde83e562" linkType="rule">
<modifiers/>
</link>
<link id="67c5-8f8d-cbfb-d88b" targetId="da54-e57e-4412-035a" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
<entry id="343d-8497-10c4-c4c6" name="Eradicators" points="6.0" categoryId="556e697423232344415441232323" type="unit" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="2" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Forces of Warmachine - Convergence of Cyriss" page="75">
<entries>
<entry id="d243-0ce2-c75e-7ac1" name="Protean Bucklers" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="2" maxSelections="2" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles>
<profile id="fe39-1c0d-14c0-2ae1" profileTypeId="576561706f6e23232344415441232323" name="Protean Bucklers" hidden="false">
<characteristics>
<characteristic characteristicId="524e4723232344415441232323" name="RNG"/>
<characteristic characteristicId="524f4623232344415441232323" name="ROF"/>
<characteristic characteristicId="414f4523232344415441232323" name="AOE"/>
<characteristic characteristicId="504f5723232344415441232323" name="POW" value="4"/>
<characteristic characteristicId="502b5323232344415441232323" name="P+S" value="12"/>
<characteristic characteristicId="4c2f522f4823232344415441232323" name="L/R/H"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links/>
</entry>
<entry id="194c-ebc9-0a00-c5f8" name="Leader & 2 Grunts -> Leader & 4 Grunts" points="3.0" categoryId="(No Category)" type="upgrade" minSelections="0" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles/>
<links/>
</entry>
</entries>
<entryGroups/>
<modifiers/>
<rules>
<rule id="2e4f-67b9-1a28-8eae" name="Variable [melee]" hidden="false">
<description>At the start of this unit's activation, choose one of the folowing modes for the unit's weapons. Each of this model's melee weapons gains the ability listed for one round.
- Accuracy - This weapon gains +2 on its attack rolls.
- Shields Up - This weapon gains Buckler.</description>
<modifiers/>
</rule>
</rules>
<profiles>
<profile id="6027-2c21-63dd-6b6b" profileTypeId="54726f6f70657223232344415441232323" name="Leader & Grunts" hidden="false">
<characteristics>
<characteristic characteristicId="53504423232344415441232323" name="SPD" value="5"/>
<characteristic characteristicId="53545223232344415441232323" name="STR" value="8"/>
<characteristic characteristicId="4d415423232344415441232323" name="MAT" value="7"/>
<characteristic characteristicId="52415423232344415441232323" name="RAT" value="5"/>
<characteristic characteristicId="44454623232344415441232323" name="DEF" value="12"/>
<characteristic characteristicId="41524d23232344415441232323" name="ARM" value="15"/>
<characteristic characteristicId="434d4423232344415441232323" name="CMD" value="7"/>
<characteristic characteristicId="44616d61676523232344415441232323" name="Damage" value="8"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links>
<link id="8487-78ee-b8b2-6e0f" targetId="dcd95c51-bc0d-22d8-0a1c-2da797cb25f8" linkType="rule">
<modifiers/>
</link>
<link id="6253-2a3b-1585-1620" targetId="f2c3-e1b1-18f1-2c6a" linkType="rule">
<modifiers/>
</link>
<link id="9afe-556b-5974-0507" targetId="2674-8e61-9eba-aab9" linkType="rule">
<modifiers/>
</link>
<link id="4d65-0b3f-25b3-2ffe" targetId="7a45-a64b-3b64-ef2e" linkType="rule">
<modifiers/>
</link>
<link id="ed6a-2b41-c085-b778" targetId="0ff5-371f-ffae-dc65" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
<entry id="3944-2df9-3e8f-265e" name="Father Lucant, Divinity Architect" points="-5.0" categoryId="57617263617374657223232344415441232323" type="model" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="1" minInRoster="0" maxInRoster="1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Forces of Warmachine - Convergence of Cyriss" page="52">
<entries>
<entry id="0c37-922e-664d-29fb" name="Apogee" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles>
<profile id="b500-4c16-9ec2-4df5" profileTypeId="576561706f6e23232344415441232323" name="Apogee" hidden="false">
<characteristics>
<characteristic characteristicId="524e4723232344415441232323" name="RNG"/>
<characteristic characteristicId="524f4623232344415441232323" name="ROF"/>
<characteristic characteristicId="414f4523232344415441232323" name="AOE"/>
<characteristic characteristicId="504f5723232344415441232323" name="POW" value="7"/>
<characteristic characteristicId="502b5323232344415441232323" name="P+S" value="16"/>
<characteristic characteristicId="4c2f522f4823232344415441232323" name="L/R/H" value=""/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links>
<link id="3600-8d36-af2c-1cae" targetId="baad9a5e-ea83-201b-ad39-67517e0e9768" linkType="rule">
<modifiers/>
</link>
<link id="8dae-5501-4863-d38f" targetId="3317-7ff4-4974-5a3e" linkType="rule">
<modifiers/>
</link>
<link id="9257-0239-8df1-51a0" targetId="48c2-1e98-4a63-0cd3" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
</entries>
<entryGroups/>
<modifiers/>
<rules>
<rule id="f1bb-a8dd-0fe4-8d46" name="Field Marshal [Shield Guard]" hidden="false">
<description>Models in this model's battlegroup gain Shield Guard. (Once per round, when a friendly model is directly hit by a ranged attack during your opponent's turn while within 2" of a model with Shield Guard, you can choose to have the model with Shield Guard directly hit instead. The model is automatically hit and suffers all damage and effects. The model cannot use Shield Guard if it is incorporeal, knocked down, or stationary.)</description>
<modifiers/>
</rule>
<rule id="bf9d-2e19-c9b3-bd90" name="Feat: Clockwork Reinforcement" hidden="false">
<description>While within Lucant's control area, friendly Faction models gain +4 ARM. When a friendly Faction model in Lucant's control area makes a Repair skill check, it automatically succeeds. Clockwork Reinforcement lasts for one round.</description>
<modifiers/>
</rule>
</rules>
<profiles>
<profile id="ca22-290e-a11f-543d" profileTypeId="57617263617374657223232344415441232323" name="Lucant" hidden="false">
<characteristics>
<characteristic characteristicId="53504423232344415441232323" name="SPD" value="6"/>
<characteristic characteristicId="53545223232344415441232323" name="STR" value="9"/>
<characteristic characteristicId="4d415423232344415441232323" name="MAT" value="6"/>
<characteristic characteristicId="52415423232344415441232323" name="RAT" value="3"/>
<characteristic characteristicId="44454623232344415441232323" name="DEF" value="14"/>
<characteristic characteristicId="41524d23232344415441232323" name="ARM" value="17"/>
<characteristic characteristicId="434d4423232344415441232323" name="CMD" value="10"/>
<characteristic characteristicId="466f63757323232344415441232323" name="Focus" value="7"/>
<characteristic characteristicId="44616d61676523232344415441232323" name="Damage" value="21"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links>
<link id="2351-6f7f-ae52-c121" targetId="dcd95c51-bc0d-22d8-0a1c-2da797cb25f8" linkType="rule">
<modifiers/>
</link>
<link id="7510-0f9b-eb84-a1c8" targetId="bbd8a6eb-2793-1454-fc0f-81ef8aaef586" linkType="rule">
<modifiers/>
</link>
<link id="9b42-2c1d-0191-c576" targetId="f2c3-e1b1-18f1-2c6a" linkType="rule">
<modifiers/>
</link>
<link id="ddfe-a112-719d-9879" targetId="2674-8e61-9eba-aab9" linkType="rule">
<modifiers/>
</link>
<link id="c585-76ef-265b-93a7" targetId="5ecb-cd98-e1a7-a607" linkType="rule">
<modifiers/>
</link>
<link id="b427-782c-3538-2d31" targetId="4139-a70b-2274-56f7" linkType="rule">
<modifiers/>
</link>
<link id="4593-be12-7847-d22c" targetId="31ab-aaf7-834f-4f7e" linkType="entry">
<modifiers/>
</link>
<link id="2bed-2038-1f7d-699e" targetId="9e22-70d0-6b7a-9f58" linkType="entry">
<modifiers/>
</link>
<link id="8e76-298e-4e8a-8575" targetId="358f-e542-8726-33d8" linkType="entry">
<modifiers/>
</link>
<link id="1ae7-7216-7abe-aa9e" targetId="bfda-f78b-36c3-6b5d" linkType="entry">
<modifiers/>
</link>
<link id="322c-a16e-5b79-4903" targetId="0c68-7d01-1f5d-14cd" linkType="entry">
<modifiers/>
</link>
</links>
</entry>
<entry id="ede8-1a3e-b0a3-34c3" name="Forge Master Syntherion" points="-6.0" categoryId="57617263617374657223232344415441232323" type="model" minSelections="0" maxSelections="-1" minInForce="0" maxInForce="1" minInRoster="0" maxInRoster="1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false" book="Forces of Warmachine - Convergence of Cyriss" page="54">
<entries>
<entry id="56f4-2779-543c-096a" name="Static Bolt" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="1" maxSelections="1" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles>
<profile id="2550-dcf1-212e-8adb" profileTypeId="576561706f6e23232344415441232323" name="Static Bolt" hidden="false">
<characteristics>
<characteristic characteristicId="524e4723232344415441232323" name="RNG" value="11"/>
<characteristic characteristicId="524f4623232344415441232323" name="ROF" value="1"/>
<characteristic characteristicId="414f4523232344415441232323" name="AOE" value="-"/>
<characteristic characteristicId="504f5723232344415441232323" name="POW" value="11"/>
<characteristic characteristicId="502b5323232344415441232323" name="P+S"/>
<characteristic characteristicId="4c2f522f4823232344415441232323" name="L/R/H"/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links>
<link id="9387-3b16-c864-ee20" targetId="a259588f-7c17-0379-fd36-b9c47244d72b" linkType="rule">
<modifiers/>
</link>
</links>
</entry>
<entry id="d63d-4595-d21f-fd95" name="Workshop Array" points="0.0" categoryId="(No Category)" type="upgrade" minSelections="2" maxSelections="2" minInForce="0" maxInForce="-1" minInRoster="0" maxInRoster="-1" minPoints="0.0" maxPoints="-1.0" collective="false" hidden="false">
<entries/>
<entryGroups/>
<modifiers/>
<rules/>
<profiles>
<profile id="d765-6cfd-2e04-de30" profileTypeId="576561706f6e23232344415441232323" name="Workshop Array" hidden="false">
<characteristics>
<characteristic characteristicId="524e4723232344415441232323" name="RNG"/>
<characteristic characteristicId="524f4623232344415441232323" name="ROF"/>
<characteristic characteristicId="414f4523232344415441232323" name="AOE"/>
<characteristic characteristicId="504f5723232344415441232323" name="POW" value="5"/>
<characteristic characteristicId="502b5323232344415441232323" name="P+S" value="14"/>
<characteristic characteristicId="4c2f522f4823232344415441232323" name="L/R/H" value=""/>
</characteristics>
<modifiers/>
</profile>
</profiles>
<links/>
</entry>
</entries>
<entryGroups/>
<modifiers/>
<rules>
<rule id="292e-d7ec-69ba-ee44" name="Feat: Technological Superiority" hidden="false">
<description>While in Syntherion's control area, models in his battlegroup can charge without spending focus and gain Weapon Platform. Technological Superiority lasts for one turn. (A model with Weapon Platform can make melee and ranged attacks in the same activation. When a model with Weapon Platform makes its initial melee attacks or a power attack, it can also make its initial ranged attacks. A model with Weapon Platform can make ranged attacks even while in melee.)</description>
<modifiers/>
</rule>
<rule id="2dd0-f735-3b11-2e29" name="Field Marshal [Auto-Repair]" hidden="false">
<description>Models in this model's battlegroup gain Auto-Repair. (During your Control Phase, remove d3 damage points from models with Auto-Repair.)</description>
<modifiers/>
</rule>
</rules>
<profiles/>
<links>
<link id="c627-32e5-2788-7288" targetId="dcd95c51-bc0d-22d8-0a1c-2da797cb25f8" linkType="rule">
<modifiers/>
</link>
<link id="1d44-aecb-779e-21ec" targetId="bbd8a6eb-2793-1454-fc0f-81ef8aaef586" linkType="rule">
<modifiers/>
</link>
<link id="ebfe-813b-df35-d252" targetId="5ecb-cd98-e1a7-a607" linkType="rule">
<modifiers/>
</link>
<link id="7f87-8fec-22d5-059b" targetId="f2c3-e1b1-18f1-2c6a" linkType="rule">
<modifiers/>
</link>
<link id="a542-f78a-45c8-9de0" targetId="2674-8e61-9eba-aab9" linkType="rule">
<modifiers/>
</link>
<link id="7931-988b-3010-2367" targetId="edb5-12db-9829-18e5" linkType="rule">