package net.minecraft.item; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.util.NonNullList; public class ItemCoal extends Item { public ItemCoal() { this.setHasSubtypes(true); this.setMaxDamage(0); this.setCreativeTab(CreativeTabs.MATERIALS); } /** * 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.getMetadata() == 1 ? "item.charcoal" : "item.coal"; } /** * returns a list of items with the same ID, but different meta (eg: dye returns 16 items) */ public void getSubItems(CreativeTabs tab, NonNullList items) { if (this.isInCreativeTab(tab)) { items.add(new ItemStack(this, 1, 0)); items.add(new ItemStack(this, 1, 1)); } } }