> For the complete documentation index, see [llms.txt](https://jpprison.gitbook.io/jpprison-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jpprison.gitbook.io/jpprison-docs/mining-mining.yml.md).

# Mining (mining.yml)

#### TNT and Drill

```
CustomItems:
  TNT:
    tnt_normal:
      DisplayName: "&c&lFlying Mining TNT"
      ExplosionRadius: 4
      TokenMultiplier: 2.0
      XPMultiplier: 2.0
      MoneyMultiplier: 2.0
    tnt_mega:
      DisplayName: "&4&lMEGA Flying Mining TNT"
      ExplosionRadius: 8
      TokenMultiplier: 4.0; XPMultiplier: 4.0; MoneyMultiplier: 4.0
  Drill:
    drill_normal:
      DisplayName: "&e&lMining Drill"
      Width: 3; Length: 3
      TokenMultiplier: 1.5; XPMultiplier: 1.5; MoneyMultiplier: 1.5
    drill_heavy:
      DisplayName: "&6&lHeavy Mining Drill"
      Width: 5; Length: 5
      TokenMultiplier: 2.5; XPMultiplier: 2.5; MoneyMultiplier: 2.5
```

#### Mining Chests

```
MiningChests:
  Enabled: true
  SpawnChance: 1.5               # % per broken block
  SpawnFromEnchantments: false
  Chests:
    common:
      DisplayName: "&a&lCommon Mining Chest"
      BlockMaterial: CHEST
      Rewards:
        - "jpprison givetokens {player} 250"
        - "give {player} gold_ingot 16"
    epic:
      DisplayName: "&b&lEpic Mining Chest"
      BlockMaterial: ENDER_CHEST
      Rewards:
        - "jpprison givetokens {player} 1000"
        - "jpprison givepet {player} token_epic"
    legendary:
      DisplayName: "&6&lLegendary Mining Chest"
      BlockMaterial: BEACON
      Rewards:
        - "jpprison givetokens {player} 5000"
        - "jpprison givepet {player} mixed"
```

#### AutoSell

```
AutoSell:
  MessageEnabled: "&d&lJPPrison &7\u00bb &aAutoSell ENABLED."
  MessageDisabled: "&d&lJPPrison &7\u00bb &cAutoSell DISABLED."
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://jpprison.gitbook.io/jpprison-docs/mining-mining.yml.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
