cn.nukkit.block.BlockNetherWartBlock 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;
public class BlockNetherWartBlock extends BlockSolid {
@Override
public String getName() {
return "Nether Wart Block";
}
@Override
public int getId() {
return BLOCK_NETHER_WART_BLOCK;
}
@Override
public double getResistance() {
return 5;
}
@Override
public double getHardness() {
return 1;
}
// TODO Fix it in https://github.com/PowerNukkit/PowerNukkit/pull/370, the same for BlockNetherWartBlock
@PowerNukkitDifference(info = "It's now hoe instead of none", since = "1.4.0.0-PN")
@Override
public int getToolType() {
return ItemTool.TYPE_HANDS_ONLY; //TODO Correct type is hoe
}
@Override
public BlockColor getColor() {
return BlockColor.RED_BLOCK_COLOR;
}
}