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
|
MISSIONLIST
mission: {
id: 1,
name: "1. Basic Space Flight",
desc: "Space-based fighters. Practice launching, flying, docking, and basic spaceborne maneuvering.",
start: "01/09:23:00",
script: "T1.def"
}
mission: {
id: 2,
name: "2. Target Practice",
desc: "Space-based fighters. Practice pairs combat against target drones.",
start: "01/11:15:00",
script: "T2.def"
}
mission: {
id: 3,
name: "3. Flight School",
desc: "Airborne fighters. Practice takeoffs, landings, and basic atmospheric maneuvering.",
start: "01/16:23:00",
script: "T3.def"
}
mission: {
id: 4,
name: "4. Ground Strike",
desc: "Air-to-ground action. Practice destroying ground targets.",
start: "02/05:35:00",
script: "T4.def"
}
mission: {
id: 5,
name: "5. Training Cruise",
desc: "Learn to command starships. Practice engaging target drones with a Frigate class ship.",
start: "03/15:20:00",
script: "T5.def"
}
mission: {
id: 6,
name: "6. Advanced Starship Combat",
desc: "Learn to command starships. Practice engaging starship targets with a Destroyer class ship.",
start: "04/11:00:00",
script: "T6.def"
}
mission: {
id: 7,
name: "7. Carrier Operations",
desc: "Learn to direct fleet operations. Practice orbital carrier operations.",
start: "05/09:30:00",
script: "T7.def"
}
|