Start of first Aster mission.

This commit is contained in:
Steve 2016-03-28 11:47:24 +01:00
parent ab8be196b5
commit 0e4129069a
1 changed files with 119 additions and 0 deletions

View File

@ -0,0 +1,119 @@
{
"name" : "Return to Aster",
"description" : "",
"requires" : 30,
"background" : "gfx/backgrounds/background04.jpg",
"planet" : "gfx/planets/bluePlanet.png",
"music" : "music/battle/track-3.mp3",
"manualComplete" : 1,
"objectives" : [
{
"description" : "Protect CSN Florin",
"targetName" : "CSN Florin",
"targetValue" : 1,
"targetType" : "TT_DESTROY",
"isCondition" : 1
},
{
"description" : "Destroy Pandoran shuttles and tugs",
"targetName" : "ShuttleTug",
"targetValue" : 12,
"targetType" : "TT_DESTROY",
"active" : 0
},
{
"description" : "Defeat rebel forces",
"targetName" : "Rebels",
"targetValue" : 12,
"targetType" : "TT_DESTROY",
"active" : 0
}
],
"player" : {
"type" : "Rook",
"side" : "SIDE_ALLIES",
"pilot" : "Shaun Black",
"squadron" : "Salty Wildcats",
"x" : 5,
"y" : 45
},
"fighters" : [
{
"types" : "TAF;Ray",
"side" : "SIDE_ALLIES",
"x" : 5,
"y" : 45,
"number" : 7,
"scatter" : 350
},
{
"groupName" : "ShuttleTug",
"types" : "INF Tug",
"side" : "SIDE_PANDORAN",
"x" : 25,
"y" : 25,
"number" : 6,
"aiFlags" : "+AIF_MOVES_TO_LEADER"
},
{
"groupName" : "ShuttleTug",
"types" : "Shuttle",
"side" : "SIDE_PANDORAN",
"x" : 25,
"y" : 25,
"number" : 6,
"aiFlags" : "+AIF_MOVES_TO_LEADER"
},
{
"types" : "Thunderhead;Jackal;Sphinx",
"side" : "SIDE_PANDORAN",
"x" : 25,
"y" : 30,
"number" : 4,
"flags" : "+EF_AI_LEADER",
"aiFlags" : "+AIF_UNLIMITED_RANGE"
}
],
"capitalShips" : [
{
"name" : "CSN Florin",
"types" : "CSN Corvette 01",
"side" : "SIDE_ALLIES",
"x" : 10,
"y" : 40,
"flags" : "+EF_AI_TARGET+EF_DISABLED+EF_MISSION_TARGET"
}
],
"script" : [
{
"function" : "TIME 2",
"lines" : [
"MSG_BOX Black;Florin, this is Black of the Salty Wildcats, here to assist.",
"MSG_BOX CSN Florin;Glad to see you, Wildcats. The Pandorans arrived shortly before you did. We've got tugs and shuttles incoming.",
"MSG_BOX Black;Acknowledged, we'll secure the area while you get things up and running.",
"WAIT_MSG_BOX",
"ACTIVATE_OBJECTIVES Destroy Pandoran shuttles and tugs"
]
},
{
"function" : "ENEMIES_DESTROYED 16",
"lines" : [
"WAIT 2",
"MSG_BOX Black;Florin, Pandoran vessels have been dealt with.",
"MSG_BOX CSN Florin;Many thanks, Wildcats. We've identified the cause of the power outage. Should be no more than a few minutes before we can restart all systems.",
"WAIT_MSG_BOX",
"WAIT 10",
"MSG_BOX CSN Florin;Wildcats, we're picking up an incoming squadron.",
"MSG_BOX Black;More Pandoran tugs?",
"MSG_BOX CSN Florin;Negative. These appear to be non-aligned forces, fighters and bombers.",
"WAIT_MSG_BOX",
"WAIT 5",
"ACTIVATE_ENTITY_GROUP Rebels",
"MSG_BOX CSN Florin;Incoming forces are on intercept vectors. We only need a few more minutes.",
"MSG_BOX Black;On it.",
"WAIT_MSG_BOX",
"ACTIVATE_OBJECTIVES Defeat rebel forces"
]
}
]
}