# 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
```


---

# Agent Instructions: 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:

```
GET https://plugins.elitefantasy.net/masky-plugins/maskycrops.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
