More cleanup after refactoring
This commit is contained in:
parent
bdf53c9094
commit
0c54a4538e
11 changed files with 32 additions and 31 deletions
|
@ -33,38 +33,38 @@ public class ConfigTechReborn {
|
|||
@ConfigRegistry(config = "recipes", category = "railcraft", key = "disableRailcraftNugget", comment = "When true TechReborn will remove Railcraft's Iron Nugget to steel nugget recipe.")
|
||||
public static boolean disableRailcraftSteelNuggetRecipe = false;
|
||||
|
||||
@ConfigRegistry(config = "misc", category = "general", key = "enableGemTools", comment = "Enable Gem armor and tools")
|
||||
@ConfigRegistry(config = "items", category = "general", key = "enableGemTools", comment = "Enable Gem armor and tools")
|
||||
public static boolean enableGemArmorAndTools = true;
|
||||
|
||||
@ConfigRegistry(config = "items", category = "power", key = "nanoSaberCharge", comment = "Energy Capacity for Nano Saber (FE)")
|
||||
public static int nanoSaberCharge = 4_000_000;
|
||||
|
||||
@ConfigRegistry(config = "items", category = "power", key = "steelDrillCharge", comment = "Energy Capacity for Steel Drill (FE)")
|
||||
public static int SteelDrillCharge = 40_000;
|
||||
|
||||
@ConfigRegistry(config = "items", category = "power", key = "diamondDrillCharge", comment = "Energy Capacity for Diamond Drill (FE)")
|
||||
public static int DiamondDrillCharge = 400_000;
|
||||
@ConfigRegistry(config = "items", category = "power", key = "basicDrillCharge", comment = "Energy Capacity for Basic Drill (FE)")
|
||||
public static int BasicDrillCharge = 40_000;
|
||||
|
||||
@ConfigRegistry(config = "items", category = "power", key = "advancedDrillCharge", comment = "Energy Capacity for Advanced Drill (FE)")
|
||||
public static int AdvancedDrillCharge = 4_000_000;
|
||||
public static int AdvancedDrillCharge = 400_000;
|
||||
|
||||
@ConfigRegistry(config = "items", category = "power", key = "steelChainsawCharge", comment = "Energy Capacity for Steel Chainsaw (FE)")
|
||||
public static int SteelChainsawCharge = 40_000;
|
||||
@ConfigRegistry(config = "items", category = "power", key = "industrialDrillCharge", comment = "Energy Capacity for Industrial Drill (FE)")
|
||||
public static int IndustrialDrillCharge = 4_000_000;
|
||||
|
||||
@ConfigRegistry(config = "items", category = "power", key = "diamondChainsawCharge", comment = "Energy Capacity for Diamond Chainsaw (FE)")
|
||||
public static int DiamondChainsawCharge = 400_000;
|
||||
@ConfigRegistry(config = "items", category = "power", key = "basicChainsawCharge", comment = "Energy Capacity for Basic Chainsaw (FE)")
|
||||
public static int BasicChainsawCharge = 40_000;
|
||||
|
||||
@ConfigRegistry(config = "items", category = "power", key = "advancedChainsawCharge", comment = "Energy Capacity for Advanced Chainsaw (FE)")
|
||||
public static int AdvancedChainsawCharge = 4_000_000;
|
||||
public static int AdvancedChainsawCharge = 400_000;
|
||||
|
||||
@ConfigRegistry(config = "items", category = "power", key = "steelJackhammerCharge", comment = "Energy Capacity for Steel Jackhammer (FE)")
|
||||
public static int SteelJackhammerCharge = 40_000;
|
||||
@ConfigRegistry(config = "items", category = "power", key = "industrialChainsawCharge", comment = "Energy Capacity for Industrial Chainsaw (FE)")
|
||||
public static int IndustrialChainsawCharge = 4_000_000;
|
||||
|
||||
@ConfigRegistry(config = "items", category = "power", key = "diamondJackhammerCharge", comment = "Energy Capacity for Diamond Jackhammer (FE)")
|
||||
public static int DiamondJackhammerCharge = 400_000;
|
||||
@ConfigRegistry(config = "items", category = "power", key = "basicJackhammerCharge", comment = "Energy Capacity for Basic Jackhammer (FE)")
|
||||
public static int BasicJackhammerCharge = 40_000;
|
||||
|
||||
@ConfigRegistry(config = "items", category = "power", key = "advancedJackhammerCharge", comment = "Energy Capacity for Advanced Jachammer (FE)")
|
||||
public static int AdvancedJackhammerCharge = 4_000_000;
|
||||
@ConfigRegistry(config = "items", category = "power", key = "advancedJackhammerCharge", comment = "Energy Capacity for Advanced Jackhammer (FE)")
|
||||
public static int AdvancedJackhammerCharge = 400_000;
|
||||
|
||||
@ConfigRegistry(config = "items", category = "power", key = "industrialJackhammerCharge", comment = "Energy Capacity for Industrial Jachammer (FE)")
|
||||
public static int IndustrialJackhammerCharge = 4_000_000;
|
||||
|
||||
@ConfigRegistry(config = "items", category = "power", key = "omniToolCharge", comment = "Energy Capacity for Omni Tool (FE)")
|
||||
public static int OmniToolCharge = 4_000_000;
|
||||
|
@ -87,9 +87,12 @@ public class ConfigTechReborn {
|
|||
@ConfigRegistry(config = "items", category = "power", key = "lapotronicOrbMaxCharge", comment = "Energy Capacity for Lapotronic Orb (FE)")
|
||||
public static int LapotronicOrbMaxCharge = 400_000_000;
|
||||
|
||||
@ConfigRegistry(config = "items", category = "power", key = "CloakingDeviceCharge", comment = "Energy Capacity for Clocking Device (FE)")
|
||||
@ConfigRegistry(config = "items", category = "power", key = "cloakingDeviceCharge", comment = "Energy Capacity for Clocking Device (FE)")
|
||||
public static int CloakingDeviceCharge = 40_000_000;
|
||||
|
||||
@ConfigRegistry(config = "items", category = "power", key = "clockingDeviceEnergyUsage", comment = "Cloacking device energy usesage (FE)")
|
||||
public static int CloackingDeviceUsage = 10;
|
||||
|
||||
@ConfigRegistry(config = "generators", category = "solarPanelBasic", key = "basicDayRate", comment = "Generation rate during day for Basic Solar Panel (Value in EU)")
|
||||
public static int basicGenerationRateD = 1;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue