Implemented Lightning Rod, improved ore dictionary integration for dusts, nuggets and plates. Plates now registers automatically for every gem and ingot in TR. (#673)

This commit is contained in:
Dragon2488 2016-07-16 16:44:54 +07:00 committed by Modmuss50
parent ddb96d58ec
commit 33df1d3319
16 changed files with 288 additions and 368 deletions

View file

@ -24,6 +24,7 @@ public class ConfigTechReborn
public static boolean UninsulatedElectocutionDamage;
public static boolean ScrapboxDispenser;
// Power
public static int LightningRodChance;
public static int ThermalGeneratorOutput;
public static int CentrifugeInputTick;
public static int DragonEggSiphonerOutput;
@ -202,6 +203,10 @@ public class ConfigTechReborn
"FortuneSecondaryOreMultiplierPerLevel").getDouble();
// Power
LightningRodChance = config
.get(CATEGORY_POWER, "Lightning Rod light struck chance", 24, "Set the chance of light strike (0-70)", 0, 70)
.getInt();
ThermalGeneratorOutput = config
.get(CATEGORY_POWER, "ThermalGenerator Max Output", 60, "Set the max output for the ThermalGenerator")
.getInt();