mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-05 08:29:09 +01:00
65 lines
1.7 KiB
Java
65 lines
1.7 KiB
Java
|
package ellpeck.actuallyadditions.blocks;
|
||
|
|
||
|
import cpw.mods.fml.relauncher.Side;
|
||
|
import cpw.mods.fml.relauncher.SideOnly;
|
||
|
import ellpeck.actuallyadditions.util.BlockUtil;
|
||
|
import ellpeck.actuallyadditions.util.INameableItem;
|
||
|
import net.minecraft.block.Block;
|
||
|
import net.minecraft.block.BlockStairs;
|
||
|
import net.minecraft.entity.player.EntityPlayer;
|
||
|
import net.minecraft.item.EnumRarity;
|
||
|
import net.minecraft.item.ItemBlock;
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
public class BlockStair extends BlockStairs implements INameableItem{
|
||
|
|
||
|
private String name;
|
||
|
|
||
|
public BlockStair(Block block, String name){
|
||
|
super(block, 0);
|
||
|
this.name = name;
|
||
|
this.setLightOpacity(0);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String getName(){
|
||
|
return this.name;
|
||
|
}
|
||
|
|
||
|
public static class TheItemBlock extends ItemBlock{
|
||
|
|
||
|
private Block theBlock;
|
||
|
|
||
|
public TheItemBlock(Block block){
|
||
|
super(block);
|
||
|
this.theBlock = block;
|
||
|
this.setHasSubtypes(false);
|
||
|
this.setMaxDamage(0);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public EnumRarity getRarity(ItemStack stack){
|
||
|
return EnumRarity.uncommon;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String getUnlocalizedName(ItemStack stack){
|
||
|
return this.getUnlocalizedName();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
@SuppressWarnings("unchecked")
|
||
|
@SideOnly(Side.CLIENT)
|
||
|
public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean isHeld) {
|
||
|
BlockUtil.addInformation(theBlock, list, 1, "");
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public int getMetadata(int meta){
|
||
|
return meta;
|
||
|
}
|
||
|
}
|
||
|
}
|