Minor unit balance / Cleanup

This commit is contained in:
Anuken
2022-10-19 15:13:26 -04:00
parent 5337e3e171
commit d7547d2e68
8 changed files with 21 additions and 28 deletions

View File

@@ -24,6 +24,10 @@ public class AsteroidGenerator extends BlankPlanetGenerator{
@Nullable Rand rand;
int seed;
{
defaultLoadout = Loadouts.basicNucleus;
}
void asteroid(int ax, int ay, int radius){
Floor floor = (
rand.chance(iceChance) ? Blocks.ice :
@@ -151,11 +155,6 @@ public class AsteroidGenerator extends BlankPlanetGenerator{
state.rules.spawns = Waves.generate(0.5f, rand, false, true, false);
}
@Override
public Schematic getDefaultLoadout(){
return Loadouts.basicNucleus;
}
@Override
public int getSectorSize(Sector sector){
return 500;

View File

@@ -31,6 +31,7 @@ public class ErekirPlanetGenerator extends PlanetGenerator{
{
baseSeed = 2;
defaultLoadout = Loadouts.basicBastion;
}
@Override
@@ -61,11 +62,6 @@ public class ErekirPlanetGenerator extends PlanetGenerator{
return 2000 * 1.07f * 6f / 5f;
}
@Override
public Schematic getDefaultLoadout(){
return Loadouts.basicBastion;
}
@Override
public boolean allowLanding(Sector sector){
//TODO disallowed for now