sprite for T2 ship

This commit is contained in:
Anuken
2022-04-21 21:36:49 -04:00
parent 30100b4e7c
commit 2bed4b25eb
5 changed files with 22 additions and 1 deletions

View File

@@ -46,7 +46,7 @@ public class UnitTypes{
//air
public static @EntityDef({Unitc.class}) UnitType flare, eclipse, horizon, zenith, antumbra,
evoke, avert;
evoke, avert, obviate;
//air, legacy
public static @EntityDef(value = {Unitc.class}, legacy = true) UnitType mono;
@@ -3338,6 +3338,26 @@ public class UnitTypes{
}});
}};
obviate = new ErekirUnitType("obviate"){{
lowAltitude = false;
flying = true;
drag = 0.08f;
speed = 1.9f;
rotateSpeed = 4f;
accel = 0.09f;
health = 2300f;
armor = 3f;
hitSize = 18f;
engineSize = 4.3f;
engineOffset = 54f / 4f;
fogRadius = 25;
itemCapacity = 0;
setEnginesMirror(
new UnitEngine(59 / 4f, -25 / 4f, 3.1f, 315f)
);
}};
quell = new ErekirUnitType("quell"){{
aiController = FlyingFollowAI::new;
envDisabled = 0;