From 2520b644fcc56bf19071113e71e4077390dd5f11 Mon Sep 17 00:00:00 2001 From: Krakenied Date: Sat, 23 Mar 2024 19:02:34 +0100 Subject: [PATCH] Add missing docs Closes https://github.com/LMBishop/Quests/issues/574 --- .../customfishing_fishing-(task-type).md | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 docs/task-types/customfishing_fishing-(task-type).md diff --git a/docs/task-types/customfishing_fishing-(task-type).md b/docs/task-types/customfishing_fishing-(task-type).md new file mode 100644 index 000000000..f1e8e3862 --- /dev/null +++ b/docs/task-types/customfishing_fishing-(task-type).md @@ -0,0 +1,33 @@ +--- +title: customfishing_fishing +parent: External task types +grand_parent: Task types +--- + +# customfishing_fishing (task type) + +Not released yet (dev builds) +{: .label .label-green } + +Plugin 'CustomFishing' required +{: .label } + +Catch a set amount of CustomFishing loots. + +## Options + +| Key | Description | Type | Required | Default | Notes | +|----------|--------------------------------------|---------|----------|---------|--------------------------------------------------------------------| +| `amount` | The number of loots to catch. | Integer | Yes | \- | \- | +| `loot` | The specific loot id to catch. | String | No | \- | If this value is not specified, then any loot will count. | +| `group` | The specific group of loot to catch. | String | No | \- | If this value is not specified, then any group of loot will count. | + +## Examples + +Catch 10 CustomFishing loots: + +```yaml +customfishing: + type: "customfishing_fishing" + amount: 10 # number needed +```