# BigMining

The BigMining mechanic allows players to break multiple blocks around a target block efficiently, respecting protection rules, unbreakable blocks, and player permissions.

<figure><img src="/files/9lybHPW4ReViv7olzdjO" alt="" width="640"><figcaption></figcaption></figure>

{% hint style="info" %}
`radius` and `depth` options are required!
{% endhint %}

### Simple

```yaml
# Example

Mechanics:
  bigmining:
    radius: 2         # The radius of blocks around the destroyed block to break.
    depth: 3          # The depth of blocks to break in the direction of mining.
```

### Switchable

```yaml
# Example

Mechanics:
  bigmining:
    radius: 1
    depth: 3
    switchable: true  # Will switch bigmining mode on right-click
```

### Breaking material whitelist

```yaml
# Example

Mechanics:
  bigmining:
    radius: 1
    depth: 3
    materials:       # List of whitelisted materials
    - STONE
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://nexoaddon.gitbook.io/docs/mechanics/bigmining.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
