File: Revelation.src

package info (click to toggle)
crimson 0.5.2-1.1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, stretch, trixie
  • size: 4,732 kB
  • sloc: cpp: 21,859; ansic: 1,689; xml: 1,625; sh: 985; makefile: 274
file content (1590 lines) | stat: -rw-r--r-- 40,362 bytes parent folder | download | duplicates (2)
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
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
[mission]
name = 0
mapwidth = 40
mapheight = 40
info = 3
players = 1

[map-raw]
88,30,222,93,252,249,80,80,80,80,79,80,80,80,80,257,32,32,222,36,32,80,80,87,80,83,79,80,80,97,95,80,79,80,79,84,83,85,248,80
88,30,222,30,89,89,249,249,80,256,80,256,79,250,250,107,249,253,222,31,77,80,79,87,84,86,85,80,80,87,79,84,83,85,80,80,86,250,251,30
93,89,226,229,230,223,89,89,255,103,255,103,255,103,30,95,30,251,222,30,30,80,80,87,80,80,80,80,80,87,80,79,86,80,79,30,254,78,30,227
80,80,89,109,30,256,223,223,101,256,101,30,101,30,101,250,250,224,231,228,30,80,79,87,79,80,79,80,80,105,79,80,80,30,30,230,248,30,30,222
314,80,80,250,250,115,249,255,288,223,249,255,256,255,250,224,224,152,30,225,30,79,80,87,80,84,83,85,80,230,80,230,30,224,224,30,283,223,30,225
309,254,250,80,80,80,89,89,30,103,223,223,30,224,224,30,156,19,224,30,30,80,80,95,80,19,86,238,224,107,229,30,232,30,30,79,248,30,232,30
309,252,30,115,80,80,79,80,101,80,89,89,241,228,30,30,154,151,153,80,79,91,91,79,79,80,229,222,80,87,79,30,222,27,26,28,248,30,222,30
309,30,249,249,89,89,80,79,80,80,80,83,109,226,115,101,103,101,103,101,91,230,79,80,80,83,79,222,80,87,80,30,226,223,29,79,248,30,222,30
303,223,144,134,249,249,89,89,79,80,84,86,85,79,223,229,230,223,80,224,224,80,223,223,84,86,85,225,80,87,79,78,30,30,19,258,257,249,222,30
327,310,223,223,134,134,249,249,89,89,79,103,79,79,80,84,83,85,229,84,83,85,80,80,223,229,224,80,79,95,79,80,79,79,78,251,142,30,285,255
79,79,310,310,223,223,134,134,249,249,101,19,89,89,80,80,86,80,79,80,86,79,80,79,80,80,79,91,91,80,80,250,256,255,250,135,136,224,225,30
79,79,79,78,310,314,223,228,134,134,267,285,253,80,89,89,79,80,80,80,335,80,80,80,80,80,97,79,80,250,250,135,141,140,135,224,224,30,30,135
79,78,79,79,79,309,30,222,79,80,138,226,266,249,80,80,89,101,103,109,309,111,103,101,103,101,95,250,250,135,135,80,30,227,224,144,30,135,135,80
78,79,78,83,79,309,30,222,79,230,137,134,223,228,249,249,79,79,79,79,309,79,79,250,256,255,250,135,135,141,80,80,30,231,30,30,140,84,83,85
79,79,84,86,85,309,30,236,224,80,223,223,147,225,30,30,249,249,80,79,309,250,250,135,145,135,135,146,135,79,147,224,224,30,223,223,30,30,86,311
79,83,78,79,79,309,30,222,30,30,79,80,229,80,79,79,80,79,249,255,293,146,135,135,135,80,80,80,80,224,224,79,79,79,30,30,223,304,311,30
84,86,85,78,79,309,30,222,30,30,80,80,79,80,79,80,79,79,79,79,309,146,135,79,78,79,80,224,224,78,80,79,79,80,80,311,311,30,223,223
79,79,78,79,79,312,30,222,30,30,80,80,79,80,80,80,80,135,145,145,309,78,79,79,79,224,224,83,80,79,80,80,78,311,311,80,79,79,30,30
79,79,79,311,311,30,30,222,30,30,78,79,80,79,80,135,135,135,135,79,309,79,79,224,243,223,84,86,85,79,79,311,311,84,83,85,79,145,78,80
79,311,311,80,30,30,30,222,30,30,80,80,80,135,135,135,135,79,78,79,309,224,224,80,80,78,223,228,80,311,311,80,80,80,86,78,139,142,80,80
311,80,79,30,30,230,30,222,30,30,80,135,135,135,135,30,78,79,79,224,305,84,83,85,78,79,79,231,315,84,83,85,79,78,78,80,133,133,80,80
79,30,30,224,224,30,223,240,30,30,146,146,135,30,30,30,30,224,224,79,309,79,86,79,80,224,224,80,303,223,86,78,80,79,78,80,133,133,80,80
80,30,19,30,30,30,30,145,223,223,30,30,30,30,30,224,224,30,30,35,309,79,78,79,19,79,80,79,309,80,228,80,78,80,80,135,136,136,80,79
80,79,30,80,79,135,135,145,30,30,223,223,30,224,243,223,30,30,30,311,312,34,32,78,222,79,80,80,309,80,222,79,79,135,135,135,135,317,80,80
80,80,80,135,135,135,135,30,30,30,30,227,247,223,30,30,223,304,311,35,35,317,34,35,222,80,79,311,318,306,225,146,135,135,135,311,311,145,310,344
80,135,135,135,135,30,30,30,30,30,30,231,30,30,223,304,311,30,223,304,311,30,310,306,225,311,311,224,224,145,310,310,146,311,311,135,135,350,350,361
135,135,135,79,78,80,30,30,30,224,224,30,223,304,311,30,223,304,311,30,223,223,227,30,316,224,224,135,135,135,145,141,316,135,135,350,350,365,360,361
135,79,79,79,80,79,78,224,224,30,30,30,315,30,223,304,311,30,223,223,30,30,235,224,224,135,135,135,135,135,135,83,140,80,357,354,363,360,361,361
79,84,83,85,80,227,224,83,80,80,30,311,318,316,311,30,223,237,30,224,244,241,239,30,146,146,135,30,146,78,84,86,85,80,80,80,347,360,360,361
310,310,86,311,317,301,84,86,85,311,311,80,30,30,30,30,30,19,247,223,30,30,223,228,30,30,30,30,30,80,80,80,80,78,80,357,345,364,360,361
80,83,316,79,79,225,310,316,311,80,80,80,80,78,30,30,30,30,30,30,223,223,30,222,30,30,30,30,30,80,79,80,80,83,80,80,354,347,361,362
84,86,85,224,224,80,79,80,79,80,80,80,79,79,78,79,30,145,30,30,30,30,223,235,30,30,30,30,30,80,79,80,84,86,85,80,80,345,361,361
223,229,224,79,80,84,83,85,79,79,80,80,80,79,79,135,135,135,145,30,30,30,30,222,30,30,30,79,79,80,78,80,80,80,80,80,357,359,349,354
80,80,79,80,80,80,86,79,80,79,79,79,78,135,135,135,135,80,30,30,30,30,30,222,30,30,79,80,79,79,80,83,80,80,80,80,80,84,83,85
80,79,80,83,79,80,80,80,79,80,79,135,135,135,135,80,80,80,79,79,30,30,30,222,30,30,80,80,79,80,84,86,85,80,78,80,79,79,86,80
80,79,84,86,85,80,80,78,79,135,135,135,135,79,80,80,79,83,80,80,80,30,30,222,30,30,80,79,18,79,79,79,80,83,80,79,80,80,79,80
80,80,79,80,80,79,79,135,135,135,135,79,80,80,80,80,84,86,85,80,80,30,30,222,30,30,79,80,78,80,80,79,84,86,85,79,80,79,80,80
79,77,80,79,79,135,135,135,135,84,83,85,80,83,80,78,80,80,79,80,80,30,30,222,30,30,80,79,79,80,80,80,79,78,79,84,83,85,80,80
79,78,79,135,135,135,135,80,80,80,86,80,84,86,85,80,80,80,80,80,78,30,30,222,30,30,79,80,79,79,79,78,80,80,80,80,86,80,80,80
79,135,135,135,135,80,80,80,80,80,79,80,78,80,79,79,79,80,79,80,80,30,30,222,30,30,80,79,79,80,80,80,80,79,79,80,79,80,80,80

[player]
name = 9
briefing = 1

[player]
name = 10
briefing = 2

[unit]
type = Anti-Aircraft Guns
player = 2
id = 0
pos = 17/5
face = 0

[unit]
type = Gunships
player = 2
id = 2
pos = 17/5
face = 0

[unit]
type = Infantry
player = 2
id = 3
pos = 17/5
face = 0

[unit]
type = Anti-Aircraft Guns
player = 2
id = 4
pos = 11/10
face = 0

[unit]
type = Armoured Train
player = 2
id = 5
pos = 11/10
face = 0

[unit]
type = Heavy Tanks
player = 2
id = 6
pos = 11/10
face = 0

[unit]
type = Infantry
player = 2
id = 7
pos = 34/8
face = 0

[unit]
type = Infantry
player = 2
id = 8
pos = 34/8
face = 0

[unit]
type = Medium Tanks
player = 2
id = 9
pos = 34/8
face = 0

[unit]
type = Bunkers
player = 2
id = 10
pos = 8/21

[unit]
type = Medium Tanks
player = 2
id = 11
pos = 9/17

[unit]
type = Medium Tanks
player = 2
id = 12
pos = 7/17

[unit]
type = Gunships
player = 2
id = 13
pos = 2/14

[unit]
type = Medium Tanks
player = 2
id = 14
pos = 38/7

[unit]
type = Anti-Aircraft Tanks
player = 2
id = 15
pos = 7/11

[unit]
type = Bunkers
player = 2
id = 16
pos = 14/14

[unit]
type = Bunkers
player = 2
id = 17
pos = 36/12

[unit]
type = Bunkers
player = 2
id = 18
pos = 1/7

[unit]
type = Anti-Aircraft Tanks
player = 2
id = 22
pos = 4/2

[unit]
type = Anti-Aircraft Tanks
player = 2
id = 23
pos = 21/3

[unit]
type = Anti-Aircraft Tanks
player = 2
id = 24
pos = 32/6

[unit]
type = Medium Tanks
player = 2
id = 30
pos = 5/19
face = 2

[unit]
type = Medium Tanks
player = 2
id = 31
pos = 4/21
face = 2

[unit]
type = Medium Tanks
player = 2
id = 32
pos = 12/26
face = 2

[unit]
type = Medium Tanks
player = 2
id = 33
pos = 16/24
face = 2

[unit]
type = Heavy Tanks
player = 2
id = 34
pos = 2/22
face = 0

[unit]
type = Heavy Tanks
player = 2
id = 35
pos = 2/22
face = 0

[unit]
type = Heavy Tanks
player = 2
id = 36
pos = 2/22
face = 0

[unit]
type = Medium Tanks
player = 1
id = 37
pos = 24/37

[unit]
type = Medium Tanks
player = 1
id = 38
pos = 22/37

[unit]
type = Heavy Tanks
player = 1
id = 43
pos = 23/35

[unit]
type = Heavy Tanks
player = 1
id = 39
pos = 24/36

[unit]
type = Heavy Tanks
player = 1
id = 40
pos = 22/36

[unit]
type = Medium Tanks
player = 1
id = 45
pos = 23/36

[unit]
type = Medium Tanks
player = 1
id = 46
pos = 23/37

[unit]
type = Rail Guns
player = 2
id = 58
pos = 35/8

[unit]
type = Anti-Aircraft Guns
player = 2
id = 59
pos = 23/9

[unit]
type = Anti-Aircraft Guns
player = 2
id = 60
pos = 34/2

[unit]
type = Anti-Aircraft Guns
player = 2
id = 61
pos = 27/19

[unit]
type = Medium Tanks
player = 2
id = 79
pos = 21/29

[unit]
type = Medium Tanks
player = 2
id = 80
pos = 23/28

[unit]
type = Infantry
player = 2
id = 81
pos = 22/28

[unit]
type = Infantry
player = 2
id = 82
pos = 19/29

[unit]
type = Artillery
player = 2
id = 83
pos = 20/27

[unit]
type = Artillery
player = 2
id = 84
pos = 7/14

[unit]
type = Scouts
player = 2
id = 85
pos = 17/28
face = 2

[unit]
type = Scouts
player = 2
id = 86
pos = 5/22
face = 2

[unit]
type = Infantry
player = 2
id = 87
pos = 10/20

[unit]
type = Infantry
player = 2
id = 88
pos = 11/3

[unit]
type = Infantry
player = 2
id = 89
pos = 37/11

[unit]
type = Infantry
player = 2
id = 90
pos = 5/36

[unit]
type = Infantry
player = 2
id = 91
pos = 11/33

[unit]
type = Infantry
player = 2
id = 94
pos = 29/16

[unit]
type = Anti-Aircraft Tanks
player = 2
id = 95
pos = 22/18

[unit]
type = Rail Guns
player = 2
id = 19
pos = 17/2

[unit]
type = Bunkers
player = 2
id = 20
pos = 19/16

[unit]
type = Bunkers
player = 2
id = 96
pos = 15/26

[unit]
type = Bunkers
player = 2
id = 98
pos = 19/24

[unit]
type = Medium Tanks
player = 2
id = 99
pos = 17/29
face = 0

[unit]
type = Medium Tanks
player = 2
id = 100
pos = 17/29
face = 0

[unit]
type = Anti-Aircraft Guns
player = 2
id = 101
pos = 17/29
face = 0

[unit]
type = Anti-Aircraft Guns
player = 2
id = 102
pos = 17/29
face = 0

[unit]
type = Infantry
player = 2
id = 103
pos = 17/29
face = 0

[unit]
type = Gunships
player = 2
id = 104
pos = 17/29
face = 0

[unit]
type = Artillery
player = 1
id = 41
pos = 26/37

[unit]
type = Artillery
player = 1
id = 49
pos = 27/36

[unit]
type = Artillery
player = 1
id = 53
pos = 28/37

[unit]
type = Infantry
player = 1
id = 56
pos = 30/37

[unit]
type = Infantry
player = 1
id = 64
pos = 29/37

[unit]
type = Infantry
player = 2
id = 110
pos = 25/22

[unit]
type = Infantry
player = 2
id = 111
pos = 26/22

[unit]
type = Infantry
player = 2
id = 112
pos = 23/22

[unit]
type = Infantry
player = 2
id = 113
pos = 22/22

[unit]
type = Anti-Aircraft Tanks
player = 2
id = 114
pos = 25/21

[unit]
type = Anti-Aircraft Tanks
player = 2
id = 115
pos = 23/21

[unit]
type = Anti-Aircraft Tanks
player = 2
id = 116
pos = 21/22

[unit]
type = Anti-Aircraft Tanks
player = 2
id = 117
pos = 26/23

[unit]
type = Bunkers
player = 2
id = 118
pos = 26/20

[unit]
type = Medium Tanks
player = 2
id = 119
pos = 14/25
face = 2

[unit]
type = Medium Tanks
player = 2
id = 120
pos = 5/28

[unit]
type = Infantry
player = 2
id = 121
pos = 35/20

[unit]
type = Infantry
player = 2
id = 122
pos = 31/23

[unit]
type = Infantry
player = 2
id = 123
pos = 38/14

[unit]
type = Infantry
player = 2
id = 124
pos = 30/13

[unit]
type = Infantry
player = 2
id = 125
pos = 17/19

[unit]
type = Infantry
player = 2
id = 126
pos = 1/34

[unit]
type = Anti-Aircraft Guns
player = 2
id = 129
pos = 11/26
face = 2

[unit]
type = Anti-Aircraft Tanks
player = 2
id = 130
pos = 4/28

[unit]
type = Anti-Aircraft Tanks
player = 2
id = 131
pos = 39/6

[unit]
type = Medium Tanks
player = 2
id = 132
pos = 31/5

[unit]
type = Medium Tanks
player = 2
id = 133
pos = 35/2

[unit]
type = Anti-Aircraft Guns
player = 2
id = 134
pos = 19/5

[unit]
type = Anti-Aircraft Guns
player = 2
id = 136
pos = 6/14

[unit]
type = Medium Tanks
player = 2
id = 137
pos = 8/14

[unit]
type = Medium Tanks
player = 2
id = 138
pos = 6/11

[unit]
type = Infantry
player = 2
id = 140
pos = 25/6

[unit]
type = Anti-Aircraft Tanks
player = 2
id = 141
pos = 24/6

[unit]
type = Artillery
player = 2
id = 109
pos = 24/23

[unit]
type = Anti-Aircraft Tanks
player = 1
id = 42
pos = 24/38

[unit]
type = Anti-Aircraft Tanks
player = 1
id = 47
pos = 22/38

[unit]
type = Anti-Aircraft Tanks
player = 1
id = 50
pos = 23/38

[unit]
type = Bunkers
player = 2
id = 151
pos = 37/7

[unit]
type = Bunkers
player = 2
id = 152
pos = 33/5

[unit]
type = Gunships
player = 2
id = 153
pos = 27/0

[unit]
type = Gunships
player = 2
id = 154
pos = 27/1

[unit]
type = Gunships
player = 2
id = 155
pos = 26/2

[unit]
type = Gunships
player = 2
id = 156
pos = 28/2

[unit]
type = Anti-Aircraft Guns
player = 2
id = 69
pos = 27/4

[unit]
type = Interceptors
player = 2
id = 165
pos = 30/2

[unit]
type = Interceptors
player = 2
id = 166
pos = 31/1

[unit]
type = Fighter Squadron
player = 2
id = 167
pos = 30/1

[unit]
type = Fighter Squadron
player = 2
id = 168
pos = 31/0

[unit]
type = Anti-Aircraft Guns
player = 1
id = 44
pos = 26/38

[unit]
type = Anti-Aircraft Guns
player = 1
id = 72
pos = 27/37

[unit]
type = Anti-Aircraft Guns
player = 1
id = 73
pos = 28/38

[unit]
type = Anti-Aircraft Guns
player = 1
id = 74
pos = 27/38

[unit]
type = Anti-Aircraft Tanks
player = 1
id = 48
pos = 39/22
face = 5

[unit]
type = Anti-Aircraft Tanks
player = 1
id = 68
pos = 38/23
face = 5

[unit]
type = Infantry
player = 1
id = 70
pos = 39/23

[unit]
type = Heavy Tanks
player = 1
id = 76
pos = 27/34

[unit]
type = Anti-Aircraft Tanks
player = 1
id = 78
pos = 29/34

[unit]
type = Anti-Aircraft Tanks
player = 1
id = 105
pos = 28/34

[unit]
type = Fighter Squadron
player = 1
id = 51
pos = 37/27

[unit]
type = Fighter Squadron
player = 1
id = 52
pos = 38/27

[unit]
type = Interceptors
player = 1
id = 62
pos = 37/25

[unit]
type = Interceptors
player = 1
id = 63
pos = 36/26

[unit]
type = Bunkers
player = 2
id = 108
pos = 37/14

[unit]
type = Anti-Aircraft Guns
player = 2
id = 55
pos = 37/6

[unit]
type = Anti-Aircraft Guns
player = 2
id = 143
pos = 38/11

[unit]
type = Armoured Train
player = 2
id = 75
pos = 36/4

[unit]
type = Anti-Aircraft Tanks
player = 2
id = 179
pos = 2/9
face = 2

[unit]
type = Anti-Aircraft Tanks
player = 2
id = 180
pos = 1/8
face = 2

[unit]
type = Anti-Aircraft Tanks
player = 2
id = 181
pos = 0/8
face = 2

[unit]
type = Heavy Tanks
player = 2
id = 171
pos = 37/2

[unit]
type = Heavy Tanks
player = 2
id = 172
pos = 37/3

[unit]
type = Medium Tanks
player = 2
id = 173
pos = 35/3

[unit]
type = Anti-Aircraft Tanks
player = 2
id = 174
pos = 38/3

[unit]
type = Anti-Aircraft Tanks
player = 2
id = 175
pos = 38/2

[unit]
type = Anti-Aircraft Tanks
player = 2
id = 176
pos = 39/1

[unit]
type = Infantry
player = 2
id = 177
pos = 39/0

[unit]
type = Medium Tanks
player = 2
id = 182
pos = 35/1

[unit]
type = Bomber Wing
player = 1
id = 66
pos = 38/29

[unit]
type = Fighter Squadron
player = 1
id = 106
pos = 35/28

[unit]
type = Fighter Squadron
player = 1
id = 107
pos = 34/29

[unit]
type = Bomber Wing
player = 1
id = 164
pos = 35/30

[unit]
type = Bomber Wing
player = 1
id = 183
pos = 34/31

[unit]
type = Gunships
player = 2
id = 184
pos = 3/13

[unit]
type = Gunships
player = 2
id = 185
pos = 3/12

[unit]
type = Gunships
player = 2
id = 186
pos = 4/12

[unit]
type = Bomber Wing
player = 1
id = 67
pos = 37/29

[unit]
type = Heavy Tanks
player = 1
id = 149
pos = 39/21
face = 5

[unit]
type = Heavy Tanks
player = 1
id = 157
pos = 38/21
face = 5

[unit]
type = Anti-Aircraft Tanks
player = 1
id = 158
pos = 37/22
face = 5

[unit]
type = Anti-Aircraft Tanks
player = 1
id = 159
pos = 37/21
face = 5

[unit]
type = Anti-Aircraft Guns
player = 1
id = 160
pos = 38/22
face = 5

[unit]
type = Bunkers
player = 2
id = 27
pos = 19/30

[unit]
type = Fighter Squadron
player = 2
id = 21
pos = 17/5

[unit]
type = Infantry
player = 2
id = 28
pos = 17/5

[unit]
type = Armoured Train
player = 2
id = 25
pos = 2/7
face = 2

[unit]
type = Heavy Tanks
player = 2
id = 1
pos = 17/5

[unit]
type = Personnel Carriers
player = 1
id = 54
pos = 29/36

[unit]
type = Hovercraft
player = 1
id = 162
pos = 39/24

[unit]
type = Troop Train
player = 2
id = 169
pos = 36/2

[unit]
type = Troop Train
player = 2
id = 170
pos = 37/1
face = 4

[unit]
type = Hovercraft
player = 1
id = 147
pos = 38/24

[building]
name = 11
player = 2
id = 0
pos = 17/5
type = workshop
crystals = 60

[building]
name = 12
player = 2
id = 1
pos = 11/10
type = workshop
crystals = 20

[building]
name = 13
player = 2
id = 2
pos = 34/8
type = workshop
crystals = 5

[building]
name = 14
player = 2
id = 3
pos = 2/22
type = workshop
crystals = 120

[building]
name = 15
player = 2
id = 4
pos = 24/22
type = workshop
crystals = 10

[building]
name = 16
player = 2
id = 5
pos = 17/29
type = workshop
crystals = 20

[building]
name = 17
player = 2
id = 7
pos = 25/5
type = workshop
crystals = 10

[building]
name = 18
player = 1
id = 6
pos = 28/35
type = workshop
crystals = 30

###################### End of Mission #############################
## 0 - starting message for yellow
## 1 - starting message for blue
## 2 - when player has captured the King's House, success = 100
## 3 - when player has destroyed the King's army, success = 100
## 4 - when blue has destroyed all enemies, success = 100
## 5-7 - handicaps for blue
## 8-9 - handicaps for yellow
###################################################################

[event]
id = 0
type = message
player = 1
title = 0
message = 1
pos = 28/35
trigger = timer
ttime = 0

[event]
id = 1
type = message
player = 2
title = 0
message = 2
pos = 17/5
trigger = timer
ttime = 0

[event]
id = 2
type = score
player = 1
title = 0
message = 4
trigger = havebuilding
tbuilding = 0
towner = 1
ttime = -1
success = 100
othermsg = 8
othertitle = 0

[event]
id = 3
type = score
player = 1
title = 0
message = 4
trigger = unitdestroyed
tunit = -1
towner = 2
success = 100
othermsg = 7
othertitle = 0

[event]
id = 4
type = score
player = 2
title = 0
message = 6
trigger = unitdestroyed
tunit = -1
towner = 1
success = 100
othermsg = 5
othertitle = 0

[event]
id = 5
type = createunit
player = 1
trigger = handicap
thandicap = 4
unit = Gunships
pos = 19/36

[event]
id = 6
type = createunit
player = 1
trigger = handicap
thandicap = 4
unit = Gunships
pos = 19/37

[event]
id = 7
type = mining
player = 1
trigger = handicap
thandicap = 4
building = 6
action = 1
crystals = 30

[event]
id = 8
type = createunit
player = 2
trigger = handicap
thandicap = 2
unit = Artillery
pos = 39/5
face = 3

[event]
id = 9
type = createunit
player = 2
trigger = handicap
thandicap = 2
unit = Anti-Aircraft Tanks
pos = 5/27
face = 3

############################### Messages #############################
## 0 - Title of this mission
## 1 - Starting msg for Player One
## 2 - Starting msg for Player Two
## 3 - Info
## 4 - When yellow has won this game
## 5 - When yellow has lost all units
## 6 - When blue has won this game
## 7 - When blue has lost all units
## 8 - When blue has lost Lingay
######################################################################
[messages(de)]
Offenbarung
%
Im östlichen Teil des Kontinents Llan befinden sich die Königreiche des Ostens. Sie werden von den Königen von Kyo, Rho-Tan und Lingay regiert. Seit dem Beginn der Invasion wurden die Königreiche vom Imperium von Kand weitgehend ignoriert. Wir nahmen an, dass dies geschah, weil sie nur eine regionale und vergleichsweise kleine Macht darstellen, so dass die Kandelianer sich später mit ihnen beschäftigen wollten. Die Könige selbst haben sich auch sehr ruhig verhalten, und als Folge dessen sind ihre Reiche bisher vom Krieg kaum betroffen gewesen.

Leider war unsere ursprüngliche Einschätzung der Lage falsch. Das Imperium hat sich bisher nicht auf die Könige gestürzt, weil sie kooperieren! Letzte Woche wurden unsere Aufklärer von den Königstreuen westlich von Kyo angegriffen. Damit stellen die Könige eine große Gefahr für unsere Operationen in der Region dar, und wir müssen entsprechende Maßnahmen ergreifen. Trotz der geringen Größe der Königreiche unterhalten sie eine beträchtliche Streitmacht, die einen direkten Angriff unmöglich macht.

Wir haben einige kleine Verbände nach Norden geschickt, um von dort aus Kyo anzugreifen. Die Könige haben genauso reagiert, wie wir es gehofft hatten, und einen erheblichen Teil ihrer Streitkräfte nach Norden abgezogen. Jetzt können wir unseren Hauptangriff von Süden her starten. Obwohl ihre Verteidigung deutlich geschwächt worden ist, sind die Königstreuen dort immer noch in der Überzahl, aber eine bessere Gelegenheit werden wir nicht bekommen.

Du musst die Truppen der Könige um Lingay besiegen oder die Stadt selbst erobern. Wir wissen nicht, wie lange wir die abgezogenen Einheiten im Norden binden können, deshalb musst du dich beeilen. Außerdem solltest du bedenken, dass die kleinen Außenposten um Lingay herum vergleichsweise unwichtig sind, solange du die Hauptstadt selbst einnehmen kannst.

Viel Glück. Für eine freien Nexus!
%
Die Zeit ist gekommen. Die Königreiche des Ostens rufen zu den Waffen.

Geführt von den weisen Königen von Kyo, Rho-Tan und Lingay haben wir lange Zeit unsere Kräfte gesammelt, denn es war vorausgesagt, dass eine Zeit der Not kommen würde. Als die Kämpfe zwischen der Armee Freier Nexus und dem Imperium von Kand ausbrachen, haben sich die Königreiche aus dem Konflikt herausgehalten, um zum einen unser Volk zu beschützen und zum anderen zurückschlagen zu können, wenn die Kandelianer schwach und müde geworden sind.

Jetzt ist die Zeit der Prophezeiung gekommen. Letzte Woche erschienen Truppen des Imperiums westlich von Kyo, konnten aber leicht wieder vertrieben werden. Einige Tage später griffen weitere Einheiten von Norden an. Wir schickten zwölf Königssöhne nach Kyo, um den Angriff abzuwehren. Sie trafen nur auf wenig Widerstand, und wir wissen mittlerweile, dass der Angriff auf Kyo nur dazu gedacht war, unsere Truppen in den Norden zu locken, denn eine viel größere Streitmacht hat sich unbemerkt im Süden gesammelt und marschiert nun auf Lingay zu. Doch obwohl unsere Verteidigung deutlich geschwächt wurde, stehen uns immer noch etwa doppelt so viele Kämpfer zur Verfügung wie den Angreifern.

Verteidige die Hauptstadt. Heil den Königen!
%
Offenbarung
von Chang Tang Yen in Taipeh
<brain13homepage@pchome.com.tw>
%
Gut gemacht! Ein Drittel der Königreiche des Ostens steht jetzt unter unserer Kontrolle. Du hast die Bedrohung für unsere Operationen deutlich reduziert.

Auftrag abgeschlossen.
%
Dein Angriff auf Lingay war nicht erfolgreich. Die verbissenen Verteidiger haben die Armee unter deinem Kommando zurückgeschlagen und die Banner der Könige wehen noch immer auf den Türmen von Lingay.

Mission fehlgeschlagen.
%
Wenn man darüber nachdenkt, erscheint es seltsam, dass das Imperium die Königreiche mit einer solch kleinen Streitmacht angreifen sollte. Sie müssen sehr verzweifelt oder noch dümmer sein. Trotzdem kannst du nicht erwarten, dass sie denselben Fehler zweimal machen. Du wirst also die nächsten Wochen damit verbringen, die Verteidigung auf die Rückkehr der Kandelianer vorzubereiten.

Du hast gesiegt.
%
Lingay scheint verloren. Die Verteidigung ist zusammengebrochen, und das Volk flieht nach Norden in der Hoffnung, Kyo oder Rho-Tan zu erreichen. Dort werden die Könige ein neues Heer versammeln, um die Stadt zurückzuerobern. Du wurdest besiegt.
%
Der Feind hat Lingay erobert. Der König und seine verbliebenen Getreuen werden sich den Königstreuen im Norden anschließen und möglichst bald versuchen, die Stadt zurückzuerorbern. Du wurdest besiegt.
%
Armee Freier Nexus
%
Die Königstreuen
%
Lingay
%
Königliches Depot
%
Radarstation
%
Haus der Reiter
%
Haus der Lanzer
%
Grenzposten
%
Hohe Wacht
%
Versorgungsbasis
[/messages]

[messages(en)]
Revelation
%
In the eastern part of the continent Llan lies an area called the Kingdoms of the East. They are reigned by the kings of Kyo, Rho-Tan and Lingay. Since the beginning of the invasion, the Kingdoms have been largely ignored by the Empire of Kand. We believed the reason for this was that they are a only a regional and comparatively small power, so that the Kandelians decided to deal with them at a later time. The Kings themselves have also kept a very low profile, to the effect that their realms have so far gone unharmed by the war.

Unfortunately, our initial assessment of the situation was incorrect. The Empire did not yet go after the Kings because they are cooperating!  Last week a reconnaissance squad was attacked by the Kings' Men just west of Kyo. The Kings are now considered a major threat to our operations in the region, and we have decided to deal with them accordingly. Despite the small size of the Kingdoms, they maintain a sizable force that makes a direct assault impossible.

We sent out a small force to stage an attack on Kyo from the north. The Kings reacted just as we were hoping they would, and diverted a major part of their forces northwards. Now we are sending our strike force in from the south. Even though their defense has been severely weakened they still have the advantage of superior numbers, but this is the best chance we will get.

Your mission is to either destroy the Kings' Men around Lingay, or to take the city itself. You must not hesitate as we do not know how long we can bind the forces in the north. Also keep in mind that the small outposts around Lingay are pretty unimportant as long as you can conquer the capital itself.

Good luck. For a free Nexus!
%
The time has finally come. The Kingdoms of the East are calling to the weapons.

Gouverned by the wise Kings of Kyo, Rho-Tan and Lingay, we have long gathered our forces, for it was foretold there would come a time of dire need. When the fighting started between the Free Nexus Army and the invaders from Kand, the Kingdoms had no part in it, both to protect our people and to be able to strike when the Kandelians would be getting weak and tired.

Now the time of the prophecy has come. Last week, Kandelian forces appeared west of Kyo but were easily driven away. A few days later, more troops attacked Kyo from the north. We sent twelve sons of the Kings' Men to Kyo to repel the assault. They did not meet much resistance, and it is clear now that the attack on Kyo was only a means to lure our forces to Kyo, because a much bigger army has been secretly assembling in the south and is now marching on Lingay. However, even though our defenses are weakened, we can still muster roughly twice the men they have.

Defend the city well. Hail to the Kings!
%
Revelation
by Chang Tang Yen at Taipei
<brain13homepage@pchome.com.tw>
%
Well done! One third of the Kingdoms of the East is now basically under our control. You have drastically reduced the threat to our operations.

Mission accomplished.
%
Your assault on Lingay has failed. The fierce defense has repelled the attacking army under your command, and the Kings' banners still fly over Lingay.

Mission failed.
%
On reflection, it seems very odd that the Empire would attack the Kingdoms with such a small force. They must be very desperate or even more stupid. You cannot expect them to make the same mistake twice, though, so you will spend the next weeks preparing the defense lines for when the Kandelians return for real.

You are victorious.
%
It looks like Lingay is lost. The defense has crumbled, and the people are fleeing north, hoping to reach Kyo or Rho-Tan. There, the Kingdoms will assemble another army to take the city back. You have been defeated.
%
The enemy has captured Lingay. The King and his remaining followers will join with the Kingdoms' forces in the north and try to reclaim the city as soon as possible. You have been defeated.
%
Free Nexus Army
%
Kings' Men
%
Lingay
%
Royal Depot
%
Radar Station
%
House of Riders
%
House of Troopers
%
Border Guard
%
High Guard
%
Supply Quarters
[/messages]

[messages(fr)]
Révélation
%	
Dans la partie orientale du continent de Llan se trouve une région appelée les Royaumes de l'Est. Ils sont dirigés par les rois de Kyo, de Rho-Tan et de Lingay. Depuis le début de l'invasion, les Royaumes de l'Est ont été en grande partie ignorés par l'Empire de Kand. Nous avons cru que la raison de cet état de fait était qu'ils ne constituent qu'une petite puissance régionale, de sorte que lee Kandéliens avaient décidés de traiter avec eux plus tard. Les rois eux-mêmes ont également gardé un profil bas de sorte que leurs royaumes soient jusqu'ici épargnés par la guerre. 

Malheureusement, notre évaluation initiale de la situation était incorrecte. L'empire n'est pas encore allé combattre les rois parce qu'ils coopérent avec eux! La semaine dernière un peloton de reconnaissance a été attaqué par des hommes des Rois, juste à l'ouest de Kyo. Les rois sont maintenant considérés comme une menace importante pour nos opérations dans la région, et nous avons décidé de les traiter en conséquence. En dépit de la petite taille des royaumes, ils maintiennent une force armée considérable qui rend un assaut direct impossible. 

Nous avons envoyé une petite force pour mettre en scène une attaque sur Kyo au nord. Les rois ont réagi juste comme nous l'espérions, et ils ont détourné une partie de leurs forces armées vers le nord. Maintenant nous envoyons notre force principale au sud. Quoique leur défense ait été sévèrement affaiblie ils ont toujours l'avantage d'un nombre supérieur, mais c'est la meilleure chance que nous obtiendrons. 

Votre mission est de détruire les armées des Rois autour de Lingay, ou de prendre la ville elle-même. Vous ne devez pas hésiter car nous ne savons pas combien de temps nous pouvons maintenir nos forces dans le nord. Gardez à l'esprit que les petits avant-postes autour de Lingay sont pratiquement sans importance si vous pouvez conquérir la capitale elle-même. 

Bonne chance. Vive le Nexus Libre! 
%
Le moment est finalement venu. Les Royaumes de l'Est appellent aux armes. 

Gouvernés par les rois sages de Kyo, de Rho-Tan et de Lingay, nous avons longtemps rassemblés nos forces armées, parce que, comme prévu, il viendrait un moment où nous en aurions besoin. Quand les combats sont commencés entre l'armée du Nexus libre et les envahisseurs de Kand, les Royaumes de l'Est sont restés neutres, pour protéger notre peuple et pouvoir frapper quand les Kandéliens deviendrait faibles et fatigués. 

Maintenant le moment de la prophétie est venu. La semaine dernière, des forces de Nexus sont apparues à l'ouest de Kyo mais elles ont été facilement repoussées. Quelques jours plus tard, une troupe plus importante a attaqué Kyo au nord. Nous avons envoyé douze pelotons des milices des Rois à Kyo pour repousser l'assaut. Ils n'ont pas rencontré beaucoup de résistance, et il est clair maintenant que l'attaque sur Kyo était seulement un moyen pour attirer nos forces à Kyo, parce qu'une armée beaucoup plus grande s'était secrètement réunie dans le sud et marche maintenant sur Lingay. Cependant, quoique nos défenses soient affaiblies, nous pouvons encore rassembler deux fois plus de combattants que nos assaillants. 

Défendez vaillement la ville. Vive les rois!
%
Révélation

par Chang Tang Yen at Taipei <brain13homepage@pchome.com.tw>
traduction française: Benoit Peureux <benoit.peureux@wanadoo.fr>
%
Bien joué! Un tiers des Royaumes de l'Est est maintenant sous notre seul contrôle. Vous avez considérablement réduit la menace qui s'exerçait sur nos opérations. 

Mission accomplie.
%
Votre assaut sur Lingay a échoué. Une défense féroce a repoussé l'assaut de l'armée sous votre commandement et les bannières des rois volent toujours au-dessus de Lingay.

La mission a échoué.
%
À la réflexion, il semblait très improbable que Nexus attaquerait les Royaumes avec une si petite force. Ils doivent être très désespérés voire stupides. Vous ne pouvez pas vous attendre à ce qu'ils fassent la même erreur deux fois, bien que vous passiez les prochaines semaines à préparer vos lignes de défense en vue du retour des forces de Nexus 

Vous êtes victorieux. 

%
Il semble que Lingay soit perdue. Sa défense s'est émiettée, et le peuple est en fuite vers le nord, espérant atteindre Kyo ou Rho-Tan. Là, les royaumes rassembleront une autre armée pour reprendre la ville. Vous avez été défaits.
%
L'ennemi a capturé Lingay. Le roi et ses derniers fidéles se joindront aux forces des royaumes dans le nord et essayeront de reprendre la ville aussitôt que possible. Vous avez été défaits.
%
Armée du Nexus Libre
%
Milices des Rois
%
Lingay
%
Dépôt royal
%
Station radar
%
Caserne des cavaliers
%
Caserne des troupes
%
Gardes frontiére
%
Gardes d'élite
%
Centre de ravitaillements
[/messages]

[messages(pl)]
Odkrycie
%
We wschodniej części kontynentu Llan jest obszar zwany Królestwami Wschodu. Są one rządzone przez królów Kyo, Rho-Tan i Lingay. Od początku inwazji Królestwa były ignorowane przez Imperium Kandyjskie. Uważaliśmy, że przyczyną tego było to że są oni tylko regionalną stosunkowo słabą siłą, więc Kandeliańczycy zdecydowali rozprawić się z nimi potem. Królowie starali się sami nie rzucać w oczy i dzięki temu ich ziemie nie zostały zniszczone przez wojnę.

Niestety nasza wstępna ocena sytuacji była błędna. Imperium nie zaatakowało Królów ponieważ oni z nim współpracują! W zeszłym tygodniu zwiadowcy zostali zaatakowani przez Królewską Gwardię na zachód od Kyo. Królowie są teraz poważnym zagrożeniem dla naszych działań w regionie i dlatego zdecydowaliśmy się z nimi rozprawić. Pomimo małych rozmiarów Królestw utrzymują one znaczne siły co czyni bezpośrednią napaść niemożliwą.

Wysłaliśmy małe siły aby zorganizować atak na Kyo od północy. Królowie zareagowali tak jak przypuszczaliśmy i skierowali znaczną część swoich sił na północ. Teraz wysyłamy nasze siły uderzeniowe z południa. Pomimo, że ich obrona została osłabiona ciągle mają oni przeważające liczebnie siły, ale i tak jest to nasza jedyna szansa.

Twoim zadaniem jest zniszczyć Królewską Gwardię wokół Lingay albo zająć miasto.  Nie możesz się wahać ponieważ nie wiemy jak długo zwiążemy ich siły na północy. Pamiętaj także, że małe posterunki wokół Lingay są nieważne jeśli tylko jesteś w stanie zająć stolicę.

Powodzenia. Za wolny Nexus!
%
Nadszedł czas. Królestwa Wschodu ruszają do boju.

Rządzeni przez mądrych Królów Kyo, Rho-Tan i Lingay długo zbieraliśmy siły, gdyż zotało przepowiedziane, że nadejdzie straszny czas. Kiedy rozpoczęła się walka między Imperium Kandyjskim a Wolną Armią Nexusu, Królestwa nie brały w niej udziału, gdyż chroniły swoich ludzi i czekały kiedy Kandeliańczycy osłabną.

Nadszedł czas proroczy. W zeszłym tygodniu siły Kandelian pojawiły się na zachodzie Kyo, ale zostały bez trudu zepchnięte. W kilka dni później więcej żołnierzy zaatakowało Kyo od północy. Wysłaliśmy dwunastu gwardzistów aby odpowiedzieć na napaść. Nie stawiali oporu i jest oczywistym, że atak na Kyo służył tylko wywabieniu naszych sił ponieważ większa armia zgromadziła się na południu i maszeruje teraz na Lingay. Jednakże mimo osłabienia mamy wciąż dwa razy więcej ludzi niż oni.

Broń miasta. Chwała Królom!
%
Odkrycie
autor: Chang Tang Yen at Taipei
<brain13homepage@pchome.com.tw>
%
Świetnie! Jedna trzecia z Królestw Wschodu jest już pod naszą kontrolą. Udało ci się zminimalizować zagrożenie dla naszych działań w tym sektorze.

Zadanie wykonane.
%
Twój najazd na Lingay nie udał się. Silna obrona odparła atakującą armię pod twoim dowództwem, a królewskie sztandary wciąż łopoczą nad Lingay.

Zadanie niewykonane.
%
Z drugiej strony wydaje się dziwne, że Imperium atakuje Królestwa tak małymi siłami. Muszą być bardzo zdesperowani albo jeszcze bardziej głupi. Nie możesz się spodziewać, że drugi raz popełnią ten sam błąd, więc przygotuj linie obrony, na czas kiedy Kandeliańczycy zaatakują na dobre.

Zwyciężyłeś.
%
Wygląda na to, że Lingay jest stracone. Obrona się rozpadła, a ludzie uciekają na północ z nadzieją dotarcia do Kyo albo Rho-Tan. Tam Królestwa stworzą nową armię, aby odbić miasto. Zostałeś pokonany.
%
Wróg zajął Lingay. Król i jego pozostali podwładni połączą się z siłami na północy i spróbują odzyskać miasto tak szybko jak będzie to możliwe. Zostałeś pokonany.
%
Wolna Armia Nexusu
%
Królewska Gwardia
%
Lingay
%
Królewski Skład
%
Stacja Radarowa
%
Siedziba Jeźdźców
%
Siedziba Piechoty
%
Strażnik Graniczny
%
Wysoki Strażnik
%
Kwatery Zaopatrzeniowe
[/messages]

[messages(sk)]
Odhalenie
%
Vo východnej časti kontinentu Llan leží oblať nazývaná Kráľovstvá východu. Vládnu tam králi z miest Kyo, Rho-Tan a Lingay. Od začiatku okupácie Impérium Kráľovstvá zväčša ignorovalo. Mysleli sme, že kvôli tomu, že boli len miestne a pomerne malé sily, takže Kandeliánci plánovali vysporiadať sa s nimi neskôr. Králi samotní na seba veľmi neupozorňovali, čoho výsledkom je, že vojna ich ríše zatiaľ nepoškodila.

Nanešťastie naše prvé zhodnotenie situácie bolo nesprávne. Impérium neprenasledovalo kráľov, pretože spolupracovali s cisárom! Minulý týždeň zaútočila kráľovská stráž západne od mesta Kyo na náš prieskumný oddiel. Kráľov teraz musíme považovať za vážnu hrozbu našim operáciám v regióne a rozhodli sme sa podľa toho sa s nimi vysporiadať. Napriek malej veľkosti kráľovstvá vydržiavajú značnú vojenskú silu, ktorá znemožňuje priamy útok.

Vyslali sme menšiu jednotku, aby zo severu naaranžovala útok na Kyo. Králi zareagovali presne tak, ako sme dúfali, a odviedli väčšinu svojich síl na sever. Teraz posielame našu hlavnú údernú silu z juhu. Napriek tomu, že sme ich obranu vážne oslabili, stále majú početnú výhodu. Toto je však naša najlepšia šanca.

Tvojou úlohou je zničiť celú kráľovskú stráž v okolí Lingayu alebo obsadiť mesto samotné. Nesmeš váhať, pretože nevieme, ako dlho dokážeme udržať nepriateľské sily na severe. Maj tiež na mysli, že malé základne v okolí Lingayu nie sú vlastne dôležité, pokiaľ sa ti podarí dobyť samotné hlavné mesto.

Veľa šťastia. Za slobodný Nexus!
%
Konečne nadišiel čas. Kráľovstvá východu povolávajú do zbrane.

Pod vládou múdrych kráľov z Kya, Rho-Tanu a Lingayu sme dlho zbierali sily, pretože bolo predpovedané, že prídu ťažké časy. Keď začali boje medzi Armádou za slobodný Nexus a okupantami z Kandu, kráľovstvá sa ich nezúčastňovali, aby ochraňovali svoj ľud a aby boli schopné zaútočiť, keď Kandeliánci zoslabnú a unavia sa.

Teraz prišiel čas proroctva. Minulý týždeň sa na západ od Kya objavili kandeliánske jednotky, no ľahko sme ich odrazili. O niekoľko dní zaútočili na Kyo ďalšie vojská zo severu. Poslali sme dvanásť synov kráľovskej stráže, aby odvrátili útok. Nestretli sa s veľkým odporom a teraz je jasné, že útok na Kyo bola iba zámienka pre vylákanie našich jednotiek k mestu Kyo, pretože na juhu nepriatelia zozbierali oveľa väčšiu armádu a teraz pochodujú na Lingay. Aj keď naša obrana je oslabená, stále dokážeme zhromaždiť približne dvakrát toľko jednotiek ako nepriateľ.

Obráň naše mesto. Sláva kráľom!
%
Odhalenie
autor Chang Tang Yen at Taipei
<brain13homepage@pchome.com.tw>
%
Výborne! Tretina Kráľovstiev východu je teraz v podstate v našich rukách. Podstatne si znížil ich hrozbu našim operáciám.

Misia splnená.
%
Tvoj útok na Lingay zlyhal. Úporná obrana odvrátila útočiacu armádu pod tvojím velením a kráľovské zástavy stále vejú nad Lingayom.

Misia neúspešná.
%
Po krátkej úvahe sa môže zdať veľmi zvláštne, že impérium by zaútočilo na Kráľovstvá takou malou silou. Musia byť veľmi zúfalí alebo ešte hlúpejší. Nemôžeš však od nich očakávať, že tú istú chybu zopakujú, teda nasledujúce týždne stráviš prípravou obranných línií proti naozajstnému návratu Kandeliáncov.

Zvíťazil si.
%
Zdá sa, že Lingay sme stratili. Obrana je roztrieštená a ľudia utekajú na sever v snahe doraziť do Kya alebo Rho-Tanu. Tam Kráľovstvá zostavia ďalšiu armádu, ktorou mesto znovu dobyjú. Bol si porazený.
%
Nepriatelia dobyli Lingay. Kráľ a jeho zostávajúci stúpenci sa pridajú ku kráľovským silám na severe a vynasnažia sa mesto vziať späť čo najskôr. Bol si porazený.
%
Armáda za slobodný Nexus
%
Kráľovská stráž
%
Lingay
%
Kráľovský sklad
%
Radarová stanica
%
Domov jazdcov
%
Domov pešiakov
%
Hraničná stráž
%
Vysoká stráž
%
Zásobovacie kasárne
[/messages]