Polishing powered items
This commit is contained in:
parent
daf4b6fad6
commit
7b630f576f
14 changed files with 60 additions and 60 deletions
|
@ -39,8 +39,8 @@ public class ConfigTechReborn {
|
|||
@ConfigRegistry(config = "items", category = "power", key = "nanoSaberCharge", comment = "Energy Capacity for Nano Saber (FE)")
|
||||
public static int nanoSaberCharge = 640_000;
|
||||
|
||||
@ConfigRegistry(config = "items", category = "power", key = "ironDrillCharge", comment = "Energy Capacity for Iron Drill (FE)")
|
||||
public static int IronDrillCharge = 40_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;
|
||||
|
@ -48,8 +48,8 @@ public class ConfigTechReborn {
|
|||
@ConfigRegistry(config = "items", category = "power", key = "advancedDrillCharge", comment = "Energy Capacity for Advanced Drill (FE)")
|
||||
public static int AdvancedDrillCharge = 4_000_000;
|
||||
|
||||
@ConfigRegistry(config = "items", category = "power", key = "ironChainsawCharge", comment = "Energy Capacity for Iron Chainsaw (FE)")
|
||||
public static int IronChainsawCharge = 40_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 = "diamondChainsawCharge", comment = "Energy Capacity for Diamond Chainsaw (FE)")
|
||||
public static int DiamondChainsawCharge = 400_000;
|
||||
|
|
|
@ -206,25 +206,25 @@ public class ModItems {
|
|||
registerItem(ELECTRIC_TREE_TAP, "electricTreetap");
|
||||
|
||||
STEEL_DRILL = new ItemSteelDrill();
|
||||
registerItem(STEEL_DRILL, "irondrill");
|
||||
registerItem(STEEL_DRILL, "steelDrill");
|
||||
DIAMOND_DRILL = new ItemDiamondDrill();
|
||||
registerItem(DIAMOND_DRILL, "diamonddrill");
|
||||
registerItem(DIAMOND_DRILL, "diamondDrill");
|
||||
ADVANCED_DRILL = new ItemAdvancedDrill();
|
||||
registerItem(ADVANCED_DRILL, "advanceddrill");
|
||||
registerItem(ADVANCED_DRILL, "advancedDrill");
|
||||
|
||||
STEEL_CHAINSAW = new ItemSteelChainsaw();
|
||||
registerItem(STEEL_CHAINSAW, "ironchainsaw");
|
||||
registerItem(STEEL_CHAINSAW, "steelChainsaw");
|
||||
DIAMOND_CHAINSAW = new ItemDiamondChainsaw();
|
||||
registerItem(DIAMOND_CHAINSAW, "diamondchainsaw");
|
||||
registerItem(DIAMOND_CHAINSAW, "diamondChainsaw");
|
||||
ADVANCED_CHAINSAW = new ItemAdvancedChainsaw();
|
||||
registerItem(ADVANCED_CHAINSAW, "advancedchainsaw");
|
||||
registerItem(ADVANCED_CHAINSAW, "advancedChainsaw");
|
||||
|
||||
STEEL_JACKHAMMER = new ItemSteelJackhammer();
|
||||
registerItem(STEEL_JACKHAMMER, "steeljackhammer");
|
||||
registerItem(STEEL_JACKHAMMER, "steelJackhammer");
|
||||
DIAMOND_JACKHAMMER = new ItemDiamondJackhammer();
|
||||
registerItem(DIAMOND_JACKHAMMER, "diamondjackhammer");
|
||||
registerItem(DIAMOND_JACKHAMMER, "diamondJackhammer");
|
||||
ADVANCED_JACKHAMMER = new ItemAdvancedJackhammer();
|
||||
registerItem(ADVANCED_JACKHAMMER, "ironjackhammer");
|
||||
registerItem(ADVANCED_JACKHAMMER, "advancedJackhammer");
|
||||
|
||||
if (ConfigTechReborn.enableGemArmorAndTools) {
|
||||
BRONZE_SWORD = new ItemTRSword(Reference.BRONZE, "ingotBronze");
|
||||
|
|
|
@ -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