cn.nukkit.block.BlockDoubleSlabStone4 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.api.PowerNukkitOnly;
import cn.nukkit.api.Since;
import cn.nukkit.blockproperty.BlockProperties;
import cn.nukkit.blockproperty.value.StoneSlab4Type;
import cn.nukkit.item.ItemTool;
import cn.nukkit.utils.BlockColor;
import javax.annotation.Nonnull;
@PowerNukkitDifference(info = "Extends BlockDoubleSlabBase instead of BlockDoubleSlabStone only in PowerNukkit")
public class BlockDoubleSlabStone4 extends BlockDoubleSlabBase {
public static final int MOSSY_STONE_BRICKS = 0;
public static final int SMOOTH_QUARTZ = 1;
public static final int STONE = 2;
public static final int CUT_SANDSTONE = 3;
public static final int CUT_RED_SANDSTONE = 4;
public BlockDoubleSlabStone4() {
this(0);
}
public BlockDoubleSlabStone4(int meta) {
super(meta);
}
@Override
public int getId() {
return DOUBLE_STONE_SLAB4;
}
@Since("1.4.0.0-PN")
@PowerNukkitOnly
@Nonnull
@Override
public BlockProperties getProperties() {
return BlockSlabStone4.PROPERTIES;
}
@PowerNukkitOnly
@Since("1.4.0.0-PN")
public StoneSlab4Type getSlabType() {
return getPropertyValue(StoneSlab4Type.PROPERTY);
}
@PowerNukkitOnly
@Since("1.4.0.0-PN")
public void setSlabType(StoneSlab4Type type) {
setPropertyValue(StoneSlab4Type.PROPERTY, type);
}
@Override
public String getSlabName() {
return getSlabType().getEnglishName();
}
@Override
public double getResistance() {
return getToolType() > ItemTool.TIER_WOODEN ? 30 : 15;
}
@Override
public double getHardness() {
return 2;
}
@Override
public int getToolType() {
return ItemTool.TYPE_PICKAXE;
}
@Override
public int getSingleSlabId() {
return STONE_SLAB4;
}
@Override
public int getToolTier() {
return ItemTool.TIER_WOODEN;
}
@Override
public BlockColor getColor() {
return getSlabType().getColor();
}
@Override
public boolean canHarvestWithHand() {
return false;
}
}