> ## Documentation Index
> Fetch the complete documentation index at: https://docs.borntocraftstudio.net/llms.txt
> Use this file to discover all available pages before exploring further.

# Mythic Skill Segment

> Trigger a MythicMob skill during a cinematic sequence.

The **Mythic Skill Segment** triggers a Mythic skill at the start of a cinematic segment. This is perfect for synchronized visual effects during cutscenes.

> \[!CAUTION]
> For particle effects to be visible to the player during a cinematic, the skill must include `group=self` in its definition.
> **Example:** `- effect:particlesphere{particle=flame;amount=200;radius=2;group=self} @self`

## Configuration

| Key         | Type     | Description                                       |
| :---------- | :------- | :------------------------------------------------ |
| `skillName` | `String` | The internal name of the Mythic skill to execute. |

## Usage Examples

### Synchronized Explosion

Trigger a Mythic explosion effect when a specific event happens in the cinematic.

```yaml theme={null}
id: cinematic_effects
type: mythicskill_cinematic
segments:
  - startFrame: 50
    endFrame: 60
    skillName: CinematicExplosion
```
