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

# Weather Events

> Trigger actions on weather changes.

React to global weather shifts.

## Configuration

### `weather_event`

Triggers when the weather changes in a world.

<ResponseField name="world" type="String">
  Target world name (optional, defaults to global).
</ResponseField>

<ResponseField name="condition" type="WeatherCondition">
  Filter for specific weather: `RAIN`, `CLEAR`, `STORM`.
</ResponseField>

## Example

<CodeGroup>
  ```yaml Storm Warning theme={null}
  weather_event:
    condition: STORM
    actions:
      - title_action:
          title: "<red>STORM INCOMING"
  ```
</CodeGroup>
