Class BlockCocoa

All Implemented Interfaces:
IBlockGrowable

public class BlockCocoa extends BlockNeedsAttached implements IBlockGrowable
  • Constructor Details

    • BlockCocoa

      public BlockCocoa()
  • Method Details

    • placeBlock

      public void placeBlock(GlowPlayer player, GlowBlockState state, org.bukkit.block.BlockFace face, org.bukkit.inventory.ItemStack holding, org.bukkit.util.Vector clickedLoc)
      Description copied from class: BlockType
      Called when a block is placed to calculate what the block will become.
      Overrides:
      placeBlock in class BlockType
      Parameters:
      player - the player who placed the block
      state - the BlockState to edit
      face - the face off which the block is being placed
      holding - the ItemStack that was being held
      clickedLoc - where in the block the click occurred
    • getAttachedFace

      protected org.bukkit.block.BlockFace getAttachedFace(GlowBlock me)
      Overrides:
      getAttachedFace in class BlockNeedsAttached
    • canPlaceAt

      public boolean canPlaceAt(GlowPlayer player, GlowBlock block, org.bukkit.block.BlockFace against)
      Description copied from class: BlockType
      Check whether the block can be placed at the given location.
      Overrides:
      canPlaceAt in class BlockNeedsAttached
      Parameters:
      player - The player who placed the block.
      block - The location the block is being placed at.
      against - The face the block is being placed against.
      Returns:
      Whether the placement is valid.
    • getDrops

      @NotNull public @NotNull Collection<org.bukkit.inventory.ItemStack> getDrops(GlowBlock block, org.bukkit.inventory.ItemStack tool)
      Description copied from class: BlockType
      Get the items that will be dropped by digging the block.
      Overrides:
      getDrops in class BlockType
      Parameters:
      block - The block being dug.
      tool - The tool used or null if fists or no tool was used.
      Returns:
      The drops that should be returned.
    • isFertilizable

      public boolean isFertilizable(GlowBlock block)
      Description copied from interface: IBlockGrowable
      Called to check if a block can be fertilized.
      Specified by:
      isFertilizable in interface IBlockGrowable
      Parameters:
      block - the targeted block to fertilize
      Returns:
      True if the block can be fertilized.
    • canGrowWithChance

      public boolean canGrowWithChance(GlowBlock block)
      Description copied from interface: IBlockGrowable
      Called to check if the block will effectively grow.
      Specified by:
      canGrowWithChance in interface IBlockGrowable
      Parameters:
      block - the targeted block to grow
      Returns:
      True if the block will grow.
    • canTickRandomly

      public boolean canTickRandomly()
      Description copied from class: BlockType
      Called to check if this block can perform random tick updates.
      Overrides:
      canTickRandomly in class BlockType
      Returns:
      Whether this block updates on tick.
    • grow

      public void grow(GlowPlayer player, GlowBlock block)
      Description copied from interface: IBlockGrowable
      Called to grow a growable block.
      Specified by:
      grow in interface IBlockGrowable
      Parameters:
      player - the player who triggered the growth, this can be null if the growth is natural or by plugin source
      block - the targeted block to grow
    • updateBlock

      public void updateBlock(GlowBlock block)
      Description copied from class: BlockType
      Called when this block needs to be updated.
      Overrides:
      updateBlock in class BlockType
      Parameters:
      block - The block that needs an update