BiomesOPlenty/common/biomesoplenty/itemblocks/ItemBlockGrass.java

33 lines
672 B
Java
Raw Normal View History

2013-07-03 07:51:39 +00:00
package biomesoplenty.itemblocks;
2013-05-03 13:00:44 +00:00
import net.minecraft.item.ItemBlock;
import net.minecraft.item.ItemStack;
2013-07-03 07:51:39 +00:00
public class ItemBlockGrass extends ItemBlock
2013-05-03 13:00:44 +00:00
{
2013-06-09 06:47:13 +00:00
private static final String[] types = new String[] {"holygrass", "smolderinggrass"};
2013-05-03 13:00:44 +00:00
2013-07-03 07:51:39 +00:00
public ItemBlockGrass(int par1)
2013-05-31 10:34:02 +00:00
{
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;
}
@Override
public String getUnlocalizedName(ItemStack itemstack) {
int meta = itemstack.getItemDamage();
if (meta < 0 || meta >= types.length) {
meta = 0;
}
2013-06-09 00:39:12 +00:00
return super.getUnlocalizedName() + "." + types[meta];
2013-05-31 10:34:02 +00:00
}
2013-05-03 13:00:44 +00:00
}