[Proposal] Greenhouse Controller (aka Farming Station) (#1928)

* Added Greenhouse Controller (aka Farming Station)

* Greenhouse tiny code cleanup

* Greenhouse Controller can collect sap
This commit is contained in:
vhd 2019-12-29 16:06:56 +02:00 committed by modmuss50
parent 8a4baa8d27
commit 4f45a63a7a
15 changed files with 453 additions and 1 deletions

View file

@ -448,7 +448,22 @@ public class TechRebornConfig {
@Config(config = "machines", category = "iron_machine", key = "cooking_scale", comment = "Multiplier for vanilla furnace item cook time")
public static double cookingScale = 1.25;
@Config(config = "machines", category = "greenhouse_controller", key = "GreenhouseControllerMaxInput", comment = "Greenhouse Controller Max Input")
public static int greenhouseControllerMaxInput = 32;
@Config(config = "machines", category = "greenhouse_controller", key = "GreenhouseControllerMaxEnergy", comment = "Greenhouse Controller Max Energy")
public static int greenhouseControllerMaxEnergy = 1_000;
@Config(config = "machines", category = "greenhouse_controller", key = "GreenhouseControllerEnergyPerTick", comment = "Greenhouse Controller Energy Per Tick")
public static int greenhouseControllerEnergyPerTick = 2;
@Config(config = "machines", category = "greenhouse_controller", key = "GreenhouseControllerEnergyPerHarvest", comment = "Greenhouse Controller Energy Per Harvest")
public static int greenhouseControllerEnergyPerHarvest = 100;
@Config(config = "machines", category = "greenhouse_controller", key = "GreenhouseControllerEnergyPerBonemeal", comment = "Greenhouse Controller Energy Per Bonemeal")
public static int greenhouseControllerEnergyPerBonemeal = 50;
// Misc
@Config(config = "misc", category = "general", key = "IC2TransformersStyle", comment = "Input from dots side, output from other sides, like in IC2.")
public static boolean IC2TransformersStyle = true;