Added Hammerhead, Khepri, Scarab, and Thunderhead.
This commit is contained in:
parent
9580ad4e4f
commit
fe42f5153d
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
]
|
||||
|
|
|
@ -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"
|
||||
}
|
|
@ -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
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue