More cleanup after refactoring
This commit is contained in:
parent
bdf53c9094
commit
0c54a4538e
11 changed files with 32 additions and 31 deletions
|
@ -54,10 +54,8 @@ import javax.annotation.Nullable;
|
|||
@RebornRegister(modID = TechReborn.MOD_ID)
|
||||
public class ItemCloakingDevice extends ItemTRArmour implements IEnergyItemInfo {
|
||||
|
||||
@ConfigRegistry(config = "items", category = "cloacking_device", key = "ClockingDeviceEnergyUsage", comment = "Cloacking device energy usesage (Value in FE)")
|
||||
public static int usage = 10;
|
||||
|
||||
public static int maxCharge = ConfigTechReborn.CloakingDeviceCharge;
|
||||
public static int usage = ConfigTechReborn.CloackingDeviceUsage;
|
||||
public static int transferLimit = 10_000;
|
||||
public static boolean isActive;
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@ public class ItemAdvancedChainsaw extends ItemChainsaw {
|
|||
|
||||
// 400k max charge with 1k charge rate
|
||||
public ItemAdvancedChainsaw() {
|
||||
super(ToolMaterial.DIAMOND, ConfigTechReborn.DiamondChainsawCharge, 1.0F);
|
||||
super(ToolMaterial.DIAMOND, ConfigTechReborn.AdvancedChainsawCharge, 1.0F);
|
||||
this.cost = 250;
|
||||
this.transferLimit = 1000;
|
||||
}
|
||||
|
|
|
@ -39,7 +39,7 @@ public class ItemAdvancedDrill extends ItemDrill {
|
|||
|
||||
// 400k max charge with 1k charge rate
|
||||
public ItemAdvancedDrill() {
|
||||
super(ToolMaterial.DIAMOND, ConfigTechReborn.DiamondDrillCharge, 0.5F, 15F);
|
||||
super(ToolMaterial.DIAMOND, ConfigTechReborn.AdvancedDrillCharge, 0.5F, 15F);
|
||||
this.cost = 250;
|
||||
this.transferLimit = 1000;
|
||||
}
|
||||
|
|
|
@ -37,7 +37,7 @@ public class ItemAdvancedJackhammer extends ItemJackhammer {
|
|||
|
||||
// 400k max charge with 1k charge rate
|
||||
public ItemAdvancedJackhammer() {
|
||||
super(ToolMaterial.DIAMOND, ConfigTechReborn.DiamondJackhammerCharge);
|
||||
super(ToolMaterial.DIAMOND, ConfigTechReborn.AdvancedJackhammerCharge);
|
||||
this.cost = 100;
|
||||
this.efficiency = 16F;
|
||||
this.transferLimit = 1000;
|
||||
|
|
|
@ -38,7 +38,7 @@ import techreborn.items.tool.ItemChainsaw;
|
|||
public class ItemBasicChainsaw extends ItemChainsaw {
|
||||
|
||||
public ItemBasicChainsaw() {
|
||||
super(ToolMaterial.IRON, ConfigTechReborn.SteelChainsawCharge, 0.5F);
|
||||
super(ToolMaterial.IRON, ConfigTechReborn.BasicChainsawCharge, 0.5F);
|
||||
this.cost = 50;
|
||||
}
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ import techreborn.items.tool.ItemDrill;
|
|||
public class ItemBasicDrill extends ItemDrill {
|
||||
|
||||
public ItemBasicDrill() {
|
||||
super(ToolMaterial.IRON, ConfigTechReborn.SteelDrillCharge, 0.5F, 10F);
|
||||
super(ToolMaterial.IRON, ConfigTechReborn.BasicDrillCharge, 0.5F, 10F);
|
||||
this.cost = 50;
|
||||
}
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ import techreborn.items.tool.ItemJackhammer;
|
|||
public class ItemBasicJackhammer extends ItemJackhammer {
|
||||
|
||||
public ItemBasicJackhammer() {
|
||||
super(ToolMaterial.DIAMOND, ConfigTechReborn.SteelJackhammerCharge);
|
||||
super(ToolMaterial.DIAMOND, ConfigTechReborn.BasicJackhammerCharge);
|
||||
this.cost = 50;
|
||||
this.efficiency = 12F;
|
||||
}
|
||||
|
|
|
@ -45,7 +45,7 @@ public class ItemIndustrialChainsaw extends ItemChainsaw {
|
|||
|
||||
// 4M FE max charge with 1k charge rate
|
||||
public ItemIndustrialChainsaw() {
|
||||
super(ToolMaterial.DIAMOND, ConfigTechReborn.AdvancedChainsawCharge, 1.0F);
|
||||
super(ToolMaterial.DIAMOND, ConfigTechReborn.IndustrialChainsawCharge, 1.0F);
|
||||
this.cost = 250;
|
||||
this.transferLimit = 1000;
|
||||
}
|
||||
|
|
|
@ -52,7 +52,7 @@ public class ItemIndustrialDrill extends ItemDrill {
|
|||
|
||||
// 4M FE max charge with 1k charge rate
|
||||
public ItemIndustrialDrill() {
|
||||
super(ToolMaterial.DIAMOND, ConfigTechReborn.AdvancedDrillCharge, 2.0F, 10F);
|
||||
super(ToolMaterial.DIAMOND, ConfigTechReborn.IndustrialDrillCharge, 2.0F, 10F);
|
||||
this.cost = 250;
|
||||
this.transferLimit = 1000;
|
||||
}
|
||||
|
|
|
@ -37,7 +37,7 @@ public class ItemIndustrialJackhammer extends ItemJackhammer {
|
|||
|
||||
// 4M FE max charge with 1k charge rate
|
||||
public ItemIndustrialJackhammer() {
|
||||
super(ToolMaterial.IRON, ConfigTechReborn.AdvancedJackhammerCharge);
|
||||
super(ToolMaterial.IRON, ConfigTechReborn.IndustrialJackhammerCharge);
|
||||
this.cost = 250;
|
||||
this.efficiency = 60F;
|
||||
this.transferLimit = 1000;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue