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

View File

@@ -117,11 +117,11 @@ public class TurretBlocks extends BlockList implements ContentList{
arc = new PowerTurret("arc"){{
shootType = AmmoTypes.arc;
reload = 60f;
reload = 55f;
shootShake = 1f;
shootCone = 40f;
rotatespeed = 8f;
powerUsed = 5f;
powerUsed = 7f;
powerCapacity = 30f;
range = 130f;
shootEffect = ShootFx.lightningShoot;

View File

@@ -316,7 +316,7 @@ public class TurretBullets extends BulletList implements ContentList{
@Override
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);
}
};