Mounts

Mounts are a special type of cosmetic that allows the player to summon a mount to ride. Depending on how you add mounts they can provide a gameplay advantage on some types of servers, so keep that in mind when adding them!

Configuration

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

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

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

gerald_the_giraffe:
  Model: ui/icons/mount_icon
  Mount: gerald_the_giraffe
  Display: "Gerald the Giraffe"
  Description:
  - "Summon a derpy giraffe as your steed!"

Basic Options

Mounts have the following options:

Option Description
ID The ID of the cosmetic (in the example: gerald_the_giraffe)
Model The path to an icon for the cosmetic inside your resource pack item definitions
Type The type of mount to summon, defaults to MYTHIC (the only option currently)
Mount The name of the mob to summon
Display The display name of the cosmetic in menus
Description The lore of the cosmetic in menus
Updated Aug 19, 2026