Misc small fixes

This commit is contained in:
Anuken
2022-02-20 11:14:45 -05:00
parent acb84a6114
commit 989249e7dc
6 changed files with 28 additions and 7 deletions

View File

@@ -3733,14 +3733,13 @@ public class Blocks{
}};
smallDeconstructor = new PayloadDeconstructor("small-deconstructor"){{
requirements(Category.units, with(Items.beryllium, 100, Items.silicon, 100, Items.oxide, 50, Items.graphite, 80));
requirements(Category.units, with(Items.beryllium, 100, Items.silicon, 100, Items.oxide, 40, Items.graphite, 80));
itemCapacity = 100;
consumePower(1f);
size = 3;
deconstructSpeed = 1f;
}};
//TODO consider usefulness and applicability to serpulo... or anything really
deconstructor = new PayloadDeconstructor("deconstructor"){{
requirements(Category.units, with(Items.beryllium, 250, Items.oxide, 100, Items.silicon, 250, Items.carbide, 250));
itemCapacity = 250;
@@ -3756,7 +3755,7 @@ public class Blocks{
consumePower(2f);
size = 3;
//TODO expand this list
filter = Seq.with(Blocks.tungstenWallLarge, Blocks.berylliumWallLarge, Blocks.reinforcedLiquidContainer, Blocks.beamNode);
filter = Seq.with(Blocks.tungstenWallLarge, Blocks.berylliumWallLarge, Blocks.reinforcedLiquidContainer, Blocks.reinforcedContainer, Blocks.beamNode);
}};
//yes this block is pretty much useless

View File

@@ -42,7 +42,7 @@ public class UnitTypes{
//air
public static @EntityDef({Unitc.class}) UnitType flare, eclipse, horizon, zenith, antumbra,
evoke;
evoke, avert;
//air, legacy
public static @EntityDef(value = {Unitc.class}, legacy = true) UnitType mono;
@@ -2917,6 +2917,27 @@ public class UnitTypes{
//endregion
//region erekir - flying
/*
avert = new ErekirUnitType("avert"){{
lowAltitude = false;
flying = true;
drag = 0.08f;
speed = 2.5f;
rotateSpeed = 5f;
accel = 0.09f;
health = 600f;
armor = 2f;
hitSize = 12f;
engineSize = 0;
setEnginesMirror(
new UnitEngine(21 / 4f, 19 / 4f, 2.2f, 45f),
new UnitEngine(23 / 4f, -22 / 4f, 2.2f, 315f)
);
}};
*/
quell = new ErekirUnitType("quell"){{
aiController = FlyingFollowAI::new;
envDisabled = 0;