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
|
MISSION
id: 2
name: "Fighter Thrash Pit"
type: "Patrol"
desc: "Multiple spaceborne fighters locked in team-vs-team action."
system: "Kolchev"
region: "Kolchev"
objective: "* Eliminate all enemy fighters.\n* Protect friendly strike ships."
sitrep: "Get ready to rumble! This is a team-vs-team scenario with six ships on each side. "
"The Blue team has four Stormhawk multirole fighters and two Thunderbolt attack ships, "
"while the Red team has four Viper interceptors and two Avenger heavy fighters.\n\n"
"Your mission is to eliminate the opposition and protect your team mates. All ships "
"have three lives, so be sure to watch your back!"
start: "33:00:00"
degrees: true
element: {
name: "Alpha",
design: "Stormhawk",
mission: "Misc",
intel: "Secret",
count: 4,
command_ai:1,
iff: 1,
player: 1,
playable: true,
region: "Kolchev",
loc: (0, 0, 0),
respawns: 2,
loadout: { ship: -1, name: "ACM Medium Range" },
objective: { cmd: Escort, tgt: "Bravo" },
}
element: {
name: "Bravo",
design: "Thunderbolt",
mission: "Misc",
intel: "Secret",
count: 2,
command_ai:1,
iff: 1,
playable: true,
region: "Kolchev",
loc: (23000, 4000, 0),
respawns: 2,
loadout: { ship: -1, name: "ACM Medium Range" },
}
element: {
name: "Narom",
design: "Viper",
mission: "Misc",
intel: "Secret",
count: 4,
command_ai:1,
iff: 2,
playable: true,
region: "Kolchev",
loc: (27000, -34000, 0),
head: 179,
respawns: 2,
loadout: { ship: -1, name: "ACM Medium Range" },
objective: { cmd: Escort, tgt: "Nagal" },
}
element: {
name: "Nagal",
design: "Avenger",
mission: "Misc",
intel: "Secret",
count: 2,
command_ai:1,
iff: 2,
playable: true,
region: "Kolchev",
loc: (22000, -46000, 0),
head: 179,
respawns: 2,
loadout: { ship: -1, name: "ACM Medium Range" },
}
// EOF
|