You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.7 KiB
Java
57 lines
1.7 KiB
Java
package net.minecraft.item;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import java.util.List;
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
|
import net.minecraft.creativetab.CreativeTabs;
|
|
import net.minecraft.util.IIcon;
|
|
|
|
public class ItemCoal extends Item
|
|
{
|
|
@SideOnly(Side.CLIENT)
|
|
private IIcon field_111220_a;
|
|
private static final String __OBFID = "CL_00000002";
|
|
|
|
public ItemCoal()
|
|
{
|
|
this.setHasSubtypes(true);
|
|
this.setMaxDamage(0);
|
|
this.setCreativeTab(CreativeTabs.tabMaterials);
|
|
}
|
|
|
|
/**
|
|
* 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)
|
|
{
|
|
return stack.getItemDamage() == 1 ? "item.charcoal" : "item.coal";
|
|
}
|
|
|
|
/**
|
|
* returns a list of items with the same ID, but different meta (eg: dye returns 16 items)
|
|
*/
|
|
@SideOnly(Side.CLIENT)
|
|
public void getSubItems(Item p_150895_1_, CreativeTabs p_150895_2_, List p_150895_3_)
|
|
{
|
|
p_150895_3_.add(new ItemStack(p_150895_1_, 1, 0));
|
|
p_150895_3_.add(new ItemStack(p_150895_1_, 1, 1));
|
|
}
|
|
|
|
/**
|
|
* Gets an icon index based on an item's damage value
|
|
*/
|
|
@SideOnly(Side.CLIENT)
|
|
public IIcon getIconFromDamage(int p_77617_1_)
|
|
{
|
|
return p_77617_1_ == 1 ? this.field_111220_a : super.getIconFromDamage(p_77617_1_);
|
|
}
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
public void registerIcons(IIconRegister register)
|
|
{
|
|
super.registerIcons(register);
|
|
this.field_111220_a = register.registerIcon("charcoal");
|
|
}
|
|
} |