This commit is contained in:
modmuss50 2016-03-27 18:21:31 +01:00
parent 49e45b27e2
commit 2801535bf8
2 changed files with 9 additions and 17 deletions

View file

@ -13,22 +13,14 @@ import techreborn.parts.types.TinCable;
public enum EnumCableType implements IStringSerializable public enum EnumCableType implements IStringSerializable
{ {
COPPER("copper", "techreborn:blocks/cables/copper_cable", 128, 12.0, true, EnumPowerTier.LOW, COPPER("copper", "techreborn:blocks/cables/copper_cable", 128, 12.0, true, EnumPowerTier.LOW, CopperCable.class),
CopperCable.class), TIN("tin", "techreborn:blocks/cables/tin_cable", 32, 12.0, true, EnumPowerTier.MEDIUM, TIN("tin", "techreborn:blocks/cables/tin_cable", 32, 12.0, true, EnumPowerTier.MEDIUM, TinCable.class),
TinCable.class), GOLD("gold", "techreborn:blocks/cables/gold_cable", 512, 12.0, true, GOLD("gold", "techreborn:blocks/cables/gold_cable", 512, 12.0, true, EnumPowerTier.MEDIUM, GoldCable.class),
EnumPowerTier.MEDIUM, GoldCable.class), HV("hv", "techreborn:blocks/cables/hv_cable", 2048, HV("hv", "techreborn:blocks/cables/hv_cable", 2048, 12.0, true, EnumPowerTier.HIGH, HVCable.class),
12.0, true, EnumPowerTier.HIGH, HVCable.class), GLASSFIBER("glassfiber", GLASSFIBER("glassfiber", "techreborn:blocks/cables/glass_fiber_cable", 8192, 12.0, false, EnumPowerTier.HIGH, GlassFiberCable.class),
"techreborn:blocks/cables/glass_fiber_cable", 8192, 12.0, false, ICOPPER("insulatedcopper", "techreborn:blocks/cables/copper_insulated_cable", 128, 10.0, false, EnumPowerTier.LOW, InsulatedCopperCable.class),
EnumPowerTier.HIGH, GlassFiberCable.class), ICOPPER("insulatedcopper", IGOLD("insulatedgold", "techreborn:blocks/cables/gold_insulated_cable", 512, 10.0, false, EnumPowerTier.MEDIUM, InsulatedGoldCable.class),
"techreborn:blocks/cables/copper_insulated_cable", 128, 10.0, false, IHV("insulatedhv", "techreborn:blocks/cables/hv_insulated_cable", 2048, 10.0, false, EnumPowerTier.HIGH, InsulatedHVCable.class);
EnumPowerTier.LOW,
InsulatedCopperCable.class), IGOLD("insulatedgold",
"techreborn:blocks/cables/gold_insulated_cable", 512, 10.0,
false, EnumPowerTier.MEDIUM,
InsulatedGoldCable.class), IHV("insulatedhv",
"techreborn:blocks/cables/hv_insulated_cable", 2048,
10.0, false, EnumPowerTier.HIGH,
InsulatedHVCable.class);
public String textureName = "minecraft:blocks/iron_block"; public String textureName = "minecraft:blocks/iron_block";
public int transferRate = 128; public int transferRate = 128;

View file

@ -11,6 +11,6 @@ public class TinCable extends CableMultipart
@Override @Override
public EnumCableType getCableType() public EnumCableType getCableType()
{ {
return EnumCableType.COPPER; return EnumCableType.TIN;
} }
} }