# Crop Levels

### Valid Crops

Valid crops: Materials 1.16-1.20.4&#x20;

{% code overflow="wrap" fullWidth="false" %}

```yaml
Sugar Cane - Caña de azúcar - SUGAR_CANE
Wheat - Trigo - WHEAT
Carrots - Zanahorias - CARROTS
Potatoes - Patata - POTATOES
Melon - Melón - MELON
Pumpkin - Calabaza - PUMPKIN
Beetroots - Remolacha - BEETROOTS
Nether Wart - Verruga del Nether - NETHER_WART
Cocoa beans - Granos de cacao - COCOA
```

{% endcode %}

## Level Requirements

<pre class="language-yaml"><code class="lang-yaml"><strong># Example of Needing a Hoe Level 5 to break a crop
</strong>Enabled: true
GUI-Size: 27
GUI-Name: '&#x26;8Crop Levels'
prestige-requirements: false
crop-requirements: false
Crop-Levels:
  Level1:
    hoe-level: 5
    material: STONE
    base64:
      value: 'eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTBhNGM5NGRkNjVhN2NhZGM0MTcyY2VkZjM5OTBhODU0Mjc3MmJiMTEzY2RmMWEwZjc4ZWY2NTJjNmFiZTZjYiJ9fX0='
    slot: 12
    name: '&#x26;2&#x26;l[!] &#x26;a&#x26;lLevel 1'
    lore:
      - ''
      - '&#x26;7Crops you can farm:'
      - '&#x26;8* &#x26;7Nether Wart'
      - '&#x26;8* &#x26;7Melon'
      - '&#x26;8* &#x26;7Carrots'
      - ''
      - '&#x26;2&#x26;lYOUR STATS'
      - '&#x26;8* &#x26;7Level: &#x26;f{current-level}'
      - '&#x26;8* &#x26;7Crops Harvested: &#x26;f{crops-harvested}'
      - '&#x26;8* &#x26;7Current XP: &#x26;f{current-xp}'
    crops:
      - MELON
      - NETHER_WART
      - CARROTS
</code></pre>

## Prestige Requirements

```yaml
# Example of Needing a Hoe Prestige 5 to break a crop, instead of using
# hoe-level: for levels it will be using it for the prestige requirement
Enabled: true
GUI-Size: 27
GUI-Name: '&8Crop Levels'
prestige-requirements: true
crop-requirements: false
Crop-Levels:
  Level1:
    hoe-level: 5
    material: STONE
    base64:
      value: 'eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTBhNGM5NGRkNjVhN2NhZGM0MTcyY2VkZjM5OTBhODU0Mjc3MmJiMTEzY2RmMWEwZjc4ZWY2NTJjNmFiZTZjYiJ9fX0='
    slot: 12
    name: '&2&l[!] &a&lLevel 1'
    lore:
      - ''
      - '&7Crops you can farm:'
      - '&8* &7Nether Wart'
      - '&8* &7Melon'
      - '&8* &7Carrots'
      - ''
      - '&2&lYOUR STATS'
      - '&8* &7Crops Harvested: &f{crops-harvested}'
      - '&8* &7Current XP: &f{current-xp}'
    crops:
      - MELON
      - NETHER_WART
      - CARROTS
```

## Crop Requirements

Valid crop: types are 'Crops'(all crops combined) , 'Potato', 'NetherWart', 'Beetroot', 'Carrot', 'CocoaBean', 'Pumpkin', 'Wheat', 'Cane', 'Melon', 'Bamboo'

```yaml
# Example of needing 3000 of any crop to be able to break the crops under crops:

Enabled: true
GUI-Size: 45
GUI-Name: '&8Crop Levels'
prestige-requirements: false
crop-requirements: true
Crop-Levels:
  Level1:
    requirement:
      crop: 'Crops'
      amount: 3000
    material: STONE
    base64:
      value: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTBhNGM5NGRkNjVhN2NhZGM0MTcyY2VkZjM5OTBhODU0Mjc3MmJiMTEzY2RmMWEwZjc4ZWY2NTJjNmFiZTZjYiJ9fX0=
    slot: 12
    name: '&2&l[!] &a&lLevel 1'
    lore:
      - ''
      - '&7Crops you can farm:'
      - '&8* &7Nether Wart'
      - '&8* &7Melon'
      - '&8* &7Carrots'
      - ''
      - '&2&lYOUR STATS'
      - '&8* &7Crops Harvested: &f{crops-harvested}'
      - '&8* &7Current XP: &f{current-xp}'
    crops:
      - MELON
      - NETHER_WART
      - CARROTS
# In Lore of Item and Messages you can also use these placeholders, {crop-needed-name} 
# {crop-current-amount} {crop-needed-amount} {percentage} & {progress}
```
