rewritten PowerGraph

This commit is contained in:
Baltazár Radics
2018-11-18 23:12:54 +01:00
parent 8091bec6bf
commit 285ee665ee
9 changed files with 63 additions and 161 deletions

View File

@@ -43,13 +43,13 @@ public class PowerBlocks extends BlockList implements ContentList{
itemDuration = 220f;
}};
solarPanel = new SolarGenerator("solar-panel"){{
generation = 0.0045f;
solarPanel = new PowerGenerator("solar-panel"){{
powerGeneration = 0.0045f;
}};
largeSolarPanel = new SolarGenerator("solar-panel-large"){{
largeSolarPanel = new PowerGenerator("solar-panel-large"){{
powerGeneration = 0.055f;
size = 3;
generation = 0.055f;
}};
thoriumReactor = new NuclearReactor("thorium-reactor"){{