summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorLMBishop <13875753+LMBishop@users.noreply.github.com>2023-07-06 22:12:36 +0100
committerLMBishop <13875753+LMBishop@users.noreply.github.com>2023-07-06 22:14:18 +0100
commit112fe6c0b7e0d46f5159bb6d56835f1933d8edc7 (patch)
tree00e522ddb8985606f400572831c28bdc737effa9 /docs
parentfb1dda5b78646f6a2775efe963d6c1ed05f5f32c (diff)
Add ecobosses_killing task type
Closes #521
Diffstat (limited to 'docs')
-rw-r--r--docs/task-types/ecobosses_killing-(task-type).md36
1 files changed, 36 insertions, 0 deletions
diff --git a/docs/task-types/ecobosses_killing-(task-type).md b/docs/task-types/ecobosses_killing-(task-type).md
new file mode 100644
index 00000000..472a0f7c
--- /dev/null
+++ b/docs/task-types/ecobosses_killing-(task-type).md
@@ -0,0 +1,36 @@
+---
+title: ecobosses_killing
+parent: External task types
+grand_parent: Task types
+---
+
+# ecobosses_killing (task type)
+
+Since v3.14
+{: .label .label-green }
+
+Plugin 'EcoBosses' required
+{: .label }
+
+Kill a certain number of EcoBosses bosses.
+
+## Options
+
+| Key | Description | Type | Required | Default | Notes |
+|--------------|-------------------------------------------------|----------------------------|----------|---------|-------|
+| `amount` | The number of bosses to kill. | Integer | Yes | \- | \- |
+| `id` / `ids` | The EcoBosses boss ID(s). | String, or list of strings | Yes | \- | \- |
+| `worlds` | Worlds which should count towards the progress. | List of world names | No | \- | \- |
+
+## Examples
+
+Kill 1 EcoBosses boss with the ID "skeletalknight":
+
+``` yaml
+ecobosses:
+ type: "ecobosses_killing"
+ amount: 1 # amount of mobs to be killed
+ id: "skeletalknight" # internal name of mob (name in config - NOT display name)
+ worlds: # (OPTIONAL) restrict to certain worlds
+ - "world"
+```