Actually fixed Serpulo base gen
This commit is contained in:
@@ -2805,9 +2805,7 @@ public class Blocks{
|
||||
}}
|
||||
);
|
||||
|
||||
shoot = new ShootAlternate(){{
|
||||
spread = 3.5f;
|
||||
}};
|
||||
shoot = new ShootAlternate(3.5f);
|
||||
|
||||
shootY = 3f;
|
||||
reload = 20f;
|
||||
@@ -3624,9 +3622,7 @@ public class Blocks{
|
||||
range = 260f;
|
||||
inaccuracy = 3f;
|
||||
recoil = 3f;
|
||||
shoot = new ShootAlternate(){{
|
||||
spread = 8f;
|
||||
}};
|
||||
shoot = new ShootAlternate(8f);
|
||||
shake = 2f;
|
||||
size = 4;
|
||||
shootCone = 24f;
|
||||
|
||||
@@ -50,7 +50,6 @@ public class Planets{
|
||||
new HexSkyMesh(this, 2, 0.15f, 0.14f, 5, Color.valueOf("eba768").a(0.75f), 2, 0.42f, 1f, 0.43f),
|
||||
new HexSkyMesh(this, 3, 0.6f, 0.15f, 5, Color.valueOf("eea293").a(0.75f), 2, 0.42f, 1.2f, 0.45f)
|
||||
);
|
||||
sectorSeed = 1;
|
||||
alwaysUnlocked = true;
|
||||
landCloudColor = Color.valueOf("ed6542");
|
||||
atmosphereColor = Color.valueOf("f07218");
|
||||
@@ -122,6 +121,7 @@ public class Planets{
|
||||
new HexSkyMesh(this, 1, 0.6f, 0.16f, 5, Color.white.cpy().lerp(Pal.spore, 0.55f).a(0.75f), 2, 0.45f, 1f, 0.41f)
|
||||
);
|
||||
|
||||
sectorSeed = 2;
|
||||
allowWaves = true;
|
||||
allowWaveSimulation = true;
|
||||
allowSectorInvasion = true;
|
||||
|
||||
@@ -2518,9 +2518,7 @@ public class UnitTypes{
|
||||
heatColor = Color.valueOf("f9350f");
|
||||
cooldownTime = 30f;
|
||||
|
||||
shoot = new ShootAlternate(){{
|
||||
spread = 3.5f;
|
||||
}};
|
||||
shoot = new ShootAlternate(3.5f);
|
||||
|
||||
bullet = new RailBulletType(){{
|
||||
length = 160f;
|
||||
@@ -4156,7 +4154,7 @@ public class UnitTypes{
|
||||
}};
|
||||
|
||||
manifold = new ErekirUnitType("manifold"){{
|
||||
aiController = CargoAI::new;
|
||||
controller = u -> new CargoAI();
|
||||
isEnemy = false;
|
||||
allowedInPayloads = false;
|
||||
logicControllable = false;
|
||||
@@ -4183,7 +4181,7 @@ public class UnitTypes{
|
||||
}};
|
||||
|
||||
assemblyDrone = new ErekirUnitType("assembly-drone"){{
|
||||
aiController = AssemblerAI::new;
|
||||
controller = u -> new AssemblerAI();
|
||||
|
||||
flying = true;
|
||||
drag = 0.06f;
|
||||
|
||||
Reference in New Issue
Block a user