67 lines
2.3 KiB
Markdown
67 lines
2.3 KiB
Markdown
---
|
|
name: dnd-location-builder
|
|
description: Build detailed DnD locations including cities, dungeons, regions, and points of interest with secrets and connections
|
|
license: MIT
|
|
compatibility: opencode
|
|
metadata:
|
|
audience: dungeon-masters
|
|
workflow: worldbuilding
|
|
vault-type: dnd-campaign
|
|
---
|
|
|
|
## What I Do
|
|
- Help create comprehensive location descriptions with atmosphere and notable features
|
|
- Assist in developing location districts, areas, and points of interest
|
|
- Generate location secrets, hidden details, and plot hooks
|
|
- Link locations to relevant NPCs, organizations, items, and story arcs
|
|
- Maintain organized location directory structure
|
|
|
|
## When to Use Me
|
|
Use this skill when:
|
|
- Creating new cities, dungeons, or regions
|
|
- Developing existing locations with more depth and connections
|
|
- Organizing locations by region or type
|
|
- Linking locations to story arcs and campaign events
|
|
- Generating location-based quests and encounters
|
|
|
|
## Workflow Integration
|
|
1. **Location Creation**: Create files in `02-World/Locations/Name.md`
|
|
2. **Regions**: Use subdirectories for regions (e.g., `02-World/Locations/Region/Name.md`)
|
|
3. **Dungeons**: Place dungeon locations in appropriate subdirectories
|
|
4. **Metadata**: Include type, region, population, factions
|
|
|
|
## Template Structure
|
|
```markdown
|
|
---
|
|
typ: city
|
|
region: Sword Coast
|
|
population: 12000
|
|
factions: ["Order of the Gauntlet", "Zhentarim"]
|
|
npcs: ["Mayor Uldrin", "Thalric the Spy"]
|
|
items: ["Gauntlet of Eldrin"]
|
|
---
|
|
|
|
# Location Name
|
|
**Übersicht**: Port city on the [[Sword Coast]], known for its [[Order of the Gauntlet]] temple.
|
|
|
|
## Bezirke/Bereiche
|
|
- **Temple District**: HQ of the [[Order of the Gauntlet]]
|
|
- **Docks**: Controlled by the [[Zhentarim]] (see [[Thalric the Spy]])
|
|
|
|
## Geheimnisse
|
|
- [[Amulet of the Eclipse]] hidden beneath the temple (known to [[Veylin]])
|
|
|
|
## Verbindungen
|
|
- **Handlungsbögen**: [[The Shadow War#Eldrin's Role]]
|
|
- **Ereignisse**: [[Fall of Eldrin]]
|
|
- **NSCs**: [[Mayor Uldrin]], [[Thalric the Spy]]
|
|
- **Gegenstände**: [[Gauntlet of Eldrin]]
|
|
```
|
|
|
|
## Best Practices
|
|
- Use short, descriptive filenames (e.g., `Eldrin.md`)
|
|
- Include maps and visual references in `06-Assets/Maps/`
|
|
- Link to all relevant NPCs, organizations, and story elements
|
|
- Use spoiler syntax (`> !`) for hidden location details
|
|
- Group related locations geographically or thematically
|
|
- Include travel times and connections to other locations |