> For the complete documentation index, see [llms.txt](https://hxp-docs.juriantech.nl/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hxp-docs.juriantech.nl/configuration/crops.md).

# Crops

Crops all have their own settings to allow for various customization! For this page, we will use Wheat as an example.

Copy

```
Wheat:
  toggle: true
  drop: false
  xp: 10
  min: ''
  max: ''
  world-blacklist:
    - 'world1Name'
    - 'world2Name'
```

#### Toggle <a href="#toggle" id="toggle"></a>

This option allows you to disable the crop entirely by setting it to `false`

#### Drop <a href="#drop" id="drop"></a>

This option toggles whether the XP will drop an orb on the ground, or give it directly to the player who harvested the crop.

#### XP <a href="#xp" id="xp"></a>

This value determines how much XP is given to the player every time it is harvested. This is a static value, if you set `10` then it will give that amount *every time*. *This value is ignored if you define a minimum and maximum amount of XP to give.*

#### Min <a href="#min" id="min"></a>

Standing for 'minimum' this will determine the minimum amount of XP that the harvested crop will give you. This option only works if you also define a maximum amount. This value can be disabled by setting it to `''` or `0`.

#### Max <a href="#max" id="max"></a>

Standing for 'maximum' this will determine the maximum amount of XP that the harvested crop will give you. This option only works if you also define a maximum amount. This value can be disabled by setting it to `''` or `0`.

#### World Blacklist <a href="#world-blacklist" id="world-blacklist"></a>

Unlike the [world blacklist in config.yml](/default-files/config.yml.md), this list only applies to this crop! If you harvest this crop in a world that is in the blacklist, you will not get any XP! You can remove all worlds from the blacklist by making it an empty list, shown below:

Copy

```
  world-blacklist: []
```
