summaryrefslogtreecommitdiffhomepage
path: root/data/shatter/Campaigns/02/campaign.def
blob: 3e4eae8bbbe9bd6606757d15485b9de2bf8c7b58 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
CAMPAIGN

name: "Operation Highland"

desc:
   "The Independent System of Solus is in danger of being destroyed "
   "by civil war.  Dantari Separatists seeking to join the Hegemony "
   "Prefecture of Renser have gained control of much of the Solus "
   "Star Fleet.  The Loyalist faction has requested military aid from "
   "the Terellian Alliance.  A Force:Space task force has been dispatched "
   "to break the blockade, evacuate Alliance citizens from Solus, and "
   "stabilize the military situation."

situation:
   "\tThe Independent System of Solus has requested military "
   "assistance from Terellian Alliance Force:Command.  "
   "Dantari Separatists seeking to join the Hegemony "
   "Prefecture of Renser have gained control of much of the Solus "
   "Star Fleet and have established a blockade around the Trellis "
   "Gate.  The Loyalist forces and many Alliance civilians have been "
   "trapped on the inner planets of the system.\n\n"

   "\tForce:Intel believes that the Separatists are being backed "
   "with military support from the Prefecture of Renser, a Hegemony "
   "border system.  All Force:Space units are instructed to be on "
   "the lookout for any Hegemony involvement in this conflict.\n"

orders:
   "\t* Protect civilian and allied assets in the Independent System of Solus.\n"
   "\t* Break the Separatist blockade of the inner planets.\n"
   "\t* Apprehend or destroy military units of the Dantari Separatists.\n"
   "\t* Determine the extent of Hegemony involvement in this conflict.\n"

combatant: {
   name:    "Terellian Alliance",
   group:   { type: carrier_group,      id:    6 },
   group:   { type: destroyer_squadron, id:   43 },
   group:   { type: destroyer_squadron, id:   60 },
   group:   { type: freight,            id: 3000 },
}

combatant: {
   name:    "Dantari Separatists",
   group:   { type: fleet,              id: 1    },
   group:   { type: battalion,          id: 1    },
   group:   { type: battalion,          id: 2    },
   group:   { type: war_production,     id: 1    },
   group:   { type: freight,            id: 3000 },
}

combatant: {
   name:    "Marakan Hegemony",
   group:   { type: fleet,              id: 4    },
}

combatant: {
   name:    "Independent System of Solus",
   group:   { type: infrastructure,     id: 2000 },
   group:   { type: transport,          id: 2100 },
   group:   { type: civilian,           id: 2200 },
   group:   { type: freight,            id: 3000 },
   group:   { type: civilian,           id: 5000 },
}

action: {
   id:      0,
   type:    event,
   subtype: campaign_start,
   team:    1,
   rgn:     Solus,
   text:    "Solus Directorate Requests Aid",
   source:  News,
   file:    "Actions/01-campaign-start.txt",
   image:   "Actions/01-campaign-start.pcx"
   scene:   "Scenes/01-News-Start.def"
}

action: {
   id:         1,
   type:       zone,
   team:       1,
   asset_type: carrier_group,
   asset_id:   6,
   region:     Trellis,
   image:      "Actions/AA-archon-trellis.pcx"
}

action: {
   id:         2,
   type:       zone,
   team:       1,
   asset_type: destroyer_squadron,
   asset_id:   60,
   region:     Trellis,
   image:      "Actions/AA-gerrond-trellis.pcx"
}

action: {
   id:         50,
   type:       zone,
   team:       2,
   asset_type: carrier_group,
   asset_id:   5,
   region:     Jalah,
}

action: {
   id:         51,
   type:       zone,
   team:       2,
   asset_type: destroyer_squadron,
   asset_id:   5,
   region:     Jalah,
}

action: {
   id:         52,
   type:       zone,
   team:       2,
   asset_type: destroyer_squadron,
   asset_id:   6,
   region:     Trellis,
}

action: {
   id:         53,
   type:       zone,
   team:       2,
   asset_type: destroyer_squadron,
   asset_id:   7,
   region:     Meridian,
}

action: {
   id:         60
   type:       event
   subtype:    story
   team:       1
   rgn:        Loris
   after:      "01/15:00:00"
   text:       "Catching Up With You..."
   source:     Mail
   file:       "Actions/m1-catching-up.txt"
   image:      "Actions/m0-mail-icon.pcx"
   scene:      "Scenes/M1-Catching-Up.def"
}


action: {
   id:         110,
   type:       intel,
   subtype:    known,
   team:       2,
   rgn:        Trellis,
   asset_type: minefield,
   asset_id:   4,

   req: { c1: "Dantari Separatists", group_type: minefield, group_id: 1, comp: LT, score: 10 },
}

action: {
   id:         120,
   type:       intel,
   subtype:    known,
   team:       2,
   rgn:        Trellis,
   asset_type: minefield,
   asset_id:   5,

   req: { c1: "Dantari Separatists", group_type: minefield, group_id: 2, comp: LT, score: 10 },
}


action: {
   id:         130,
   type:       event,
   subtype:    story,
   team:       1,
   rgn:        Solus,
   after:      "02/05:00:00",
   text:       "Coup Attempt Fails",
   source:     News,
   file:       "Actions/02-coup-failure.txt",
   image:      "Actions/02-coup-failure.pcx",
   scene:      "Scenes/02-Coup-Failure.def"
}

action: {
   id:         140,
   type:       event,
   subtype:    attack,
   team:       1,
   rgn:        Trellis,
   text:       "Minefield A Cleared",
   file:       "Actions/03a-minefield-a.txt",
   source:     TACNET,
   after:      "02/09:00:00",
   before:     "03/09:00:00",

   req: { c1: "Dantari Separatists", group_type: minefield, group_id: 1, comp: GT, score: 10 },

   target_type: minefield,
   target_id:   1,
   target_iff:  2,
   target_kill: "Minefield A",
   target_kill: "Minefield A",
   target_kill: "Minefield A",
   target_kill: "Minefield A",
   target_kill: "Minefield A",
   target_kill: "Minefield A",
}

action: {
   id:         150,
   type:       event,
   subtype:    attack,
   team:       1,
   rgn:        Trellis,
   text:       "Minefield B Cleared",
   file:       "Actions/03a-minefield-b.txt",
   source:     TACNET,
   after:      "02/13:30:00",
   before:     "03/13:30:00",

   req: { c1: "Dantari Separatists", group_type: minefield, group_id: 2, comp: GT, score: 10 },

   target_type: minefield,
   target_id:   2,
   target_iff:  2,
   target_kill: "Minefield B",
   target_kill: "Minefield B",
   target_kill: "Minefield B",
   target_kill: "Minefield B",
   target_kill: "Minefield B",
   target_kill: "Minefield B",
}

action: {
   id:         160,
   type:       event,
   subtype:    attack,
   team:       1,
   rgn:        Trellis,
   text:       "Minefield C Cleared",
   file:       "Actions/03a-minefield-c.txt",
   source:     TACNET,
   after:      "02/19:20:00",
   before:     "03/19:20:00",

   req: { c1: "Dantari Separatists", group_type: minefield, group_id: 3, comp: GT, score: 10 },

   target_type: minefield,
   target_id:   3,
   target_iff:  2,
   target_kill: "Minefield C",
   target_kill: "Minefield C",
   target_kill: "Minefield C",
   target_kill: "Minefield C",
   target_kill: "Minefield C",
   target_kill: "Minefield C",
}

action: {
   id:         170,
   type:       event,
   subtype:    attack,
   team:       1,
   rgn:        Trellis,
   text:       "Minefield D Cleared",
   file:       "Actions/03a-minefield-d.txt",
   source:     TACNET,
   after:      "03/00:45:00",
   before:     "04/00:45:00",

   req: { c1: "Dantari Separatists", group_type: minefield, group_id: 4, comp: GT, score: 10 },

   target_type: minefield,
   target_id:   4,
   target_iff:  2,
   target_kill: "Minefield D",
   target_kill: "Minefield D",
   target_kill: "Minefield D",
   target_kill: "Minefield D",
   target_kill: "Minefield D",
   target_kill: "Minefield D",
}

action: {
   id:         180,
   type:       event,
   subtype:    attack,
   team:       1,
   rgn:        Trellis,
   text:       "Minefield E Cleared",
   file:       "Actions/03a-minefield-e.txt",
   source:     TACNET,
   after:      "03/08:30:00",
   before:     "04/08:30:00",

   req: { c1: "Dantari Separatists", group_type: minefield, group_id: 5, comp: GT, score: 10 },

   target_type: minefield,
   target_id:   5,
   target_iff:  2,
   target_kill: "Minefield E",
   target_kill: "Minefield E",
   target_kill: "Minefield E",
   target_kill: "Minefield E",
   target_kill: "Minefield E",
   target_kill: "Minefield E",
}

action: {
   id:         190
   type:       event
   subtype:    story
   team:       1,
   rgn:        Jarnell
   after:      "03/18:00:00"
   text:       "New Digs"
   source:     Mail
   file:       "Actions/m2-new-digs.txt"
   image:      "Actions/m0-mail-icon.pcx"
   scene:      "Scenes/M2-New-Digs.def"
}

action: {
   id:         200,
   type:       event,
   subtype:    story,
   team:       1,
   rgn:        Solus,
   text:       "Blockade Broken",
   source:     News,
   file:       "Actions/03-blockade-broken.txt",
   image:      "Actions/03-blockade-broken.pcx",
   scene:      "Scenes/03-Blockade-Broken.def",

   req: { c1: "Dantari Separatists", group_type: minefield, group_id: 1, comp: LT, score: 10 },
   req: { c1: "Dantari Separatists", group_type: minefield, group_id: 2, comp: LT, score: 10 },
   req: { c1: "Dantari Separatists", group_type: minefield, group_id: 3, comp: LT, score: 10 },
   req: { c1: "Dantari Separatists", group_type: minefield, group_id: 4, comp: LT, score: 10 },
   req: { c1: "Dantari Separatists", group_type: minefield, group_id: 5, comp: LT, score: 10 },
}

action: {
   id:         210,
   type:       sitrep,
   team:       1,
   text:
   "\tThe Separatist blockade of the Trellis farcaster has been broken, "
   "and Phase One of Operation Highland has been successfully concluded.  "
   "The minefields in Trellis Sector have been cleared, and mobile "
   "Separatist forces patrolling the region are beginning to withdraw.\n\n"

   "\tWe are now in Phase Two of the Operation - delivering humanitarian aid "
   "and securing the inner worlds.  Force:Command has authorized emergency "
   "freight runs, and we will be escorting those civilian ships for the next "
   "few days.\n",

   req: { action: 200, status: COMPLETE }
}


action: {
   id:         230,
   type:       intel,
   subtype:    known,
   team:       1,
   rgn:        Trellis,
   asset_type: freight,
   asset_id:   3000,

   req: { action: 200, status: COMPLETE }
}

action: {
   id:         240,
   type:       orders,
   team:       1,
   text:
   "\t* Protect civilian and allied assets in the Independent System of Solus.\n"
   "\t* Support the delivery of humanitarian aid to the inner planets.\n"
   "\t* Apprehend or destroy military units of the Dantari Separatists.\n"
   "\t* Determine the extent of Hegemony involvement in this conflict.\n",

   req: { action: 200, status: COMPLETE }
}

action: {
   id:         250,
   type:       mission,
   subtype:    escort_freight,
   team:       1,
   rgn:        Trellis,
   asset_type: fighter_squadron,
   asset_id:   36,
   count:      4,

   req: { action: 200, status: COMPLETE }
}

action: {
   id:         255,
   type:       mission,
   subtype:    escort_freight,
   team:       1,
   rgn:        Trellis,
   asset_type: destroyer_squadron,
   asset_id:   43,
   count:      2,

   req: { action: 200, status: COMPLETE }
}

action: {
   id:         260,
   type:       event,
   subtype:    story,
   team:       1,
   rgn:        Solus,
   after:      "03/09:15:00",
   text:       "Harmony Station at Risk",
   source:     SECURE,
   file:       "Actions/04-harmony-risk.txt",
   image:      "Actions/04-harmony-risk.pcx",
   scene:      "Scenes/04-Harmony-Risk.def",
}

action: {
   id:         270,
   type:       zone,
   team:       1,
   after:      "03/19:00:00",
   asset_type: carrier_group,
   asset_id:   6,
   region:     Solus,
   image:      "Actions/AA-archon-solus.pcx"
}

action: {
   id:         280,
   type:       zone,
   team:       1,
   after:      "03/19:30:00",
   asset_type: destroyer_squadron,
   asset_id:   60,
   region:     Solus,
   image:      "Actions/AA-gerrond-solus.pcx"
}

action: {
   id:         300,
   type:       event,
   subtype:    story,
   team:       1,
   rgn:        Solus,
   after:      "04/04:00:00",
   text:       "Renser Fleet Buildup",
   source:     FORCOM,
   file:       "Actions/06-renser-buildup.txt",
   image:      "Actions/06-renser-buildup.pcx",
   scene:      "Scenes/06-Renser-Buildup.def"
}

action: {
   id:         305,
   type:       sitrep,
   team:       1,
   after:      "04/04:00:00",
   text:
   "\tIn response to recent setbacks to Separatist forces, the Prefecture of Renser "
   "is mobilizing their Fourth Fleet.  They are expected to reach "
   "the Solus system within 40 hours.  They claim that the fleet "
   "will be used for peace keeping operations, but with the high "
   "tensions in the area, Force:Intel believes that they will use "
   "our presence as an excuse to attack.\n\n"

   "\tForce:Command needs us to redouble our efforts to protect "
   "the civilian population and make a decisive strike against "
   "the Separatist forces before the Hegemony fleet arrives.  "
   "Clearly, we have a lot of work to do in the next 20 to 40 hours.\n",
}

// if player stumbles upon the base before expected:
action: {
   id:         310,
   type:       event,
   subtype:    story,
   team:       1,
   rgn:        Telmera,
   before:     "04/08:20:00",
   text:       "Separatist Base Discovered",
   source:     SECURE,
   file:       "Actions/05-foothill-ridge.txt",
   image:      "Actions/05-foothill-ridge.pcx",
   scene:      "Scenes/05-Foothill-Ridge.def",

   req: { c1: "Dantari Separatists", group_type: battalion, group_id: 2, comp: GT, intel: SECRET },
}

action: {
   id:         315,
   type:       intel,
   subtype:    known,
   team:       2,
   rgn:        Telmera,
   after:      "04/08:20:00",
   asset_type: intercept_squadron,
   asset_id:   3,
}

action: {
   id:         320,
   type:       intel,
   subtype:    known,
   team:       2,
   rgn:        Telmera,
   after:      "04/08:30:00",
   asset_type: attack_squadron,
   asset_id:   4,
}

action: {
   id:         325,
   type:       intel,
   subtype:    known,
   team:       2,
   rgn:        Telmera,
   after:      "04/08:30:00",
   asset_type: battery,
   asset_id:   1,
}

action: {
   id:         330,
   type:       event,
   subtype:    story,
   team:       1,
   rgn:        Telmera,
   after:      "04/08:30:00",
   text:       "Separatist Base Discovered",
   source:     SECURE,
   file:       "Actions/05-foothill-ridge.txt",
   image:      "Actions/05-foothill-ridge.pcx",
   scene:      "Scenes/05-Foothill-Ridge.def",

   req: { action: 310, status: COMPLETE, not: true }
}

action: {
   id:         350,
   type:       event,
   subtype:    story,
   team:       1,
   rgn:        Meridian,
   after:      "04/15:00:00",
   text:       "Research Lab Isolated",
   source:     News,
   file:       "Actions/07-research-lab.txt",
   image:      "Actions/07-research-lab.pcx",
   scene:      "Scenes/07-Research-Lab.def"
}

action: {
   id:         370,
   type:       zone,
   team:       1,
   after:      "04/16:30:00",
   asset_type: destroyer_squadron,
   asset_id:   60,
   region:     Meridian,
   image:      "Actions/AA-gerrond-meridian.pcx"
}

action: {
   id:         375,
   type:       event,
   subtype:    story,
   team:       1,
   rgn:        Solus,
   after:      "04/20:00:00",
   text:       "Renser Accuses Alliance",
   source:     News,
   file:       "Actions/08-renser-accusation.txt",
   image:      "Actions/08-renser-accusation.pcx",
   scene:      "Scenes/08-Renser-Accusation.def"
}

action: {
   id:         410,
   type:       event,
   subtype:    story,
   team:       1,
   rgn:        Solus,
   after:      "05/12:00:00",
   text:       "Senate Resolution Passes",
   source:     News,
   file:       "Actions/09-senate-resolution.txt",
   image:      "Actions/09-senate-resolution.pcx",
   scene:      "Scenes/09-Senate-Resolution.def"
}

// RENSER TASK FORCE ARRIVES IN SOLUS (JALAH SECTOR)

action: {
   id:         420,
   type:       intel,
   subtype:    known,
   team:       2,
   rgn:        Jalah,
   after:      "06/21:15:00",
   asset_type: destroyer_squadron,
   asset_id:   25,
}

action: {
   id:         421,
   type:       intel,
   subtype:    known,
   team:       2,
   rgn:        Jalah,
   after:      "06/22:45:00",
   asset_type: destroyer_squadron,
   asset_id:   26,
}

action: {
   id:         422,
   type:       intel,
   subtype:    known,
   team:       2,
   rgn:        Jalah,
   after:      "06/23:30:00",
   asset_type: carrier_group,
   asset_id:   4,
}

// KEEP RENSER TASK FORCE IN JALAH SECTOR

action: {
   id:         425,
   type:       zone,
   team:       2,
   rgn:        Jalah,
   after:      "06/21:15:00",
   asset_type: destroyer_squadron,
   asset_id:   25,
}

action: {
   id:         426,
   type:       zone,
   team:       2,
   rgn:        Jalah,
   after:      "06/22:45:00",
   asset_type: destroyer_squadron,
   asset_id:   26,
}

action: {
   id:         427,
   type:       zone,
   team:       2,
   rgn:        Jalah,
   after:      "06/23:30:00",
   asset_type: carrier_group,
   asset_id:   4,
}

action: {
   id:         440,
   type:       event,
   subtype:    story,
   team:       1,
   rgn:        Jalah,
   after:      "06/23:45:00",
   text:       "Hegemony Task Force TF4.3",
   source:     FORCOM,
   file:       "Actions/10-renser-arrival.txt",
   image:      "Actions/10-renser-arrival.pcx",
}

action: {
   id:         450,
   type:       sitrep,
   team:       1,
   after:      "06/23:45:00",
   text:
   "\tForce:Command reports that task force TF4.3 from the Hegemony Fourth Fleet 'Manticore' "
   "has successfuly translated in system.  The task force is currently in Jalah orbit, and "
   "we expect them to remain in that sector at least until tomorrow.\n\n"

   "\tThere is still plenty of civilian traffic in the system, and several Dantari groups are "
   "still ready and willing to fight.  We need "
   "all Force:Space units to give their best effort in protecting these "
   "people and until we can restore the peace.\n"
}

action: {
   id:         455,
   type:       orders,
   team:       1,
   after:      "06/23:45:00",
   text:
   "\t* Protect civilian and allied assets in the Independent System of Solus.\n"
   "\t* Apprehend or destroy military units of the Dantari Separatists.\n"
   "\t* Prevent Hegemony units from striking Solusan or allied assets.\n"
}

// DANTARI FORCES FALL BACK TO JALAH TO REGROUP WITH RENSER TASK FORCE

action: {
   id:         500,
   type:       zone,
   team:       2,
   after:      "07/18:00:00",
   asset_type: carrier_group,
   asset_id:   5,
   region:     Jalah,
}

action: {
   id:         501,
   type:       zone,
   team:       2,
   after:      "07/20:00:00",
   asset_type: destroyer_squadron,
   asset_id:   5,
   region:     Jalah,
}

action: {
   id:         502,
   type:       zone,
   team:       2,
   after:      "07/21:00:00",
   asset_type: destroyer_squadron,
   asset_id:   6,
   region:     Jalah,
}

action: {
   id:         503,
   type:       zone,
   team:       2,
   after:      "07/22:00:00",
   asset_type: destroyer_squadron,
   asset_id:   7,
   region:     Jalah,
}

action: {
   id:         510,
   type:       event,
   subtype:    story,
   team:       1,
   rgn:        Jalah,
   after:      "07/22:15:00",
   text:       "Separatist Withdrawal to Jalah",
   source:     FORCOM,
   file:       "Actions/11-dantari-pullback.txt",
   image:      "Actions/11-dantari-pullback.pcx",
   scene:      "Scenes/11-Dantari-Pullback.def"
}

action: {
   id:         515,
   type:       sitrep,
   team:       1,
   after:      "07/22:15:00",
   text:
   "\tAll mobile Separatist forces have withdrawn from the inner planets to "
   "Jalah Sector.  We believe they plan to regroup and integrate with "
   "Hegemony TF4.3 before resuming the offensive in the Solus and "
   "Kalon Sectors.\n\n"

   "\tOur plan is to strike the Separatist forces at Jalah before they "
   "can regroup.  If we can keep them off balance in a defensive posture "
   "there, we believe they will be prevented from mounting an effective attack "
   "on Solus.\n"
}

// ALLIANCE FORCES PURSUE THEM INTO JALAH

action: {
   id:         520,
   type:       zone,
   team:       1,
   after:      "08/00:00:00",
   asset_type: destroyer_squadron,
   asset_id:   60,
   region:     Jalah,
   image:      "Actions/AA-gerrond-jalah.pcx"
}

action: {
   id:         521,
   type:       zone,
   team:       1,
   after:      "08/01:00:00",
   asset_type: carrier_group,
   asset_id:   6,
   region:     Jalah,
   image:      "Actions/AA-archon-jalah.pcx"
}

action: {
   id:         530,
   type:       intel,
   subtype:    known,
   team:       1,
   after:      "08/22:00:00",
   asset_type: destroyer_squadron,
   asset_id:   43,
   region:     Jalah,
}

action: {
   id:         535,
   type:       zone,
   team:       1,
   after:      "08/22:00:00",
   asset_type: destroyer_squadron,
   asset_id:   43,
   region:     Jalah,
   image:      "Actions/AA-shadow-jalah.pcx",

   req: { action: 735, status: COMPLETE, not: true }
}

// DON'T PROLONG THE SUFFERING INDEFINITELY

action: {
   id:         550,
   type:       event,
   subtype:    attack,
   team:       1,
   rgn:        Jalah,
   text:       "Wolf DESRON Eliminated",
   file:       "Actions/11a-wolf.txt",
   source:     TACNET,
   after:      "10/13:30:00",
   before:     "11/13:30:00",

   req: { c1: "Dantari Separatists", group_type: destroyer_squadron, group_id: 5, comp: GT, score: 100 },
   req: { action: 600, status: COMPLETE, not: true },

   target_type: destroyer_squadron,
   target_id:   5,
   target_iff:  2,
   target_kill: "Wolf",
   target_kill: "Halas",
   target_kill: "Baikal",
   target_kill: "Kyren",
}

action: {
   id:         555,
   type:       event,
   subtype:    attack,
   team:       1,
   rgn:        Jalah,
   text:       "Kitts DESRON Eliminated",
   file:       "Actions/11a-kitts.txt",
   source:     TACNET,
   after:      "10/20:30:00",
   before:     "11/20:30:00",

   req: { c1: "Dantari Separatists", group_type: destroyer_squadron, group_id: 6, comp: GT, score: 200 },
   req: { action: 600, status: COMPLETE, not: true },

   target_type: destroyer_squadron,
   target_id:   6,
   target_iff:  2,
   target_kill: "Kitts",
   target_kill: "Tomal",
   target_kill: "Loval",
   target_kill: "Udel",
}

action: {
   id:         560,
   type:       event,
   subtype:    attack,
   team:       1,
   rgn:        Jalah,
   text:       "Kendra DESRON Eliminated",
   file:       "Actions/11a-kendra.txt",
   source:     TACNET,
   after:      "11/10:30:00",
   before:     "12/10:30:00",

   req: { c1: "Dantari Separatists", group_type: destroyer_squadron, group_id: 7, comp: GT, score: 300 },
   req: { action: 600, status: COMPLETE, not: true },

   target_type: destroyer_squadron,
   target_id:   7,
   target_iff:  2,
   target_kill: "Kendra",
   target_kill: "Sayal",
   target_kill: "Baionne",
   target_kill: "Pelorat",
}

action: {
   id:         565,
   type:       event,
   subtype:    attack,
   team:       1,
   rgn:        Jalah,
   text:       "Goliath CVBG Eliminated",
   file:       "Actions/11a-goliath.txt",
   source:     TACNET,
   after:      "12/10:20:00",
   before:     "13/10:20:00",

   req: { c1: "Dantari Separatists", group_type: carrier_group, group_id: 5, comp: GT, score: 500 },
   req: { action: 600, status: COMPLETE, not: true },

   target_type: carrier_group,
   target_id:   5,
   target_iff:  2,
   target_kill: "Goliath",
   target_kill: "Lanner",
   target_kill: "Connel",
   target_kill: "Ganat",
}

// AFTER JALAH FALLS, TASK FORCE RETREATS TO RENSER

action: {
   id:         600,
   type:       event,
   subtype:    story,
   team:       1,
   rgn:        Solus,
   text:       "Solus Victory",
   source:     News,
   file:       "Actions/12-cease-fire.txt",
   image:      "Actions/12-cease-fire.pcx",

   req: { c1: "Dantari Separatists", group_type: carrier_group,      group_id: 5, comp: LT, score: 500 },
   req: { c1: "Dantari Separatists", group_type: destroyer_squadron, group_id: 5, comp: LT, score: 100 },
   req: { c1: "Dantari Separatists", group_type: destroyer_squadron, group_id: 6, comp: LT, score: 200 },
   req: { c1: "Dantari Separatists", group_type: destroyer_squadron, group_id: 7, comp: LT, score: 300 },
}

action: {
   id:         620,
   type:       intel,
   subtype:    known,
   team:       2,
   rgn:        Khaital,
   asset_type: destroyer_squadron,
   asset_id:   25,

   req: { action: 600, status: COMPLETE }
}

action: {
   id:         621,
   type:       intel,
   subtype:    known,
   team:       2,
   rgn:        Khaital,
   asset_type: destroyer_squadron,
   asset_id:   26,

   req: { action: 600, status: COMPLETE }
}

action: {
   id:         622,
   type:       intel,
   subtype:    known,
   team:       2,
   rgn:        Lornas,
   asset_type: carrier_group,
   asset_id:   4,

   req: { action: 600, status: COMPLETE }
}

// KEEP RENSER TASK FORCE IN KHAITAL SECTOR

action: {
   id:         630,
   type:       zone,
   team:       2,
   rgn:        Khaital,
   asset_type: destroyer_squadron,
   asset_id:   25,

   req: { action: 620, status: COMPLETE }
}

action: {
   id:         640,
   type:       zone,
   team:       2,
   rgn:        Khaital,
   asset_type: destroyer_squadron,
   asset_id:   26,

   req: { action: 621, status: COMPLETE }
}

action: {
   id:         650,
   type:       zone,
   team:       2,
   rgn:        Lornas,
   asset_type: carrier_group,
   asset_id:   4,

   req: { action: 622, status: COMPLETE }
}

// ALLIANCE FORCES ARRIVE IN KHAITAL

action: {
   id:         700,
   type:       event,
   subtype:    story,
   team:       1,
   rgn:        Solus,
   text:       "Renser Invasion",
   source:     News,
   file:       "Actions/13-renser-invasion.txt",
   image:      "Actions/13-renser-invasion.pcx",
   scene:      "Scenes/13-Renser-Invasion.def",
   delay:      19800, // five and a half hours after 600

   req: { action: 600, status: COMPLETE }
}

action: {
   id:         701,
   type:       event,
   subtype:    story
   team:       1
   rgn:        Jarnell
   text:       "Why Renser?"
   source:     Mail
   file:       "Actions/m3-why-renser.txt"
   image:      "Actions/m0-mail-icon.pcx"
   scene:      "Scenes/M3-Why-Renser.def"
   delay:      21600 // six hours after 700

   req: { action: 700, status: COMPLETE }
}

action: {
   id:         710,
   type:       sitrep,
   team:       1,
   text:
   "\tLoyalist and Separatist leaders have signed a cease-fire agreement "
   "and hostile action in this system is winding down.  Phase Two of Operation "
   "Highland has been successfully completed, and President Valmar has ordered "
   "us to commence Phase Three - the disarming of Renser Prefecture.\n\n"

   "\tHegemony Task Force TF4.3 has withdrawn from Solus to the Khaital Sector "
   "of the Renser System.  We have been ordered to pursue them into Renser space "
   "and eliminate their ability to project force to any of the neighboring "
   "Independent systems.\n",

   req: { action: 700, status: COMPLETE }
}

action: {
   id:         711,
   type:       orders,
   team:       1,
   text:
   "\t* Pursue Hegemony Task Force TF4.3 into Renser space.\n"
   "\t* Eliminate Renser's ability to project force to neighboring systems.\n"
   "\t* Destroy all military units of the Task Force TF4.3.\n"
   "\t* Withdraw safely back to the Alliance base in Janus System.\n",

   req: { action: 700, status: COMPLETE }
}

action: {
   id:         720,
   type:       zone,
   team:       1,
   asset_type: destroyer_squadron,
   asset_id:   60,
   region:     Khaital,
   image:      "Actions/AA-gerrond-khaital.pcx",

   req: { action: 700, status: COMPLETE }
}

action: {
   id:         725,
   type:       zone,
   team:       1,
   asset_type: carrier_group,
   asset_id:   6,
   region:     Khaital,
   image:      "Actions/AA-archon-khaital.pcx",

   req: { action: 700, status: COMPLETE }
}

action: {
   id:         735,
   type:       zone,
   team:       1,
   asset_type: destroyer_squadron,
   asset_id:   43,
   region:     Khaital,
   image:      "Actions/AA-shadow-khaital.pcx",

   req: { action: 530, status: COMPLETE },
   req: { action: 700, status: COMPLETE }
}

// ALLIANCE FORCES PURSUE FLEET INTO LORNAS

action: {
   id:         660,
   type:       zone,
   team:       2,
   asset_type: destroyer_squadron,
   asset_id:   25,
   delay:      90e3,

   req: { action: 620, status: COMPLETE }
}

action: {
   id:         670,
   type:       zone,
   team:       2,
   asset_type: destroyer_squadron,
   asset_id:   26,
   delay:      90e3,

   req: { action: 621, status: COMPLETE }
}

action: {
   id:         680,
   type:       zone,
   team:       2,
   asset_type: carrier_group,
   asset_id:   4,
   delay:      90e3,

   req: { action: 622, status: COMPLETE }
}

action: {
   id:         721,
   type:       zone,
   team:       1,
   asset_type: destroyer_squadron,
   asset_id:   43,
   delay:      36000,

   req: { action: 660, status: COMPLETE },
   req: { action: 720, status: COMPLETE }
}

action: {
   id:         726,
   type:       zone,
   team:       1,
   asset_type: carrier_group,
   asset_id:   6,
   delay:      36000,

   req: { action: 670, status: COMPLETE },
   req: { action: 725, status: COMPLETE }
}

action: {
   id:         736,
   type:       zone,
   team:       1,
   asset_type: destroyer_squadron,
   asset_id:   60,
   delay:      36000,

   req: { action: 680, status: COMPLETE },
   req: { action: 735, status: COMPLETE }
}

// THE BITTER END

action: {
   id:      997
   type:    event
   subtype: campaign_fail
   team:    1
   rgn:     Solus
   text:    "Operation Highland Defeat"
   file:    "Actions/def1.txt"
   image:   "Actions/def1"
   scene:   "Scenes/Defeat1.def"

   req: { c1: "Terellian Alliance", group_type: carrier_group, group_id: 6, comp: LT, score: 3000 },
   req: { action: 600, status: COMPLETE, not: true },
}

action: {
   id:      998
   type:    event
   subtype: campaign_fail
   team:    1
   rgn:     Solus
   text:    "Operation Highland Defeat"
   file:    "Actions/def2.txt"
   image:   "Actions/def2"
   scene:   "Scenes/Defeat2.def"

   req: { c1: "Terellian Alliance", group_type: carrier_group, group_id: 6, comp: LT, score: 3000 }
   req: { action: 600, status: COMPLETE }
}

action: {
   id:      999
   type:    event
   subtype: campaign_end // successful ending
   team:    1
   rgn:     Solus
   text:    "Operation Highland Victory"
   file:    "Actions/campaign_end.txt"
   image:   "Actions/victory"
   scene:   "Scenes/Victory.def"

   req: { c1: "Marakan Hegemony", group_type: fleet, group_id: 4, comp: LT, score: 4000 }
}