Skip to main content
The Mob Death event is triggered whenever a player kills a MythicMob. This is a primary event for quest completion and reward systems.

📝 Configuration

KeyTypeDescription
mobNameRegexA regular expression to match the internal name of the mob.

💡 Usage Examples

Kill Quest

Trigger a dialogue when the player kills a “GiantCaveSpider”.
id: spider_killed
type: on_mythic_mob_die
mobName: GiantCaveSpider
triggers:
  - start_spider_dialogue

Generic Match

Trigger for any mob whose name starts with “Goblin”.
id: goblin_slayer
type: on_mythic_mob_die
mobName: Goblin.*