mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-02-11 03:08:38 +07:00
Cleanup
This commit is contained in:
parent
fa8a6d001a
commit
75606baf6a
@ -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
|
||||
|
@ -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;
|
||||
|
@ -10,6 +10,7 @@ public class MemoryBlock extends Block{
|
||||
public MemoryBlock(String name){
|
||||
super(name);
|
||||
destructible = true;
|
||||
solid = true;
|
||||
}
|
||||
|
||||
public class MemoryBuild extends Building{
|
||||
|
Loading…
Reference in New Issue
Block a user