Starting balance
This commit is contained in:
Binary file not shown.
@@ -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;
|
||||||
}};
|
}};
|
||||||
|
|
||||||
|
|||||||
@@ -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, () -> {
|
||||||
|
|||||||
@@ -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;
|
||||||
}};
|
}};
|
||||||
|
|
||||||
|
|||||||
@@ -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++){
|
||||||
|
|||||||
Reference in New Issue
Block a user