enchanting (task type)

Since v2.2

Enchant an item.

Options

Key Description Type Required Default Notes
amount The number of items to obtain. Integer Yes - -
item The specific item to enchant. Material, or ItemStack No - Accepts standard item definition. Please see this list (1.13+) or this list (1.8-1.12) for material names. If no item is specified, then any item can be enchanted.
enchantment The specific enchantment(s) to apply. Enchantment, or list of enchantments No - If no enchantments are specified, then any enchantment can be applied.
min-level The minimum level of the enchantments. Integer No - If no minimum level is specified, then any enchantment of any level can be applied.
worlds Worlds which should count towards the progress. List of world names No - -

Examples

Enchant 10 items:

enchanting:
  type: "enchanting"
  amount: 10                            # amount of items enchanted
  worlds:                               # (OPTIONAL) restrict to certain worlds
   - "world"

Enchant 10 items with Protection:

beef:
  type: "enchanting"
  amount: 10                            # amount of items 
  enchantment: PROTECTION_ENVIRONMENTAL # (OPTIONAL) enchantment to apply
  worlds:                               # (OPTIONAL) restrict to certain worlds
   - "world"

Enchant 10 items with Protection IV:

beef:
  type: "enchanting"
  amount: 10                            # amount of items 
  enchantment: PROTECTION_ENVIRONMENTAL # (OPTIONAL) enchantment to apply
  min-level: 4                          # (OPTIONAL) the minimum level of enchantment to apply
  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.

This site uses Just the Docs, a documentation theme for Jekyll.