Class BlockOre


public class BlockOre extends BlockNeedsTool
  • Constructor Details

    • BlockOre

      public BlockOre(org.bukkit.Material dropType, MaterialMatcher neededTool, int data, int minCount, int maxCount)
      Creates an ore block type.
      Parameters:
      dropType - the item this drops when mined without a Silk Touch--enchanted tool
      neededTool - the tool(s) that can mine this block
      data - the block data or damage value for the dropped item
      minCount - the minimum number of items to drop, when mined without a Fortune-enchanted tool
      maxCount - the maximum number of items to drop, when mined without a Fortune-enchanted tool
    • BlockOre

      public BlockOre(org.bukkit.Material dropType, MaterialMatcher neededTool, int data, int count)
      Creates an ore block type that drops a fixed number of items when mined without a Fortune-enchanted tool.
      Parameters:
      dropType - the item this drops when mined without a Silk Touch--enchanted tool
      neededTool - the tool(s) that can mine this block
      data - the block data or damage value for the dropped item
      count - the number of items to drop, when mined without a Fortune-enchanted tool
    • BlockOre

      public BlockOre(org.bukkit.Material dropType, MaterialMatcher neededTool, int data)
      Creates an ore block type that drops 1 item when mined without a Fortune-enchanted tool.
      Parameters:
      dropType - the item this drops when mined without a Silk Touch--enchanted tool
      neededTool - the tool(s) that can mine this block
      data - the block data or damage value for the dropped item
    • BlockOre

      public BlockOre(org.bukkit.Material dropType, MaterialMatcher neededTool)
      Creates an ore block type that drops 1 item with a block data or damage value of 0, when mined without a Fortune-enchanted tool.
      Parameters:
      dropType - the item this drops when mined without a Silk Touch--enchanted tool
      neededTool - the tool(s) that can mine this block
  • Method Details

    • 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 BlockNeedsTool
      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.
    • getMinedDrops

      @NotNull public @NotNull Collection<org.bukkit.inventory.ItemStack> getMinedDrops(GlowBlock block)
      Description copied from class: BlockType
      Get the items that would be dropped if the block was successfully mined. This is used f.e. to calculate TNT drops.
      Overrides:
      getMinedDrops in class BlockType
      Parameters:
      block - The block.
      Returns:
      The drops from that block.
    • getNeededMiningTool

      public MaterialMatcher getNeededMiningTool(GlowBlock block)
      Specified by:
      getNeededMiningTool in class BlockNeedsTool