Quads+Horizons damage shields / RTS AI toggle for Serpulo
This commit is contained in:
@@ -87,6 +87,7 @@ public class Planets{
|
||||
};
|
||||
campaignRuleDefaults.fog = true;
|
||||
campaignRuleDefaults.showSpawns = true;
|
||||
campaignRuleDefaults.rtsAI = true;
|
||||
|
||||
unlockedOnLand.add(Blocks.coreBastion);
|
||||
}};
|
||||
@@ -146,6 +147,7 @@ public class Planets{
|
||||
r.placeRangeCheck = false;
|
||||
r.showSpawns = false;
|
||||
};
|
||||
showRtsAIRule = true;
|
||||
iconColor = Color.valueOf("7d4dff");
|
||||
atmosphereColor = Color.valueOf("3c1b8f");
|
||||
atmosphereRadIn = 0.02f;
|
||||
|
||||
@@ -1042,6 +1042,7 @@ public class UnitTypes{
|
||||
|
||||
status = StatusEffects.blasted;
|
||||
statusDuration = 60f;
|
||||
damage = splashDamage * 0.75f;
|
||||
}};
|
||||
}});
|
||||
}};
|
||||
@@ -1446,6 +1447,7 @@ public class UnitTypes{
|
||||
healPercent = 15f;
|
||||
splashDamage = 220f;
|
||||
splashDamageRadius = 80f;
|
||||
damage = splashDamage * 0.75f;
|
||||
}};
|
||||
}});
|
||||
}};
|
||||
@@ -2364,7 +2366,8 @@ public class UnitTypes{
|
||||
//region core
|
||||
|
||||
alpha = new UnitType("alpha"){{
|
||||
aiController = BuilderAI::new;
|
||||
aiController = () -> new BuilderAI(true, 400f);
|
||||
controller = u -> u.team.isAI() ? aiController.get() : new CommandAI();
|
||||
isEnemy = false;
|
||||
|
||||
lowAltitude = true;
|
||||
@@ -2402,7 +2405,8 @@ public class UnitTypes{
|
||||
}};
|
||||
|
||||
beta = new UnitType("beta"){{
|
||||
aiController = BuilderAI::new;
|
||||
aiController = () -> new BuilderAI(true, 400f);
|
||||
controller = u -> u.team.isAI() ? aiController.get() : new CommandAI();
|
||||
isEnemy = false;
|
||||
|
||||
flying = true;
|
||||
@@ -2443,7 +2447,8 @@ public class UnitTypes{
|
||||
}};
|
||||
|
||||
gamma = new UnitType("gamma"){{
|
||||
aiController = BuilderAI::new;
|
||||
aiController = () -> new BuilderAI(true, 400f);
|
||||
controller = u -> u.team.isAI() ? aiController.get() : new CommandAI();
|
||||
isEnemy = false;
|
||||
|
||||
lowAltitude = true;
|
||||
|
||||
Reference in New Issue
Block a user