mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-20 09:17:19 +07:00
Reconstructor cost tweaks
This commit is contained in:
parent
6d615bf641
commit
6ffb3b61d8
@ -4155,7 +4155,7 @@ public class Blocks{
|
||||
}};
|
||||
|
||||
tankReconstructor = new Reconstructor("tank-reconstructor"){{
|
||||
requirements(Category.units, with(Items.graphite, 250, Items.tungsten, 120, Items.silicon, 200));
|
||||
requirements(Category.units, with(Items.graphite, 150, Items.tungsten, 150, Items.silicon, 250, Items.oxide, 60));
|
||||
regionSuffix = "-dark";
|
||||
|
||||
size = 3;
|
||||
@ -4171,7 +4171,7 @@ public class Blocks{
|
||||
}};
|
||||
|
||||
mechReconstructor = new Reconstructor("mech-reconstructor"){{
|
||||
requirements(Category.units, with(Items.graphite, 250, Items.tungsten, 120, Items.silicon, 200));
|
||||
requirements(Category.units, with(Items.beryllium, 250, Items.tungsten, 120, Items.silicon, 150, Items.oxide, 50));
|
||||
regionSuffix = "-dark";
|
||||
|
||||
size = 3;
|
||||
|
@ -277,14 +277,14 @@ public class ErekirTechTree{
|
||||
|
||||
});
|
||||
|
||||
node(tankReconstructor, Seq.with(new OnSector(three)), () -> {
|
||||
node(UnitTypes.locus);
|
||||
node(shipReconstructor, Seq.with(new OnSector(three)), () -> {
|
||||
node(UnitTypes.avert);
|
||||
|
||||
node(shipReconstructor, Seq.with(new OnSector(three)), () -> {
|
||||
node(UnitTypes.avert);
|
||||
node(mechReconstructor, Seq.with(new OnSector(three)), () -> {
|
||||
node(UnitTypes.latum);
|
||||
|
||||
node(mechReconstructor, () -> {
|
||||
node(UnitTypes.latum);
|
||||
node(tankReconstructor, () -> {
|
||||
node(UnitTypes.locus);
|
||||
|
||||
node(tankAssembler, Seq.with(new OnSector(three), new Research(constructor), new Research(atmosphericConcentrator)), () -> {
|
||||
node(UnitTypes.vanquish, () -> {
|
||||
|
Loading…
Reference in New Issue
Block a user