This commit is contained in:
Anuken
2022-10-30 14:19:14 -04:00
parent 9ad8d07853
commit 4b97814955
2 changed files with 3 additions and 3 deletions

View File

@@ -54,14 +54,14 @@ public class ErekirTechTree{
Seq<Objective> erekirSector = Seq.with(new OnPlanet(Planets.erekir));
var costMultipliers = new ObjectFloatMap<Item>();
for(var item : content.items()) costMultipliers.put(item, 0.9f);
//these are hard to make
costMultipliers.put(Items.oxide, 0.5f);
costMultipliers.put(Items.surgeAlloy, 0.7f);
costMultipliers.put(Items.carbide, 0.3f);
costMultipliers.put(Items.phaseFabric, 0.2f);
for(var item : content.items()) costMultipliers.put(item, 0.9f);
Planets.erekir.techTree = nodeRoot("erekir", coreBastion, true, () -> {
context().researchCostMultipliers = costMultipliers;