# Effects

### Open Anvil (Triggered)

Require Paper.

```yaml
effects:
  - id: open_anvil
```

### Open Enchanting Table (Triggered)

```yaml
effects:
  - id: open_enchanting
```

### Open Disposal (Triggered)

```yaml
effects:
  - id: open_disposal
    args:
      title: 'Disposal'
      size: 54
```

### Quick Equip (Triggered)

```yaml
effects:
  - id: quick_equip
```

### Cast MythicMobs skill (Triggered)

```yaml
effects:
  - id: cast_mythic_skill
    args:
      skill: 'Skill ID'
      victim_to_player: false # For passive skill, set it to true.
```

### Auto Replant (Permanent)

```yaml
effects:
  - id: auto_plant
```

### Add MMO Stat (Permanent)

```yaml
effects:
  - id: add_mmo_stat
    args:
      stat: 'MAX_HEALTH'
      amount: 100
```

### Apply Reforge (Triggered)

```yaml
effects:
  - id: apply_reforge
    args:
      reforge: 'Funny'
```

### Apply Random Reforge (Triggered)

```yaml
effects:
  - id: apply_reforge
    args:
      disallowed-reforge:
        - 'Sharppness'
        - 'Funny'
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://simple.superiormc.cn/added-things/effects.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
