BiomesOPlenty/src/minecraft/biomesoplenty/items/ItemBOPPlank.java

34 lines
827 B
Java
Raw Normal View History

2013-05-03 13:00:44 +00:00
package biomesoplenty.items;
import net.minecraft.item.ItemBlock;
import net.minecraft.item.ItemStack;
public class ItemBOPPlank extends ItemBlock
{
2013-05-31 10:34:02 +00:00
private static final String[] woodTypes = new String[] {"acaciaPlank", "cherryPlank", "darkPlank", "firPlank", "holyPlank", "magicPlank", "mangrovePlank", "palmPlank", "redwoodPlank", "willowPlank", "bambooThatching", "pinePlank", "hellBarkPlank", "jacarandaPlank"};
2013-05-03 13:00:44 +00:00
2013-05-31 10:34:02 +00:00
public ItemBOPPlank(int par1)
{
super(par1);
setMaxDamage(0);
setHasSubtypes(true);
}
2013-05-03 13:00:44 +00:00
2013-05-31 10:34:02 +00:00
@Override
public int getMetadata(int meta)
{
return meta & 15;
}
@Override
public String getUnlocalizedName(ItemStack itemStack)
{
int meta = itemStack.getItemDamage();
if (meta < 0 || meta >= woodTypes.length) {
meta = 0;
}
2013-06-09 00:39:12 +00:00
return super.getUnlocalizedName() + "." + woodTypes[meta];
2013-05-31 10:34:02 +00:00
}
2013-05-03 13:00:44 +00:00
}