Added Hammerhead, Khepri, Scarab, and Thunderhead.

This commit is contained in:
Steve 2015-11-21 17:28:10 +00:00
parent 9580ad4e4f
commit fe42f5153d
5 changed files with 129 additions and 1 deletions

View File

@ -0,0 +1,27 @@
{
"name" : "Hammerhead",
"health" : 40,
"shield" : 35,
"speed" : 1.5,
"reloadTime" : 25,
"shieldRechargeRate" : 60,
"textureName" : "gfx/fighters/hammerhead.png",
"guns" : [
{
"type" : "BT_PLASMA",
"x" : -12,
"y" : 0
},
{
"type" : "BT_PLASMA",
"x" : 12,
"y" : 0
}
],
"missiles" : {
"type" : "MISSILE_MISSILE",
"ammo" : 60
},
"flags" : "EF_AVOIDS_COMBAT",
"aiFlags" : "AIF_MISSILE_BOAT"
}

32
data/fighters/khepri.json Normal file
View File

@ -0,0 +1,32 @@
{
"name" : "Khepri",
"health" : 40,
"shield" : 35,
"speed" : 1.5,
"reloadTime" : 25,
"shieldRechargeRate" : 60,
"textureName" : "gfx/fighters/khepri.png",
"guns" : [
{
"type" : "BT_PLASMA",
"x" : -12,
"y" : 0
},
{
"type" : "BT_PLASMA",
"x" : 12,
"y" : 0
},
{
"type" : "BT_PLASMA",
"x" : 0,
"y" : 0
}
],
"missiles" : {
"type" : "MISSILE_MISSILE",
"ammo" : 80
},
"flags" : "EF_AVOIDS_COMBAT",
"aiFlags" : "AIF_MISSILE_BOAT"
}

View File

@ -18,5 +18,6 @@
"data/fighters/shuttle.json",
"data/fighters/kingfisher.json",
"data/fighters/mantis.json",
"data/fighters/rook.json"
"data/fighters/rook.json",
"data/fighters/thunderhead.json"
]

27
data/fighters/scarab.json Normal file
View File

@ -0,0 +1,27 @@
{
"name" : "Scarab",
"health" : 40,
"shield" : 35,
"speed" : 1.5,
"reloadTime" : 25,
"shieldRechargeRate" : 60,
"textureName" : "gfx/fighters/scarab.png",
"guns" : [
{
"type" : "BT_PLASMA",
"x" : -12,
"y" : 0
},
{
"type" : "BT_PLASMA",
"x" : 12,
"y" : 0
}
],
"missiles" : {
"type" : "MISSILE_MISSILE",
"ammo" : 60
},
"flags" : "EF_AVOIDS_COMBAT",
"aiFlags" : "AIF_MISSILE_BOAT"
}

View File

@ -0,0 +1,41 @@
{
"name" : "Thunderhead",
"health" : 60,
"shield" : 45,
"speed" : 1.5,
"reloadTime" : 12,
"shieldRechargeRate" : 65,
"textureName" : "gfx/fighters/thunderhead.png",
"guns" : [
{
"type" : "BT_PLASMA",
"x" : -12,
"y" : 0
},
{
"type" : "BT_PLASMA",
"x" : 12,
"y" : 0
},
{
"type" : "BT_PLASMA",
"x" : 0,
"y" : 0
},
{
"type" : "BT_PARTICLE",
"x" : -5,
"y" : 0
},
{
"type" : "BT_PARTICLE",
"x" : 5,
"y" : 0
}
],
"combinedGuns" : 1,
"missiles" : {
"type" : "MISSILE_MISSILE",
"ammo" : 4
}
}