> ## 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.

# Entity Objectives

> Quest objectives for killing entities.

Track player interactions with specific entities for quests.

## Objective Library

<CardGroup cols={1}>
  <Card title="Kill MythicMob" icon="dragon" href="#mythicmob-kill-objective">
    Track kills of specific MythicMobs entities.
  </Card>
</CardGroup>

## Configuration

### `mythicmob_kill_objective`

Requires **MythicMobs** plugin.

<ResponseField name="mobType" type="String">
  Internal MythicMob ID (e.g. `SKELETON_KING`).
</ResponseField>

<ResponseField name="amount" type="Int" default="1">
  Number of kills required to complete.
</ResponseField>

<ResponseField name="fact" type="CachableFactEntry">
  (Optional) Fact to store progress.
</ResponseField>

<ResponseField name="onComplete" type="TriggerableEntry">
  (Optional) Action to run when objective finishes.
</ResponseField>

## Example

<CodeGroup>
  ```yaml Boss Slayer theme={null}
  mythicmob_kill_objective:
    mobType: SKELETON_KING
    amount: 1
    onComplete:
      - title_action:
          title: "<red>BOSS DEFEATED"
  ```
</CodeGroup>
