cn.nukkit.block.BlockStairsStoneBrick Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powernukkit Show documentation
Show all versions of powernukkit Show documentation
A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.
package cn.nukkit.block;
import cn.nukkit.api.PowerNukkitDifference;
import cn.nukkit.item.ItemTool;
import cn.nukkit.utils.BlockColor;
/**
* @author xtypr
* @since 2015/11/25
*/
public class BlockStairsStoneBrick extends BlockStairs {
public BlockStairsStoneBrick() {
this(0);
}
public BlockStairsStoneBrick(int meta) {
super(meta);
}
@Override
public int getId() {
return STONE_BRICK_STAIRS;
}
@Override
public int getToolType() {
return ItemTool.TYPE_PICKAXE;
}
@Override
public int getToolTier() {
return ItemTool.TIER_WOODEN;
}
@Override
public double getHardness() {
return 1.5;
}
@Override
public double getResistance() {
return 30;
}
@Override
public String getName() {
return "Stone Brick Stairs";
}
@PowerNukkitDifference(info = "Fixed the color", since = "1.3.0.0-PN")
@Override
public BlockColor getColor() {
return BlockColor.STONE_BLOCK_COLOR;
}
}