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

# Dungeon Room Config

> Persistable configuration that groups a set of dungeon rooms with an associated spawn point.

Persistable configuration for a set of dungeon rooms and their associated spawn point. Referenced by `DungeonInstanceEntry.roomConfigurations`.

Each config defines which rooms are active for a dungeon instance and where players spawn when entering.

## Configuration

<ResponseField name="dungeon_room_config" type="Map" required>
  Configuration for the dungeon room config.

  <Expandable title="Properties">
    <ResponseField name="rooms" type="List<Ref<DungeonRoomEntry>>">
      List of rooms included in this configuration.
    </ResponseField>

    <ResponseField name="spawnPoint" type="WorldLocation">
      Spawn point for this configuration. Supports World Location content editor.
    </ResponseField>
  </Expandable>
</ResponseField>

## Example

```yaml theme={null}
dungeon_room_config:
  id: "temple_layout"
  name: "Temple Layout"
  rooms:
    - "temple_entrance"
    - "temple_corridor"
    - "temple_boss_room"
  spawnPoint:
    x: 10.0
    y: 65.0
    z: 10.0
    world: "dungeon_temple"
    yaw: 0.0
    pitch: 0.0
```
