Polishing powered items
This commit is contained in:
parent
daf4b6fad6
commit
7b630f576f
14 changed files with 60 additions and 60 deletions
|
@ -34,9 +34,9 @@ import techreborn.init.ModItems;
|
|||
|
||||
public class ItemEnergyCrystal extends ItemBattery {
|
||||
|
||||
// 4M FE storage with 10k charge rate
|
||||
// 4M FE storage with 1k charge rate
|
||||
public ItemEnergyCrystal() {
|
||||
super("energyCrystal", ConfigTechReborn.EnergyCrystalMaxCharge, 10_000);
|
||||
super("energyCrystal", ConfigTechReborn.EnergyCrystalMaxCharge, 1_000);
|
||||
}
|
||||
|
||||
@SideOnly(Side.CLIENT)
|
||||
|
|
|
@ -34,9 +34,9 @@ import techreborn.init.ModItems;
|
|||
|
||||
public class ItemLapotronCrystal extends ItemBattery {
|
||||
|
||||
// 40M FE capacity with 40k FE\t charge rate
|
||||
// 40M FE capacity with 10k FE\t charge rate
|
||||
public ItemLapotronCrystal() {
|
||||
super("lapotronCrystal", ConfigTechReborn.LapotronCrystalMaxCharge, 40_000);
|
||||
super("lapotronCrystal", ConfigTechReborn.LapotronCrystalMaxCharge, 10_000);
|
||||
}
|
||||
|
||||
@SideOnly(Side.CLIENT)
|
||||
|
|
|
@ -34,9 +34,9 @@ import techreborn.init.ModItems;
|
|||
|
||||
public class ItemLapotronicOrb extends ItemBattery {
|
||||
|
||||
// 400M capacity with 40k FE\t charge rate
|
||||
// 400M capacity with 100k FE\t charge rate
|
||||
public ItemLapotronicOrb() {
|
||||
super("lapotronicorb", ConfigTechReborn.LapotronicOrbMaxCharge, 40_000);
|
||||
super("lapotronicorb", ConfigTechReborn.LapotronicOrbMaxCharge, 100_000);
|
||||
}
|
||||
|
||||
@SideOnly(Side.CLIENT)
|
||||
|
|
|
@ -42,6 +42,7 @@ import techreborn.init.ModItems;
|
|||
|
||||
public class ItemAdvancedChainsaw extends ItemChainsaw {
|
||||
|
||||
// 4M FE max charge with 1k charge rate
|
||||
public ItemAdvancedChainsaw() {
|
||||
super(ToolMaterial.DIAMOND, "techreborn.advancedChainsaw", ConfigTechReborn.AdvancedChainsawCharge,
|
||||
1.0F);
|
||||
|
|
|
@ -49,6 +49,7 @@ import javax.annotation.Nullable;
|
|||
|
||||
public class ItemAdvancedDrill extends ItemDrill {
|
||||
|
||||
// 4M FE max charge with 1k charge rate
|
||||
public ItemAdvancedDrill() {
|
||||
super(ToolMaterial.DIAMOND, "techreborn.advancedDrill", ConfigTechReborn.AdvancedDrillCharge, 2.0F, 10F);
|
||||
this.cost = 250;
|
||||
|
|
|
@ -34,6 +34,7 @@ import techreborn.init.ModItems;
|
|||
|
||||
public class ItemAdvancedJackhammer extends ItemJackhammer {
|
||||
|
||||
// 4M FE max charge with 1k charge rate
|
||||
public ItemAdvancedJackhammer() {
|
||||
super(ToolMaterial.IRON, "techreborn.advancedJackhammer", ConfigTechReborn.AdvancedJackhammerCharge);
|
||||
this.cost = 250;
|
||||
|
|
|
@ -36,6 +36,7 @@ import techreborn.init.ModItems;
|
|||
|
||||
public class ItemDiamondChainsaw extends ItemChainsaw {
|
||||
|
||||
// 400k max charge with 1k charge rate
|
||||
public ItemDiamondChainsaw() {
|
||||
super(ToolMaterial.DIAMOND, "techreborn.diamondChainsaw", ConfigTechReborn.DiamondChainsawCharge, 1.0F);
|
||||
this.cost = 250;
|
||||
|
|
|
@ -36,6 +36,7 @@ import techreborn.init.ModItems;
|
|||
|
||||
public class ItemDiamondDrill extends ItemDrill {
|
||||
|
||||
// 400k max charge with 1k charge rate
|
||||
public ItemDiamondDrill() {
|
||||
super(ToolMaterial.DIAMOND, "techreborn.diamondDrill", ConfigTechReborn.DiamondDrillCharge, 0.5F, 15F);
|
||||
this.cost = 250;
|
||||
|
|
|
@ -34,6 +34,7 @@ import techreborn.init.ModItems;
|
|||
|
||||
public class ItemDiamondJackhammer extends ItemJackhammer {
|
||||
|
||||
// 400k max charge with 1k charge rate
|
||||
public ItemDiamondJackhammer() {
|
||||
super(ToolMaterial.DIAMOND, "techreborn.diamondJackhammer", ConfigTechReborn.DiamondJackhammerCharge);
|
||||
this.cost = 100;
|
||||
|
|
|
@ -37,7 +37,7 @@ import techreborn.init.ModItems;
|
|||
public class ItemSteelChainsaw extends ItemChainsaw {
|
||||
|
||||
public ItemSteelChainsaw() {
|
||||
super(ToolMaterial.IRON, "techreborn.ironChainsaw", ConfigTechReborn.IronChainsawCharge, 0.5F);
|
||||
super(ToolMaterial.IRON, "techreborn.steelChainsaw", ConfigTechReborn.SteelChainsawCharge, 0.5F);
|
||||
this.cost = 50;
|
||||
}
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@ import techreborn.init.ModItems;
|
|||
public class ItemSteelDrill extends ItemDrill {
|
||||
|
||||
public ItemSteelDrill() {
|
||||
super(ToolMaterial.IRON, "techreborn.ironDrill", ConfigTechReborn.IronDrillCharge, 0.5F, 10F);
|
||||
super(ToolMaterial.IRON, "techreborn.steelDrill", ConfigTechReborn.SteelDrillCharge, 0.5F, 10F);
|
||||
this.cost = 50;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue