Added Hyena and Leopard.

This commit is contained in:
Steve 2015-11-01 11:36:23 +00:00
parent b1b8b7773b
commit 5466bb2ea5
3 changed files with 69 additions and 1 deletions

35
data/fighters/hyena.json Normal file
View File

@ -0,0 +1,35 @@
{
"name" : "Hyena",
"health" : 60,
"shield" : 30,
"speed" : 1.7,
"reloadTime" : 15,
"shieldRechargeRate" : 40,
"textureName" : "gfx/fighters/hyena.png",
"guns" : [
{
"type" : "BT_PLASMA",
"x" : -12,
"y" : -12
},
{
"type" : "BT_PLASMA",
"x" : 12,
"y" : -12
},
{
"type" : "BT_MAG",
"x" : -8,
"y" : -12
},
{
"type" : "BT_MAG",
"x" : 8,
"y" : -12
}
],
"missiles" : {
"type" : "MISSILE_MISSILE",
"ammo" : 4
}
}

View File

@ -0,0 +1,31 @@
{
"name" : "Leopard",
"health" : 100,
"shield" : 75,
"speed" : 1.6,
"reloadTime" : 16,
"shieldRechargeRate" : 70,
"textureName" : "gfx/fighters/leopard.png",
"guns" : [
{
"type" : "BT_PLASMA",
"x" : -12,
"y" : -12
},
{
"type" : "BT_PLASMA",
"x" : 12,
"y" : -12
},
{
"type" : "BT_PARTICLE",
"x" : 0,
"y" : -16
}
],
"combinedGuns" : 1,
"missiles" : {
"type" : "MISSILE_MISSILE",
"ammo" : 3
}
}

View File

@ -9,5 +9,7 @@
"data/fighters/unarmedDart.json",
"data/fighters/ray.json",
"data/fighters/nymph.json",
"data/fighters/firefly.json"
"data/fighters/firefly.json",
"data/fighters/hyena.json",
"data/fighters/leopard.json"
]