cn.nukkit.block.BlockDoubleSlabBlackstone 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.PowerNukkitOnly;
import cn.nukkit.api.Since;
import cn.nukkit.blockproperty.BlockProperties;
import cn.nukkit.item.ItemTool;
import cn.nukkit.utils.BlockColor;
import javax.annotation.Nonnull;
@PowerNukkitOnly
@Since("1.4.0.0-PN")
public class BlockDoubleSlabBlackstone extends BlockDoubleSlabBase {
@PowerNukkitOnly
@Since("1.4.0.0-PN")
public BlockDoubleSlabBlackstone() {
this(0);
}
@PowerNukkitOnly
@Since("1.4.0.0-PN")
protected BlockDoubleSlabBlackstone(int meta) {
super(meta);
}
@Override
public String getSlabName() {
return "Double Blackstone Slab";
}
@Override
public int getId() {
return BLACKSTONE_DOUBLE_SLAB;
}
@Since("1.4.0.0-PN")
@PowerNukkitOnly
@Nonnull
@Override
public BlockProperties getProperties() {
return BlockSlab.SIMPLE_SLAB_PROPERTIES;
}
@Override
public double getResistance() {
return 6;
}
@Override
public double getHardness() {
return 2;
}
@Override
public int getToolType() {
return ItemTool.TYPE_PICKAXE;
}
@Override
public int getSingleSlabId() {
return BLACKSTONE_SLAB;
}
@Override
public BlockColor getColor() {
return BlockColor.BLACK_BLOCK_COLOR;
}
@Override
public boolean canHarvestWithHand() {
return false;
}
}