diff options
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/configuration/defining-items.md | 15 | ||||
| -rw-r--r-- | docs/task-types/evenmorefish_fishing-(task-type).md | 36 | ||||
| -rw-r--r-- | docs/task-types/evenmorefish_hunting-(task-type).md | 36 |
3 files changed, 87 insertions, 0 deletions
diff --git a/docs/configuration/defining-items.md b/docs/configuration/defining-items.md index aab18de9..e9085532 100644 --- a/docs/configuration/defining-items.md +++ b/docs/configuration/defining-items.md @@ -230,6 +230,7 @@ The types of quest items are as follows: - `mmoitems` (items from MMOItems) - `slimefun` (items from Slimefun) - `customfishing` (items from CustomFishing) +- `evenmorefish` (items from EvenMoreFish) - `executableitems` (items from ExecutableItems) - `itemsadder` (items from ItemsAdder) - `nexo` (items from Nexo) @@ -318,6 +319,20 @@ item: - "customfishing_id_2" ``` +#### EvenMoreFish + +**EvenMoreFish quest items** are ItemStacks which belong to the +EvenMoreFish plugin. + + items/testitem.yml + +``` yaml +type: "evenmorefish" +item: + rarity: "evenmorefish_rarity_id" #evenmorefish rarity id + fish: "evenmorefish_fish_name" #evenmorefish fish name +``` + #### ExecutableItems **ExecutableItems quest items** are ItemStacks which belong to the diff --git a/docs/task-types/evenmorefish_fishing-(task-type).md b/docs/task-types/evenmorefish_fishing-(task-type).md new file mode 100644 index 00000000..ffeeceef --- /dev/null +++ b/docs/task-types/evenmorefish_fishing-(task-type).md @@ -0,0 +1,36 @@ +--- +title: evenmorefish_fishing +parent: External task types +grand_parent: Task types +--- + +# evenmorefish_fishing (task type) + +Not released yet (dev builds) +{: .label .label-green } + +Plugin 'EvenMoreFish' required +{: .label } + +Catch a set amount of EvenMoreFish fish. + +## Options + +| Key | Description | Type | Required | Default | Notes | +|-----------------------|--------------------------------------------------|---------------------|----------|---------|-------------------------------------------------------------| +| `amount` | The number of fish to catch. | Integer | Yes | \- | \- | +| `rarity` / `rarities` | The specific rarity name(s) to catch. | String | No | \- | If this value is not specified, then any rarity will count. | +| `rarity-match-mode` | The match mode to be used to compare the strings | String | No | EQUALS | One of: `EQUALS`, `STARTS_WITH`, `ENDS_WITH`. | +| `fish` / `fishes` | The specific fish name(s) to catch. | String | No | \- | If this value is not specified, then any fish will count. | +| `fish-match-mode` | The match mode to be used to compare the strings | String | No | EQUALS | One of: `EQUALS`, `STARTS_WITH`, `ENDS_WITH`. | +| `worlds` | Worlds which should count towards the progress. | List of world names | No | \- | \- | + +## Examples + +Catch 10 EvenMoreFish fish: + +```yaml +evenmorefish: + type: "evenmorefish_fishing" + amount: 10 # number needed +``` diff --git a/docs/task-types/evenmorefish_hunting-(task-type).md b/docs/task-types/evenmorefish_hunting-(task-type).md new file mode 100644 index 00000000..ba46480d --- /dev/null +++ b/docs/task-types/evenmorefish_hunting-(task-type).md @@ -0,0 +1,36 @@ +--- +title: evenmorefish_hunting +parent: External task types +grand_parent: Task types +--- + +# evenmorefish_hunting (task type) + +Not released yet (dev builds) +{: .label .label-green } + +Plugin 'EvenMoreFish' required +{: .label } + +Hunt a set amount of EvenMoreFish fish. + +## Options + +| Key | Description | Type | Required | Default | Notes | +|-----------------------|--------------------------------------------------|---------------------|----------|---------|-------------------------------------------------------------| +| `amount` | The number of fish to hunt. | Integer | Yes | \- | \- | +| `rarity` / `rarities` | The specific rarity name(s) to hunt. | String | No | \- | If this value is not specified, then any rarity will count. | +| `rarity-match-mode` | The match mode to be used to compare the strings | String | No | EQUALS | One of: `EQUALS`, `STARTS_WITH`, `ENDS_WITH`. | +| `fish` / `fishes` | The specific fish name(s) to hunt. | String | No | \- | If this value is not specified, then any fish will count. | +| `fish-match-mode` | The match mode to be used to compare the strings | String | No | EQUALS | One of: `EQUALS`, `STARTS_WITH`, `ENDS_WITH`. | +| `worlds` | Worlds which should count towards the progress. | List of world names | No | \- | \- | + +## Examples + +Hunt 10 EvenMoreFish fish: + +```yaml +evenmorefish: + type: "evenmorefish_hunting" + amount: 10 # number needed +``` |
