Unit assembler progress

This commit is contained in:
Anuken
2021-12-13 23:14:26 -05:00
parent 121b992d56
commit bdc3b85346
18 changed files with 264 additions and 12 deletions

View File

@@ -3312,10 +3312,13 @@ public class Blocks{
//endregion
//region units - erekir
//TODO completely unfinished
tankAssembler = new UnitAssembler("tank-assembler"){{
requirements(Category.units, with(Items.graphite, 10));
size = 3;
output = UnitTypes.vanquish;
requirements = BlockStack.list(Blocks.thoriumWallLarge, 4);
droneType = UnitTypes.manifold;
requirements = BlockStack.list(Blocks.thoriumWallLarge, 4, Blocks.duct, 2);
}};
//endregion

View File

@@ -2691,6 +2691,7 @@ public class UnitTypes{
itemCapacity = 0;
commandLimit = 0;
hidden = true;
internal = true;
}};
manifold = new UnitType("manifold"){{