Items

Items

Define custom items, attributes, enchants and drops.

Custom Items

Custom items live under plugins/MythicMobs/Items/*.yml. They can be referenced from drop tables, equipment slots and the equip / giveitem mechanics.

Minimal example

RoyalSword:
  Id: DIAMOND_SWORD
  Display: '&6Royal Sword'
  Lore:
  - '&7A blade of kings.'
  Enchantments:
  - SHARPNESS:5
  - UNBREAKING:3
  Attributes:
    MainHand:
      AttackDamage: 10

Reference it from a mob:

SkeletonKing:
  Type: WITHER_SKELETON
  Equipment:
  - RoyalSword MAIN_HAND
  Drops:
  - RoyalSword 1 0.05
Generated from @Mythic* annotations in the MythicMobs source.