<aside> 🧠

This page explains what’s inside the Core Template and how the databases connect.

</aside>

The 6 core databases (and what they do)

The “web” (how it actually works)

graph TB
	CL[🗣️ Languages]
	CU[🏛️ Cultures]
	CH[👥 Characters]
	LC[🗺️ Locations]
	HE[⏳ Events]
	MG[⚡ Magic/Tech]

	CU -->|speak| CL
	CU -->|inhabit| LC
	CU -->|practice| MG

	CH -->|belongs to| CU
	CH -->|speaks| CL
	CH -->|lives in| LC
	CH -->|uses| MG
	CH -->|participated in| HE

	HE -->|affected| LC
	HE -->|involved| CU
	HE -->|changed access to| MG

	LC -->|influenced| CL
	MG -->|shaped by| CU

	%% Readability defaults
	classDef node fill:#f8fafc,stroke:#1f2937,stroke-width:1px,color:#111827;
	class CL,CU,CH,LC,HE,MG node;

Suggested “minimum viable world” (so you can start fast)

  1. 1 Culture
  2. 1 Location
  3. 1 Language
  4. 3 Characters
  5. 3 Events
  6. 1 Magic/Tech system

<aside> ✅

If each item links to at least one other item, you’ve built a connected world.

</aside>