Added ground mech flight

This commit is contained in:
Anuken
2018-08-21 12:22:49 -04:00
parent 6dcbe4fabb
commit 34f2704dc7
7 changed files with 48 additions and 34 deletions

View File

@@ -21,6 +21,7 @@ public class Mechs implements ContentList{
alpha = new Mech("alpha-mech", false){{
drillPower = 1;
mineSpeed = 1.5f;
speed = 0.5f;
boostSpeed = 0.85f;
weapon = Weapons.blaster;
@@ -56,6 +57,7 @@ public class Mechs implements ContentList{
dart = new Mech("dart-ship", true){{
drillPower = 1;
mineSpeed = 0.9f;
speed = 0.4f;
maxSpeed = 3f;
drag = 0.1f;

View File

@@ -47,8 +47,8 @@ public class Weapons implements ContentList{
roundrobin = true;
shots = 6;
inaccuracy = 10f;
recoil = 2f;
velocityRnd = 0.7f;
shake = 2f;
ejectEffect = ShootFx.shellEjectSmall;
ammo = AmmoTypes.shotgunTungsten;
}};