Beam nodes

This commit is contained in:
Anuken
2021-10-28 22:18:07 -04:00
parent cd909913ca
commit 58544e6a21
7 changed files with 188 additions and 7 deletions

View File

@@ -79,6 +79,7 @@ public class Blocks implements ContentList{
combustionGenerator, thermalGenerator, steamGenerator, differentialGenerator, rtgGenerator, solarPanel, largeSolarPanel, thoriumReactor,
turbineCondenser,
impactReactor, battery, batteryLarge, powerNode, powerNodeLarge, surgeTower, diode,
beamNode,
//production
mechanicalDrill, pneumaticDrill, laserDrill, blastDrill, waterExtractor, oilExtractor, cultivator,
@@ -1401,6 +1402,11 @@ public class Blocks implements ContentList{
baseExplosiveness = 5f;
}};
beamNode = new BeamNode("beam-node"){{
requirements(Category.power, with(Items.graphite, 1, Items.lead, 3));
range = 10;
}};
combustionGenerator = new BurnerGenerator("combustion-generator"){{
requirements(Category.power, with(Items.copper, 25, Items.lead, 15));
powerProduction = 1f;