cn.nukkit.block.BlockFenceNetherBrick 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.Since;
import cn.nukkit.item.Item;
import cn.nukkit.item.ItemTool;
import cn.nukkit.utils.BlockColor;
/**
* @author xtypr
* @since 2015/12/7
*/
@PowerNukkitDifference(info = "Extends BlockFenceBase instead of BlockFence only in PowerNukkit", since = "1.4.0.0-PN")
public class BlockFenceNetherBrick extends BlockFenceBase {
public BlockFenceNetherBrick() {
this(0);
}
public BlockFenceNetherBrick(int meta) {
super(meta);
}
@Override
public int getToolType() {
return ItemTool.TYPE_PICKAXE;
}
@Override
public String getName() {
return "Nether Brick Fence";
}
@Override
public int getId() {
return NETHER_BRICK_FENCE;
}
@Override
public double getHardness() {
return 2;
}
@Override
public double getResistance() {
return 6;
}
@Override
public int getToolTier() {
return ItemTool.TIER_WOODEN;
}
@Override
public BlockColor getColor() {
return BlockColor.NETHERRACK_BLOCK_COLOR;
}
@Override
public boolean canHarvestWithHand() {
return false;
}
@Since("1.2.1.0-PN")
@Override
public int getBurnChance() {
return 0;
}
@Since("1.2.1.0-PN")
@Override
public int getBurnAbility() {
return 0;
}
}