Misc bugfixes / Unified build/break block system

This commit is contained in:
Anuken
2018-07-04 23:52:21 -04:00
parent cc92edfa58
commit 4a32706c5a
23 changed files with 746 additions and 895 deletions

View File

@@ -32,7 +32,6 @@ public class Blocks extends BlockList implements ContentList{
for(int i = 1; i <= 6; i ++){
new BuildBlock("build" + i);
new BreakBlock("break" + i);
}
space = new Floor("space") {{

View File

@@ -27,9 +27,10 @@ public class PowerBlocks extends BlockList implements ContentList {
}};
turbineGenerator = new TurbineGenerator("turbine-generator") {{
powerOutput = 0.25f;
powerOutput = 0.28f;
powerCapacity = 40f;
itemDuration = 30f;
auxLiquidUse = 0.05f;
size = 2;
}};