From a578729307bb19e9c55c77f3033bc36bcad3e880 Mon Sep 17 00:00:00 2001 From: Steve Date: Wed, 1 Jun 2016 09:30:49 +0100 Subject: [PATCH] Challenges 24 and 25. --- data/challenges/24.json | 58 +++++++++++++++++++++++++++++++++++++++++ data/challenges/25.json | 51 ++++++++++++++++++++++++++++++++++++ 2 files changed, 109 insertions(+) create mode 100644 data/challenges/24.json create mode 100644 data/challenges/25.json diff --git a/data/challenges/24.json b/data/challenges/24.json new file mode 100644 index 0000000..5dc1ba3 --- /dev/null +++ b/data/challenges/24.json @@ -0,0 +1,58 @@ +{ + "name" : "Gate Smasher", + "description" : "Gate Smasher", + "background" : "AUTO", + "planet" : "AUTO", + "music" : "AUTO", + "player" : { + "type" : "Scarab", + "side" : "SIDE_PANDORAN", + "pilot" : "-", + "squadron" : "-", + "x" : 25, + "y" : 35 + }, + "challenge" : { + "timeLimit" : 60, + "challenges" : [ + { + "type" : "CHALLENGE_TIME", + "value" : 60 + }, + { + "type" : "CHALLENGE_PLAYER_KILLS", + "value" : 5 + }, + { + "type" : "CHALLENGE_ARMOUR", + "value" : 100 + } + ] + }, + "fighters" : [ + { + "types" : "Rapid Plasma Turret", + "side" : "SIDE_ALLIES", + "x" : 25, + "y" : 30, + "scatter" : 1000, + "number" : 5 + } + ], + "entities" : [ + { + "type" : "ET_JUMPGATE", + "side" : "SIDE_ALLIES", + "x" : 25, + "y" : 30 + } + ], + "script" : [ + { + "function" : "JUMPGATE_HEALTH 1", + "lines" : [ + "END_CHALLENGE" + ] + } + ] +} diff --git a/data/challenges/25.json b/data/challenges/25.json new file mode 100644 index 0000000..23bc83e --- /dev/null +++ b/data/challenges/25.json @@ -0,0 +1,51 @@ +{ + "name" : "Minefield Race", + "description" : "Minefield Race", + "background" : "AUTO", + "planet" : "AUTO", + "music" : "AUTO", + "waypointAutoAdvance" : 1, + "player" : { + "type" : "Shuttle", + "side" : "SIDE_ALLIES", + "pilot" : "-", + "squadron" : "-", + "x" : 25, + "y" : 25 + }, + "challenge" : { + "timeLimit" : 120, + "waypointLimit" : 12, + "noBoost" : 1, + "challenges" : [ + { + "type" : "CHALLENGE_WAYPOINTS", + "value" : 5 + }, + { + "type" : "CHALLENGE_WAYPOINTS", + "value" : 10 + }, + { + "type" : "CHALLENGE_WAYPOINTS", + "value" : 12 + } + ] + }, + "entities" : [ + { + "type" : "ET_WAYPOINT", + "x" : 25, + "y" : 25, + "number" : 12, + "scatter" : 2000 + }, + { + "type" : "ET_MINE", + "x" : 25, + "y" : 25, + "number" : 100, + "scatter" : 4000 + } + ] +}