Balance
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
}};
|
||||
}};
|
||||
|
||||
Reference in New Issue
Block a user