This commit is contained in:
Anuken
2021-08-19 09:36:53 -04:00
parent a67b7a6e77
commit a39f2bd3a9
8 changed files with 70 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ import static arc.math.Angles.*;
import static mindustry.Vars.*;
public class UnitTypes implements ContentList{
//region definitions
//region standard
//mech
public static @EntityDef({Unitc.class, Mechc.class}) UnitType mace, dagger, crawler, fortress, scepter, reign, vela;
@@ -67,6 +67,12 @@ public class UnitTypes implements ContentList{
//endregion
//region neoplasm
public static @EntityDef({Unitc.class, Crawlc.class}) UnitType scuttler;
//endregion
@Override
public void load(){
//region ground attack
@@ -2394,6 +2400,16 @@ public class UnitTypes implements ContentList{
}
};
//endregion
//region neoplasm
scuttler = new UnitType("scuttler"){{
hitSize = 30f;
omniMovement = false;
rotateSpeed = 1f;
drawCell = false;
}};
//endregion
}
}