> For the complete documentation index, see [llms.txt](https://plugins.elitefantasy.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://plugins.elitefantasy.net/masky-plugins/maskycrops.md).

# MaskyCrops

## Dependencies

| list        | required | format for Material:      |
| ----------- | -------- | ------------------------- |
| CustomCrops | true     | null                      |
| MythicMobs  | true     | mythic:\<itemid>          |
| CraftEngine | false    | ce:\<namespace>:\<itemid> |
| ItemsAdder  | false    | ia:\<namespace>:\<itemid> |
| Nexo        | false    | nexo:\<itemid>            |
| Oraxen      | false    | or:\<itemid>              |

## Config Examples

<pre><code>📦MaskyCrops
  ├── 📁configs
<strong>  │     └── 📝end_crops.yml
</strong>  └── 📝settings.yml
</code></pre>

### settings.yml

```yaml
settings:
  debug: false
  grow_display:
    display_height: 2
    MythicMobsCropGrowSkill: "endcrops_skill_grow1" #Mob used when growing a crop
    MythicMobsCropSummonSkill: "_summon" #This references skill <CropId>_summon
```

### end\_crops.yml

All the "crops" needs a skill named in MythicMobs for example `<CropId>_summon` / `boreal_gummy_summon`

```yaml
crops:
  - "boreal_gummy"
  - "eye_berries"
  - "slime_tune"
  - "void_spire"
  - "end_betroot"
pots:
  - "end_pot"
tools:
  end_scythe_diamond:
    Material: "ia:elitefantasy:end_scythe_diamond"
    Radius: 1 #0 = 1x1, 1 = 3x3, 2 = 5x5, 3 = 7x7
seeds:
  boreal_gummy_seed_pack_golden:
    Material: "ia:elitefantasy:boreal_gummy_seed_pack_golden"
    Radius: 3
    Random: false
    Crops:
      - "boreal_gummy"
  end_randomseed:
    Material: "ia:elitefantasy:end_randomseed"
    Radius: 0
    Random: true
    Crops:
      - "boreal_gummy"
      - "eye_berries"
      - "slime_tune"
      - "void_spire"
      - "end_betroot"
  end_randomseed_pack:
    Material: "ia:elitefantasy:end_randomseed_pack"
    Radius: 1
    Random: true
    Crops:
      - "boreal_gummy"
      - "eye_berries"
      - "slime_tune"
      - "void_spire"
      - "end_betroot"
  end_randomseed_pack_silver:
    Material: "ia:elitefantasy:end_randomseed_pack_silver"
    Radius: 2
    Random: true
    Crops:
      - "boreal_gummy"
      - "eye_berries"
      - "slime_tune"
      - "void_spire"
      - "end_betroot"
meals:
  end_meal:
    Material: "ia:elitefantasy:end_meal"
    Radius: 1
  end_meal_silver:
    Material: "ia:elitefantasy:end_meal_silver"
    Radius: 2
  end_meal_golden:
    Material: "ia:elitefantasy:end_meal_golden"
    Radius: 3
```
