This commit is contained in:
Anuken
2019-08-16 12:31:44 -04:00
parent 562d3e6528
commit 0429abbb28
5 changed files with 20 additions and 7 deletions

View File

@@ -267,7 +267,7 @@ public class Bullets implements ContentList{
keepVelocity = false;
splashDamageRadius = 25f;
splashDamage = 10f;
lifetime = 50f;
lifetime = 60f;
trailColor = Pal.unitBack;
backColor = Pal.unitBack;
frontColor = Pal.unitFront;

View File

@@ -330,9 +330,9 @@ public class UnitTypes implements ContentList{
baseRotateSpeed = 0.04f;
weapon = new Weapon("lich-missiles"){{
length = 4f;
reload = 180f;
reload = 160f;
width = 22f;
shots = 22;
shots = 16;
shootCone = 100f;
shotDelay = 2;
inaccuracy = 10f;
@@ -341,7 +341,7 @@ public class UnitTypes implements ContentList{
velocityRnd = 0.2f;
spacing = 1f;
bullet = Bullets.missileRevenant;
shootSound = Sounds.missile;
shootSound = Sounds.artillery;
}};
}};
@@ -371,7 +371,18 @@ public class UnitTypes implements ContentList{
inaccuracy = 3f;
roundrobin = true;
ejectEffect = Fx.none;
bullet = Bullets.standardDenseBig;
bullet = new BasicBulletType(7f, 42, "bullet"){
{
bulletWidth = 15f;
bulletHeight = 21f;
shootEffect = Fx.shootBig;
}
@Override
public float range(){
return 165f;
}
};
shootSound = Sounds.shootBig;
}};
}};