cn.nukkit.block.BlockShulkerBox 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.CommonBlockProperties;
import cn.nukkit.utils.BlockColor;
import cn.nukkit.utils.DyeColor;
import javax.annotation.Nonnull;
/**
* @author PetteriM1
*/
@PowerNukkitDifference(since = "1.4.0.0-PN", info = "Implements BlockEntityHolder only in PowerNukkit")
public class BlockShulkerBox extends BlockUndyedShulkerBox {
public BlockShulkerBox() {
// Does nothing
}
public BlockShulkerBox(int meta) {
if (meta != 0) {
getMutableState().setDataStorageFromInt(meta, true);
}
}
@Since("1.4.0.0-PN")
@PowerNukkitOnly
@Nonnull
@Override
public BlockProperties getProperties() {
return CommonBlockProperties.LEGACY_PROPERTIES;
}
@Override
public int getId() {
return SHULKER_BOX;
}
@Override
public String getName() {
return this.getDyeColor().getName() + " Shulker Box";
}
@Override
public BlockColor getColor() {
return this.getDyeColor().getColor();
}
public DyeColor getDyeColor() {
return DyeColor.getByWoolData(this.getDamage());
}
}