Reconstructor fixes

This commit is contained in:
Anuken
2020-06-13 18:20:10 -04:00
parent c74d2f8cf2
commit f365d8519b
7 changed files with 26 additions and 3 deletions
+2
View File
@@ -1728,6 +1728,7 @@ public class Blocks implements ContentList{
constructTime = 60f * 60f;
upgrades = new UnitType[][]{
{UnitTypes.revenant, UnitTypes.lich},
};
}};
@@ -1742,6 +1743,7 @@ public class Blocks implements ContentList{
constructTime = 60f * 60f * 3;
upgrades = new UnitType[][]{
{UnitTypes.lich, UnitTypes.reaper},
};
}};
+21
View File
@@ -414,6 +414,27 @@ public class UnitTypes implements ContentList{
}});
}};
lich = new UnitType("lich"){{
speed = 1.1f;
accel = 0.02f;
drag = 0.05f;
rotateSpeed = 2.5f;
flying = true;
lowAltitude = true;
health = 75000;
engineOffset = 38;
engineSize = 7.3f;
hitsize = 58f;
weapons.add(new Weapon(){{
y = 1.5f;
reload = 28f;
alternate = true;
ejectEffect = Fx.shellEjectSmall;
bullet = Bullets.standardCopper;
shootSound = Sounds.shoot;
}});
}};
vanguard = new UnitType("vanguard"){{
speed = 1.3f;