# Effect Outcome

The effect outcome applies Status Effects to mobs. See <https://minecraft.wiki/w/Effect> for information about Status Effects.

```json
{
  "type": "lucky:effect",
  "status_effect": {
    "id": "minecraft:slowness",
    "amplifier": 4,
    "duration": 600
  }
}
```

This outcome applies Slowness III to the breaking player for 600 ticks, or 30 seconds.

```json
{
  "type": "lucky:effect",
  "status_effect": {
    "id": "minecraft:slowness",
    "amplifier": 4,
    "duration": 600
  },
  "shape": {
    "type": "lucky:cube",
    "size": [3, 3, 3]
  }
}
```

This outcome applies the same status effect to all mobs within a 3x3x3 cube around the Lucky Block.


---

# 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://docs.creoii.dev/lucky-block/outcomes/effect-outcome.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.
