diff options
| author | Krakenied <krakenied1@gmail.com> | 2025-03-01 04:46:19 +0100 |
|---|---|---|
| committer | Krakenied <46192742+Krakenied@users.noreply.github.com> | 2025-05-13 20:34:15 +0200 |
| commit | 8f5308bdb71ea95c2420e9e22e0ce7057e05a05c (patch) | |
| tree | 4f38a9fe403348f83d4f1b2def6c59c4b8959c08 /docs/task-types | |
| parent | cdecd05fe4a41c032eb78a311d3a73ceea52b296 (diff) | |
Add blockfertilizing task type
Diffstat (limited to 'docs/task-types')
| -rw-r--r-- | docs/task-types/blockfertilizing-(task-type).md | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/docs/task-types/blockfertilizing-(task-type).md b/docs/task-types/blockfertilizing-(task-type).md new file mode 100644 index 00000000..7b5833f6 --- /dev/null +++ b/docs/task-types/blockfertilizing-(task-type).md @@ -0,0 +1,36 @@ +--- +title: blockfertilizing +parent: Built-in task types +grand_parent: Task types +--- + +# blockfertilizing (task type) + +Not released yet (dev builds) +{: .label .label-green } + +Minecraft 1.13+ required +{: .label .label-purple } + +Fertilize a set amount of blocks. + +## Options + +| Key | Description | Type | Required | Default | Notes | +|----------|-------------------------------------------------|-------------------------------|----------|---------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| `amount` | The number of blocks to fertilize. | Integer | Yes | \- | \- | +| `block` | The specific block(s) to fertilize. | Material, or list of material | No | \- | Please see [this list](https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html) (1.13+) or [this list](https://helpch.at/docs/1.12.2/org/bukkit/Material.html) (1.8-1.12) for material names. Note that some items are confusingly named, they may refer to the held item or block instead of the crop block. | +| `worlds` | Worlds which should count towards the progress. | List of world names | No | \- | \- | + +## Examples + +Fertilize beetroots in world_nether: + +``` yaml +infernalbeetroots: + type: "blockfertilizing" + amount: 1 # amount of blocks to be fertilized + block: "BEETROOTS" # name of block + worlds: # (OPTIONAL) restrict to certain worlds + - "world_nether" +``` |
