More Configs!!!!!
This commit is contained in:
parent
dbb6a9edf2
commit
6dec53208e
6 changed files with 36 additions and 6 deletions
|
@ -19,13 +19,14 @@ import net.minecraft.item.ItemStack;
|
|||
import net.minecraft.world.World;
|
||||
import net.minecraftforge.event.ForgeEventFactory;
|
||||
import techreborn.client.TechRebornCreativeTab;
|
||||
import techreborn.config.ConfigTechReborn;
|
||||
import techreborn.util.TorchHelper;
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
|
||||
public class ItemAdvancedDrill extends ItemPickaxe implements IElectricItem{
|
||||
|
||||
public int maxCharge = 60000;
|
||||
public static final int maxCharge = ConfigTechReborn.AdvancedDrillCharge;
|
||||
public int cost = 250;;
|
||||
public int tier = 2;
|
||||
public double transferLimit = 100;
|
||||
|
|
|
@ -7,6 +7,7 @@ import cpw.mods.fml.relauncher.SideOnly;
|
|||
import ic2.api.item.ElectricItem;
|
||||
import ic2.api.item.IElectricItem;
|
||||
import techreborn.client.TechRebornCreativeTab;
|
||||
import techreborn.config.ConfigTechReborn;
|
||||
import net.minecraft.client.renderer.texture.IIconRegister;
|
||||
import net.minecraft.creativetab.CreativeTabs;
|
||||
import net.minecraft.entity.Entity;
|
||||
|
@ -16,7 +17,7 @@ import net.minecraft.item.ItemStack;
|
|||
|
||||
public class ItemLapotronPack extends ItemArmor implements IElectricItem{
|
||||
|
||||
public int maxCharge = 100000000;
|
||||
public static final int maxCharge = ConfigTechReborn.LapotronPackCharge;
|
||||
public int tier = 3;
|
||||
public double transferLimit = 100000;
|
||||
|
||||
|
|
|
@ -11,14 +11,15 @@ import net.minecraft.item.Item;
|
|||
import net.minecraft.item.ItemArmor;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import techreborn.client.TechRebornCreativeTab;
|
||||
import techreborn.config.ConfigTechReborn;
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
|
||||
public class ItemLithiumBatpack extends ItemArmor implements IElectricItem{
|
||||
|
||||
public int maxCharge = 40000000;
|
||||
public static final int maxCharge = ConfigTechReborn.LithiumBatpackCharge;
|
||||
public int tier = 3;
|
||||
public double transferLimit = 100000;
|
||||
public double transferLimit = 10000;
|
||||
|
||||
public ItemLithiumBatpack(ArmorMaterial armorMaterial, int par3, int par4)
|
||||
{
|
||||
|
|
|
@ -7,6 +7,7 @@ import cpw.mods.fml.relauncher.SideOnly;
|
|||
import ic2.api.item.ElectricItem;
|
||||
import ic2.api.item.IElectricItem;
|
||||
import techreborn.client.TechRebornCreativeTab;
|
||||
import techreborn.config.ConfigTechReborn;
|
||||
import techreborn.util.TorchHelper;
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.client.renderer.texture.IIconRegister;
|
||||
|
@ -24,7 +25,7 @@ import net.minecraftforge.event.ForgeEventFactory;
|
|||
|
||||
public class ItemOmniTool extends ItemPickaxe implements IElectricItem{
|
||||
|
||||
public int maxCharge = 20000;
|
||||
public static final int maxCharge = ConfigTechReborn.OmniToolCharge;
|
||||
public int cost = 100;
|
||||
public int hitCost = 125;
|
||||
|
||||
|
|
|
@ -15,12 +15,13 @@ import net.minecraft.item.ItemPickaxe;
|
|||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.world.World;
|
||||
import techreborn.client.TechRebornCreativeTab;
|
||||
import techreborn.config.ConfigTechReborn;
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
|
||||
public class ItemRockCutter extends ItemPickaxe implements IElectricItem{
|
||||
|
||||
public int maxCharge = 10000;
|
||||
public static final int maxCharge = ConfigTechReborn.RockCutterCharge;
|
||||
public int cost = 500;
|
||||
public int tier = 2;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue