diff options
| author | Krakenied <krakenied1@gmail.com> | 2025-07-20 02:39:39 +0200 |
|---|---|---|
| committer | Krakenied <46192742+Krakenied@users.noreply.github.com> | 2025-07-29 00:06:46 +0200 |
| commit | b1a82a59ec6d11d9a0241504d6a5104e9d109538 (patch) | |
| tree | 7b1e58f98bde6a97637baf1483790d83b7bd97f5 /docs | |
| parent | 6d8f2c258519f6e1ef58064bcac9569a87802cf4 (diff) | |
Add CustomFishing item def
Diffstat (limited to 'docs')
| -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 |
