mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-07-18 11:47:47 +07:00
Research cost multipliers for Serpulo resources
This commit is contained in:
@ -12,14 +12,15 @@ public class ErekirTechTree{
|
||||
public static void load(){
|
||||
Seq<Objective> erekirSector = Seq.with(new OnPlanet(Planets.erekir));
|
||||
|
||||
//TODO use these multipliers!
|
||||
var costMultipliers = new ObjectFloatMap<Item>();
|
||||
costMultipliers.put(Items.silicon, 4);
|
||||
costMultipliers.put(Items.silicon, 6);
|
||||
costMultipliers.put(Items.surgeAlloy, 4);
|
||||
costMultipliers.put(Items.thorium, 6);
|
||||
costMultipliers.put(Items.graphite, 5);
|
||||
costMultipliers.put(Items.thorium, 7);
|
||||
costMultipliers.put(Items.graphite, 6);
|
||||
|
||||
Planets.erekir.techTree = nodeRoot("erekir", coreBastion, true, () -> {
|
||||
context().researchCostMultipliers = costMultipliers;
|
||||
|
||||
node(duct, () -> {
|
||||
node(ductRouter, () -> {
|
||||
node(ductBridge, () -> {
|
||||
@ -216,7 +217,6 @@ public class ErekirTechTree{
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
});
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user