Updated tutorials. Added ECM tutorial.

This commit is contained in:
Steve 2015-11-28 15:29:55 +00:00
parent 403684b0dd
commit 3fb9e8ef97
8 changed files with 69 additions and 5 deletions

View File

@ -0,0 +1,21 @@
{
"name" : "CannonDart",
"health" : 15,
"shield" : 0,
"speed" : 2.1,
"reloadTime" : 24,
"shieldRechargeRate" : 0,
"textureName" : "gfx/fighters/dart01.png",
"guns" : [
{
"type" : "BT_PARTICLE",
"x" : -8,
"y" : 0
},
{
"type" : "BT_PARTICLE",
"x" : 8,
"y" : 0
}
]
}

View File

@ -22,5 +22,7 @@
"data/fighters/thunderhead.json",
"data/fighters/scarab.json",
"data/fighters/hammerhead.json",
"data/fighters/khepri.json"
"data/fighters/khepri.json",
"data/fighters/cannonDart.json",
"data/fighters/missileDart.json"
]

View File

@ -0,0 +1,10 @@
{
"name" : "MissileDart",
"health" : 15,
"shield" : 0,
"speed" : 2.1,
"reloadTime" : 24,
"shieldRechargeRate" : 0,
"textureName" : "gfx/fighters/dart01.png",
"missiles" : 999
}

View File

@ -9,9 +9,10 @@
"data/missions/sol/01 - free flight.json",
"data/missions/sol/02 - weapons.json",
"data/missions/sol/03 - moving target.json",
"data/missions/sol/04 - real target.json",
"data/missions/sol/05 - wingmates.json",
"data/missions/sol/06 - final.json"
"data/missions/sol/04 - armed target.json",
"data/missions/sol/05 - ecm.json",
"data/missions/sol/06 - wingmates.json",
"data/missions/sol/07 - final.json"
]
},
{

View File

@ -21,7 +21,7 @@
"fighters" : [
{
"name" : "Dart",
"types" : "SimpleDart",
"types" : "CannonDart",
"side" : "SIDE_PIRATE",
"x" : 25,
"y" : 24

View File

@ -0,0 +1,30 @@
{
"name" : "ECM Training",
"description" : "Practice using your ECM in the next encounter. The Dart here is equipped with missiles, which will home in on you. You can thwart these attacks by careful use of your ECM. Once you are done practicing, you can destroy the Dart and move on.",
"background" : "gfx/backgrounds/background03.jpg",
"planet" : "gfx/planets/earth.png",
"music" : "music/Battle in the winter.mp3",
"objectives" : [
{
"description" : "Eliminate Dart",
"targetName" : "Dart",
"targetValue" : 1,
"targetType" : "TT_DESTROY"
}
],
"player" : {
"type" : "TAF",
"side" : "SIDE_ALLIES",
"pilot" : "Jim Goddard",
"squadron" : "Midnight Runners"
},
"fighters" : [
{
"name" : "Dart",
"types" : "MissileDart",
"side" : "SIDE_PIRATE",
"x" : 25,
"y" : 24
}
]
}