Updated max energy storage for several tools. Closes #1219

This commit is contained in:
drcrazy 2017-09-01 16:19:59 +03:00
parent ace5813745
commit 07b1724e24
5 changed files with 14 additions and 12 deletions

View file

@ -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" })

View file

@ -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;

View file

@ -202,7 +202,7 @@ public class ItemNanosaber extends ItemSword implements IEnergyItemInfo, IEnergy
@Override
public double getMaxPower(ItemStack stack) {
return 100000;
return 40000;
}
@Override