WIP campaign completion text

This commit is contained in:
Anuken
2022-10-29 19:25:37 -04:00
parent b3874b76e0
commit 3bdf0bdc1f
11 changed files with 54 additions and 7 deletions

View File

@@ -2951,7 +2951,7 @@ public class Blocks{
}};
coreAcropolis = new CoreBlock("core-acropolis"){{
requirements(Category.effect, with(Items.beryllium, 8000, Items.silicon, 7000, Items.tungsten, 6000, Items.carbide, 5000, Items.oxide, 4000));
requirements(Category.effect, with(Items.beryllium, 6000, Items.silicon, 5000, Items.tungsten, 5000, Items.carbide, 3000, Items.oxide, 3000));
unitType = UnitTypes.emanate;
health = 30000;

View File

@@ -56,8 +56,10 @@ public class ErekirTechTree{
var costMultipliers = new ObjectFloatMap<Item>();
//these are hard to make
costMultipliers.put(Items.oxide, 0.5f);
costMultipliers.put(Items.surgeAlloy, 0.8f);
costMultipliers.put(Items.carbide, 0.35f);
costMultipliers.put(Items.surgeAlloy, 0.7f);
costMultipliers.put(Items.carbide, 0.3f);
for(var item : content.items()) costMultipliers.put(item, 0.9f);
Planets.erekir.techTree = nodeRoot("erekir", coreBastion, true, () -> {
context().researchCostMultipliers = costMultipliers;

View File

@@ -105,6 +105,7 @@ public class SectorPresets{
planetaryTerminal = new SectorPreset("planetaryTerminal", serpulo, 93){{
difficulty = 10;
isLastSector = true;
}};
//endregion
@@ -183,6 +184,7 @@ public class SectorPresets{
origin = new SectorPreset("origin", erekir, 12){{
difficulty = 10;
isLastSector = true;
}};
//endregion