Custom Mobs

MYTHIC_MOBS & ELITE_MOBS quest types.

For this type, you must specify the name of the entity to be killed in the quest information with entity_name. There is no need to specify the type of entity.

MythicMobs specificities

For MythicMobs, you must put in entity_name the internal name of the mob. For example, if you have a custom mob like that in your file :

SkeletonKing:
  Type: WITHER_SKELETON
  Display: '&6Skeleton King'
  Health: 50
  Damage: 10

Your quest will look like this :

1:
    name: ...
    menu_item: ...
    description: ...
    quest_type: MYTHIC_MOBS
    entity_name: "SkeletonKing"
    required_amount: 1
    reward:
      ...

With MythicMobs again and only, there is the shared_mobs option. With this option, all players involved in the mob's death will see their quests progress if they have it.

1:
    name: ...
    menu_item: ...
    description: ...
    quest_type: MYTHIC_MOBS
    entity_name: "SkeletonKing"
    shared_mobs: true
    required_amount: 1
    reward:
      ...

EliteMobs specificities

For EliteMobs, you should not put the boss level in the entity name. For example, if your boss file looks like this: name: $normalLevel &cThe Big Boss You need to put only &cThe Big Boss in your quest config. You can also specify several entity names :

entity_name: 
  - "&cThe Big Boss"
  - "&eLittle Pig"

Last updated