cn.nukkit.block.BlockPurpur 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.Player;
import cn.nukkit.api.PowerNukkitOnly;
import cn.nukkit.api.Since;
import cn.nukkit.item.Item;
import cn.nukkit.item.ItemBlock;
import cn.nukkit.item.ItemTool;
import cn.nukkit.math.BlockFace;
import cn.nukkit.utils.BlockColor;
import javax.annotation.Nonnull;
public class BlockPurpur extends BlockSolidMeta {
public static final int PURPUR_NORMAL = 0;
public static final int PURPUR_PILLAR = 2;
public BlockPurpur() {
this(0);
}
public BlockPurpur(int meta) {
super(meta);
}
@Override
public String getName() {
String[] names = new String[]{
"Purpur Block",
"",
"Purpur Pillar",
""
};
return names[this.getDamage() & 0x03];
}
@Override
public int getId() {
return PURPUR_BLOCK;
}
@Override
public double getHardness() {
return 1.5;
}
@Override
public double getResistance() {
return 30;
}
@Override
public int getToolType() {
return ItemTool.TYPE_PICKAXE;
}
@Override
public boolean place(@Nonnull Item item, @Nonnull Block block, @Nonnull Block target, @Nonnull BlockFace face, double fx, double fy, double fz, Player player) {
if (this.getDamage() != PURPUR_NORMAL) {
short[] faces = new short[]{
0,
0,
0b1000,
0b1000,
0b0100,
0b0100
};
this.setDamage(((this.getDamage() & 0x03) | faces[face.getIndex()]));
}
this.getLevel().setBlock(block, this, true, true);
return true;
}
@Since("1.4.0.0-PN")
@PowerNukkitOnly
@Override
public int getToolTier() {
return ItemTool.TIER_WOODEN;
}
@Override
public Item toItem() {
return new ItemBlock(Block.get(BlockID.PURPUR_BLOCK), this.getDamage() & 0x03, 1);
}
@Override
public BlockColor getColor() {
return BlockColor.MAGENTA_BLOCK_COLOR;
}
}