Crops

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

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

Toggle

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

Drop

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

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

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

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

Unlike the world blacklist in config.yml, 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:

  world-blacklist: []

Last updated