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
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue