diff options
Diffstat (limited to 'docs/configuration')
| -rw-r--r-- | docs/configuration/defining-items.md | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/configuration/defining-items.md b/docs/configuration/defining-items.md index c4b3802b..aab18de9 100644 --- a/docs/configuration/defining-items.md +++ b/docs/configuration/defining-items.md @@ -229,6 +229,7 @@ The types of quest items are as follows: - `defined` (items manually written following the format above) - `mmoitems` (items from MMOItems) - `slimefun` (items from Slimefun) +- `customfishing` (items from CustomFishing) - `executableitems` (items from ExecutableItems) - `itemsadder` (items from ItemsAdder) - `nexo` (items from Nexo) @@ -296,6 +297,27 @@ item: id: "slimefun_item_id" #slimefun id ``` +#### CustomFishing + +**CustomFishing quest items** are ItemStacks which belong to the +CustomFishing plugin. + + items/testitem.yml + +``` yaml +type: "customfishing" +item: + id: "customfishing_id" #customfishing id +``` +or +``` yaml +type: "customfishing" +item: + ids: #customfishing ids + - "customfishing_id_1" + - "customfishing_id_2" +``` + #### ExecutableItems **ExecutableItems quest items** are ItemStacks which belong to the |
