🌘
Bloodmoon Advanced
  • Bloodmoon Advanced
  • ❓FAQ
  • 📚Guides
    • Enable bloodmoon for your world
    • How to use commands in console
    • Use custom sounds
  • General
    • Commands & Permissions
  • ⏰SCHEDULES
    • Introduction
    • Commands
    • Properties
  • 🚧SIGNS
    • Introduction
    • Overview
  • 💀Mobs
    • Introduction
    • Properties
    • Commands
    • Spawn mechanics
    • Boss
    • Mythic mobs
  • 📦Items
    • Introduction
    • Commands
  • 🌡️Lifecycles
    • Introduction
    • Commands
  • 🎬Actions
    • Introduction
    • Commands
  • 💀Death Actions
    • Introduction
  • ⏲️ Events
    • Introduction
    • Stop Event
    • Death Event
    • Heal Event
    • Lightning Event
    • Potion effect Event
    • Teleport Event
    • Swap Event
    • Reinforcement Event
    • Dash Event
    • Speak Event
    • Respawn Event
    • Explode Event
    • Sound Event
    • Vanish Event
    • Shield Event
  • Placeholder API
    • Overview of placeholders
  • 📄Configs
    • config.yml
    • mobs.yml
    • actions.yml
    • lifecycles.yml
    • items.yml
    • messages.yml
    • schedules.yml
  • 🖇️API
    • Introduction
    • API docs
Powered by GitBook
On this page
  • How to hook mythic mobs to bloodmoon
  • How to link a custom bloodmoon mob to mythic mob
  • Example config

Was this helpful?

  1. Mobs

Mythic mobs

Integration with Mythic Mobs

PreviousBossNextIntroduction

Last updated 5 years ago

Was this helpful?

How to hook mythic mobs to bloodmoon

Bloodmoon has a soft dependency with Mythic mobs. That means that Mythic Mobs is not required to be installed in order to run Bloodmoon advanced.

If you have Mythic mobs installed, it will automatically hook with Bloodmoon advanced.

How to link a custom bloodmoon mob to mythic mob

In order to use a mythic mob, you first need to create a custom mob. The custom mob will only be used for defining things like spawn chance, boss and life cycles.You choose any mob type you want, as this will be overwritten by mythic mobs.

  1. create a custom mob with any name of your choice (you can use the same as the mythic mob)

/bm mob create <mobname> <mobtype>

2 . use the following command to mark your mob as a mythic mob

/bm mob set mythicmob <bloodmoonmobname> <mythicmob> 

Your custom mob is now hooked with a mythic mob.

Example config

chargedSheep:
    boss: true
    type: SHEEP
    lifecycle: chargedSheep
    mythicmob: StaticallyChargedSheep
    percentage: 10.0

As soon as your mythic mob is hooked with a custom mob, all bloodmoon properties will be overwritten except for the lifecycle , spawnchance and boss

💀