fishing (task type)

Since v2.0

Fish a set amount of items.

Since Quests v3.13, fishingcertain and fishing have been merged into one. Both names can be used to refer to this task.

Options

Key Description Type Required Default Notes
amount The number of fish to catch. Integer Yes - -
item Specific item which should be used to kill mobs. ItemStack No - Accepts standard item definition.
worlds Worlds which should count towards the progress. List of world names No - -
exact-match Whether the item should exactly match what is defined. Boolean No true -

Examples

Fish 10 of any item:

fishing:
  type: "fishing"
  amount: 10                            # amount of fish caught
  worlds:                               # (OPTIONAL) restrict to certain worlds
   - "world"

Fish 10 pufferfish:

fishingcertain:
  type: "fishingcertain"
  item: PUFFERFISH                      # type of item caught
  amount: 10                            # amount of item caught
  worlds:                               # (OPTIONAL) restrict to certain worlds
   - "world"

Fish 10 of quest item super_fish:

fishingcertain:
  type: "fishingcertain"
  item:                                 # type of item caught
    quest-item: "super_fish"
  amount: 10                            # amount of item caught
  worlds:                               # (OPTIONAL) restrict to certain worlds
   - "world"

Back to top

This wiki serves as a manual for Quests however there is no guarantee that the information is up-to-date or complete. As per the license, this software provides absolutely no warranty, nor are the maintainers liable for any damages. Please see the license text for more information.