97 lines
2.8 KiB
Markdown
97 lines
2.8 KiB
Markdown
---
|
|
name: dnd-worldbuilder
|
|
description: Build and manage DnD world lore, organizations, history, and campaign setting elements
|
|
license: MIT
|
|
compatibility: opencode
|
|
metadata:
|
|
audience: dungeon-masters
|
|
workflow: worldbuilding
|
|
vault-type: dnd-campaign
|
|
---
|
|
|
|
## What I Do
|
|
- Help create comprehensive world lore and campaign setting elements
|
|
- Assist in developing organizations, factions, and political structures
|
|
- Generate historical timelines and world events
|
|
- Link world elements to locations, NPCs, and story arcs
|
|
- Maintain organized worldbuilding directory structure
|
|
|
|
## When to Use Me
|
|
Use this skill when:
|
|
- Creating new organizations, factions, or political entities
|
|
- Developing world history and timelines
|
|
- Building campaign setting elements and lore
|
|
- Linking world elements to campaign content
|
|
- Generating political maps and relationship networks
|
|
|
|
## Workflow Integration
|
|
1. **Organizations**: Create files in `04-Entities/Organizations/Name.md`
|
|
2. **History**: Place historical content in `03-Story/History/`
|
|
3. **World Lore**: Use `02-World/` for geographical and cultural elements
|
|
4. **Connections**: Link to relevant NPCs, locations, and story arcs
|
|
|
|
## Organization Template
|
|
```markdown
|
|
---
|
|
typ: organisation
|
|
ausrichtung: lawful_evil
|
|
führer: "Thalric the Spy"
|
|
mitglieder: ["Veylin", "Captain Dain"]
|
|
hq: "Eldrin Docks"
|
|
ziele: ["Control the Underdark trade", "Acquire the Amulet of the Eclipse"]
|
|
---
|
|
|
|
# Organization Name
|
|
**Übersicht**: Mercantile syndicate with a dark underbelly.
|
|
|
|
## Hierarchie
|
|
- **Führer**: [[Thalric the Spy]]
|
|
- **Mitglieder**: [[Veylin]] (infiltrator), [[Captain Dain]] (enforcer)
|
|
|
|
## Ziele
|
|
- Monopolize [[Underdark]] trade routes
|
|
- Sabotage the [[Order of the Gauntlet]]
|
|
|
|
## Geheimnisse
|
|
- [[Thalric the Spy]] is actually a double agent for [[Manshoon]]
|
|
|
|
## Verbindungen
|
|
- **Handlungsbögen**: [[The Shadow War]]
|
|
- **Orte**: [[Eldrin Docks]]
|
|
- **NSCs**: [[Veylin]], [[Captain Dain]]
|
|
```
|
|
|
|
## Worldbuilding Template
|
|
```markdown
|
|
---
|
|
typ: lore
|
|
kategorie: history
|
|
zeitraum: "Year 0-100"
|
|
verbindungen: ["Bruch des Arkanen Geflechts", "Zirkel der Ordnung"]
|
|
---
|
|
|
|
# Historical Event
|
|
**Zeitraum**: Year 0-100
|
|
|
|
## Ereignisse
|
|
- **Jahr 0**: Der Bruch des Arkanen Geflechts
|
|
- **Jahr 15**: Gründung des Zirkels
|
|
- **Jahr 25**: Erweiterung des Zirkels
|
|
|
|
## Auswirkungen
|
|
- Formation of various organizations
|
|
- Establishment of new power structures
|
|
|
|
## Verbindungen
|
|
- **Organisationen**: [[Zirkel der Ordnung]], [[Garde der Gerechtigkeit]]
|
|
- **NSCs**: [[Founding Members]]
|
|
- **Orte**: [[Eldrin]], [[Sword Coast]]
|
|
```
|
|
|
|
## Best Practices
|
|
- Use clear, descriptive names for organizations and lore elements
|
|
- Include founding dates, leaders, and key members
|
|
- Link to all relevant NPCs, locations, and story elements
|
|
- Use tags for categorization (e.g., `#org/guild`, `#org/cult`, `#lore/history`)
|
|
- Maintain consistent naming conventions
|
|
- Include goals, secrets, and current status |