package net.minecraft.item;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.block.Block;
import net.minecraft.util.IIcon;
public class ItemColored extends ItemBlock
{
private final Block field_150944_b;
private String[] field_150945_c;
private static final String __OBFID = "CL_00000003";
public ItemColored(Block p_i45332_1_, boolean p_i45332_2_)
{
super(p_i45332_1_);
this.field_150944_b = p_i45332_1_;
if (p_i45332_2_)
{
this.setMaxDurability(0);
this.setHasSubtypes(true);
}
}
@SideOnly(Side.CLIENT)
public int getColorFromItemStack(ItemStack p_82790_1_, int p_82790_2_)
{
return this.field_150944_b.getRenderColor(p_82790_1_.getMetadata());
}
/**
* Returns the metadata of the block which this Item (ItemBlock) can place
*/
public int getMetadata(int p_77647_1_)
{
return p_77647_1_;
}
public ItemColored func_150943_a(String[] p_150943_1_)
{
this.field_150945_c = p_150943_1_;
return this;
}
/**
* Returns the unlocalized name of this item. This version accepts an ItemStack so different stacks can have
* different names based on their damage or NBT.
*/
public String getUnlocalizedName(ItemStack stack)
{
if (this.field_150945_c == null)
{
return super.getUnlocalizedName(stack);
}
else
{
int i = stack.getMetadata();
return i >= 0 && i < this.field_150945_c.length ? super.getUnlocalizedName(stack) + "." + this.field_150945_c[i] : super.getUnlocalizedName(stack);
}
}
/**
* Gets an icon index based on an item's damage value
*/
@SideOnly(Side.CLIENT)
public IIcon getIconFromDamage(int p_77617_1_)
{
return this.field_150944_b.getIcon(0, p_77617_1_);
}
}