This commit is contained in:
Anuken
2025-05-14 09:59:37 -04:00
parent bfbc376e92
commit 3fcb24377a
3 changed files with 67 additions and 66 deletions
+1 -1
View File
@@ -1 +1 @@
{presets:{windsweptIslands:97,stainedMountains:86,weatheredChannels:39,craters:220,extractionOutpost:165,coastline:108,navalFortress:216,frontier:222,groundZero:175,mycelialBastion:168,atolls:212,ruinousShores:101,testingGrounds:3,frozenForest:219,fungalPass:23,geothermalStronghold:264,infestedCanyons:210,desolateRift:123,nuclearComplex:130,facility32m:1,planetaryTerminal:93,impact0078:227,seaPort:214,cruxscape:54,biomassFacility:221},attackSectors:[0,2,5,6,10,11,12,13,16,19,24,25,27,28,30,31,33,34,36,38,47,48,49,51,56,57,59,60,66,67,68,70,71,75,76,78,84,90,104,106,110,114,115,121,124,125,127,128,129,133,138,148,149,154,158,180,182,200,202,204,224,225,229,233,234,235,241,243,248,254,255,257,259,265]} {presets:{windsweptIslands:97,stainedMountains:223,weatheredChannels:165,craters:175,coastline:164,navalFortress:37,frontier:215,mycelialBastion:142,atolls:214,ruinousShores:41,overgrowth:86,testingGrounds:99,frozenForest:219,saltFlats:98,taintedWoods:145,infestedCanyons:85,desolateRift:123,nuclearComplex:228,facility32m:1,planetaryTerminal:93,impact0078:227,seaPort:216,geothermalStronghold:264,cruxscape:54,fungalPass:221,tarFields:101,biomassFacility:23},attackSectors:[0,2,5,6,10,11,12,13,16,19,24,25,27,28,30,31,33,34,36,47,48,49,51,56,57,59,60,66,67,68,70,71,75,76,78,84,90,104,106,110,114,115,121,124,125,127,128,129,133,138,148,149,154,158,180,182,200,202,204,210,224,225,229,233,234,235,241,243,248,254,255,257,259,265]}
@@ -533,8 +533,16 @@ public class SerpuloTechTree{
new Research(steamGenerator) new Research(steamGenerator)
), () -> { ), () -> {
node(facility32m, Seq.with(
new Research(plastaniumCompressor),
new Research(lancer),
new Research(salvo),
new SectorComplete(windsweptIslands)
), () -> {
node(tarFields, Seq.with( node(tarFields, Seq.with(
new SectorComplete(windsweptIslands), new SectorComplete(facility32m),
new Research(coalCentrifuge), new Research(coalCentrifuge),
new Research(conduit), new Research(conduit),
new Research(wave) new Research(wave)
@@ -599,12 +607,6 @@ public class SerpuloTechTree{
}); });
}); });
node(facility32m, Seq.with(
new Research(plastaniumCompressor),
new Research(lancer),
new Research(salvo),
new SectorComplete(windsweptIslands)
), () -> {
node(extractionOutpost, Seq.with( node(extractionOutpost, Seq.with(
new SectorComplete(windsweptIslands), new SectorComplete(windsweptIslands),
new SectorComplete(fungalPass), new SectorComplete(fungalPass),
-1
View File
@@ -63,7 +63,6 @@ public class Schematics implements Loadable{
private long lastClearTime; private long lastClearTime;
public Schematics(){ public Schematics(){
Events.on(ClientLoadEvent.class, event -> { Events.on(ClientLoadEvent.class, event -> {
errorTexture = new Texture("sprites/error.png"); errorTexture = new Texture("sprites/error.png");
}); });