Block drops

This page has all of the information related to configuring the blocks sections.

📝 Example configuration:

example_block:
  material: DIAMOND_ORE
  cancel_default_drop: true
  drops:
    drop1:
      chance: 0.5
      item:
        material: DIAMOND
        name: "Shiny Diamond"
        lore:
          - "A very valuable gem"
        enchants:
          - "DURABILITY:3"
      message: "You have received a Shiny Diamond!"
      experience: 10
      money: 50.0

Item name and lore supports MiniMessage format, more informations here.

Material list can be find on Spigot JavaDocs!

You can skip this fields in item configuration:

  • name

  • lore

  • enchants

  • message

  • experience

  • money - Required Vault and Economy plugin to work!

Change "cancel_default_drop" to false, allow players to gain default drop from block.

Last updated