Starting balance

This commit is contained in:
Anuken
2022-01-24 12:21:45 -05:00
parent 757e11060f
commit 551d01bf6e
5 changed files with 5 additions and 4 deletions

Binary file not shown.

View File

@@ -1795,7 +1795,7 @@ public class Blocks{
}}; }};
ductRouter = new DuctRouter("duct-router"){{ ductRouter = new DuctRouter("duct-router"){{
requirements(Category.distribution, with(Items.graphite, 8)); requirements(Category.distribution, with(Items.graphite, 8, Items.beryllium, 4));
speed = 4f; speed = 4f;
}}; }};

View File

@@ -50,7 +50,8 @@ public class ErekirTechTree{
}); });
}); });
node(constructor, erekirSector, () -> { //TODO further in? no use for these without units.
node(constructor, Seq.with(new Research(siliconArcFurnace), erekirSector.first()), () -> {
node(payloadLoader, () -> { node(payloadLoader, () -> {
node(payloadUnloader, () -> { node(payloadUnloader, () -> {
node(payloadPropulsionTower, () -> { node(payloadPropulsionTower, () -> {

View File

@@ -114,7 +114,7 @@ public class SectorPresets{
onset = new SectorPreset("onset", erekir, 10){{ onset = new SectorPreset("onset", erekir, 10){{
addStartingItems = true; addStartingItems = true;
captureWave = 4; captureWave = 2;
difficulty = 1; difficulty = 1;
}}; }};

View File

@@ -362,7 +362,7 @@ public abstract class SaveVersion extends SaveFileReader{
public void readWorldEntities(DataInput stream) throws IOException{ public void readWorldEntities(DataInput stream) throws IOException{
//entityMapping is null in older save versions, so use the default //entityMapping is null in older save versions, so use the default
Prov[] mapping = this.entityMapping == null ? EntityMapping.idMap : this.entityMapping; var mapping = this.entityMapping == null ? EntityMapping.idMap : this.entityMapping;
int amount = stream.readInt(); int amount = stream.readInt();
for(int j = 0; j < amount; j++){ for(int j = 0; j < amount; j++){