cn.nukkit.block.BlockHugeMushroomBrown 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.ItemBlock;
import cn.nukkit.item.ItemTool;
import cn.nukkit.math.NukkitRandom;
import cn.nukkit.utils.BlockColor;
/**
* @author Pub4Game
* @since 28.01.2016
*/
public class BlockHugeMushroomBrown extends BlockSolidMeta {
public BlockHugeMushroomBrown() {
this(0);
}
public BlockHugeMushroomBrown(int meta) {
super(meta);
}
@Override
public String getName() {
return "Brown Mushroom Block";
}
@Override
public int getId() {
return BROWN_MUSHROOM_BLOCK;
}
@Override
public int getToolType() {
return ItemTool.TYPE_AXE;
}
@Override
public double getHardness() {
return 0.2;
}
@Override
public double getResistance() {
return 1;
}
@Override
public Item[] getDrops(Item item) {
if (new NukkitRandom().nextRange(1, 20) == 0) {
return new Item[]{
new ItemBlock(Block.get(BlockID.BROWN_MUSHROOM))
};
} else {
return Item.EMPTY_ARRAY;
}
}
@Override
public boolean canSilkTouch() {
return true;
}
@Override
public BlockColor getColor() {
return BlockColor.DIRT_BLOCK_COLOR;
}
}