Arc balancing

This commit is contained in:
Anuken
2018-10-09 19:52:36 -04:00
parent faa1fee1c0
commit 67389c0bac
2 changed files with 3 additions and 3 deletions
@@ -117,11 +117,11 @@ public class TurretBlocks extends BlockList implements ContentList{
arc = new PowerTurret("arc"){{ arc = new PowerTurret("arc"){{
shootType = AmmoTypes.arc; shootType = AmmoTypes.arc;
reload = 60f; reload = 55f;
shootShake = 1f; shootShake = 1f;
shootCone = 40f; shootCone = 40f;
rotatespeed = 8f; rotatespeed = 8f;
powerUsed = 5f; powerUsed = 7f;
powerCapacity = 30f; powerCapacity = 30f;
range = 130f; range = 130f;
shootEffect = ShootFx.lightningShoot; shootEffect = ShootFx.lightningShoot;
@@ -316,7 +316,7 @@ public class TurretBullets extends BulletList implements ContentList{
@Override @Override
public void init(Bullet b){ public void init(Bullet b){
Lightning.create(b.getTeam(), Palette.lancerLaser, damage, b.x, b.y, b.angle(), 34); Lightning.create(b.getTeam(), Palette.lancerLaser, damage, b.x, b.y, b.angle(), 36);
} }
}; };