mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-07-19 20:27:44 +07:00
Cheaper research for Erekir
This commit is contained in:
@ -54,19 +54,14 @@ public class ErekirTechTree{
|
|||||||
Seq<Objective> erekirSector = Seq.with(new OnPlanet(Planets.erekir));
|
Seq<Objective> erekirSector = Seq.with(new OnPlanet(Planets.erekir));
|
||||||
|
|
||||||
var costMultipliers = new ObjectFloatMap<Item>();
|
var costMultipliers = new ObjectFloatMap<Item>();
|
||||||
costMultipliers.put(Items.silicon, 9);
|
//these are hard to make
|
||||||
costMultipliers.put(Items.surgeAlloy, 4);
|
|
||||||
costMultipliers.put(Items.phaseFabric, 4);
|
|
||||||
costMultipliers.put(Items.thorium, 9);
|
|
||||||
costMultipliers.put(Items.graphite, 9);
|
|
||||||
//oxide is hard to make
|
|
||||||
costMultipliers.put(Items.oxide, 0.5f);
|
costMultipliers.put(Items.oxide, 0.5f);
|
||||||
costMultipliers.put(Items.carbide, 0.4f);
|
costMultipliers.put(Items.surgeAlloy, 0.8f);
|
||||||
|
costMultipliers.put(Items.carbide, 0.35f);
|
||||||
|
|
||||||
//TODO gate behind capture
|
|
||||||
|
|
||||||
Planets.erekir.techTree = nodeRoot("erekir", coreBastion, true, () -> {
|
Planets.erekir.techTree = nodeRoot("erekir", coreBastion, true, () -> {
|
||||||
//context().researchCostMultipliers = costMultipliers;
|
context().researchCostMultipliers = costMultipliers;
|
||||||
|
|
||||||
node(duct, erekirSector, () -> {
|
node(duct, erekirSector, () -> {
|
||||||
node(ductRouter, () -> {
|
node(ductRouter, () -> {
|
||||||
|
@ -19,9 +19,10 @@ public class SerpuloTechTree{
|
|||||||
node(junction, () -> {
|
node(junction, () -> {
|
||||||
node(router, () -> {
|
node(router, () -> {
|
||||||
node(launchPad, Seq.with(new SectorComplete(extractionOutpost)), () -> {
|
node(launchPad, Seq.with(new SectorComplete(extractionOutpost)), () -> {
|
||||||
node(interplanetaryAccelerator, Seq.with(new SectorComplete(planetaryTerminal)), () -> {
|
//no longer necessary to beat the campaign
|
||||||
|
//node(interplanetaryAccelerator, Seq.with(new SectorComplete(planetaryTerminal)), () -> {
|
||||||
|
|
||||||
});
|
//});
|
||||||
});
|
});
|
||||||
|
|
||||||
node(distributor);
|
node(distributor);
|
||||||
|
Reference in New Issue
Block a user