-
Notifications
You must be signed in to change notification settings - Fork 13
/
Generator.cat
1320 lines (1316 loc) · 99.3 KB
/
Generator.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="f69c-988c-fae3-e664" name="Generator" revision="25" battleScribeVersion="2.03" authorName="Riccardo Sipone" authorContact="[email protected]" library="true" gameSystemId="1242-c30b-419f-8229" gameSystemRevision="10" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue">
<readme>Review 1.00.00: generator collection
Review 3.04.00: all generator included and updated
Review 3.04.01: all generator included and updated. added 3.03 Orbat change
Review 3.04.02: added after Uniion Orbat update to 3.03
Review 3.04.03: updated for Sultanate Orbat 3.03
Review 3.04.04: new data for mid April updated
Review 3.04.05: new data for mid September updated
Review 3.04.06: new rules for 3.04 Orbats (rev.2)
Review 3.04.07: update for 3.04 Orbats Sept '23 release (rev.1)
Review 3.05.00: update for 3.05 Orbats Oct '23 release
Review 3.05.01: update for 3.05 Orbats Jan'24 (to be used with New Recruit)
Review 3.06.00: start of 3.06 updates
Review 3.06.01: Crown 3.05a data (rev1)
Review 3.06.02: Alliance 3.05
Review 3.06.03: Empire 3.05
Review 3.06.03: Sultanate / Union 3.06
Review 3.06.04: Enlightened 3.05
Review 3.06.05: Union 3.07a
Review 3.06.06: Empire 3.06 and new version of Imperium
Review 3.06.07: Commonwealth 3.05
Review 3.06.08: Alliance 3.06
Review 3.06.08: Enlightened 3.06
Review 3.06.09: Crown 3.06a
Review 3.06.09: Sultanate 3.07
Review 3.06.09: Enlightened 3.07</readme>
<categoryEntries>
<categoryEntry id="0c85-39c7-9145-efeb" name="1" hidden="true"/>
<categoryEntry id="8901-cc02-f55e-2ee5" name="2" hidden="false"/>
<categoryEntry id="179a-4bc3-c4d4-b5d5" name="3" hidden="false"/>
<categoryEntry id="5935-bcd7-b498-5f40" name="4" hidden="false"/>
<categoryEntry id="967e-22a1-ae69-7b4f" name="8" hidden="false"/>
</categoryEntries>
<sharedSelectionEntries>
<selectionEntry id="79b6-cc44-97d0-b1dd" name="Arc generator" publicationId="e6a1-85d3-8979-7880" hidden="false" collective="false" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="01be-5aef-5d65-f7a5" type="max"/>
</constraints>
<infoLinks>
<infoLink id="8374-9947-80d5-889d" name="Arc Generator" hidden="false" targetId="0261-b767-cd91-14ae" type="profile"/>
<infoLink id="59ef-2fde-b054-5e22" name="Arc generator [3.07a]" hidden="false" targetId="0bab-bd34-0b75-76b1" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6b9e-324f-4ad1-184a" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="eef0-442d-aa6f-b314" name="Atomic generator" publicationId="7f09-e243-2307-78d0" hidden="false" collective="false" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="64fc-1302-f14d-65cd" type="max"/>
</constraints>
<infoLinks>
<infoLink id="e2ce-da35-ec2e-ea9e" name="Atomic generator" hidden="false" targetId="bf4f-f520-1b65-3bfd" type="profile"/>
<infoLink id="cafb-8cb5-9a87-3a72" name="Atomic generator [3.07a]" hidden="false" targetId="3fe1-73f5-bc98-7db7" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="08d8-becc-c736-c0b6" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="b0bc-1862-f599-bed6" name="Callimachus Chrono-Lathe" publicationId="908d-6feb-2e9e-843b" hidden="false" collective="false" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="d52f-5583-ca26-516c" type="max"/>
</constraints>
<infoLinks>
<infoLink id="1f71-27a1-1e86-ceaf" name="Callimachus Chrono-Lathe" hidden="false" targetId="8442-5dce-0baa-fa82" type="profile"/>
<infoLink id="7cee-61d3-7037-c4a0" name="Callimachus Chrono-Lathe [3.06]" hidden="false" targetId="8a3a-28b1-dc83-dfca" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="8f53-9a76-7042-7f60" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="069a-8c90-088f-816d" name="Fury generator" publicationId="7f09-e243-2307-78d0" hidden="false" collective="false" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="c0b6-5c36-46e3-a62f" type="max"/>
</constraints>
<infoLinks>
<infoLink id="1c12-51c5-dfa2-2424" name="Fury generator" hidden="false" targetId="87f0-a822-7ea9-7287" type="profile"/>
<infoLink id="ae61-299e-9553-13bd" name="Fury generator [3.07a]" hidden="false" targetId="f743-5a58-7d27-2ceb" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6eda-6ffc-12c9-0488" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="4457-2e29-46ba-eb58" name="Chrono generator" publicationId="908d-6feb-2e9e-843b" hidden="false" collective="false" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="015b-92cd-affd-598d" type="max"/>
</constraints>
<infoLinks>
<infoLink id="e55e-ffca-15d0-c3c6" name="Chrono generetor" hidden="false" targetId="5077-5d26-65e0-17f7" type="profile"/>
<infoLink id="bf88-c7ef-7c94-5488" name="Chrono generetor [3.06]" hidden="false" targetId="a94e-7233-0f8b-6e68" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="4cd9-8d86-0eab-29b0" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="3cdc-eafd-c58f-ab7b" name="Cryo generator" publicationId="e265-8c7f-a4b2-a48e" hidden="false" collective="false" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="2b2f-27b7-93aa-b613" type="max"/>
</constraints>
<infoLinks>
<infoLink id="57f2-44d3-b2bc-f662" name="Cryo generator" hidden="false" targetId="a378-c3c3-3095-e066" type="profile"/>
<infoLink id="2dca-da71-2cc6-cb3b" name="Cryo generator [3.05]" hidden="false" targetId="90e5-d856-f4d8-b56b" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="bf18-2ccb-8df5-cd74" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="c84e-59e8-0ed6-c39e" name="Diophantus Chaos-Orb" publicationId="908d-6feb-2e9e-843b" hidden="false" collective="false" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="0410-1238-a489-aa7b" type="max"/>
</constraints>
<infoLinks>
<infoLink id="bb5f-2a47-c320-967b" name="Diophantus Chaos-Orb" hidden="false" targetId="3cb0-297c-b61d-cf4d" type="profile"/>
<infoLink id="ea8a-8b42-e302-76cf" name="Diophantus Chaos-Orb [3.06]" hidden="false" targetId="09b1-d883-924a-e86a" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="1c39-a6ef-8c4e-500f" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="094a-09c2-c40f-72c2" name="Guardian generator" publicationId="dbca-8d57-b848-457e" hidden="false" collective="false" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="16db-5880-57a8-79a7" type="max"/>
</constraints>
<infoLinks>
<infoLink id="a77f-430e-a73c-eb81" name="Guardian generator" publicationId="dbca-8d57-b848-457e" hidden="false" targetId="1877-35d1-b915-2b6b" type="profile">
<modifierGroups>
<modifierGroup>
<modifiers>
<modifier type="append" field="name" value="(1)">
<conditions>
<condition field="selections" scope="094a-09c2-c40f-72c2" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="0c85-39c7-9145-efeb" type="instanceOf"/>
</conditions>
</modifier>
<modifier type="append" field="name" value="(3)">
<conditions>
<condition field="selections" scope="094a-09c2-c40f-72c2" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="179a-4bc3-c4d4-b5d5" type="instanceOf"/>
</conditions>
</modifier>
<modifier type="append" field="name" value="(8)">
<conditions>
<condition field="selections" scope="094a-09c2-c40f-72c2" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="967e-22a1-ae69-7b4f" type="instanceOf"/>
</conditions>
</modifier>
<modifier type="append" field="name" value="(2)">
<conditions>
<condition field="selections" scope="094a-09c2-c40f-72c2" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="8901-cc02-f55e-2ee5" type="instanceOf"/>
</conditions>
</modifier>
<modifier type="append" field="name" value="(4)">
<conditions>
<condition field="selections" scope="094a-09c2-c40f-72c2" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="5935-bcd7-b498-5f40" type="instanceOf"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
</infoLink>
<infoLink id="38f2-7936-3f8b-bbfe" name="Guardian generator [3.06]" hidden="false" targetId="c8ce-067f-fea8-42b3" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="54ff-aeb5-7bd0-f716" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="85ce-a573-a773-4163" name="Great Wall generator" publicationId="7b2b-0f56-3962-5ec1" hidden="false" collective="false" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="2855-f122-94bb-64fc" type="max"/>
</constraints>
<infoLinks>
<infoLink id="f09a-aa4b-bd72-e361" name="Great Wall generator" hidden="false" targetId="3fa0-0ae4-9f50-67dc" type="profile"/>
<infoLink id="2e43-fb05-1894-0b69" name="Great Wall generator [3.06]" hidden="false" targetId="aac8-fdce-2f53-815a" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="107c-6e18-16e0-8c88" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="efe5-f7a5-d52e-0c9e" name="Interphase generator" publicationId="7b2b-0f56-3962-5ec1" hidden="false" collective="false" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="61c3-3bf7-946a-ff93" type="max"/>
</constraints>
<infoLinks>
<infoLink id="547c-bab9-1f7f-a5be" name="Interphase generator" hidden="false" targetId="bfd7-458a-8938-9de1" type="profile"/>
<infoLink id="a95e-7fba-fd56-1d99" name="Interphase generator [3.06]" hidden="false" targetId="3856-32b4-29d7-c738" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="fba8-399f-589b-0d10" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="29fe-5c4a-1d8c-014d" name="Langsam generator" publicationId="33cf-b4a6-bff0-0d70" hidden="false" collective="false" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="c36d-e0ce-03d2-554d" type="max"/>
</constraints>
<infoLinks>
<infoLink id="a606-4a72-3cf0-2bf8" name="Langsam generator" hidden="false" targetId="3f19-5915-66a7-f688" type="profile"/>
<infoLink id="0ddc-ed6a-ddea-6395" name="Langsan generator [3.06]" hidden="false" targetId="9704-6693-8202-319a" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="b156-58b3-d1fd-4539" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="51db-ebdc-f4dc-6fff" name="Magma Cast Generator" publicationId="7b2b-0f56-3962-5ec1" hidden="false" collective="false" import="false" type="upgrade">
<infoLinks>
<infoLink id="27ab-f58e-e9b1-22d0" name="Magma Cast generator" hidden="false" targetId="0820-8799-3688-c122" type="profile"/>
<infoLink id="9eca-a1d2-a85e-9148" name="Magma Cast generator [3.06]" hidden="false" targetId="19bc-60bc-f7ef-9877" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="368f-5178-7b83-efde" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="77af-dd4b-51e7-c620" name="Magnetic generator" publicationId="7f09-e243-2307-78d0" hidden="false" collective="false" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="f096-0834-70a2-738c" type="max"/>
</constraints>
<infoLinks>
<infoLink id="1e82-b729-a9b6-e24e" name="Magnetic generator" hidden="false" targetId="586f-fde9-3d38-02d0" type="profile"/>
<infoLink id="467a-5150-4620-3a10" name="Magnetic generator [3.07a]" hidden="false" targetId="b4ba-a474-4872-aa00" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="cfe6-43b2-7900-7052" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="163e-8002-bc82-d20f" name="Mirage generator" publicationId="d854-a2d6-3d52-44c4" hidden="false" collective="true" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="7596-0780-5406-05de" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="171e-ccf5-d8ae-0990" type="max"/>
</constraints>
<infoLinks>
<infoLink id="3907-23d0-234a-241a" name="Mirage generator" hidden="false" targetId="0c80-8c19-6348-9a6c" type="profile"/>
<infoLink id="db32-6d65-4cec-37b0" name="Mirage generator [3.06]" hidden="false" targetId="8466-6d75-968e-c1e7" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="63a6-c019-ed87-e83e" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="74b0-d10f-4a04-5321" name="Portal generator" publicationId="d854-a2d6-3d52-44c4" hidden="false" collective="true" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="9b2a-d8da-1f24-2615" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="639b-ec28-97e7-a357" type="max"/>
</constraints>
<infoLinks>
<infoLink id="fc3e-a3e1-8d44-8467" name="Portal generator" hidden="false" targetId="bbcb-e6ac-1e89-35d2" type="profile">
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="append" value="(1)" field="name">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="0c85-39c7-9145-efeb" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
<modifier type="append" value="(2)" field="name">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="8901-cc02-f55e-2ee5" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
<modifier type="append" value="(3)" field="name">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="179a-4bc3-c4d4-b5d5" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
<modifier type="append" value="(4)" field="name">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="5935-bcd7-b498-5f40" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
<modifier type="append" value="(8)" field="name">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="ancestor" childId="967e-22a1-ae69-7b4f" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
</infoLink>
<infoLink id="3109-d308-bc05-03cd" name="Portal generator [3.07]" hidden="false" targetId="7934-e919-e869-4ef7" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="82f0-7580-ae32-45d6" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="bf96-7810-7d69-a386" name="Repulsion field generator" publicationId="7f09-e243-2307-78d0" hidden="false" collective="false" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="068e-2090-ccf9-06be" type="max"/>
</constraints>
<infoLinks>
<infoLink id="20aa-5b71-734e-d8dc" name="Repulsion field generator" hidden="false" targetId="260e-2d03-fa1e-8137" type="profile"/>
<infoLink id="6d8d-5da5-f577-13dc" name="Repulsion field generator [3.07a]" hidden="false" targetId="67a0-4bf1-a4e1-f28e" type="rule"/>
<infoLink id="3421-e719-f030-df8" name="Powerslide [3.07a]" hidden="false" targetId="415d-54df-5df7-79c" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7c50-8fa5-da0a-6177" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="0e7f-6ae4-f9b6-0ea1" name="Shield generator" publicationId="7f09-e243-2307-78d0" hidden="false" collective="false" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="26e1-8e2e-9d57-7000" type="max"/>
</constraints>
<infoLinks>
<infoLink id="2a17-399e-b51c-6fa5" name="Shield generator" hidden="false" targetId="2086-333f-c525-6c88" type="profile"/>
<infoLink id="89e9-1f91-2a0a-4b7e" name="Shield generator [3.07a]" hidden="false" targetId="2c2f-ebec-49d2-ae7d" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="4214-1ca4-f118-7e8e" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="9d4a-299b-4d99-d7d1" name="Shockwave generator" publicationId="e265-8c7f-a4b2-a48e" hidden="false" collective="false" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="1c35-3481-2dbe-4373" type="max"/>
</constraints>
<infoLinks>
<infoLink id="3d99-69ca-de35-7858" name="Shockwave generator" hidden="false" targetId="23d6-0ce1-939e-1fff" type="profile"/>
<infoLink id="6ee4-441d-b833-bd13" name="Shockwave generator [3.05]" hidden="false" targetId="972b-ef54-6903-e553" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="13af-e0da-ce5c-6e32" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="1543-05e3-58ac-6e6d" name="Shroud generator" publicationId="7f09-e243-2307-78d0" page="35" hidden="false" collective="false" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="164f-6b2a-e20f-429a" type="max"/>
</constraints>
<infoLinks>
<infoLink id="2830-a3df-25aa-b8cf" name="Shroud generator" hidden="false" targetId="1873-22df-b3ba-49db" type="profile"/>
<infoLink id="317a-3615-2580-f4bc" name="Shroud generator [3.07a]" hidden="false" targetId="ef22-2b56-207c-7d3f" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a166-34ba-29cc-4a5a" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="e948-b887-f83d-e0a3" name="Solex generator" publicationId="129d-da97-caec-1ddd" hidden="false" collective="false" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="dbdf-2130-867e-ffee" type="max"/>
</constraints>
<infoLinks>
<infoLink id="77ee-c0b2-caa3-92f9" name="Solex generator" hidden="false" targetId="3c61-6b1f-6945-49dd" type="profile"/>
<infoLink id="1401-5e95-1030-66b6" name="Solex Generator [3.06]" hidden="false" targetId="99d4-4010-e285-3397" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="d0dd-49ca-d930-872d" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="e81d-d125-f14c-1205" name="Storm generator" publicationId="33cf-b4a6-bff0-0d70" hidden="false" collective="false" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="a6e9-ede9-f7f0-552d" type="max"/>
</constraints>
<infoLinks>
<infoLink id="4c7e-55e7-8c7a-311b" name="Storm generator" hidden="false" targetId="fac1-657e-c3b7-e1de" type="profile"/>
<infoLink id="58df-cd5b-7c99-b374" name="Storm Generetor [3.06]" hidden="false" targetId="5a6c-4169-1e85-3b02" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c105-9e94-3833-7a36" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="4f9f-bf12-daca-15ed" name="Trident generator" publicationId="dbca-8d57-b848-457e" hidden="false" collective="false" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="6ce0-fd01-3e6a-e2a1" type="max"/>
</constraints>
<infoLinks>
<infoLink id="59f0-c122-3eff-97a3" name="Trident generator" hidden="false" targetId="9512-f063-fbc2-a039" type="profile"/>
<infoLink id="09a9-9319-cb2e-7341" name="Trident generator [3.06]" hidden="false" targetId="d2ef-9795-16c8-9014" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="74b5-485c-bcf9-8ebf" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="04c9-bf08-c943-86bd" name="Superior Void-Engine" publicationId="908d-6feb-2e9e-843b" hidden="false" collective="true" import="false" type="upgrade">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="79c4-9f0c-c5dc-0d49" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="4878-134e-e1cf-daf3" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<infoLinks>
<infoLink id="af9e-909f-caee-1c2b" name="Superior Void-Engine" hidden="false" targetId="5aa5-a15b-5ffb-2c9f" type="profile"/>
<infoLink id="f98c-7b65-9cb8-2664" name="Superior Void-Engine [3.06]" hidden="false" targetId="ee09-5a15-1ff5-a60d" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="cee5-b795-8fad-bfca" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="e8d8-3cbf-4858-aa61" name="Mirage generator" publicationId="d854-a2d6-3d52-44c4" hidden="false" collective="false" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="19db-207f-e1a3-015f" type="max"/>
</constraints>
<infoLinks>
<infoLink id="78a8-5ffc-2dea-8dda" name="Mirage generator" hidden="false" targetId="0c80-8c19-6348-9a6c" type="profile"/>
<infoLink id="5874-dcc5-2e70-e9f6" name="Mirage generator [3.06]" hidden="false" targetId="8466-6d75-968e-c1e7" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="eabd-f338-81b9-f2c1" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="9827-2131-2316-f0ea" name="Portal generator" publicationId="d854-a2d6-3d52-44c4" hidden="false" collective="false" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="bf3e-9c37-1b98-349d" type="max"/>
</constraints>
<infoLinks>
<infoLink id="dfdc-5b6b-4f22-3f28" name="Portal generator" hidden="false" targetId="bbcb-e6ac-1e89-35d2" type="profile"/>
<infoLink id="db7f-4832-4b14-d1de" name="Portal generator [3.07]" hidden="false" targetId="7934-e919-e869-4ef7" type="rule">
<modifierGroups>
<modifierGroup type="and">
<modifiers>
<modifier type="append" value="(1)" field="name">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="parent" childId="0c85-39c7-9145-efeb" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
<modifier type="append" value="(2)" field="name">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="parent" childId="8901-cc02-f55e-2ee5" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
<modifier type="append" value="(3)" field="name">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="parent" childId="179a-4bc3-c4d4-b5d5" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
<modifier type="append" value="(4)" field="name">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="parent" childId="5935-bcd7-b498-5f40" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
<modifier type="append" value="(8)" field="name">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="parent" childId="967e-22a1-ae69-7b4f" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
</infoLink>
</infoLinks>
<categoryLinks>
<categoryLink id="3db9-a546-4d27-24be" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="b3c7-08d5-6e74-4bbf" name="Magma Cast Generator" publicationId="7b2b-0f56-3962-5ec1" hidden="false" collective="true" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="9c55-1e8c-1492-95fd" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="ea38-0427-1b4a-e0a6" type="max"/>
</constraints>
<infoLinks>
<infoLink id="65f5-7a36-af9f-2e48" name="Magma Cast generator" hidden="false" targetId="0820-8799-3688-c122" type="profile"/>
<infoLink id="0413-171c-3c6e-3725" name="Magma Cast generator [3.06]" hidden="false" targetId="19bc-60bc-f7ef-9877" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="46c1-52b4-3f60-8cb8" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="8d0a-2807-b5a9-aae3" name="Point Defence Shield generator" publicationId="7f09-e243-2307-78d0" hidden="false" collective="false" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="f83a-d09e-467c-8dbe" type="max"/>
</constraints>
<infoLinks>
<infoLink id="ad1f-1be7-12fe-6080" name="Point Defence Shield generator" hidden="false" targetId="bb87-7c6d-9144-497d" type="profile"/>
<infoLink id="f6a9-a716-24c4-650e" name="Point Defence Shield generator [3.07a]" hidden="false" targetId="d79a-6377-a25e-d47f" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="f263-bb17-eb5d-e09a" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="596e-bbf7-4be2-d494" name="Shield generator" publicationId="7f09-e243-2307-78d0" hidden="false" collective="true" import="false" type="upgrade">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="b756-cfa9-4fc5-62ed" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="6192-e897-51ff-1d57" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<infoLinks>
<infoLink id="2355-90ef-cb97-579b" name="Shield generator" hidden="false" targetId="2086-333f-c525-6c88" type="profile"/>
<infoLink id="e4ec-7410-7da0-1c5e" name="Shield generator [3.07a]" hidden="false" targetId="2c2f-ebec-49d2-ae7d" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="cd94-789b-6f75-f8f0" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="63e4-54cd-2af6-ce6c" name="Arc generator" publicationId="e6a1-85d3-8979-7880" hidden="false" collective="true" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="c1fb-5db4-703e-47a2" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="d85a-43cd-bc84-95d8" type="max"/>
</constraints>
<infoLinks>
<infoLink id="b5f7-b2d6-304e-6b10" name="Arc Generator" hidden="false" targetId="0261-b767-cd91-14ae" type="profile"/>
<infoLink id="4905-4610-e708-e419" name="Arc generator [3.07a]" hidden="false" targetId="0bab-bd34-0b75-76b1" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="941a-4b00-aba7-d767" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="1a28-0be4-37ed-6e32" name="Cryo generator" publicationId="e265-8c7f-a4b2-a48e" hidden="false" collective="true" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="21c4-a290-f4a2-d963" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="eab2-9fff-a97e-9d6e" type="max"/>
</constraints>
<infoLinks>
<infoLink id="7eb5-66a7-47f8-8cf1" name="Cryo generator" hidden="false" targetId="a378-c3c3-3095-e066" type="profile"/>
<infoLink id="b602-7f2b-06ec-0ead" name="Cryo generator [3.05]" hidden="false" targetId="90e5-d856-f4d8-b56b" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="6355-23fe-13ad-8578" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="b93b-874d-dc0b-5e44" name="Shockwave generator" publicationId="e265-8c7f-a4b2-a48e" hidden="false" collective="true" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="5811-9993-3dc4-2847" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="f558-af6f-b30e-13ad" type="max"/>
</constraints>
<infoLinks>
<infoLink id="9bad-73ae-39a3-3e71" name="Shockwave generator" hidden="false" targetId="23d6-0ce1-939e-1fff" type="profile"/>
<infoLink id="7824-20cc-6fa1-4d89" name="Shockwave generator [3.05]" hidden="false" targetId="972b-ef54-6903-e553" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="becd-6653-1520-9c5e" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="fcc9-c0ad-7380-b6a2" name="Guardian generator" publicationId="dbca-8d57-b848-457e" hidden="false" collective="true" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="970f-7b7b-5690-875b" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="b183-2607-58bd-fa7d" type="max"/>
</constraints>
<infoLinks>
<infoLink id="cce1-d7cc-908e-5daa" name="Guardian generator" publicationId="7f09-e243-2307-78d0" page="35" hidden="false" targetId="1877-35d1-b915-2b6b" type="profile">
<modifierGroups>
<modifierGroup>
<modifiers>
<modifier type="append" field="name" value="(1)">
<conditions>
<condition field="selections" scope="fcc9-c0ad-7380-b6a2" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="0c85-39c7-9145-efeb" type="instanceOf"/>
</conditions>
</modifier>
<modifier type="append" value="(2)" field="name">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="fcc9-c0ad-7380-b6a2" childId="8901-cc02-f55e-2ee5" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
<modifier type="append" value="(3)" field="name">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="fcc9-c0ad-7380-b6a2" childId="179a-4bc3-c4d4-b5d5" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
<modifier type="append" value="(4)" field="name">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="fcc9-c0ad-7380-b6a2" childId="5935-bcd7-b498-5f40" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
<modifier type="append" value="(8)" field="name">
<conditions>
<condition type="instanceOf" value="1" field="selections" scope="fcc9-c0ad-7380-b6a2" childId="967e-22a1-ae69-7b4f" shared="true" percentValue="false" includeChildSelections="true" includeChildForces="true"/>
</conditions>
</modifier>
</modifiers>
</modifierGroup>
</modifierGroups>
</infoLink>
<infoLink id="8b6f-06aa-99f2-da5f" name="Guardian generator [3.06]" hidden="false" targetId="c8ce-067f-fea8-42b3" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="9bfc-270b-a76b-7673" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="aaa0-4dc5-d12f-fcf9" name="Magnetic generator" publicationId="7f09-e243-2307-78d0" hidden="false" collective="true" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="384f-d696-2b82-0d7b" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="4716-8662-ee08-e74c" type="max"/>
</constraints>
<infoLinks>
<infoLink id="bc4d-78cc-7931-5d2c" name="Magnetic generator" hidden="false" targetId="586f-fde9-3d38-02d0" type="profile"/>
<infoLink id="0ad5-f2da-a32e-ab52" name="Magnetic generator [3.07a]" hidden="false" targetId="b4ba-a474-4872-aa00" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="93cf-dc27-617a-4c56" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="33c4-9a5e-db6d-b083" name="Trident generator" publicationId="dbca-8d57-b848-457e" hidden="false" collective="true" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="373e-4d96-9d2d-3c0d" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="f365-f661-acb8-ec2c" type="max"/>
</constraints>
<infoLinks>
<infoLink id="0b98-130c-0bc8-a532" name="Trident generator" hidden="false" targetId="9512-f063-fbc2-a039" type="profile"/>
<infoLink id="2d0f-c75d-85a3-79df" name="Trident generator [3.06]" hidden="false" targetId="d2ef-9795-16c8-9014" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="de22-4921-5f4d-e57c" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="2c4c-0057-e9cb-3122" name="Ivaldi Shroud generator" publicationId="7f09-e243-2307-78d0" page="35" hidden="false" collective="true" import="false" type="upgrade">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="6581-858f-31e8-1e22" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="9794-719f-ecfc-87ca" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<infoLinks>
<infoLink id="f3e3-36a2-bf74-eeff" name="Shroud generator" hidden="false" targetId="1873-22df-b3ba-49db" type="profile">
<modifiers>
<modifier type="set" field="name" value="Ivaldi Shround Generetor"/>
</modifiers>
</infoLink>
<infoLink id="dfb3-c690-5da9-3293" name="Ivaldi Shroud generator [3.06]" hidden="false" targetId="0b05-45a3-00b2-82b2" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="0f5b-8c3d-6e26-5286" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="9a69-c020-577f-5b8d" name="Francisco Solex Projector" publicationId="129d-da97-caec-1ddd" hidden="false" collective="true" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="adea-bf9f-58f3-2386" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="2de5-2ef7-840a-d917" type="max"/>
</constraints>
<infoLinks>
<infoLink id="a5e1-107d-7479-46ec" name="Francisco Solex Projector" hidden="false" targetId="8c3f-4f6f-fa61-5283" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5999-9bf4-9bb8-8bbd" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="8002-0fb8-db95-1b71" name="Sentinel Generators" publicationId="e6a1-85d3-8979-7880" hidden="false" collective="false" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="5148-3631-1b47-e217" type="max"/>
</constraints>
<infoLinks>
<infoLink id="c416-6c95-0ae7-89eb" name="Sentinel generator" hidden="false" targetId="49af-b56f-ee26-fc6a" type="profile"/>
<infoLink id="d71e-a19f-8a51-80d3" name="Sentinel Generators [3.07a]" hidden="false" targetId="ba9d-4be6-4150-0054" type="rule"/>
</infoLinks>
<costs>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="d0e6-f9ac-010c-f5ee" name="Sentinel Generators" publicationId="e6a1-85d3-8979-7880" hidden="false" collective="true" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="9645-179e-6d98-01b3" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="1be0-f6d6-c5b8-c1f0" type="max"/>
</constraints>
<infoLinks>
<infoLink id="99ff-350a-5bc9-142e" name="Sentinel generator" hidden="false" targetId="49af-b56f-ee26-fc6a" type="profile"/>
<infoLink id="bfe7-6463-62f2-07b9" name="Sentinel Generators [3.07a]" hidden="false" targetId="ba9d-4be6-4150-0054" type="rule"/>
</infoLinks>
<costs>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="7e0d-13ec-6f29-f7f5" name="Storm generator" publicationId="33cf-b4a6-bff0-0d70" hidden="false" collective="true" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="501b-d479-565c-543c" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="6348-3bc6-2ef2-7c39" type="max"/>
</constraints>
<infoLinks>
<infoLink id="6d4a-3d16-dbd5-5e93" name="Storm generator" hidden="false" targetId="fac1-657e-c3b7-e1de" type="profile"/>
<infoLink id="4662-b3b0-5f24-af7c" name="Storm Generetor [3.06]" hidden="false" targetId="5a6c-4169-1e85-3b02" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="cc69-17fe-67-1627" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="true"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="4945-f63e-d042-2b72" name="Gisela Shield Projector" publicationId="33cf-b4a6-bff0-0d70" hidden="false" collective="true" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d133-d3cc-9a3e-1b4" type="min"/>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="74d5-fddb-f988-58d6" type="max"/>
</constraints>
<infoLinks>
<infoLink id="4bd6-adec-77bf-2c4f" name="Gisela Shield Projector" hidden="false" targetId="4d64-56c4-521d-cbbe" type="profile"/>
<infoLink id="a039-1b47-39aa-dadf" name="Gisela Shield Projector [3.06]" hidden="false" targetId="2397-3c39-eda1-c586" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c0fb-3d1-5380-b00a" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="5f77-65e4-62cc-6904" name="Null-Clone generator" publicationId="908d-6feb-2e9e-843b" hidden="false" collective="false" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="ab96-6bf7-b0e3-67a2" type="max"/>
</constraints>
<infoLinks>
<infoLink id="3793-afd8-38a3-5a9e" name="Null generator" hidden="false" targetId="2543-507b-1a7b-8c8e" type="profile"/>
<infoLink id="dbe7-f82c-ea30-2be2" name="Null-Clone generator [3.06]" hidden="false" targetId="5d2c-346f-ccb2-645b" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="4e6f-c29f-63f4-b3b8" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="bfb0-8abd-8d46-0e7b" name="Cai Xin Tower generator" hidden="false" collective="true" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="c4e5-f0c3-b99b-95af" type="max"/>
</constraints>
<infoLinks>
<infoLink id="7414-7d65-150a-a5ea" name="Shield generator" hidden="false" targetId="2086-333f-c525-6c88" type="profile">
<modifiers>
<modifier type="set" value="Cai Xin Tower generator" field="name"/>
</modifiers>
</infoLink>
<infoLink name="Cai Xin Tower generator [3.06]" id="5681-bae3-ca86-24e" hidden="false" targetId="f954-7ce4-75b9-244" type="rule"/>
</infoLinks>
<costs>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="22a5-9891-aeb-62d6" name="Chang’an Tower generator" publicationId="7b2b-0f56-3962-5ec1" hidden="false" collective="true" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="53ec-7df2-9e50-769d" type="max"/>
</constraints>
<infoLinks>
<infoLink id="1e3e-d348-2a37-9169" name="Shield generator" hidden="false" targetId="2086-333f-c525-6c88" type="profile">
<modifiers>
<modifier type="set" value="Chang’an Tower generator" field="name"/>
</modifiers>
</infoLink>
<infoLink id="f981-b30a-6ac6-ee45" name="Chang’an Tower generator [3.06]" hidden="false" targetId="75d-7475-8d9e-5e8b" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="7ef4-43f2-3901-236" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="c297-247d-fc19-f4dc" name="Fury generator" publicationId="7f09-e243-2307-78d0" hidden="false" collective="true" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="aa3a-4180-11e3-9e91" type="min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="43b2-ed4f-37c4-82be" includeChildSelections="false"/>
</constraints>
<infoLinks>
<infoLink id="6f15-6716-49e0-68d5" name="Fury generator" hidden="false" targetId="87f0-a822-7ea9-7287" type="profile"/>
<infoLink id="bbf8-a09d-5007-4930" name="Fury generator [3.07a]" hidden="false" targetId="f743-5a58-7d27-2ceb" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5661-4cdc-5778-35c" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="5563-8c4b-2e19-2fe2" name="Shroud generator" publicationId="7f09-e243-2307-78d0" page="35" hidden="false" collective="true" import="false" type="upgrade">
<constraints>
<constraint type="min" value="1" field="selections" scope="parent" shared="true" id="63c2-50b1-bdc-74c4" includeChildSelections="false"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="9297-df44-83bd-da39" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<infoLinks>
<infoLink id="bc7e-f992-a1c5-5f36" name="Shroud generator" hidden="false" targetId="1873-22df-b3ba-49db" type="profile"/>
<infoLink id="cae0-4370-d587-ae89" name="Shroud generator [3.07a]" hidden="false" targetId="ef22-2b56-207c-7d3f" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="be9f-8e81-a744-4261" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="1db6-5a63-6d84-e39b" name="Solex generator" publicationId="129d-da97-caec-1ddd" hidden="false" collective="true" import="false" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="false" includeChildSelections="false" includeChildForces="false" id="8963-cfc0-c509-c028" type="min"/>
<constraint type="max" value="1" field="selections" scope="parent" shared="false" id="3755-23f0-b6dc-1134" percentValue="false" includeChildSelections="false" includeChildForces="false"/>
</constraints>
<infoLinks>
<infoLink id="8e94-9597-8f5-6fe6" name="Solex generator" hidden="false" targetId="3c61-6b1f-6945-49dd" type="profile"/>
<infoLink id="ee81-f3cf-601-dad2" name="Solex Generator [3.06]" hidden="false" targetId="99d4-4010-e285-3397" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="5212-616c-ff9c-7d30" name="Generator" hidden="false" targetId="25b9-7f26-cbd9-e68f" primary="false"/>
</categoryLinks>
<costs>
<cost name="Points" typeId="7c9b-6b09-b5ac-2249" value="0"/>
<cost name="Victory Points" typeId="426e-670d-6ddd-9631" value="0"/>
</costs>
</selectionEntry>
</sharedSelectionEntries>
<sharedRules>
<rule id="0bab-bd34-0b75-76b1" name="Arc generator [3.07a]" publicationId="e6a1-85d3-8979-7880" hidden="false">
<description>This Generator provides +2 to the Model’s Speed Attribute. This Generator may be used in the Shooting Phase with a 360-degree Line of Sight to make an Attack against an Initial Target within 20” using the Lightning Strike weapon profile. The Attack ignores Shield Generators and Shroud Generators. A Model that uses its Arc Generator to make an Attack gains a level of Disorder. Generators listed on a Unit’s profile may not be removed or replaced unless specified.</description>
<modifiers>
<modifier type="set" value="Arc generator" field="name"/>
</modifiers>
</rule>
<rule id="3fe1-73f5-bc98-7db7" name="Atomic generator [3.07a]" publicationId="7f09-e243-2307-78d0" hidden="false">
<description>The Model adds +2 to its Speed Attribute and +2 to its Turn Limit. The Model suffers an additional Point of Damage whenever it suffers a Catastrophic Explosion caused by receiving a duplicate Reactor Leak Critical Damage Marker. Generators listed on a Unit’s profile may not be removed or replaced unless specified.</description>
<modifiers>
<modifier type="set" value="Atomic generator" field="name"/>
</modifiers>
</rule>
<rule id="8a3a-28b1-dc83-dfca" name="Callimachus Chrono-Lathe [3.06]" publicationId="5a03-1c6f-8fc8-2be1" hidden="false">
<description>During the Special Operations Step of this Unit’s Activation, it may use its Callimachus Chrono-Lathe to immediately remove a point of damage from each Battle-Ready Model in single Unit within 15”. You may remove additional points from the same Unit during the Activation, but you must discard a card from your hand each time an additional point is removed from all the Models in the Unit. Furthermore, as a Valour Effect during this Unit’s Reserves Step, the device may be used to immediately bring a Unit from Reserve and deploy them within 3” of this Unit. The Unit brought from Reserve immediately receives the Hazard Condition but may Activate as normal this Round. This device is unaffected by Generator Offline Critical Damage.</description>
<modifiers>
<modifier type="set" value="Cai Xin Tower generator" field="name"/>
</modifiers>
</rule>
<rule id="a94e-7233-0f8b-6e68" name="Chrono generetor [3.07]" publicationId="908d-6feb-2e9e-843b" hidden="false">
<description>When a Unit with one or more Chrono Generators Activates, roll an Action die and apply the result to the Unit. You may choose to continue to roll dice and apply cumulative results, once for each Chrono Generator in the Unit.
- Exploding Hit: Choose one of the below results and apply.
- Critical Hit: Remove a single point of damage from every Model in the Unit.
- Hit: The Unit gains +1 to its Speed and Fray for the duration of the Activation.
- Any Counter: The Unit gains +2 to a single Action Dice Pool this Activation.
- Blank: The Unit gains a Level of Disorder.</description>
<modifiers>
<modifier type="set" value="Chang’an Tower generator" field="name"/>
</modifiers>
</rule>
<rule id="90e5-d856-f4d8-b56b" name="Cryo generator [3.05]" publicationId="e265-8c7f-a4b2-a48e" hidden="false">
<description>This Generator may be used in the Shooting Phase to fire a Cryogenic Blast at a Target Model with a 360-degree Fire Arc. Alternatively, the controlling player of this Model rolls an Action Die. On a result of an
- Exploding Hit, you may place a 2" long Mass 2 Iceberg Obstacle within 25" of this Model.
- Hit or Heavy Hit, place a 1" Mass 1 Iceberg Obstacle within 20" of this Model.
- Counter or Heavy Counter place a 1" Mass 1 Iceberg Obstacle within 15" of this Model.
- Blank, no Iceberg forms.
Iceberg Obstacles may not be placed within 5” of an Enemy Model. Cryogenic Blasts and Iceberg Obstacles cannot cause damage to Aerial Units.</description>
<modifiers>
<modifier type="set" value="Cryo generator" field="name"/>
</modifiers>
</rule>
<rule id="09b1-d883-924a-e86a" name="Diophantus Chaos-Orb [3.07]" publicationId="908d-6feb-2e9e-843b" hidden="false">
<description>In the Special Operations Step of the Operations Phase, all Enemy Models within 5” of this Model receive the Shredded Defences Critical Damage Marker unless they already have it. During the Special Operations Step of this Unit’s Activation, it may use its Diophantus Chaos-Orb to draw three Victory and Valour Cards, examine them, discard two and keep one to add to the Player’s hand for the Round. Then, during the End Phase, the player must discard a card of their choice from their hand. Furthermore, as a Valour Effect in the Shooting Step, the player may use the device as a Heavy Particle Cannon with a 360 Fire Arc. The Heavy Particle Cannon may also trigger its own Valour Effect in the same Step. A Model may not be Wavelurking while using a Diophantus Chaos-Orb. This device is unaffected by Generator Shutdown Critical Damage.</description>
<modifiers>
<modifier type="set" value="Chrono generetor" field="name"/>
</modifiers>
</rule>
<rule id="f743-5a58-7d27-2ceb" name="Fury generator [3.07a]" publicationId="7f09-e243-2307-78d0" hidden="false">
<description>This Generator gives the Model +1 to its Speed Attribute and +4 to its Fray Attribute. Generators listed on a Unit’s profile may not be removed or replaced unless specified.</description>
<modifiers>
<modifier type="set" value="Fury generator" field="name"/>
</modifiers>
</rule>
<rule id="aac8-fdce-2f53-815a" name="Great Wall generator [3.06]" publicationId="7b2b-0f56-3962-5ec1" hidden="false">
<description>This Generator cannot be used against Ramming, Assaults or Attacks with the Bomb or Submerged Qualities. If a friendly Model within 7” of a Model with a Great Wall Generator, then it is considered to be Protected by that Great Wall Generator. Each additional Great Wall Generator in the Unit increases the range by +3” Models in a Unit where one or more Models has a Great Wall Generator are also considered to be Protected. When the Initial Target of an Attack, a Protected Model can affect a number of Exploding Hit results in the Attack Action Die Pool up to its Mass value. The affected Exploding Hit do not generate additional Action Dice. Generators listed on a Unit’s profile may not be removed or replaced unless specified.</description>
<modifiers>
<modifier type="set" value="Great Wall generator" field="name"/>
</modifiers>
</rule>
<rule id="c8ce-067f-fea8-42b3" name="Guardian generator [3.06]" publicationId="dbca-8d57-b848-457e" hidden="false">
<description>A Model may have Multiple Guardian Generators. Once per Round, at the start of the Activation Phase before either Player Activates a Unit, the Player(s) add up each Friendly Guardian Generator in Play. Each Friendly Guardian Generator adds points to form a Guardian Points Pool. Models that have the Generator Shutdown Critical Damage Marker at the start of the Activation Phase are ignored and do not contribute to the pool. The number of Guardian Points contributed is indicated as number next to this rule. When any Friendly Model with a Guardian Generator is declared the target of an Attack, before the Attack is rolled, declare how many Guardian Points from the Guardian Points Pool will be used. These Points are deducted from the Pool for the Round. For each Point spent, remove a single die from the Attack Dice Pool. The Guardian Points Pool cannot be used against Ramming or attacks with the Arc, Bomb or Submerged Qualities. Models with a Generator Shutdown Critical Marker cannot use any dice from the Guardian Points Pool during the Round. Unspent Guardian Points are lost in the Maintenance Step of the End Phase.</description>
<modifiers>
<modifier type="set" value="Guardian generator" field="name"/>
</modifiers>
</rule>
<rule id="3856-32b4-29d7-c738" name="Interphase generator [3.06]" publicationId="7b2b-0f56-3962-5ec1" hidden="false">
<description>At the start of the Maintenance Step of the End Phase, any Unit may become an Interphased Unit where every Model has an online Interphase Generator. An Interphased Unit is removed from the Play Area, placed into Reserves, and a 50mm Interphase Marker is placed in the position of any one Model in this Unit. In subsequent Rounds, Interphased Units must be the first Units Activated in a Force. When an Interphased Unit is Activated, it is immediately deployed, and must be placed within 20” of any Interphase Marker in the Play Area. Each time this happens you must remove the Interphase Marker you choose to deploy within 20” of. No Model in this Unit can be deployed touching another Model. When an Interphased Unit is deployed it uses the Crippled profile of their weapons and Fray for that Round. Interphased Units and may not make Special Operations Actions or Ramming Actions.</description>
<modifiers>
<modifier type="set" value="Interphase generator" field="name"/>
</modifiers>
</rule>
<rule id="9704-6693-8202-319a" name="Langsan generator [3.06]" publicationId="33cf-b4a6-bff0-0d70" hidden="false">
<description>In the Shooting Phase, a Model with this Generator may make an Attack against an enemy Unit within 10”. Roll an Action die. On a Counter or Heavy Counter result, the target Unit’s Speed is reduced for its next Activation by 3 to a minimum of 1. On a Hit or Heavy Hit result, the Unit is affect as outlined previously and each Model in the Unit also suffers a point of damage. On an Exploding Hit result the Unit is unaffected and instead the closest target Model suffers a Catastrophic Explosion.</description>
<modifiers>
<modifier type="set" value="Langsan generator" field="name"/>
</modifiers>
</rule>