1
0
mirror of https://github.com/Anuken/Mindustry.git synced 2024-09-21 13:28:12 +03:00
This commit is contained in:
Anuken 2020-08-14 14:32:03 -04:00
parent fa8a6d001a
commit 75606baf6a
3 changed files with 9 additions and 1 deletions

View File

@ -1084,6 +1084,13 @@ block.payload-router.name = Payload Router
block.disassembler.name = Disassembler
block.silicon-crucible.name = Silicon Crucible
block.overdrive-dome.name = Overdrive Dome
block.switch.name = Switch
block.micro-processor.name = Micro Processor
block.logic-processor.name = Logic Processor
block.logic-display.name = Logic Display
block.memory-cell.name = Memory Cell
team.blue.name = blue
team.crux.name = red
team.sharded.name = orange

View File

@ -1314,7 +1314,7 @@ public class Blocks implements ContentList{
}};
coreNucleus = new CoreBlock("core-nucleus"){{
requirements(Category.effect, with(Items.copper, 1000, Items.lead, 1000));
requirements(Category.effect, with(Items.copper, 8000, Items.lead, 8000, Items.silicon, 5000, Items.thorium, 4000));
unitType = UnitTypes.gamma;
health = 4000;

View File

@ -10,6 +10,7 @@ public class MemoryBlock extends Block{
public MemoryBlock(String name){
super(name);
destructible = true;
solid = true;
}
public class MemoryBuild extends Building{