cn.nukkit.block.BlockStairsRedSandstone 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.item.Item;
import cn.nukkit.item.ItemTool;
import cn.nukkit.utils.BlockColor;
/**
* @author CreeperFace
* @since 26. 11. 2016
*/
public class BlockStairsRedSandstone extends BlockStairs {
public BlockStairsRedSandstone() {
this(0);
}
public BlockStairsRedSandstone(int meta) {
super(meta);
}
@Override
public int getId() {
return RED_SANDSTONE_STAIRS;
}
@Override
public double getHardness() {
return 0.8;
}
@Override
public double getResistance() {
return 4;
}
@Override
public int getToolType() {
return ItemTool.TYPE_PICKAXE;
}
@Override
public int getToolTier() {
return ItemTool.TIER_WOODEN;
}
@Override
public String getName() {
return "Red Sandstone Stairs";
}
@Override
public boolean canHarvestWithHand() {
return false;
}
@Override
public BlockColor getColor() {
return BlockColor.ORANGE_BLOCK_COLOR;
}
}