Class BlockBeacon

All Implemented Interfaces:
BlockEntityHolder<BlockEntityBeacon>, BlockID, IBlockState, IMutableBlockState, AxisAlignedBB, Metadatable, Cloneable

@PowerNukkitDifference(since="1.4.0.0-PN", info="Implements BlockEntityHolder only in PowerNukkit") public class BlockBeacon extends BlockTransparent implements BlockEntityHolder<BlockEntityBeacon>
Author:
Angelic47 (Nukkit Project)
  • Constructor Details

    • BlockBeacon

      public BlockBeacon()
  • Method Details

    • getId

      public int getId()
      Specified by:
      getId in class Block
    • getBlockEntityClass

      @Since("1.4.0.0-PN") @PowerNukkitOnly @Nonnull public Class<? extends BlockEntityBeacon> getBlockEntityClass()
      Specified by:
      getBlockEntityClass in interface BlockEntityHolder<BlockEntityBeacon>
    • getBlockEntityType

      @PowerNukkitOnly @Since("1.4.0.0-PN") @Nonnull public String getBlockEntityType()
      Specified by:
      getBlockEntityType in interface BlockEntityHolder<BlockEntityBeacon>
    • getHardness

      public double getHardness()
      Description copied from class: Block
      控制方块硬度
      Overrides:
      getHardness in class Block
      Returns:
      方块的硬度
    • calculateBreakTime

      @Since("1.4.0.0-PN") @PowerNukkitOnly @NotNull public double calculateBreakTime(@NotNull Item item)
      Overrides:
      calculateBreakTime in class Block
    • calculateBreakTime

      @Since("1.4.0.0-PN") @PowerNukkitOnly @NotNull public double calculateBreakTime(@NotNull Item item, @Nullable Player player)
      Description copied from class: Block
      计算方块挖掘时间
      Overrides:
      calculateBreakTime in class Block
      Parameters:
      item - 挖掘该方块的物品
      player - 挖掘该方块的玩家
      Returns:
      方块的挖掘时间
    • getResistance

      public double getResistance()
      Description copied from class: Block
      控制方块爆炸抗性
      Overrides:
      getResistance in class Block
      Returns:
      方块的爆炸抗性
    • getLightLevel

      public int getLightLevel()
      Description copied from class: Block
      控制方块的发光等级
      Overrides:
      getLightLevel in class Block
      Returns:
      发光等级(0 - 15)
    • getToolType

      public int getToolType()
      Description copied from class: Block
      控制挖掘方块的工具类型
      Overrides:
      getToolType in class Block
      Returns:
      挖掘方块的工具类型
    • getName

      public String getName()
      Specified by:
      getName in class Block
    • canBeActivated

      public boolean canBeActivated()
      Overrides:
      canBeActivated in class Block
    • getWaterloggingLevel

      @PowerNukkitOnly public int getWaterloggingLevel()
      Overrides:
      getWaterloggingLevel in class Block
    • onActivate

      public boolean onActivate(@Nonnull Item item, @Nullable Player player)
      Overrides:
      onActivate in class Block
    • place

      public boolean place(@Nonnull Item item, @Nonnull Block block, @Nonnull Block target, @Nonnull BlockFace face, double fx, double fy, double fz, @Nullable Player player)
      Description copied from class: Block
      Place and initialize a this block correctly in the world.

      The current instance must have level, x, y, z, and layer properties already set before calling this method.

      Overrides:
      place in class Block
      Parameters:
      item - The item being used to place the block. Should be used as an optional reference, may mismatch the block that is being placed depending on plugin implementations.
      block - The current block that is in the world and is getting replaced by this instance. It has the same x, y, z, layer, and level as this block.
      target - The block that was clicked to create the place action in this block position.
      face - The face that was clicked in the target block
      fx - The detailed X coordinate of the clicked target block face
      fy - The detailed Y coordinate of the clicked target block face
      fz - The detailed Z coordinate of the clicked target block face
      player - The player that is placing the block. May be null.
      Returns:
      true if the block was properly place. The implementation is responsible for reverting any partial change.
    • canBePushed

      public boolean canBePushed()
      Overrides:
      canBePushed in class Block
    • getColor

      public BlockColor getColor()
      Overrides:
      getColor in class BlockTransparent
    • canBePulled

      @PowerNukkitOnly public boolean canBePulled()
      Overrides:
      canBePulled in class Block