Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Player Database
  • Skin Browser
  • Cape Gallery
  • Community Hub
  • Seed Vault

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
EzSuperPickaxes
PluginApache-2.0

EzSuperPickaxes

Adds powerful pickaxes to your server

212
Downloads
1
Followers
2 months ago
Updated
📦
8
Versions
equipmentmagicutilitybukkitpaperspigot
Download Latestv1.4.0View on Modrinth

📖About EzSuperPickaxes

main_title

The super pickaxes

Ever wanted to mine more than one block? Wanted to mine 5x5 blocks?

That is the moment when EzSuperPickaxes arrives

Mine 10x10 blocks, 20x20 or even 100x100!

A lightweight solution to mine 3x3 or any custom area of blocks that you want!

Command list

Commands

/ezsp -- Shows all the plugin commands

/ezsp reload -- Reloads the config.yaml and lang.yaml

/ezsp give -- Give the player the wanted pickaxe

/ezsp debug -- View all the errors in the config.yml or lang.yml

Placeholders

Placeholders List

%ezsp_blocks_mined% - The amount of the blocks mined

%ezsp_blocks_mined_commas% - The amount of the blocks mined but with commas

%ezsp_current_pickaxe% - The name of the current pickaxe

%ezsp_pickaxe_radius% - The radius of the current pickaxe

%ezsp_global_blocks_mined% - The amount of blocks mined in the server

%ezsp_durability% - The durability of the current pickaxe

%ezsp_durability_percent% The percentage of the current pickaxe

%ezsp_obtained_% - The number of blocks obtained in the last use of the pickaxes, replace with the amount of blocks that you want to display (%ezsp_obtained_3% shows 3 blocks)

Newest Config.yml

config.yaml
general:
  # DO NOT CHANGE THE VERSION 
  config-version: 1.4.0

# Dependencies
# If you dont want to use them, disable it, its not required
# note: the plugin detects if the dependency is installed, but this its only if you want to enable/disable the config for the dependency
worldguard:
  enable: true
griefprevention:
  enable: true
towny:
  enable: true

# Worlds where Super Pickaxes are disabled
disabled-worlds:
  - this_text_its_long_enough_to_not_be_a_world_name
  - ezsuperpickaxes_blocked_world

pickaxes:
  example:
    # Item material (without "minecraft:")
    # Must be a valid Spigot/Paper Material ID
    material: DIAMOND_PICKAXE
    # Display name with color codes (&)
    name: "&b&lExample &9&lPickaxe"
    # Item lore (multiple lines allowed)
    lore:
      - "&7The classic &bExample &7pickaxe."
      - "&fBreaks in a wide area!"
    # Mining radius (1 = 3x3, 2 = 5x5, 3 = 7x7, etc.)
    radius: 4
    # Durability consume mode: BLOCKS_MINED (every block in area) or USES (1 per activation)
    durability-consume-mode: BLOCKS_MINED
    # Custom amount used when durability-consume-mode is USES
    durability-consume-amount: 1
    # Sound when breaking blocks (set to 'none' to disable)
    sound: none
    # Activates the radius from the pickaxe with ONLY this blocks
    # e.g: valid-materials:
    #       - STONE 
    # note: valid-materials: [] so the pickaxe can break any material with the radius efect
    valid-materials: []
    # Materials this pickaxe cannot break (e.g., BEDROCK)
    invalid-materials:
      - BEDROCK
    # Put a valid Spigot/Paper enchantment ID
    enchantments:
      EFFICIENCY: 5

  pickaxe_3x3:
    material: DIAMOND_PICKAXE
    name: "&b&l3x3 &9&lPickaxe"
    lore:
      - "&7Mines a 3x3 area."
    radius: 1
    # Durability consume mode: BLOCKS_MINED (every block in area) or USES (1 per activation)
    durability-consume-mode: BLOCKS_MINED
    # Custom amount used when durability-consume-mode is USES
    durability-consume-amount: 1
    sound: none
    valid-materials: []
    invalid-materials:
      - BEDROCK
    enchantments:
      EFFICIENCY: 6

  pickaxe_5x5:
    material: NETHERITE_PICKAXE
    name: "&d&l5x5 &5&lPickaxe"
    lore:
      - "&7Mines a massive &d5x5 &7area"
    radius: 2
    # Durability consume mode: BLOCKS_MINED (every block in area) or USES (1 per activation)
    durability-consume-mode: BLOCKS_MINED
    # Custom amount used when durability-consume-mode is USES
    durability-consume-amount: 1
    sound: none
    valid-materials: []
    invalid-materials:
      - BEDROCK
    enchantments:
      EFFICIENCY: 10
      LOOT_BONUS_BLOCKS: 3

    

Dependencies

  • JDK 21

Optional Dependencies

  • WorldGuard
  • GriefPrevention
  • Towny
  • PlaceholderAPI

Have a bug or suggestion?

Leave it in the discord server!
Make a general ticket in the tickets channel

Servers that uses EzSuperPickaxes:

play.zetaland.es

Zetaland

👥 Team & Contributors

Ezequielgame
EzequielgameOwner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
bukkitpaperspigot
Minecraft Versions
1.211.21.11.21.21.21.31.21.41.21.51.21.61.21.7+4 more

🔗 Links

Modrinth Page