Updated max energy storage for several tools. Closes #1219
This commit is contained in:
parent
ace5813745
commit
07b1724e24
5 changed files with 14 additions and 12 deletions
|
@ -42,20 +42,22 @@ public class ConfigTechReborn {
|
|||
public static boolean enableGemArmorAndTools = true;
|
||||
|
||||
//TODO give an annotation
|
||||
//Tools
|
||||
public static int IronDrillCharge = 10000;
|
||||
public static int DiamondDrillCharge = 100000;
|
||||
public static int AdvancedDrillCharge = 1000000;
|
||||
public static int IronChainsawCharge = 10000;
|
||||
public static int DiamondChainsawCharge = 10000;
|
||||
public static int DiamondChainsawCharge = 100000;
|
||||
public static int AdvancedChainsawCharge = 1000000;
|
||||
public static int SteelJackhammerCharge = 1000000;
|
||||
public static int DiamondJackhammerCharge = 20000;
|
||||
public static int AdvancedJackhammerCharge = 100000;
|
||||
public static int LapotronPackCharge = 100000000;
|
||||
public static int LithiumBatpackCharge = 4000000;
|
||||
public static int LapotronicOrbMaxCharge = 20000;
|
||||
public static int SteelJackhammerCharge = 10000;
|
||||
public static int DiamondJackhammerCharge = 100000;
|
||||
public static int AdvancedJackhammerCharge = 1000000;
|
||||
public static int OmniToolCharge = 20000;
|
||||
public static int RockCutterCharge = 10000;
|
||||
|
||||
public static int LapotronPackCharge = 100000000;
|
||||
public static int LithiumBatpackCharge = 4000000;
|
||||
public static int LapotronicOrbMaxCharge = 100000000;
|
||||
public static int CloakingDeviceCharge = 10000000;
|
||||
public static int CentrifugeCharge = 1000000;
|
||||
public static int ThermalGeneratorCharge = 1000000;
|
||||
|
|
|
@ -35,7 +35,7 @@ import techreborn.init.ModItems;
|
|||
public class ItemLapotronCrystal extends ItemBattery {
|
||||
|
||||
public ItemLapotronCrystal() {
|
||||
super("lapotronCrystal", 1000000, 512);
|
||||
super("lapotronCrystal", 10000000, 2048);
|
||||
}
|
||||
|
||||
@SuppressWarnings({ "rawtypes", "unchecked" })
|
||||
|
|
|
@ -57,7 +57,7 @@ import javax.annotation.Nullable;
|
|||
*/
|
||||
public class ItemElectricTreetap extends ItemTR implements IEnergyItemInfo, IEnergyInterfaceItem {
|
||||
|
||||
public static final int maxCharge = 5120;
|
||||
public static final int maxCharge = 10000;
|
||||
public static final int tier = 1;
|
||||
public int cost = 20;
|
||||
|
||||
|
|
|
@ -202,7 +202,7 @@ public class ItemNanosaber extends ItemSword implements IEnergyItemInfo, IEnergy
|
|||
|
||||
@Override
|
||||
public double getMaxPower(ItemStack stack) {
|
||||
return 100000;
|
||||
return 40000;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -38,10 +38,10 @@ import techreborn.init.ModBlocks;
|
|||
public class TileHighVoltageSU extends TileEnergyStorage implements IContainerProvider {
|
||||
|
||||
/**
|
||||
* MFSU should store 16M FE with 2048 FE/t I/O
|
||||
* MFSU should store 40M FE with 2048 FE/t I/O
|
||||
*/
|
||||
public TileHighVoltageSU() {
|
||||
super("HIGH_VOLTAGE_SU", 2, ModBlocks.HIGH_VOLTAGE_SU, EnumPowerTier.HIGH, 512, 512, 4000000);
|
||||
super("HIGH_VOLTAGE_SU", 2, ModBlocks.HIGH_VOLTAGE_SU, EnumPowerTier.HIGH, 512, 512, 10000000);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue