2015-08-29 14:33:25 +02:00
|
|
|
|
/*
|
|
|
|
|
* This file ("BlockStair.java") is part of the Actually Additions Mod for Minecraft.
|
|
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
|
* under the Actually Additions License to be found at
|
|
|
|
|
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
|
|
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
|
*
|
|
|
|
|
* <EFBFBD> 2015 Ellpeck
|
|
|
|
|
*/
|
|
|
|
|
|
2015-06-28 03:12:32 +02:00
|
|
|
|
package ellpeck.actuallyadditions.blocks;
|
|
|
|
|
|
2015-10-01 23:20:31 +02:00
|
|
|
|
import ellpeck.actuallyadditions.util.IActAddItemOrBlock;
|
2015-06-28 03:12:32 +02:00
|
|
|
|
import net.minecraft.block.Block;
|
|
|
|
|
import net.minecraft.block.BlockStairs;
|
|
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
|
import net.minecraft.item.ItemBlock;
|
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
|
2015-10-01 23:20:31 +02:00
|
|
|
|
public class BlockStair extends BlockStairs implements IActAddItemOrBlock{
|
2015-06-28 03:12:32 +02:00
|
|
|
|
|
|
|
|
|
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{
|
|
|
|
|
|
|
|
|
|
public TheItemBlock(Block block){
|
|
|
|
|
super(block);
|
|
|
|
|
this.setHasSubtypes(false);
|
|
|
|
|
this.setMaxDamage(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String getUnlocalizedName(ItemStack stack){
|
|
|
|
|
return this.getUnlocalizedName();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public int getMetadata(int meta){
|
|
|
|
|
return meta;
|
|
|
|
|
}
|
2015-10-03 10:19:40 +02:00
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
|
|
|
|
return EnumRarity.uncommon;
|
|
|
|
|
}
|
2015-06-28 03:12:32 +02:00
|
|
|
|
}
|
|
|
|
|
}
|