From 2b3fecce88bd7b5f43bfd9bda6a3ec13704d67e6 Mon Sep 17 00:00:00 2001 From: Steve Date: Fri, 4 Mar 2016 14:14:57 +0000 Subject: [PATCH] Added Challenge #7. --- data/challenges/07.json | 126 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 126 insertions(+) create mode 100644 data/challenges/07.json diff --git a/data/challenges/07.json b/data/challenges/07.json new file mode 100644 index 0000000..54a9a1b --- /dev/null +++ b/data/challenges/07.json @@ -0,0 +1,126 @@ +{ + "name" : "Pass all Waypoints", + "description" : "Pass all Waypoints", + "background" : "AUTO", + "planet" : "AUTO", + "music" : "AUTO", + "player" : { + "type" : "Nymph", + "side" : "SIDE_ALLIES", + "pilot" : "-", + "squadron" : "-", + "x" : 25, + "y" : 25 + }, + "challenge" : { + "waypointLimit" : 5, + "challenges" : [ + { + "type" : "CHALLENGE_TIME", + "value" : 60 + }, + { + "type" : "CHALLENGE_TIME", + "value" : 90 + }, + { + "type" : "CHALLENGE_TIME", + "value" : 120 + } + ] + }, + "fighters" : [ + { + "groupName" : "RT1", + "types" : "Rocket Turret", + "x" : 35, + "y" : 15, + "side" : "SIDE_REBEL", + "active" : 0 + }, + { + "groupName" : "RT2", + "types" : "Rocket Turret", + "x" : 15, + "y" : 15, + "side" : "SIDE_REBEL", + "active" : 0 + }, + { + "groupName" : "RT3", + "types" : "Rocket Turret", + "x" : 15, + "y" : 35, + "side" : "SIDE_REBEL", + "active" : 0 + } + { + "groupName" : "RT4", + "types" : "Rocket Turret", + "x" : 25, + "y" : 25, + "side" : "SIDE_REBEL", + "scatter" : 500, + "number" : 2, + "active" : 0 + } + ], + "entities" : [ + { + "type" : "ET_WAYPOINT", + "x" : 35, + "y" : 35, + "active" : 0 + }, + { + "type" : "ET_WAYPOINT", + "x" : 35, + "y" : 15, + "active" : 0 + }, + { + "type" : "ET_WAYPOINT", + "x" : 15, + "y" : 15, + "active" : 0 + }, + { + "type" : "ET_WAYPOINT", + "x" : 15, + "y" : 35, + "active" : 0 + }, + { + "type" : "ET_WAYPOINT", + "x" : 25, + "y" : 25, + "active" : 0 + } + ], + "script" : [ + { + "function" : "Waypoint #1", + "lines" : [ + "ACTIVATE_ENTITY_GROUPS RT1" + ] + }, + { + "function" : "Waypoint #2", + "lines" : [ + "ACTIVATE_ENTITY_GROUPS RT2" + ] + }, + { + "function" : "Waypoint #3", + "lines" : [ + "ACTIVATE_ENTITY_GROUPS RT3" + ] + }, + { + "function" : "Waypoint #4", + "lines" : [ + "ACTIVATE_ENTITY_GROUPS RT4" + ] + } + ] +}