Decreased flyer speed, damage, moved start wave / Wave time increase
This commit is contained in:
@@ -125,7 +125,7 @@ public class StatusEffects implements ContentList {
|
||||
overdrive = new StatusEffect(6f) {
|
||||
{
|
||||
armorMultiplier = 0.95f;
|
||||
speedMultiplier = 1.4f;
|
||||
speedMultiplier = 1.05f;
|
||||
damageMultiplier = 1.4f;
|
||||
}
|
||||
|
||||
|
||||
@@ -42,7 +42,7 @@ public class UnitTypes implements ContentList {
|
||||
|
||||
vtol = new UnitType("vtol", Vtol.class, Vtol::new){{
|
||||
speed = 0.3f;
|
||||
maxVelocity = 2.1f;
|
||||
maxVelocity = 1.9f;
|
||||
drag = 0.01f;
|
||||
isFlying = true;
|
||||
}};
|
||||
@@ -50,7 +50,7 @@ public class UnitTypes implements ContentList {
|
||||
monsoon = new UnitType("monsoon", Monsoon.class, Monsoon::new){{
|
||||
health = 230;
|
||||
speed = 0.2f;
|
||||
maxVelocity = 1.5f;
|
||||
maxVelocity = 1.4f;
|
||||
drag = 0.01f;
|
||||
isFlying = true;
|
||||
weapon = Weapons.bomber;
|
||||
|
||||
@@ -35,7 +35,7 @@ public class Weapons implements ContentList {
|
||||
|
||||
chainBlaster = new Weapon("chain-blaster") {{
|
||||
length = 1.5f;
|
||||
reload = 20f;
|
||||
reload = 30f;
|
||||
roundrobin = true;
|
||||
ejectEffect = ShootFx.shellEjectSmall;
|
||||
setAmmo(AmmoTypes.bulletLead, AmmoTypes.bulletCarbide, AmmoTypes.bulletTungsten, AmmoTypes.bulletSilicon, AmmoTypes.bulletThorium);
|
||||
|
||||
Reference in New Issue
Block a user