Effects

Effects are a type of cosmetic that applies a Mythic skill to the player in order to achieve a wide variety of effects, from giving player particle effects to playing animations using auras and models.

Configuration

Effects go in a configuration file located in any pack: plugins/MythicMobs/packs/cosmetics/effects/your_file.yml

You can have one or more files in the folder, and a file can have multiple cosmetics in it.

To add an effect, create or modify a file inside the effects folder within whatever pack you want and use the following config format:

path_of_flames:
  Model: ui/icon/path_of_flames
  Display: "Path of Flames"
  Description:
  - "Walk the Path of Fire"
  Interval: 1
  Skills:
  - particles{p=flame;a=4;hs=0.25}

Basic Options

Effects have the following options:

Option Description
ID The ID of the cosmetic (in the example: path_of_flames)
Model The path to an icon for the cosmetic inside your resource pack item definitions
Display The display name of the cosmetic in menus
Description The lore of the cosmetic in menus
Interval How often to run the effect skills
Skills A list of Mythic mechanics to run on the player
Updated Aug 19, 2026