diff options
| author | Krakenied <krakenied1@gmail.com> | 2025-07-20 18:50:33 +0200 |
|---|---|---|
| committer | Krakenied <46192742+Krakenied@users.noreply.github.com> | 2025-07-29 00:06:46 +0200 |
| commit | 475bc16cd362c7512a072781cad737b71f4e531d (patch) | |
| tree | 2327f02f3016ef47fbc265d8dc9649f526d315ea /docs/task-types | |
| parent | 6f25b13f59e797ce48e0ec66740fb6c56843a24a (diff) | |
Add EvenMoreFish fishing and hunting types and dedicated item def impl
Diffstat (limited to 'docs/task-types')
| -rw-r--r-- | docs/task-types/evenmorefish_fishing-(task-type).md | 36 | ||||
| -rw-r--r-- | docs/task-types/evenmorefish_hunting-(task-type).md | 36 |
2 files changed, 72 insertions, 0 deletions
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 +``` |
