From 0e4129069acadb8c2a69180c3de73c6db99b7c37 Mon Sep 17 00:00:00 2001 From: Steve Date: Mon, 28 Mar 2016 11:47:24 +0100 Subject: [PATCH] Start of first Aster mission. --- .../aster/01 - return to aster #1.json | 119 ++++++++++++++++++ 1 file changed, 119 insertions(+) create mode 100644 data/missions/aster/01 - return to aster #1.json diff --git a/data/missions/aster/01 - return to aster #1.json b/data/missions/aster/01 - return to aster #1.json new file mode 100644 index 0000000..e476c6e --- /dev/null +++ b/data/missions/aster/01 - return to aster #1.json @@ -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" + ] + } + ] +}