Added fusion reactor

This commit is contained in:
Anuken
2018-03-31 22:37:53 -04:00
parent 06dcc875bd
commit 0813f00ea1
18 changed files with 586 additions and 418 deletions

View File

@@ -97,6 +97,7 @@ public class Recipes {
new Recipe(power, PowerBlocks.solarpanel, stack(Items.iron, 30), stack(Items.silicon, 20)),
new Recipe(power, PowerBlocks.largesolarpanel, stack(Items.iron, 30), stack(Items.silicon, 20)),
new Recipe(power, PowerBlocks.nuclearReactor, stack(Items.titanium, 40), stack(Items.densealloy, 40), stack(Items.steel, 50)),
new Recipe(power, PowerBlocks.fusionReactor, stack(Items.titanium, 40), stack(Items.densealloy, 40), stack(Items.steel, 50)),
new Recipe(power, PowerBlocks.shieldgenerator, stack(Items.titanium, 30), stack(Items.densealloy, 30)),

View File

@@ -49,6 +49,12 @@ public class PowerBlocks {
breaktime *= 2.3f;
}},
fusionReactor = new FusionReactor("fusionreactor") {{
size = 4;
health = 600;
breaktime *= 4f;
}},
repairturret = new RepairTurret("repairturret") {{
range = 30;
reload = 20f;
@@ -85,7 +91,7 @@ public class PowerBlocks {
size = 2;
powerSpeed = 1f;
maxNodes = 5;
laserRange = 6.5f;
laserRange = 7.5f;
}},
teleporter = new Teleporter("teleporter");