diff --git a/data/turrets/list.json b/data/turrets/list.json index d03a964..8012f8d 100644 --- a/data/turrets/list.json +++ b/data/turrets/list.json @@ -1,3 +1,4 @@ [ - "data/turrets/rocketTurret.json" + "data/turrets/rocketTurret.json", + "data/turrets/plasmaTurret.json" ] diff --git a/data/turrets/plasmaTurret.json b/data/turrets/plasmaTurret.json new file mode 100644 index 0000000..2ab550c --- /dev/null +++ b/data/turrets/plasmaTurret.json @@ -0,0 +1,29 @@ +{ + "name" : "Plasma Turret", + "health" : 150, + "shield" : 150, + "speed" : 0, + "reloadTime" : 30, + "shieldRechargeRate" : 10, + "textureName" : "gfx/cannons/plasmaTurret.png", + "deathType" : "DT_NO_SPIN", + "guns" : [ + { + "type" : "BT_PLASMA", + "x" : 0, + "y" : 0 + }, + { + "type" : "BT_PLASMA", + "x" : -8, + "y" : -4 + }, + { + "type" : "BT_PLASMA", + "x" : 8, + "y" : -4 + } + ], + "flags" : "EF_TAKES_DAMAGE", + "aiFlags" : "AIF_AGGRESSIVE+AIF_LONG_RANGE_FIRE" +} diff --git a/data/turrets/rocketTurret.json b/data/turrets/rocketTurret.json index 0745b34..d792ea5 100644 --- a/data/turrets/rocketTurret.json +++ b/data/turrets/rocketTurret.json @@ -1,5 +1,5 @@ { - "name" : "RocketTurret", + "name" : "Rocket Turret", "health" : 125, "shield" : 25, "speed" : 0, diff --git a/gfx/cannons/plasmaODP.png b/gfx/cannons/plasmaODP.png deleted file mode 100644 index db9b5ee..0000000 Binary files a/gfx/cannons/plasmaODP.png and /dev/null differ diff --git a/gfx/cannons/plasmaTurret.png b/gfx/cannons/plasmaTurret.png new file mode 100644 index 0000000..bc90492 Binary files /dev/null and b/gfx/cannons/plasmaTurret.png differ