package biomesoplenty.items; import net.minecraft.item.ItemBlock; import net.minecraft.item.ItemStack; public class ItemBOPAmethyst extends ItemBlock { private static final String[] types = new String[] {"amethystore", "amethystblock", "rubyore", "rubyblock", "peridotore", "peridotblock", "topazore", "topazblock", "tanzaniteore", "tanzaniteblock", "malachiteore", "malachiteblock", "sapphireore", "sapphireblock"}; public ItemBOPAmethyst(int par1) { super(par1); setMaxDamage(0); setHasSubtypes(true); } @Override public int getMetadata(int meta) { return meta; } @Override public String getUnlocalizedName(ItemStack itemstack) { int meta = itemstack.getItemDamage(); if (meta < 0 || meta >= types.length) { meta = 0; } return super.getUnlocalizedName() + "." + types[meta]; } }