Full command center implementation

This commit is contained in:
Anuken
2018-07-26 17:51:25 -04:00
parent 49e19ab34d
commit c832a7b93f
10 changed files with 729 additions and 668 deletions
@@ -138,6 +138,7 @@ public class Recipes implements ContentList{
new Recipe(units, UnitBlocks.repairPoint, new ItemStack(Items.lead, 30), new ItemStack(Items.tungsten, 30), new ItemStack(Items.silicon, 30));
new Recipe(units, UnitBlocks.resupplyPoint, new ItemStack(Items.lead, 30), new ItemStack(Items.tungsten, 30), new ItemStack(Items.silicon, 30));
new Recipe(units, UnitBlocks.commandCenter, new ItemStack(Items.lead, 30), new ItemStack(Items.tungsten, 30), new ItemStack(Items.silicon, 30));
//LIQUIDS
new Recipe(liquid, LiquidBlocks.conduit, new ItemStack(Items.lead, 1))
@@ -65,7 +65,7 @@ public class UnitBlocks extends BlockList implements ContentList{
}};
commandCenter = new CommandCenter("command-center"){{
size = 2;
}};
}
}