Capacity changes for powered armor
This commit is contained in:
parent
b3590dbb37
commit
daf4b6fad6
3 changed files with 5 additions and 3 deletions
|
@ -76,7 +76,7 @@ public class ConfigTechReborn {
|
|||
public static int LapotronPackCharge = 400_000_000;
|
||||
|
||||
@ConfigRegistry(config = "items", category = "power", key = "LithiumBatpackCharge", comment = "Energy Capacity for Lithium Batpack (FE)")
|
||||
public static int LithiumBatpackCharge = 16_000_000;
|
||||
public static int LithiumBatpackCharge = 8_000_000;
|
||||
|
||||
@ConfigRegistry(config = "items", category = "power", key = "energyCrystalMaxCharge", comment = "Energy Capacity for Energy Crystal (FE)")
|
||||
public static int EnergyCrystalMaxCharge = 4_000_000;
|
||||
|
|
|
@ -48,6 +48,7 @@ import javax.annotation.Nullable;
|
|||
|
||||
public class ItemLapotronPack extends ItemArmor implements IEnergyItemInfo {
|
||||
|
||||
// 400M FE maxCharge and 100k FE\t charge rate. Fully charged in 3 mins.
|
||||
public static final int maxCharge = ConfigTechReborn.LapotronPackCharge;
|
||||
public int transferLimit = 100_000;
|
||||
|
||||
|
|
|
@ -50,8 +50,9 @@ import javax.annotation.Nullable;
|
|||
|
||||
public class ItemLithiumBatpack extends ItemArmor implements IEnergyItemInfo {
|
||||
|
||||
public static final int maxCharge = ConfigTechReborn.LithiumBatpackCharge;
|
||||
public int transferLimit = 10_000;
|
||||
// 8M FE maxCharge and 2k FE\t charge rate. Fully charged in 3 mins.
|
||||
public static final int maxCharge = ConfigTechReborn.LithiumBatpackCharge;
|
||||
public int transferLimit = 2_000;
|
||||
|
||||
public ItemLithiumBatpack() {
|
||||
super(ItemArmor.ArmorMaterial.DIAMOND, 7, EntityEquipmentSlot.CHEST);
|
||||
|
|
Loading…
Reference in a new issue